content stringlengths 4 1.04M | lang stringclasses 358
values | score int64 0 5 | repo_name stringlengths 5 114 | repo_path stringlengths 4 229 | repo_licenses listlengths 1 8 |
|---|---|---|---|---|---|
#!/bin/bash
[ -n "${DOCKER_DEPLOY_TYPE}" ] || DOCKER_DEPLOY_TYPE="VM"
echo "DOCKER_DEPLOY_TYPE=${DOCKER_DEPLOY_TYPE}"
# run init scripts
for e in $(ls /alidata/init/*) ; do
[ -x "${e}" ] || continue
echo "==> INIT $e"
$e
echo "==> EXIT CODE: $?"
done
echo "==> INIT DEFAULT"
service sshd start
service crond start
#echo "check hostname -i: `hostname -i`"
#hti_num=`hostname -i|awk '{print NF}'`
#if [ $hti_num -gt 1 ];then
# echo "hostname -i result error:`hostname -i`"
# exit 120
#fi
echo "==> INIT DONE"
echo "==> RUN ${*}"
exec "${@}" | Shell | 4 | yuanweikang2020/canal | docker/image/alidata/bin/main.sh | [
"Apache-2.0"
] |
60 mtof 1 saw
0.3 1 sine 1 20 biscale *
0.3 clip 0.3 *
| SourcePawn | 0 | aleatoricforest/Sporth | examples/clip.sp | [
"MIT"
] |
#!/usr/bin/env bash
PLATFORM=$1
ARCH=$2
KUBECTL_VERSION=$3
if [ "${PLATFORM}" == 'linux' ]; then
wget -O "dist/kubectl" "https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/${PLATFORM}/${ARCH}/kubectl"
chmod +x "dist/kubectl"
elif [ "${PLATFORM}" == 'windows' ]; then
wget -O "dist/kubectl.exe" "https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/windows/amd64/kubectl.exe"
chmod +x "dist/kubectl.exe"
fi
exit 0
| Shell | 3 | dzma352/portainer | build/download_kubectl_binary.sh | [
"Zlib"
] |
extern int f(void);
| Harbour | 0 | ueki5/cbc | test/decloverride.hb | [
"Unlicense"
] |
;-----------------------------------------------------------------------------;
; Author: Stephen Fewer (stephen_fewer[at]harmonysecurity[dot]com)
; Compatible: Windows 7, 2008, Vista, 2003, XP, 2000, NT4
; Architecture: x64
; Version: 2.0 (March 2010)
; Size: 323 bytes
; Build: >build.py apc
;-----------------------------------------------------------------------------;
; A small stub to be used for thread injection where we gain execution via an injected APC. See the
; file "\msf3\external\source\meterpreter\source\common\arch\win\i386\base_inject.c" for more details
;typedef struct _APCCONTEXT
;{
; union
; {
; LPVOID lpStartAddress;
; BYTE bPadding1[8];
; } s;
; union
; {
; LPVOID lpParameter;
; BYTE bPadding2[8];
; } p;
; BYTE bExecuted;
;} APCCONTEXT, * LPAPCCONTEXT;
[BITS 64]
[ORG 0]
cld ; Clear the direction flag.
cmp byte [rcx+16], 0 ; Has this context allready been injected? 'if( ctx->bExecuted == FALSE )'
jne cleanup ; If so just leave this APC
mov byte [rcx+16], 1 ; Otherwise mark the context as executed and proceed
sub rsp, 120 ; Alloc some space on stack
call start ; Call start, this pushes the address of 'api_call' onto the stack.
delta: ;
%include "./src/block/block_api.asm" ;
start: ;
pop rbp ; Pop off the address of 'api_call' for calling later.
xor rdx, rdx ; zero RDX
mov rax, [gs:rdx+48] ; Get the current TEB
cmp qword [rax+712], rdx ; Is the TEB ActivationContextStackPointer pointer NULL?
jne continue ; If there already is an ActivationContext structure setup, just continue
lea rdx, [rbp+context-delta] ; calculate the address of our dummy ActivationContext
mov qword [rax+712], rdx ; and set the address of our dummy ActivationContext in the current TEB
continue:
mov r8, [rcx] ; r8 = ctx->lpStartAddress
mov r9, [rcx+8] ; r9 = ctx->lpParameter
xor rcx, rcx ; Clear ECX, lpThreadAttributes
xor rdx, rdx ; Clear EDX, dwStackSize
push rcx ; lpThreadId
push rcx ; dwCreationFlags
mov r10d, 0x160D6838 ; hash( "kernel32.dll", "CreateThread" )
call rbp ; CreateThread( NULL, 0, ctx->lpStartAddress, ctx->lpParameter, 0, NULL );
add rsp, (120 + 32 + (8*2)) ; fix up stack (120 bytes we alloced, 32 bytes for the single call to api_call, and 2*8 bytes for the two params we pushed).
cleanup:
ret ; Return and finish our APC routine.
context:
TIMES 0x24 db 0 ; An empty ntdll!_ACTIVATION_CONTEXT_STACK structure | Assembly | 4 | OsmanDere/metasploit-framework | external/source/shellcode/windows/x64/src/migrate/apc.asm | [
"BSD-2-Clause",
"BSD-3-Clause"
] |
include ../../run-make-fulldeps/tools.mk
# ignore-none no-std is not supported
# ignore-nvptx64-nvidia-cuda FIXME: can't find crate for 'std'
# Ensure that modifying a crate on disk (without recompiling it)
# does not cause ICEs in downstream crates.
# Previously, we would call `SourceMap.guess_head_span` on a span
# from an external crate, which would cause us to read an upstream
# source file from disk during compilation of a downstream crate
# See #86480 for more details
INCR=$(TMPDIR)/incr
all:
cp first_crate.rs second_crate.rs $(TMPDIR)
$(RUSTC) $(TMPDIR)/first_crate.rs -C incremental=$(INCR) --target $(TARGET) --crate-type lib
$(RUSTC) $(TMPDIR)/second_crate.rs -C incremental=$(INCR) --target $(TARGET) --extern first-crate=$(TMPDIR) --crate-type lib
rm $(TMPDIR)/first_crate.rs
$(RUSTC) $(TMPDIR)/second_crate.rs -C incremental=$(INCR) --target $(TARGET) --cfg second_run --crate-type lib
| Makefile | 3 | mbc-git/rust | src/test/run-make/incr-foreign-head-span/Makefile | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
package com.alibaba.json.bvt.awt;
import java.awt.Color;
import org.junit.Assert;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.serializer.AwtCodec;
import com.alibaba.fastjson.serializer.JSONSerializer;
import com.alibaba.fastjson.serializer.SerializerFeature;
import junit.framework.TestCase;
public class ColorTest2 extends TestCase {
public void test_color() throws Exception {
JSONSerializer serializer = new JSONSerializer();
Assert.assertEquals(AwtCodec.class, serializer.getObjectWriter(Color.class).getClass());
Color color = Color.RED;
String text = JSON.toJSONString(color, SerializerFeature.WriteClassName);
System.out.println(text);
Color color2 = (Color) JSON.parse(text);
Assert.assertEquals(color, color2);
}
}
| Java | 4 | Czarek93/fastjson | src/test/java/com/alibaba/json/bvt/awt/ColorTest2.java | [
"Apache-2.0"
] |
Successful Submission Load
<%= @user.login -%> has successfully loaded
project <%= @project.id -%> <%= @project.name -%>
on <%= @database -%>.
| RHTML | 2 | andypohl/kent | src/hg/encode/hgEncodeSubmit/app/views/user_notifier/load_notification.rhtml | [
"MIT"
] |
\data\
ngram 1=1799
ngram 2=13154
ngram 3=20310
\1-grams:
-99 <s> -0.6441475
-1.494777 </s>
-4.119058 chapter -0.1042707
-2.37087 one -0.338354
-2.641936 missus -0.8575981
-3.516998 rachel -0.12546
-3.818028 lynde -0.1042707
-2.340906 is -0.3560826
-3.818028 surprised -0.1042707
-3.516998 lived -0.1042707
-2.738846 just -0.1932118
-2.840304 where -0.2292094
-1.646302 the -0.4474637
-3.27396 avonlea -0.2011807
-3.516998 main -0.2011807
-3.516998 road -0.1554232
-1.351903 <unk> -0.6196833
-2.888609 down -0.2162444
-2.65666 into -0.4758816
-1.871085 a -0.3990516
-2.914938 little -0.1901853
-3.420088 hollow -0.1554232
-3.818028 fringed -0.4053007
-2.123423 with -0.5081598
-1.607172 and -0.3683338
-3.516998 ladies -0.1042707
-2.394782 by -0.3548096
-3.641936 brook -0.1042707
-2.015254 that -0.4184335
-2.255735 had -0.3810322
-3.039876 its -0.3347196
-3.005114 away -0.1789043
-2.75733 back -0.2444494
-1.803088 in -0.5813921
-3.818028 woods -0.1042707
-1.692547 of -0.539033
-2.97293 old -0.1932118
-3.641936 cuthbert -0.1456634
-2.942967 place -0.3198705
-2.015254 it -0.4816892
-2.073735 was -0.3889101
-1.667272 to -0.549925
-2.600544 be -0.3185
-2.506274 an -0.4564532
-3.641936 earlier -0.1042707
-3.516998 course -0.1364554
-2.97293 through -0.2455999
-3.005114 those -0.1042707
-3.420088 dark -0.2011807
-2.194779 but -0.3690885
-2.863785 time -0.266998
-3.340906 reached -0.1834519
-3.641936 lynde's -0.2292095
-3.420088 quiet -0.1042707
-2.613908 well -0.2803619
-2.062153 for -0.4186646
-2.386664 not -0.2965086
-2.914938 even -0.2207763
-2.721118 could -0.2853253
-3.420088 run -0.2011807
-3.340906 past -0.1622626
-3.27396 door -0.1712175
-2.818028 without -0.3261194
-3.27396 probably -0.1622626
-3.340906 sitting -0.2292095
-2.14593 at -0.4807217
-2.286549 her -0.2837155
-3.420088 window -0.1456634
-3.818028 keeping -0.4053007
-3.818028 sharp -0.1042707
-3.516998 eye -0.1042707
-2.267799 on -0.4844819
-3.119058 everything -0.2011807
-3.340906 passed -0.1042707
-2.411488 from -0.3731158
-3.215968 children -0.1042707
-2.4563 up -0.2872014
-3.516998 helped -0.2292094
-3.818028 school -0.1042707
-3.818028 church -0.1042707
-3.818028 aid -0.1042707
-3.641936 society -0.1042707
-3.818028 foreign -0.1042707
-3.039876 yet -0.1277518
-2.37087 all -0.3245657
-2.420088 this -0.2902327
-3.005114 found -0.22237
-3.641936 sit -0.1042707
-3.420088 hours -0.3473087
-3.818028 kitchen -0.1042707
-3.818028 knitting -0.1042707
-2.174575 she -0.4415127
-3.818028 knitted -0.4053007
-2.65666 them -0.2803619
-2.516997 if -0.4683523
-3.818028 noticed -0.1042707
-3.077665 anything -0.1834519
-3.420088 odd -0.1042707
-2.437816 or -0.2339046
-2.495808 out -0.4374854
-2.641936 would -0.4223341
-2.840304 never -0.1525754
-3.641936 rest -0.1042707
-3.077665 until -0.1390328
-2.485589 there -0.3977476
-2.627696 are -0.2182141
-3.641936 plenty -0.581392
-2.888609 people -0.2090061
-2.485589 who -0.3687839
-2.942967 can -0.2182141
-3.818028 attend -0.4053007
-2.738846 their -0.2463774
-3.340906 business -0.1042707
-3.27396 own -0.1885916
-4.119058 creatures -0.1042707
-3.039876 other -0.1897009
-3.516998 folks -0.1042707
-3.119058 work -0.1042707
-3.039876 always -0.1322994
-3.164815 done -0.1042707
-3.818028 ran -0.1042707
-3.641936 circle -0.1042707
-2.150575 as -0.5148917
-2.506274 were -0.2582476
-2.97293 tell -0.2011807
-3.516998 voices -0.1042707
-3.818028 crossed -0.4053007
-3.818028 steep -0.1042707
-3.215968 red -0.1622626
-3.516998 hill -0.2011807
-3.340906 beyond -0.1834519
-3.641936 orchard -0.1042707
-3.077665 house -0.210726
-3.119058 white -0.2961562
-3.420088 bloom -0.1042707
-2.6719 over -0.3595432
-2.738846 man -0.2661215
-3.516998 whom -0.2011807
-3.516998 called -0.2011807
-3.641936 husband -0.1042707
-2.210573 his -0.3079454
-3.420088 late -0.2011807
-3.641936 turnip -0.581392
-4.119058 seed -0.1042707
-3.641936 field -0.1042707
-3.818028 barn -0.1042707
-3.641936 anybody -0.1042707
-2.942967 went -0.3830243
-3.516998 pass -0.1042707
-2.286549 so -0.3334186
-3.420088 seeing -0.1042707
-3.516998 afternoon -0.2292094
-3.818028 early -0.1042707
-3.818028 june -0.1042707
-4.119058 sun -0.1042707
-3.27396 coming -0.280362
-3.641936 warm -0.1042707
-3.420088 bright -0.5022107
-3.420088 knew -0.1042707
-1.934367 he -0.4850653
-3.516998 ought -0.3261195
-2.840304 because -0.4510582
-3.119058 heard -0.1586284
-2.312878 him -0.4174212
-3.516998 peter -0.2011807
-3.420088 evening -0.1042707
-2.641936 before -0.2803619
-3.818028 store -0.1042707
-4.119058 carmody -0.1042707
-3.818028 meant -0.1042707
-3.340906 next -0.2292095
-3.340906 best -0.2011807
-3.420088 clothes -0.1042707
-2.428862 which -0.3934014
-3.641936 plain -0.2803619
-3.818028 proof -0.1042707
-3.119058 going -0.2503987
-3.818028 buggy -0.1042707
-4.119058 sorrel -0.1042707
-3.641936 mare -0.1042707
-3.641936 distance -0.1042707
-2.704084 now -0.2740218
-2.641936 matthew -0.3841114
-2.840304 why -0.1970248
-2.888609 asked -0.2656387
-2.888609 been -0.2011807
-3.420088 known -0.1042707
-4.119058 information -0.1042707
-2.495808 about -0.2847268
-3.420088 whole -0.1042707
-3.077665 life -0.1322994
-2.704084 here -0.1953512
-3.215968 half -0.1042707
-2.863785 three -0.2368963
-4.119058 busy -0.1042707
-3.039876 day -0.1872449
-3.420088 driving -0.1042707
-3.516998 alive -0.1042707
-2.627696 have -0.272938
-2.942967 go -0.2292094
-3.818028 strangers -0.1042707
-2.600544 any -0.2546566
-2.738846 might -0.4053007
-3.641936 talk -0.1042707
-3.420088 dressed -0.1042707
-3.641936 collar -0.1042707
-2.914938 something -0.2069331
-3.27396 didn't -0.1390328
-3.818028 happen -0.1042707
-3.340906 often -0.1042707
-3.005114 make -0.1960411
-2.796838 nothing -0.2706021
-3.818028 putting -0.1042707
-3.420088 together -0.1834519
-3.215968 given -0.1042707
-3.215968 pretty -0.1914208
-2.796838 good -0.1376945
-3.641936 guess -0.1042707
-3.27396 both -0.1042707
-3.340906 questions -0.1834519
-3.818028 rarely -0.1042707
-3.039876 home -0.2292094
-2.942967 must -0.3135303
-3.818028 unusual -0.1042707
-3.420088 taking -0.1042707
-3.27396 i'll -0.1622626
-3.641936 step -0.1042707
-3.164815 green -0.4564532
-4.119058 gables -0.1042707
-2.738846 after -0.2503987
-3.818028 tea -0.1042707
-3.516998 find -0.2011807
-2.888609 marilla -0.2618785
-3.215968 he's -0.1042707
-3.077665 gone -0.1456634
-3.420088 worthy -0.2503987
-3.215968 woman -0.1664186
-3.641936 finally -0.1042707
-3.516998 concluded -0.2011807
-3.818028 generally -0.1042707
-3.641936 town -0.1042707
-3.420088 year -0.280362
-3.818028 visits -0.1042707
-3.641936 he'd -0.1042707
-3.516998 wouldn't -0.1042707
-3.215968 dress -0.1042707
-3.164815 take -0.2639716
-2.687694 more -0.3368433
-3.641936 big -0.2011807
-3.818028 quarter -0.1042707
-3.340906 sure -0.2011807
-3.27396 long -0.1712175
-3.641936 lane -0.2292094
-2.704084 made -0.2681275
-4.119058 deal -0.1042707
-3.164815 further -0.1500282
-3.27396 father -0.1914209
-3.516998 silent -0.1042707
-3.516998 son -0.1042707
-3.641936 happened -0.1042707
-3.077665 since -0.2182141
-2.888609 last -0.2717618
-3.164815 night -0.1679398
-2.914938 off -0.1872449
-2.738846 i'm -0.3431528
-3.641936 clean -0.1042707
-3.164815 that's -0.2591727
-2.420088 what -0.3223265
-1.901574 i -0.5459998
-3.27396 won't -0.2011807
-3.164815 know -0.2248446
-3.818028 peace -0.1042707
-3.039876 mind -0.210726
-3.641936 conscience -0.1042707
-2.840304 has -0.2639716
-3.27396 taken -0.1554232
-3.420088 today -0.1042707
-3.164815 set -0.1042707
-3.215968 far -0.2182141
-3.818028 barely -0.4053007
-3.119058 along -0.3151241
-3.818028 houses -0.1042707
-2.6719 did -0.4053007
-3.516998 call -0.1042707
-3.164815 living -0.1554232
-2.97293 such -0.4053007
-2.942967 it's -0.1748518
-2.261725 said -0.4746273
-3.516998 stepped -0.1042707
-3.420088 deep -0.1834519
-3.039876 got -0.2011807
-3.818028 possibly -0.1042707
-3.516998 fellow -0.1042707
-2.888609 men -0.159788
-3.641936 actually -0.280362
-2.420088 when -0.4495044
-4.119058 built -0.1042707
-3.818028 edge -0.4053007
-3.818028 cleared -0.1042707
-3.516998 land -0.1042707
-3.27396 wild -0.3083907
-3.340906 rose -0.280362
-3.818028 bushes -0.1042707
-2.37087 no -0.3144933
-3.340906 wonder -0.1712175
-3.005114 themselves -0.280362
-3.641936 trees -0.1042707
-2.942967 much -0.1649685
-3.27396 company -0.1042707
-3.215968 though -0.1554232
-3.516998 dear -0.1042707
-3.641936 knows -0.1042707
-2.4563 they -0.3615917
-3.077665 enough -0.2182141
-3.340906 i'd -0.1042707
-3.005114 look -0.2961562
-3.516998 side -0.1042707
-3.27396 great -0.2803619
-4.119058 stray -0.1042707
-3.516998 stick -0.1042707
-3.119058 nor -0.183452
-3.641936 stone -0.1042707
-3.420088 seen -0.1042707
-4.119058 opinion -0.1042707
-3.818028 swept -0.1042707
-3.516998 yard -0.1042707
-3.516998 seem -0.2292094
-2.527993 then -0.3315145
-3.818028 suppose -0.1042707
-3.641936 they're -0.1042707
-3.340906 used -0.4053007
-3.340906 body -0.1042707
-3.039876 get -0.1885916
-3.119058 being -0.3151241
-2.75733 very -0.2090061
-3.818028 neat -0.1042707
-3.818028 precise -0.1042707
-3.516998 ground -0.1042707
-2.627696 do -0.3261194
-3.818028 cheerful -0.1042707
-3.818028 apartment -0.1042707
-3.641936 whence -0.1042707
-2.127832 you -0.3868173
-3.641936 cherry -0.4053007
-2.97293 left -0.2899073
-4.119058 nodding -0.1042707
-3.818028 birches -0.1042707
-3.516998 sat -0.1712175
-3.818028 slightly -0.1042707
-3.119058 give -0.2069331
-3.516998 appearance -0.1042707
-2.97293 looked -0.266998
-3.818028 east -0.1042707
-3.641936 west -0.1042707
-3.119058 looking -0.3005653
-2.796838 came -0.2717617
-3.516998 behind -0.1042707
-3.420088 laid -0.1042707
-4.119058 supper -0.1042707
-3.818028 fairly -0.1042707
-3.641936 closed -0.1042707
-3.215968 getting -0.2134152
-3.818028 mystery -0.1042707
-3.818028 real -0.1042707
-3.516998 fine -0.1042707
-3.077665 isn't -0.3151241
-3.641936 expecting -0.1042707
-2.704084 some -0.1976924
-3.818028 dishes -0.1042707
-2.6719 only -0.220066
-3.818028 apple -0.1042707
-3.818028 preserves -0.1042707
-3.420088 kind -0.5022107
-3.340906 expected -0.1834519
-3.818028 particular -0.1042707
-2.818028 how -0.1534887
-2.587579 your -0.2121761
-3.340906 name -0.1042707
-3.641936 existed -0.1042707
-3.164815 between -0.1834519
-4.119058 spite -0.1042707
-3.215968 perhaps -0.1042707
-3.641936 lips -0.1042707
-3.27396 sight -0.2292095
-2.942967 too -0.1586284
-3.420088 curiosity -0.2011807
-3.005114 oh -0.2011807
-3.215968 quite -0.2292094
-3.420088 although -0.1042707
-3.516998 bad -0.1042707
-3.420088 yesterday -0.1042707
-3.340906 thin -0.1042707
-3.340906 hair -0.1712175
-3.641936 showed -0.1042707
-3.420088 gray -0.1042707
-3.27396 hard -0.3473088
-2.738846 two -0.3083907
-3.818028 stuck -0.1042707
-2.687694 like -0.2389692
-3.641936 narrow -0.581392
-3.420088 mouth -0.2292094
-2.914938 ever -0.1834519
-3.818028 developed -0.1042707
-3.818028 considered -0.1042707
-3.641936 sense -0.1042707
-3.641936 we're -0.1042707
-3.340906 afraid -0.1712175
-4.119058 weren't -0.1042707
-3.039876 saw -0.2057283
-2.97293 thought -0.2555384
-3.340906 maybe -0.2292095
-3.641936 river -0.1622626
-3.164815 boy -0.1364554
-3.516998 orphan -0.2011807
-3.641936 asylum -0.1042707
-3.641936 nova -0.581392
-4.119058 scotia -0.1042707
-3.641936 train -0.1622626
-4.119058 tonight -0.1042707
-3.641936 meet -0.1042707
-3.818028 kangaroo -0.1042707
-2.97293 five -0.4053007
-3.516998 making -0.1042707
-3.420088 fun -0.3261195
-3.340906 almost -0.1622626
-3.420088 forced -0.2011807
-3.818028 earnest -0.1042707
-3.641936 demanded -0.1042707
-3.215968 voice -0.2011807
-3.215968 returned -0.1622626
-2.914938 yes -0.2292094
-3.641936 boys -0.1042707
-3.340906 part -0.581392
-3.641936 usual -0.1042707
-3.818028 spring -0.1042707
-3.641936 farm -0.1042707
-3.420088 instead -0.8032407
-3.215968 felt -0.1914209
-3.641936 received -0.1042707
-3.516998 mental -0.4053007
-3.516998 exclamation -0.2292094
-4.119058 alexander -0.1042707
-3.818028 spencer -0.1042707
-3.27396 girl -0.1885916
-4.119058 hopeton -0.1042707
-3.641936 adopting -0.2803619
-3.641936 world -0.1456634
-3.27396 certainly -0.1554232
-3.516998 turning -0.1042707
-3.516998 earth -0.1622626
-2.97293 put -0.2933269
-3.340906 head -0.1042707
-3.516998 advice -0.1042707
-3.641936 thinking -0.1042707
-3.420088 winter -0.1042707
-3.420088 fact -0.1500282
-3.164815 there's -0.2134152
-3.641936 stupid -0.1042707
-3.641936 grown -0.2803619
-3.641936 french -0.1042707
-3.215968 soon -0.2591726
-3.516998 broke -0.2292095
-4.119058 states -0.1042707
-3.077665 first -0.2389693
-3.818028 flat -0.1042707
-2.914938 may -0.363908
-3.077665 right -0.1664186
-3.340906 saying -0.1042707
-3.818028 london -0.1042707
-3.340906 street -0.1712175
-2.394782 me -0.3595432
-3.420088 born -0.2292095
-3.818028 least -0.183452
-3.818028 risk -0.1042707
-3.516998 matter -0.1042707
-2.550856 we -0.2677728
-3.340906 feel -0.3473088
-2.403054 my -0.2679172
-3.27396 sleep -0.1768214
-3.641936 nights -0.1042707
-3.818028 talked -0.1042707
-3.516998 years -0.1042707
-3.818028 sixty -0.1042707
-3.215968 once -0.1390328
-3.340906 heart -0.1456634
-3.818028 help -0.1042707
-3.420088 use -0.1834519
-3.420088 doing -0.2011807
-3.164815 young -0.2011807
-3.641936 proper -0.1042707
-3.516998 mean -0.2591726
-3.818028 mail -0.1042707
-3.164815 brought -0.1042707
-3.818028 station -0.1042707
-3.818028 thirty -0.1042707
-2.6719 will -0.2847267
-3.27396 herself -0.1042707
-3.641936 speaking -0.1042707
-3.641936 proceeded -0.1042707
-3.641936 speak -0.1042707
-3.215968 having -0.1554232
-3.641936 attitude -0.1042707
-3.818028 amazing -0.1042707
-3.641936 piece -0.2803619
-3.641936 news -0.2011807
-3.641936 end -0.1042707
-3.420088 decided -0.2803619
-3.516998 ask -0.1042707
-3.641936 pick -0.1042707
-2.863785 us -0.1575162
-3.641936 week -0.1042707
-3.420088 sent -0.3261194
-3.420088 word -0.1712175
-3.641936 bring -0.1042707
-3.641936 likely -0.1042707
-3.516998 ten -0.1042707
-3.641936 eleven -0.1042707
-3.818028 age -0.1042707
-3.340906 turn -0.2503987
-3.818028 read -0.1042707
-3.641936 paper -0.1042707
-3.516998 wife -0.1042707
-3.641936 island -0.1042707
-3.164815 took -0.1768214
-3.420088 fire -0.1712175
-3.818028 purpose -0.1042707
-3.340906 nearly -0.5813919
-3.077665 think -0.2618785
-3.420088 you're -0.1042707
-3.818028 foolish -0.1042707
-3.077665 thing -0.2389692
-2.914938 don't -0.3026383
-3.119058 strange -0.1042707
-3.077665 child -0.1554232
-4.119058 single -0.1042707
-3.641936 sort -0.581392
-3.516998 parents -0.1042707
-2.97293 another -0.1664186
-3.641936 case -0.1042707
-3.420088 couldn't -0.2011807
-3.818028 sake -0.1042707
-3.215968 seemed -0.4466933
-3.818028 neither -0.1042707
-3.818028 deny -0.1042707
-2.97293 say -0.1872449
-2.888609 i've -0.2803619
-3.005114 myself -0.1342339
-3.818028 terrible -0.1042707
-2.97293 see -0.2591726
-3.039876 gave -0.2134152
-3.818028 close -0.1042707
-3.641936 england -0.1042707
-3.516998 can't -0.1042707
-3.516998 different -0.1042707
-3.641936 ourselves -0.1042707
-3.516998 hope -0.1042707
-3.818028 tone -0.2803619
-3.818028 painful -0.1042707
-3.641936 doubts -0.1042707
-3.164815 does -0.2011807
-3.818028 duty -0.1042707
-4.119058 risks -0.1042707
-3.420088 near -0.2011807
-3.641936 people's -0.1042707
-3.818028 comes -0.1042707
-3.818028 wells -0.1042707
-3.818028 dreaded -0.1042707
-3.818028 dream -0.1042707
-3.818028 warn -0.4053007
-3.039876 new -0.4722474
-3.340906 family -0.280362
-3.641936 died -0.1042707
-3.641936 liked -0.1042707
-3.340906 stay -0.1042707
-3.818028 arrival -0.1042707
-4.119058 sensation -0.1042707
-3.641936 second -0.1042707
-3.420088 none -0.1042707
-3.164815 really -0.1042707
-3.818028 sorry -0.2803619
-2.942967 poor -0.2292095
-3.420088 mistake -0.2011807
-3.641936 expect -0.280362
-3.818028 grandfather -0.1042707
-3.641936 seems -0.2292094
-3.818028 somehow -0.1042707
-3.215968 believe -0.1500282
-3.818028 loved -0.1042707
-3.516998 somewhat -0.1042707
-3.818028 relief -0.1042707
-4.119058 latter -0.1042707
-3.215968 under -0.5302395
-3.516998 influence -0.1042707
-3.077665 things -0.1042707
-4.119058 safely -0.1042707
-3.516998 hung -0.1042707
-3.420088 air -0.1554232
-3.420088 sweet -0.1042707
-3.27396 breath -0.2591726
-3.27396 many -0.2292094
-3.818028 purple -0.1042707
-3.164815 while -0.3383539
-3.818028 summer -0.1042707
-3.641936 pity -0.1042707
-3.516998 eight -0.2292094
-3.818028 miles -0.1042707
-2.704084 again -0.2726751
-3.641936 bit -0.1834519
-3.641936 wood -0.1042707
-3.818028 drive -0.1042707
-3.641936 uncomfortable -0.1042707
-3.340906 feeling -0.1042707
-3.641936 laughing -0.2803619
-3.641936 personage -0.1042707
-3.641936 figure -0.1042707
-3.641936 iron -0.1042707
-3.818028 touched -0.2803619
-3.818028 stooping -0.1042707
-3.818028 shoulders -0.4053007
-3.818028 enjoyed -0.1042707
-3.818028 fashion -0.1042707
-3.420088 except -0.1042707
-3.340906 during -0.280362
-3.641936 met -0.1042707
-3.215968 women -0.1042707
-4.119058 nod -0.1042707
-3.215968 prince -0.1470227
-4.119058 edward -0.1042707
-3.039876 whether -0.2182141
-3.164815 full -0.1500282
-3.641936 soft -0.1042707
-3.340906 brown -0.4053007
-3.641936 worn -0.1042707
-3.215968 twenty -0.1622626
-3.818028 lacking -0.1042707
-3.516998 sign -0.2292094
-3.818028 tied -0.1042707
-3.516998 horse -0.1042707
-3.516998 small -0.1042707
-3.818028 hotel -0.1042707
-3.818028 platform -0.1042707
-3.818028 creature -0.1042707
-3.818028 shingles -0.1042707
-4.119058 extreme -0.1042707
-3.818028 quickly -0.1042707
-3.27396 possible -0.2292094
-3.641936 hardly -0.2292094
-3.641936 failed -0.581392
-3.516998 notice -0.2292095
-3.641936 expression -0.1042707
-3.340906 waiting -0.2803619
-3.818028 somebody -0.1042707
-3.818028 encountered -0.1042707
-4.119058 stationmaster -0.1042707
-3.641936 office -0.1042707
-3.516998 hour -0.1042707
-3.641936 ago -0.1042707
-2.888609 answered -0.2618786
-3.818028 brisk -0.1042707
-3.641936 dropped -0.1042707
-3.641936 she's -0.1042707
-3.005114 room -0.2355496
-3.641936 preferred -0.1042707
-3.516998 outside -0.1042707
-3.818028 charge -0.1042707
-3.641936 sister -0.1042707
-3.340906 presently -0.1042707
-3.641936 haven't -0.1042707
-3.420088 orphans -0.1042707
-3.818028 concealed -0.1042707
-3.340906 should -0.2425734
-2.888609 come -0.2503987
-3.420088 understand -0.1622626
-2.97293 hand -0.2162444
-3.818028 situation -0.1042707
-3.077665 better -0.1456634
-2.97293 question -0.1834519
-3.516998 master -0.1042707
-3.641936 carelessly -0.1042707
-3.641936 dare -0.1042707
-3.516998 able -0.7063307
-4.119058 explain -0.1042707
-3.641936 tongue -0.1042707
-3.641936 certain -0.1042707
-3.516998 wanted -0.1042707
-3.420088 walked -0.1712175
-3.818028 unfortunate -0.1042707
-4.119058 harder -0.1042707
-3.039876 than -0.2134151
-3.516998 walk -0.2292095
-3.641936 demand -0.1042707
-3.641936 wasn't -0.2292094
-3.641936 groaned -0.1042707
-3.641936 spirit -0.1042707
-3.27396 turned -0.1042707
-3.641936 gently -0.1042707
-3.119058 towards -0.3261194
-3.641936 watching -0.2292094
-3.077665 eyes -0.2182141
-3.340906 short -0.1042707
-3.641936 wincey -0.1042707
-3.818028 wore -0.1042707
-3.420088 hat -0.2011807
-3.641936 beneath -0.2292094
-3.818028 extending -0.1042707
-3.641936 thick -0.1042707
-3.641936 decidedly -0.1042707
-3.119058 face -0.1456634
-3.340906 also -0.1712175
-3.818028 freckled -0.1042707
-3.641936 large -0.280362
-3.516998 lights -0.2292095
-3.516998 others -0.2425734
-3.818028 observer -0.1042707
-3.818028 extraordinary -0.2803619
-3.818028 chin -0.1042707
-3.818028 pointed -0.1042707
-3.818028 pronounced -0.1042707
-4.119058 forehead -0.1042707
-3.818028 broad -0.1042707
-2.840304 our -0.1799914
-3.420088 however -0.1042707
-3.641936 ordeal -0.1042707
-3.340906 stood -0.183452
-4.119058 handle -0.1042707
-3.818028 fashioned -0.1042707
-3.641936 carpet -0.2803619
-3.818028 bag -0.2803619
-3.340906 held -0.1042707
-3.641936 mister -0.2803619
-3.641936 clear -0.1042707
-3.420088 glad -0.2292094
-3.818028 beginning -0.4053007
-3.641936 lovely -0.1042707
-3.641936 tree -0.2292094
-3.340906 imagine -0.1914208
-3.818028 carry -0.1042707
-3.818028 responded -0.1042707
-3.215968 let -0.3261195
-3.340906 heavy -0.2292094
-3.818028 carried -0.1042707
-3.039876 way -0.2355496
-3.119058 keep -0.2961562
-3.641936 exact -0.2803619
-3.818028 extremely -0.1042707
-3.641936 you've -0.1042707
-3.641936 nice -0.1042707
-3.164815 love -0.1042707
-3.420088 wonderful -0.2011807
-3.516998 live -0.1042707
-3.641936 belong -0.581392
-3.818028 worst -0.1042707
-3.340906 four -0.1042707
-3.818028 months -0.1042707
-3.516998 worse -0.1042707
-3.818028 scope -0.4053007
-3.641936 imagination -0.1042707
-3.641936 interesting -0.1042707
-3.818028 companion -0.1042707
-3.420088 stopped -0.1042707
-3.420088 talking -0.1042707
-3.818028 partly -0.4053007
-3.818028 stolen -0.1042707
-3.818028 nurse -0.1042707
-3.641936 confess -0.1042707
-3.516998 lie -0.1042707
-3.641936 awake -0.1042707
-3.641936 am -0.1290943
-3.818028 bones -0.1042707
-4.119058 bride -0.1042707
-3.164815 want -0.4053007
-3.818028 marry -0.1042707
-3.641936 unless -0.1042707
-4.119058 missionary -0.1042707
-3.818028 soil -0.1042707
-3.27396 several -0.1712175
-3.420088 feet -0.1042707
-3.27396 above -0.2503987
-3.818028 heads -0.1042707
-3.340906 against -0.4053007
-3.215968 beautiful -0.1042707
-3.818028 leaning -0.1042707
-3.818028 bank -0.1042707
-4.119058 dunno -0.1042707
-3.818028 veil -0.1042707
-3.27396 shall -0.1712175
-3.818028 remember -0.1042707
-3.818028 forward -0.1042707
-3.164815 rather -0.2803619
-3.641936 everybody -0.1042707
-3.818028 imagined -0.1042707
-3.215968 most -0.2292094
-3.818028 pale -0.1042707
-3.641936 blue -0.1042707
-3.420088 worth -0.280362
-3.215968 morning -0.1420593
-3.818028 ashamed -0.1042707
-3.818028 wear -0.1042707
-3.215968 hundred -0.3473087
-4.119058 yards -0.1042707
-4.119058 lot -0.1042707
-3.119058 already -0.1712175
-3.340906 hadn't -0.1042707
-3.818028 sick -0.1042707
-3.340906 fall -0.280362
-3.516998 kept -0.1042707
-4.119058 mercy -0.1042707
-3.641936 boat -0.1712175
-3.818028 flowers -0.1042707
-3.641936 watch -0.1042707
-3.818028 gloves -0.1042707
-3.818028 boots -0.1042707
-3.818028 telling -0.4053007
-3.818028 stop -0.1042707
-3.641936 difficult -0.1042707
-3.27396 thousand -0.3473088
-3.818028 roads -0.1042707
-3.641936 delightful -0.1042707
-3.641936 true -0.1042707
-3.215968 began -0.2591727
-3.641936 flash -0.1042707
-4.119058 intelligence -0.1042707
-2.97293 himself -0.1712175
-3.818028 girls -0.1042707
-3.641936 ventured -0.581392
-4.119058 bred -0.1042707
-3.420088 gentleman -0.2803619
-3.164815 black -0.2425734
-3.818028 smiling -0.1042707
-3.818028 extended -0.1042707
-3.641936 realized -0.1042707
-3.420088 wished -0.1834519
-3.818028 accepted -0.1042707
-3.818028 pressed -0.1042707
-3.215968 mine -0.280362
-3.818028 approached -0.1042707
-3.641936 city -0.1042707
-3.516998 later -0.1042707
-3.818028 astir -0.1042707
-3.340906 moment -0.1500282
-3.818028 silently -0.1042707
-3.340906 each -0.280362
-3.818028 guide -0.1042707
-3.818028 worship -0.1042707
-3.641936 priest -0.2292094
-3.641936 gods -0.1042707
-3.818028 breast -0.1042707
-4.119058 idol -0.1042707
-3.516998 whispered -0.2011807
-3.641936 surprise -0.1042707
-3.818028 low -0.1042707
-3.005114 light -0.1586284
-3.818028 created -0.1042707
-3.818028 religion -0.1042707
-3.516998 divine -0.1042707
-3.420088 god -0.2292094
-3.641936 fault -0.1042707
-3.818028 interrupted -0.1042707
-3.818028 knowing -0.1042707
-3.340906 answer -0.2292094
-3.420088 doubt -0.1042707
-3.641936 homer -0.1042707
-3.215968 told -0.2134152
-3.641936 presence -0.2803619
-3.818028 concerning -0.4053007
-3.340906 apollo -0.1834519
-3.641936 forget -0.1042707
-3.818028 suggestion -0.1042707
-3.818028 number -0.1042707
-3.818028 various -0.1042707
-3.818028 meaning -0.1042707
-3.641936 aside -0.280362
-3.818028 anniversary -0.4053007
-3.818028 birthday -0.1042707
-3.039876 jesus -0.1664186
-3.516998 toward -0.4053007
-3.420088 search -0.1042707
-4.119058 universe -0.1042707
-3.516998 person -0.1042707
-3.818028 touch -0.1042707
-3.818028 inhale -0.1042707
-3.818028 golden -0.1042707
-3.641936 hear -0.1834519
-3.818028 music -0.1042707
-3.420088 faith -0.2011807
-3.420088 filled -0.2011807
-3.818028 determined -0.1042707
-3.420088 truth -0.1042707
-3.641936 moral -0.581392
-3.516998 open -0.1042707
-3.818028 discussion -0.4053007
-3.818028 subject -0.1042707
-3.818028 deliver -0.1042707
-3.340906 either -0.1042707
-3.818028 directly -0.1042707
-3.818028 free -0.1042707
-3.420088 tears -0.1042707
-3.641936 freedom -0.1042707
-3.818028 jail -0.1042707
-3.818028 building -0.1042707
-3.215968 count -0.1420593
-3.818028 social -0.1042707
-3.818028 conquered -0.1042707
-3.516998 reward -0.1042707
-3.641936 wish -0.2803619
-3.818028 courage -0.2803619
-3.818028 industry -0.1042707
-4.119058 neighbor -0.1042707
-3.641936 searching -0.1042707
-3.818028 wetting -0.4053007
-3.818028 page -0.1042707
-3.818028 pushing -0.1042707
-3.641936 quest -0.1042707
-3.818028 loves -0.1042707
-3.641936 ease -0.1042707
-3.818028 calling -0.1042707
-3.818028 envy -0.1042707
-3.818028 myth -0.1042707
-3.641936 explanation -0.1042707
-3.818028 knowledge -0.1042707
-3.641936 desire -0.581392
-3.818028 replaced -0.1042707
-3.818028 mythus -0.1042707
-3.516998 science -0.3261194
-3.818028 realization -0.1042707
-3.516998 less -0.4053007
-3.641936 restless -0.1042707
-3.818028 fill -0.1042707
-3.818028 space -0.1042707
-3.818028 fairies -0.1042707
-3.818028 invisible -0.1042707
-3.818028 beings -0.1042707
-3.641936 moon -0.1042707
-3.818028 begin -0.1042707
-3.818028 firm -0.1042707
-3.818028 entirely -0.1042707
-3.27396 hands -0.2134152
-3.420088 evidence -0.1712175
-3.818028 observed -0.1042707
-4.119058 christian -0.1042707
-3.516998 times -0.1042707
-3.516998 appear -0.4053007
-3.818028 ignorant -0.1042707
-3.164815 whose -0.2134152
-3.340906 millions -0.1664186
-3.039876 money -0.1622626
-3.818028 service -0.1042707
-3.641936 says -0.1042707
-4.119058 escape -0.1042707
-3.340906 evil -0.1042707
-4.119058 herod -0.1042707
-3.818028 mary -0.1042707
-4.119058 infant -0.1042707
-3.818028 fled -0.1042707
-3.818028 egypt -0.1042707
-3.818028 hurried -0.1042707
-4.119058 important -0.1042707
-4.119058 greater -0.1042707
-3.818028 friday -0.1042707
-4.119058 equinox -0.1042707
-3.420088 thus -0.1042707
-2.863785 upon -0.3675121
-3.420088 position -0.1042707
-3.818028 easter -0.1042707
-3.818028 object -0.1042707
-3.818028 origin -0.1042707
-3.818028 following -0.1042707
-3.818028 john -0.1042707
-3.818028 judas -0.1042707
-3.818028 mythical -0.1042707
-3.516998 rome -0.2011807
-3.818028 note -0.1042707
-3.641936 impossible -0.2803619
-3.641936 decide -0.1042707
-3.818028 numerous -0.1042707
-3.215968 else -0.1042707
-3.818028 unanimous -0.1042707
-3.27396 silence -0.1712175
-3.641936 sword -0.1042707
-3.818028 hereafter -0.1042707
-4.119058 government -0.1042707
-3.641936 courtiers -0.1042707
-3.641936 attention -0.2292094
-3.516998 self -0.2292094
-2.776635 these -0.2899073
-4.119058 claims -0.1042707
-3.641936 produced -0.1042707
-3.818028 moreover -0.1042707
-3.818028 promise -0.1042707
-3.818028 mothers -0.1042707
-3.818028 insanity -0.1042707
-3.516998 wrong -0.2292094
-3.641936 prayers -0.1042707
-3.818028 caused -0.4053007
-3.818028 ye -0.1042707
-4.119058 same -0.1042707
-3.420088 words -0.1042707
-4.119058 length -0.1042707
-3.641936 effort -0.280362
-3.641936 poverty -0.1042707
-3.818028 theirs -0.1042707
-3.818028 animal -0.1042707
-3.818028 sleeping -0.1042707
-3.641936 car -0.1834519
-3.818028 wide -0.1042707
-3.818028 berth -0.1042707
-3.818028 unattached -0.1042707
-3.420088 lady -0.1834519
-3.641936 balance -0.1042707
-3.641936 book -0.1042707
-3.164815 lost -0.1554232
-3.641936 cash -0.1042707
-3.818028 gait -0.1042707
-3.818028 brilliant -0.1042707
-3.641936 game -0.2803619
-3.818028 receives -0.1042707
-3.641936 bat -0.2803619
-3.818028 ball -0.1042707
-3.818028 takes -0.1042707
-3.818028 high -0.1042707
-3.818028 department -0.1042707
-3.818028 fight -0.1042707
-3.420088 foot -0.1042707
-3.818028 gain -0.1042707
-3.641936 birth -0.1042707
-3.641936 discovered -0.2803619
-3.641936 higher -0.1042707
-4.119058 sand -0.1042707
-3.420088 water -0.1244741
-3.516998 covered -0.2292094
-3.420088 heaven -0.1042707
-3.340906 around -0.1834519
-3.818028 married -0.1042707
-3.818028 female -0.1042707
-3.641936 lower -0.1042707
-3.818028 figures -0.1042707
-3.641936 picture -0.1042707
-3.641936 useful -0.1042707
-3.818028 product -0.4053007
-3.27396 dead -0.1622626
-3.818028 form -0.1042707
-3.641936 paying -0.1042707
-3.641936 board -0.1042707
-3.818028 bills -0.1042707
-4.119058 complaint -0.1042707
-3.818028 mistaken -0.1042707
-4.119058 whereby -0.1042707
-3.818028 color -0.1042707
-3.818028 blush -0.1042707
-3.818028 sensorium -0.1042707
-3.641936 shame -0.1042707
-3.641936 anger -0.1042707
-3.641936 cause -0.1042707
-3.818028 bone -0.1042707
-3.818028 price -0.4053007
-3.420088 trouble -0.1042707
-3.516998 human -0.1042707
-3.420088 sarah -0.5022107
-3.818028 bower -0.1042707
-4.119058 shady -0.1042707
-4.119058 retreat -0.1042707
-3.641936 general -0.1042707
-4.119058 york -0.1042707
-4.119058 security -0.1042707
-3.818028 brain -0.2803619
-3.818028 furnished -0.1042707
-3.641936 heat -0.1042707
-3.818028 hot -0.4053007
-3.516998 cold -0.1042707
-3.818028 desired -0.1042707
-3.818028 inside -0.1042707
-3.641936 holding -0.1042707
-3.516998 crowd -0.1042707
-3.818028 occupied -0.1042707
-3.818028 intellect -0.1042707
-3.641936 thoughts -0.1042707
-3.516998 friends -0.1042707
-3.818028 wall -0.1042707
-3.818028 finds -0.1042707
-3.818028 match -0.1042707
-3.818028 brevity -0.1042707
-3.818028 injured -0.1042707
-4.119058 fourth -0.1042707
-3.818028 expressing -0.1042707
-3.516998 condition -0.2292094
-3.818028 bent -0.1042707
-3.516998 fallen -0.2011807
-3.818028 tough -0.1042707
-3.516998 daylight -0.1042707
-3.818028 neighborhood -0.1042707
-3.641936 country -0.2011807
-3.340906 round -0.1042707
-3.818028 carefully -0.4053007
-3.818028 trace -0.1042707
-3.818028 missing -0.1042707
-3.420088 savareen -0.1042707
-3.641936 lord -0.1042707
-4.119058 vain -0.1042707
-3.641936 lapierre -0.1042707
-3.818028 according -0.4053007
-3.641936 arrived -0.1042707
-3.818028 couch -0.1042707
-3.818028 broken -0.1042707
-3.818028 disturbed -0.1042707
-3.340906 squire -0.2292094
-4.119058 harrington -0.1042707
-3.818028 inquiries -0.1042707
-3.516998 story -0.1042707
-3.818028 jonathan -0.1042707
-3.818028 perry -0.1042707
-4.119058 fix -0.1042707
-3.340906 started -0.1042707
-4.119058 ridden -0.1042707
-3.818028 theory -0.1042707
-3.818028 likewise -0.1042707
-3.818028 learned -0.1042707
-3.420088 man's -0.1042707
-4.119058 previous -0.1042707
-3.818028 disappeared -0.1042707
-3.516998 manner -0.1042707
-3.420088 leave -0.1042707
-3.818028 literally -0.1042707
-3.818028 professed -0.1042707
-3.818028 longer -0.1042707
-3.818028 interview -0.1042707
-3.516998 conversation -0.1042707
-3.420088 o'clock -0.1042707
-3.516998 within -0.1042707
-3.818028 minutes -0.2803619
-3.818028 afterwards -0.1042707
-3.641936 deposited -0.1042707
-4.119058 interior -0.1042707
-3.516998 coat -0.1042707
-3.818028 party -0.1042707
-4.119058 noon -0.1042707
-3.420088 quietly -0.2011807
-3.818028 damp -0.1042707
-3.818028 swamp -0.1042707
-3.818028 rear -0.4053007
-3.818028 wholly -0.1042707
-3.641936 spent -0.1042707
-3.641936 neck -0.1042707
-3.818028 saddle -0.1042707
-3.641936 apparently -0.1042707
-3.818028 disappearance -0.4053007
-3.641936 whatever -0.2803619
-3.641936 wet -0.1042707
-3.641936 mud -0.1042707
-3.818028 disappointed -0.1042707
-3.818028 traces -0.4053007
-3.818028 footsteps -0.1042707
-3.818028 character -0.1042707
-3.340906 care -0.1042707
-3.818028 local -0.1042707
-3.818028 distinctly -0.1042707
-3.641936 remembered -0.1042707
-3.641936 top -0.2292095
-3.420088 days -0.1712175
-3.818028 especially -0.1042707
-3.641936 throw -0.1042707
-4.119058 fate -0.1042707
-3.818028 personal -0.1042707
-3.27396 every -0.2011807
-3.818028 bar -0.1042707
-3.27396 doctor -0.2292094
-4.119058 coroner -0.1042707
-3.818028 proved -0.1042707
-3.818028 public -0.1042707
-3.818028 meeting -0.1042707
-3.818028 funds -0.1042707
-2.840304 still -0.1679398
-3.641936 fence -0.1042707
-3.641936 corner -0.1042707
-4.119058 district -0.1042707
-3.641936 forth -0.2011807
-3.818028 facts -0.1042707
-3.818028 newspapers -0.1042707
-3.641936 merely -0.1042707
-3.818028 unconsciously -0.1042707
-3.818028 seven -0.1042707
-3.818028 courtyard -0.1042707
-2.539274 bobby -0.2899073
-3.215968 bed -0.1456634
-3.516998 lay -0.1042707
-3.516998 graham's -0.1042707
-3.641936 remained -0.1042707
-3.818028 learn -0.1042707
-3.641936 paredes's -0.1042707
-3.818028 dreamed -0.4053007
-3.641936 weariness -0.1042707
-3.641936 reflections -0.1042707
-3.516998 slept -0.1042707
-3.818028 lake -0.1042707
-3.818028 movement -0.1042707
-3.164815 became -0.2591727
-3.641936 chief -0.1042707
-3.818028 harsh -0.1042707
-3.818028 raised -0.1042707
-3.420088 glanced -0.2011807
-3.818028 fellows -0.1042707
-3.420088 across -0.3261194
-3.818028 telephoned -0.1042707
-3.818028 katherine -0.1042707
-3.818028 landscape -0.1042707
-4.119058 underbrush -0.1042707
-2.796838 graham -0.2503987
-3.818028 wearily -0.1042707
-3.818028 grave -0.1042707
-4.119058 cemetery -0.1042707
-3.818028 prepare -0.1042707
-3.641936 silas -0.2803619
-4.119058 blackburn -0.1042707
-3.641936 stand -0.1042707
-3.420088 dull -0.3261195
-3.641936 repeated -0.2803619
-3.818028 buried -0.1042707
-3.818028 softly -0.1042707
-3.818028 smiled -0.1042707
-3.641936 walking -0.1042707
-3.818028 maria -0.1042707
-3.641936 persisted -0.1042707
-3.818028 breakfast -0.1042707
-3.516998 sprang -0.1042707
-3.818028 urged -0.1042707
-4.119058 eat -0.1042707
-3.420088 tried -0.3261195
-3.818028 handed -0.1042707
-3.420088 robinson -0.1042707
-3.641936 court -0.1042707
-3.818028 wandering -0.1042707
-3.516998 easy -0.4053007
-3.818028 uncommunicative -0.1042707
-3.27396 appeared -0.1712175
-3.818028 pleasantly -0.1042707
-3.818028 clothing -0.1042707
-3.641936 spoke -0.1042707
-3.340906 rawlins -0.1042707
-3.818028 smithtown -0.1042707
-3.818028 minister -0.1042707
-3.818028 entrance -0.4053007
-3.818028 front -0.1042707
-3.818028 bell -0.1042707
-3.641936 jenkins -0.1042707
-3.641936 direction -0.1042707
-3.516998 drawn -0.2292094
-3.641936 rise -0.1042707
-3.516998 moved -0.3261195
-3.164815 entered -0.3261195
-3.818028 faced -0.1042707
-3.215968 suddenly -0.2292095
-3.818028 miss -0.1042707
-3.641936 glance -0.2803619
-3.818028 wants -0.4053007
-3.516998 paid -0.1042707
-3.420088 rushed -0.1042707
-4.119058 courthouse -0.1042707
-3.420088 pay -0.1834519
-3.818028 thanks -0.1042707
-3.818028 fail -0.1042707
-3.641936 bobby's -0.1042707
-3.818028 expressed -0.1042707
-3.641936 promised -0.581392
-3.641936 necessary -0.1042707
-4.119058 panamanian -0.1042707
-3.420088 return -0.2011807
-4.119058 cedars -0.1042707
-3.818028 compelled -0.1042707
-3.641936 remain -0.1042707
-3.516998 present -0.1834519
-3.818028 mournful -0.1042707
-3.516998 therefore -0.1042707
-3.818028 crush -0.1042707
-3.516998 sum -0.2292095
-3.641936 grasp -0.1042707
-3.818028 support -0.1042707
-3.420088 virtue -0.1042707
-3.516998 ill -0.2292094
-3.516998 difficulty -0.1042707
-3.641936 judge -0.1042707
-3.164815 hold -0.2803619
-3.641936 witness -0.2292094
-3.516998 fixed -0.1042707
-3.818028 lawyer -0.1042707
-4.119058 hall -0.1042707
-3.818028 reply -0.1042707
-3.516998 worked -0.1042707
-3.818028 opening -0.1042707
-4.119058 vast -0.1042707
-3.641936 forgive -0.1042707
-3.818028 staircase -0.1042707
-3.516998 carlos -0.1042707
-3.818028 bygones -0.1042707
-3.818028 flesh -0.1042707
-3.818028 worry -0.1042707
-3.818028 increased -0.1042707
-3.818028 impression -0.1042707
-4.119058 attorney -0.1042707
-3.818028 measure -0.1042707
-3.818028 strength -0.1042707
-4.119058 law -0.1042707
-4.119058 efforts -0.1042707
-3.818028 sound -0.1042707
-4.119058 action -0.1042707
-3.818028 glancing -0.1042707
-3.818028 wishes -0.1042707
-3.818028 sea -0.1042707
-3.420088 immediately -0.1042707
-3.818028 indifference -0.1042707
-3.641936 chance -0.1042707
-3.340906 led -0.1834519
-4.119058 thicket -0.1042707
-3.641936 hurry -0.1042707
-3.818028 sneered -0.1042707
-3.641936 what's -0.1042707
-3.641936 you'll -0.1042707
-3.818028 blood -0.1042707
-3.641936 falling -0.2803619
-3.818028 paused -0.1042707
-3.818028 labour -0.1042707
-3.818028 nature -0.1042707
-3.818028 imposed -0.4053007
-3.818028 roofs -0.1042707
-3.818028 smoke -0.1042707
-3.818028 weaving -0.1042707
-3.818028 shroud -0.1042707
-3.641936 melancholy -0.1042707
-3.818028 walls -0.1042707
-3.420088 forest -0.1042707
-3.818028 dismal -0.1042707
-3.818028 torn -0.1042707
-3.818028 careless -0.1042707
-3.420088 path -0.3261195
-3.818028 justice -0.1042707
-3.340906 death -0.1042707
-3.641936 fingers -0.1042707
-3.818028 power -0.1042707
-3.818028 accusation -0.1042707
-3.516998 fresh -0.2292094
-3.818028 itself -0.1042707
-4.119058 speaker -0.1042707
-3.818028 definite -0.1042707
-3.818028 interest -0.1042707
-3.818028 apprehension -0.1042707
-3.818028 approaching -0.1042707
-3.818028 mourning -0.1042707
-4.119058 harmony -0.1042707
-3.818028 emerged -0.1042707
-3.641936 natural -0.1042707
-3.641936 slowly -0.1042707
-3.420088 sad -0.1042707
-3.818028 crossing -0.1042707
-3.818028 salvation -0.1042707
-3.818028 groom -0.1042707
-3.818028 ready -0.1042707
-4.119058 creeps -0.1042707
-3.516998 makes -0.1042707
-3.818028 blame -0.1042707
-3.818028 share -0.1042707
-3.641936 asking -0.2803619
-3.818028 weak -0.1042707
-3.641936 move -0.1042707
-3.818028 acquired -0.1042707
-3.818028 direct -0.1042707
-3.516998 pocket -0.2011807
-3.818028 shape -0.1042707
-3.818028 ghosts -0.1042707
-4.119058 spoken -0.1042707
-4.119058 howells -0.1042707
-3.818028 idea -0.1042707
-3.818028 guilty -0.1042707
-3.641936 changed -0.2803619
-3.641936 perfectly -0.280362
-3.641936 opposite -0.1042707
-3.818028 scarcely -0.1042707
-3.818028 clothed -0.4053007
-3.818028 chair -0.1042707
-3.420088 arm -0.280362
-3.818028 stairs -0.1042707
-4.119058 clergyman -0.1042707
-3.818028 opened -0.1042707
-3.516998 followed -0.2292094
-3.818028 entire -0.1042707
-3.818028 crowded -0.1042707
-3.818028 shook -0.4053007
-3.818028 need -0.1042707
-3.818028 delay -0.1042707
-3.641936 cousin -0.1042707
-3.641936 desk -0.1042707
-4.119058 chest -0.1042707
-3.818028 drawers -0.1042707
-3.818028 watched -0.1042707
-3.641936 keeps -0.1042707
-4.119058 faults -0.1042707
-3.641936 gives -0.280362
-3.818028 dollars -0.1042707
-3.340906 excuse -0.4053007
-3.818028 needs -0.1042707
-3.27396 thy -0.1042707
-3.516998 beauty -0.1042707
-3.340906 thou -0.3473087
-4.119058 art -0.1042707
-4.119058 ay -0.1042707
-3.516998 thee -0.2292094
-3.641936 ah -0.280362
-3.818028 receiving -0.1042707
-3.420088 doth -0.3473088
-3.818028 crystal -0.1042707
-3.818028 fair -0.1042707
-3.641936 kings -0.280362
-3.818028 strong -0.1042707
-3.818028 alas -0.1042707
-3.641936 o -0.1042707
-3.516998 tis -0.2011807
-3.818028 sin -0.1042707
-3.818028 drew -0.1042707
-3.516998 douglas -0.2292095
-3.818028 consequence -0.1042707
-3.641936 content -0.1042707
-3.818028 reproach -0.1042707
-3.420088 cried -0.2292094
-4.119058 key -0.1042707
-3.516998 send -0.1042707
-3.818028 scruples -0.1042707
-3.641936 written -0.1042707
-3.516998 thank -0.2292094
-3.641936 easily -0.1042707
-3.641936 continued -0.2803619
-3.818028 acute -0.1042707
-3.420088 till -0.2011807
-4.119058 griffin -0.1042707
-4.119058 third -0.1042707
-3.818028 spot -0.1042707
-3.818028 touches -0.1042707
-3.641936 point -0.1042707
-3.818028 departed -0.1042707
-3.818028 travel -0.4053007
-3.641936 affairs -0.1042707
-3.818028 supreme -0.4053007
-3.641936 passion -0.1042707
-3.641936 vision -0.1042707
-4.119058 sounded -0.1042707
-3.641936 mentioned -0.1042707
-3.818028 delighted -0.1042707
-3.818028 sacrifice -0.1042707
-3.340906 danglars -0.1456634
-3.818028 signature -0.1042707
-3.818028 executed -0.1042707
-4.119058 corpse -0.1042707
-3.818028 winding -0.4053007
-3.818028 sheet -0.1042707
-3.164815 indeed -0.2425733
-3.818028 joy -0.1042707
-3.818028 delight -0.1042707
-3.818028 study -0.4053007
-3.641936 papers -0.1042707
-4.119058 assassin -0.1042707
-3.818028 benedetto -0.1042707
-3.818028 sooner -0.1042707
-4.119058 reception -0.1042707
-3.641936 villefort -0.1042707
-3.641936 twelve -0.1042707
-3.818028 heavens -0.1042707
-3.818028 procureur -0.1042707
-3.818028 becoming -0.1042707
-3.818028 lifted -0.1042707
-3.818028 presented -0.1042707
-4.119058 occasion -0.1042707
-3.818028 alter -0.1042707
-3.641936 rolled -0.1042707
-3.818028 equally -0.1042707
-3.641936 rich -0.1042707
-3.641936 funeral -0.1042707
-3.818028 procession -0.1042707
-3.818028 marriage -0.1042707
-3.818028 gradually -0.1042707
-3.516998 debray -0.280362
-4.119058 army -0.1042707
-3.516998 standing -0.2292094
-3.818028 force -0.1042707
-3.818028 brother -0.1042707
-3.516998 chateau -0.7063307
-4.119058 renaud -0.1042707
-3.818028 beauchamp -0.1042707
-3.818028 event -0.1042707
-3.818028 gentlemen -0.1042707
-3.818028 banker -0.1042707
-3.516998 replied -0.4053007
-3.215968 monte -0.7063308
-4.119058 cristo -0.1042707
-3.420088 morrel -0.1834519
-3.641936 seeking -0.1042707
-3.516998 smile -0.1042707
-3.818028 harm -0.1042707
-4.119058 honor -0.1042707
-3.641936 morcerf -0.1042707
-3.818028 persons -0.4053007
-3.641936 example -0.1042707
-3.641936 daughter -0.2803619
-3.641936 besides -0.1042707
-3.818028 offered -0.4053007
-3.818028 eugenie -0.1042707
-3.340906 happy -0.1834519
-3.818028 pride -0.1042707
-3.641936 allow -0.1042707
-3.818028 france -0.1042707
-3.641936 baron -0.1042707
-3.818028 consoled -0.1042707
-3.516998 king -0.2803619
-4.119058 finance -0.1042707
-3.818028 philosophers -0.1042707
-4.119058 ascertain -0.1042707
-3.818028 seriously -0.1042707
-3.516998 fortune -0.1042707
-3.641936 consolation -0.1042707
-3.340906 bonds -0.1042707
-3.818028 pray -0.1042707
-4.119058 noise -0.1042707
-3.119058 alone -0.1456634
-4.119058 added -0.1042707
-4.119058 million -0.1042707
-4.119058 governor -0.1042707
-3.818028 please -0.1042707
-3.818028 order -0.1042707
-3.818028 fund -0.1042707
-3.641936 credit -0.1042707
-3.818028 scraps -0.4053007
-3.818028 believed -0.1042707
-3.340906 placed -0.2803619
-3.818028 folding -0.1042707
-3.641936 notes -0.1042707
-3.818028 curious -0.1042707
-3.641936 six -0.2292095
-4.119058 francs -0.1042707
-3.818028 owe -0.1042707
-3.340906 receipt -0.1712175
-4.119058 charity -0.1042707
-3.818028 perspiration -0.1042707
-3.818028 thomson -0.4053007
-3.641936 pardon -0.581392
-4.119058 mere -0.1042707
-3.818028 signatures -0.1042707
-3.818028 bankers -0.1042707
-3.818028 transacting -0.1042707
-3.516998 laugh -0.2292094
-3.818028 obtain -0.1042707
-3.818028 faint -0.1042707
-4.119058 receiver -0.1042707
-3.818028 impertinence -0.1042707
-3.818028 charities -0.1042707
-3.818028 receive -0.1042707
-3.818028 amount -0.1042707
-3.818028 condescension -0.1042707
-3.818028 creditor -0.1042707
-3.818028 unlimited -0.1042707
-3.818028 visit -0.1042707
-4.119058 month -0.1042707
-3.818028 magnificent -0.1042707
-4.119058 rothschild -0.1042707
-4.119058 lafitte -0.1042707
-3.641936 leaving -0.1042707
-4.119058 de -0.1042707
-3.818028 reason -0.1042707
-3.818028 spend -0.1042707
-3.516998 mother -0.1042707
-4.119058 examination -0.1042707
-4.119058 morrow -0.1042707
-3.818028 cost -0.1042707
-3.340906 sir -0.1834519
-3.818028 listen -0.1042707
-3.641936 pleasure -0.2803619
-4.119058 affair -0.1042707
-3.818028 seek -0.1042707
-3.818028 sympathy -0.1042707
-3.818028 double -0.1042707
-3.818028 fifty -0.1042707
-3.641936 desires -0.2803619
-3.818028 cry -0.2292094
-3.516998 rain -0.1042707
-3.516998 wine -0.1042707
-3.818028 mass -0.1042707
-3.818028 sky -0.1042707
-3.641936 line -0.1042707
-3.818028 danced -0.1042707
-3.818028 yellow -0.1042707
-3.818028 ancient -0.1042707
-3.641936 rising -0.1042707
-3.818028 scattering -0.1042707
-3.818028 smell -0.4053007
-3.27396 tired -0.2503988
-3.516998 laughter -0.1042707
-3.516998 amory -0.1042707
-4.119058 subway -0.1042707
-3.818028 thrusting -0.1042707
-3.420088 seat -0.1042707
-4.119058 hating -0.1042707
-3.818028 disgust -0.1042707
-3.818028 battle -0.1042707
-3.818028 rotten -0.1042707
-3.641936 dirty -0.1042707
-3.641936 coffee -0.2803619
-3.818028 danger -0.1042707
-3.641936 secret -0.1042707
-3.818028 hate -0.1042707
-3.641936 horrible -0.1042707
-3.818028 henry -0.1042707
-3.818028 physical -0.1042707
-3.818028 dignified -0.1042707
-3.818028 problem -0.1042707
-3.818028 roused -0.1042707
-3.818028 profound -0.1042707
-3.818028 reactions -0.1042707
-3.818028 alike -0.1042707
-3.641936 lose -0.1042707
-3.641936 youth -0.1042707
-3.641936 calories -0.2803619
-3.818028 simper -0.1042707
-3.818028 remark -0.1042707
-3.818028 faces -0.1042707
-3.818028 innocent -0.1042707
-3.818028 state -0.1042707
-3.818028 impressions -0.1042707
-3.818028 seventh -0.4053007
-3.818028 losing -0.1042707
-3.641936 eating -0.1042707
-4.119058 repeat -0.1042707
-3.818028 appendicitis -0.1042707
-3.516998 beatrice -0.1042707
-3.818028 uncle -0.1042707
-3.818028 surely -0.1042707
-3.818028 absorbing -0.4053007
-3.641936 rosalind -0.1042707
-3.641936 eleanor -0.1042707
-3.818028 wilder -0.1042707
-3.818028 rivers -0.1042707
-3.641936 jill -0.1042707
-3.818028 darned -0.1042707
-3.818028 killed -0.1042707
-4.119058 clara -0.1042707
-3.818028 american -0.1042707
-3.818028 brave -0.1042707
-3.641936 princes -0.1042707
-3.119058 princess -0.1914209
-3.818028 perfection -0.1042707
-4.119058 cannot -0.1042707
-3.818028 follow -0.1042707
-3.516998 gravity -0.2292094
-3.818028 advantage -0.4053007
-3.818028 princesses -0.1042707
-3.818028 sometimes -0.1042707
-3.818028 neighbourhood -0.1042707
-3.818028 hearty -0.1042707
-3.818028 screaming -0.1042707
-4.119058 instant -0.1042707
-4.119058 tunic -0.1042707
-3.818028 caught -0.1042707
-3.516998 shore -0.1834519
-3.818028 throat -0.1042707
-3.818028 bore -0.1042707
-3.818028 naughty -0.2803619
-4.119058 ascend -0.1042707
-3.818028 bewitched -0.1042707
-3.818028 lift -0.1042707
-3.818028 beheld -0.1042707
-3.818028 weight -0.1042707
-4.119058 rock -0.1042707
-3.641936 shriek -0.1042707
-3.818028 rejoined -0.1042707
-3.641936 fell -0.1042707
-3.818028 events -0.1042707
-3.641936 swim -0.1042707
-3.641936 cries -0.1042707
-4.119058 balcony -0.1042707
-3.818028 play -0.1042707
-3.641936 fear -0.1042707
-3.818028 swam -0.1042707
-3.641936 safe -0.1042707
-3.516998 chamber -0.280362
-3.818028 sending -0.1042707
-3.818028 resolved -0.4053007
-3.516998 die -0.1042707
-3.818028 leaves -0.1042707
-4.119058 hole -0.1042707
-3.818028 hoped -0.1042707
-3.818028 fruits -0.1042707
-3.818028 few -0.1042707
-3.818028 contained -0.1042707
-3.818028 flowed -0.4053007
-4.119058 wetted -0.1042707
-4.119058 prince's -0.1042707
-4.119058 knees -0.1042707
-3.641936 shut -0.1042707
-3.818028 dying -0.1042707
-3.641936 bear -0.1042707
-4.119058 afloat -0.1042707
-3.818028 asleep -0.4053007
-3.818028 biscuit -0.1042707
-3.818028 encouraged -0.4053007
-3.818028 oblige -0.1042707
-3.818028 feed -0.1042707
-4.119058 fed -0.1042707
-3.641936 kiss -0.1042707
-3.818028 grew -0.4053007
-3.818028 gush -0.1042707
-3.818028 waters -0.1042707
-3.818028 shone -0.1042707
-4.119058 nostrils -0.1042707
-3.818028 lip -0.1042707
-4.119058 pulled -0.1042707
-4.119058 leg -0.1042707
-3.641936 rowed -0.1042707
-4.119058 landing -0.1042707
-3.818028 doctors -0.1042707
-3.818028 highness -0.1042707
-3.818028 chamberlain -0.1042707
-4.119058 yourself -0.1042707
-3.641936 cacambo -0.1042707
-3.818028 ship -0.1042707
-3.818028 candide -0.1042707
-3.818028 philosopher -0.1042707
-3.420088 pangloss -0.1042707
-3.516998 martin -0.1042707
-3.818028 garden -0.1042707
-4.119058 sale -0.1042707
-3.818028 constantinople -0.280362
-3.818028 impaled -0.1042707
-3.818028 sublime -0.1042707
-3.818028 suffered -0.1042707
-3.818028 asserted -0.1042707
-3.818028 dervish -0.1042707
-3.641936 amongst -0.1042707
-3.818028 beg -0.1042707
-4.119058 worlds -0.1042707
-3.818028 soul -0.1042707
-3.641936 mufti -0.1042707
-3.818028 strangled -0.1042707
-3.818028 estate -0.1042707
-3.818028 turk -0.1042707
-3.516998 cultivate -0.1042707
-3.641936 sons -0.1042707
-3.818028 citrons -0.1042707
-3.818028 pistachio -0.4053007
-4.119058 nuts -0.1042707
-3.818028 pierced -0.1042707
-3.818028 honest -0.1042707
-4.119058 inquisition -0.1042707
-4.119058 america -0.1042707
-4.119058 stabbed -0.1042707
-4.119058 sheep -0.1042707
-4.119058 el -0.1042707
-4.119058 dorado -0.1042707
-4.119058 preserved -0.1042707
-4.119058 wizard -0.1042707
-3.516998 unto -0.1042707
-3.641936 show -0.1042707
-3.420088 nottingham -0.1712175
-3.641936 mistress -0.581392
-3.516998 fitzooth -0.2503988
-4.119058 tent -0.1042707
-3.818028 forthwith -0.1042707
-3.818028 stroller -0.1042707
-3.818028 nay -0.1042707
-3.818028 rioting -0.1042707
-3.818028 purse -0.1042707
-3.818028 george -0.1042707
-3.340906 gamewell -0.1834519
-3.818028 apprentice -0.1042707
-3.039876 robin -0.1586284
-3.818028 lives -0.1042707
-3.818028 shout -0.4053007
-3.215968 montfichet -0.2134152
-3.818028 burden -0.1042707
-4.119058 squire's -0.1042707
-3.818028 lording -0.1042707
-3.641936 stuteley -0.1042707
-4.119058 won -0.1042707
-3.818028 sheriff's -0.1042707
-4.119058 sheriff -0.1042707
-3.818028 esquire -0.1042707
-3.818028 cheeks -0.280362
-3.818028 lad -0.1042707
-3.818028 converse -0.4053007
-3.818028 tricks -0.1042707
-3.818028 e -0.1042707
-4.119058 hut -0.1042707
-3.516998 warrenton -0.2292094
-3.818028 ladder -0.4053007
-3.818028 save -0.1042707
-4.119058 sooth -0.1042707
-4.119058 geoffrey -0.1042707
-4.119058 d'avrigny -0.1042707
-3.818028 rave -0.1042707
-3.641936 noirtier -0.1042707
-4.119058 singing -0.1042707
-3.818028 eternal -0.1042707
-4.119058 default -0.1042707
-3.818028 weeping -0.1042707
-3.818028 onward -0.1042707
-3.818028 virgilius -0.1042707
-3.818028 weep -0.1042707
\2-grams:
-2.568602 <s> chapter -0.0396736
-2.216581 <s> one -0.03967362
-2.2499 <s> missus -0.1365836
-2.888155 <s> is -0.03967361
-3.172162 <s> just -0.03967361
-2.745066 <s> where -0.03967361
-1.157238 <s> the -0.1922838
-1.179748 <s> <unk> -0.155469
-1.74818 <s> a -0.153617
-2.357463 <s> with -0.03967361
-1.097973 <s> and -0.1886126
-2.622493 <s> by -0.03967361
-1.76968 <s> that -0.1122243
-2.56382 <s> had -0.03967361
-1.909588 <s> in -0.09766555
-2.312959 <s> of -0.03967361
-3.300836 <s> old -0.03967361
-1.501133 <s> it -0.2615224
-2.337456 <s> was -0.2157649
-1.950738 <s> to -0.1188549
-3.081981 <s> be -0.03967361
-3.015032 <s> an -0.03967361
-3.316077 <s> those -0.03967362
-1.367342 <s> but -0.2035304
-2.694037 <s> well -0.03967361
-1.80803 <s> for -0.03967362
-2.441955 <s> not -0.03967361
-2.720767 <s> could -0.03967361
-3.42082 <s> probably -0.03967362
-2.038438 <s> at -0.1066204
-2.844137 <s> her -0.03967361
-3.365298 <s> everything -0.03967361
-2.142723 <s> from -0.1188548
-3.484495 <s> helped -0.03967361
-2.185331 <s> yet -0.03967361
-2.437829 <s> all -0.03967361
-2.143764 <s> this -0.2157649
-1.940296 <s> she -0.2157649
-1.77712 <s> if -0.1858017
-2.145856 <s> or -0.0396736
-3.110011 <s> would -0.03967361
-2.745066 <s> never -0.03967361
-3.507978 <s> rest -0.03967361
-3.348263 <s> until -0.03967362
-1.808383 <s> there -0.551557
-3.100465 <s> are -0.03967362
-2.232921 <s> who -0.2615224
-3.286111 <s> can -0.03967361
-3.42082 <s> own -0.03967361
-1.784933 <s> as -0.1993745
-3.507978 <s> husband -0.03967361
-2.049211 <s> his -0.1858017
-3.507978 <s> anybody -0.03967361
-1.908656 <s> so -0.1365836
-1.289182 <s> he -0.2722462
-2.812524 <s> peter -0.03967362
-3.110011 <s> before -0.03967361
-2.957038 <s> which -0.03967361
-2.098 <s> now -0.1066204
-2.355306 <s> matthew -0.03967361
-2.745066 <s> why -0.03967361
-2.753478 <s> asked -0.03967361
-3.150441 <s> here -0.03967361
-3.244716 <s> three -0.03967361
-2.492452 <s> have -0.03967361
-3.286111 <s> go -0.03967361
-2.724724 <s> might -0.3407036
-3.206926 <s> nothing -0.03967361
-3.206926 <s> good -0.03967361
-3.507978 <s> guess -0.03967361
-3.286111 <s> must -0.03967361
-3.462216 <s> taking -0.03967361
-3.42082 <s> i'll -0.03967361
-2.724724 <s> after -0.03967361
-3.258081 <s> marilla -0.03967361
-3.507978 <s> finally -0.03967361
-2.788854 <s> take -0.03967361
-3.139976 <s> more -0.03967362
-3.150441 <s> made -0.03967361
-3.348263 <s> since -0.03967362
-2.788854 <s> that's -0.3407036
-2.017454 <s> what -0.09766556
-1.31918 <s> i -0.1880934
-3.42082 <s> won't -0.03967361
-3.383028 <s> set -0.03967362
-3.532805 <s> barely -0.03967362
-3.129756 <s> did -0.03967361
-3.300836 <s> such -0.03967361
-2.531399 <s> it's -0.03967361
-2.406163 <s> said -0.03967361
-2.450326 <s> when -0.03967361
-1.712052 <s> no -0.2024009
-3.441025 <s> wonder -0.03967361
-1.774437 <s> they -0.1066204
-3.316077 <s> look -0.03967361
-2.784272 <s> nor -0.03967361
-2.474214 <s> then -0.03967361
-3.507978 <s> they're -0.03967361
-3.183443 <s> very -0.03967361
-2.697756 <s> do -0.3407036
-2.817416 <s> whence -0.03967361
-1.981545 <s> you -0.1646123
-3.365298 <s> give -0.03967361
-3.365298 <s> looking -0.03967361
-3.206926 <s> came -0.03967361
-3.348263 <s> isn't -0.03967361
-3.150441 <s> some -0.03967361
-2.709109 <s> only -0.03967361
-2.176244 <s> how -0.03967361
-3.073026 <s> your -0.03967361
-3.383028 <s> between -0.03967362
-2.273154 <s> oh -0.03967361
-3.441025 <s> thin -0.03967362
-2.724724 <s> two -0.03967361
-3.139976 <s> like -0.03967361
-2.766409 <s> thought -0.03967361
-3.441025 <s> maybe -0.03967361
-3.300836 <s> five -0.03967361
-3.462216 <s> forced -0.03967361
-2.52886 <s> yes -0.03967361
-3.42082 <s> certainly -0.03967362
-3.462216 <s> fact -0.03967361
-3.383028 <s> there's -0.03967361
-3.507978 <s> grown -0.03967362
-3.27187 <s> may -0.03967361
-3.348263 <s> right -0.03967361
-2.157541 <s> we -0.1188548
-2.44612 <s> my -0.03967362
-3.383028 <s> young -0.03967362
-2.096126 <s> will -0.2827116
-3.401513 <s> having -0.03967361
-2.757745 <s> don't -0.03967362
-2.753478 <s> i've -0.03967361
-3.331872 <s> gave -0.03967361
-3.441025 <s> family -0.03967361
-3.441025 <s> stay -0.03967361
-3.462216 <s> none -0.03967361
-3.383028 <s> really -0.03967361
-3.286111 <s> poor -0.03967361
-3.532805 <s> somehow -0.03967362
-2.788854 <s> while -0.03967361
-3.150441 <s> again -0.03967361
-3.441025 <s> feeling -0.03967361
-3.331872 <s> whether -0.03967362
-3.532805 <s> tied -0.03967361
-3.484495 <s> horse -0.03967361
-3.532805 <s> hotel -0.03967362
-2.753478 <s> answered -0.03967362
-3.507978 <s> she's -0.03967361
-3.507978 <s> sister -0.03967361
-3.441025 <s> presently -0.03967361
-3.258081 <s> come -0.03967362
-2.812524 <s> master -0.03967361
-2.802901 <s> also -0.03967361
-3.23175 <s> our -0.03967361
-2.549602 <s> let -0.2157649
-2.788854 <s> love -0.03967361
-3.462216 <s> wonderful -0.03967361
-3.383028 <s> want -0.03967362
-3.42082 <s> shall -0.03967361
-3.383028 <s> rather -0.03967361
-3.401513 <s> most -0.03967361
-3.507978 <s> blue -0.03967361
-3.484495 <s> later -0.03967361
-3.532805 <s> religion -0.03967361
-3.507978 <s> forget -0.03967361
-3.401513 <s> count -0.03967361
-3.484495 <s> science -0.03967361
-3.484495 <s> less -0.03967361
-3.331872 <s> money -0.03967361
-3.244716 <s> upon -0.03967362
-3.42082 <s> silence -0.03967361
-3.484495 <s> self -0.03967361
-2.732747 <s> these -0.3407036
-3.532805 <s> moreover -0.03967361
-2.822365 <s> ye -0.03967361
-3.507978 <s> birth -0.03967361
-3.462216 <s> heaven -0.03967361
-3.42082 <s> dead -0.03967361
-3.507978 <s> shame -0.03967361
-3.532805 <s> bone -0.03967361
-3.484495 <s> human -0.03967361
-3.532805 <s> bower -0.03967362
-3.484495 <s> friends -0.03967361
-3.507978 <s> lapierre -0.03967361
-3.441025 <s> squire -0.03967362
-3.532805 <s> perry -0.03967361
-3.23175 <s> still -0.03967361
-2.239373 <s> bobby -0.03967361
-2.370862 <s> graham -0.1646124
-3.462216 <s> dull -0.03967362
-3.507978 <s> repeated -0.03967362
-2.807686 <s> robinson -0.03967361
-3.507978 <s> spoke -0.03967362
-3.401513 <s> suddenly -0.03967361
-2.807686 <s> pay -0.03967362
-3.532805 <s> compelled -0.03967361
-3.484495 <s> therefore -0.03967361
-3.507978 <s> you'll -0.03967361
-3.532805 <s> acquired -0.03967362
-3.441025 <s> thou -0.03967361
-2.82737 <s> ay -0.03967362
-3.507978 <s> ah -0.03967361
-3.507978 <s> o -0.03967361
-2.812524 <s> tis -0.03967361
-2.557643 <s> cried -0.03967363
-3.462216 <s> till -0.03967361
-3.441025 <s> danglars -0.03967361
-3.532805 <s> becoming -0.03967361
-3.532805 <s> equally -0.03967362
-3.532805 <s> gentlemen -0.03967361
-3.484495 <s> replied -0.03967362
-3.462216 <s> morrel -0.03967362
-3.532805 <s> eugenie -0.03967361
-3.484495 <s> king -0.03967361
-3.532805 <s> pray -0.03967361
-3.507978 <s> leaving -0.03967362
-3.532805 <s> listen -0.03967361
-3.532805 <s> thrusting -0.03967361
-3.532805 <s> uncle -0.03967361
-3.532805 <s> surely -0.03967361
-3.532805 <s> brave -0.03967362
-3.507978 <s> cries -0.03967361
-3.507978 <s> cacambo -0.03967361
-3.462216 <s> pangloss -0.03967361
-3.532805 <s> beg -0.03967361
-3.462216 <s> nottingham -0.03967361
-3.507978 <s> mistress -0.0396736
-3.532805 <s> forthwith -0.03967361
-2.822365 <s> nay -0.03967361
-3.532805 <s> george -0.03967361
-2.185331 <s> robin -0.1188549
-3.401513 <s> montfichet -0.03967361
-3.507978 <s> stuteley -0.03967361
-3.484495 <s> warrenton -0.03967361
-3.532805 <s> save -0.03967361
-2.568602 <s> d'avrigny -0.03967362
-2.817416 <s> noirtier -0.03967361
-1.127863 chapter one -0.03967362
-1.139163 chapter two -0.03967361
-1.147107 chapter seven -0.03967362
-1.386842 one </s>
-2.445216 one missus -0.03967361
-2.334057 one is -0.03967361
-1.025144 one <unk> -0.09766556
-1.857693 one and -0.03967361
-2.293511 one had -0.03967361
-1.664219 one in -0.03967361
-0.8452517 one of -0.5167948
-2.261933 one but -0.03967361
-2.46686 one could -0.03967361
-1.540199 one on -0.03967361
-2.364523 one from -0.03967361
-2.393523 one there -0.03967361
-1.400606 one who -0.1646123
-2.51368 one can -0.03967361
-2.308661 one so -0.03967361
-2.571779 one afternoon -0.03967361
-2.371593 one which -0.03967362
-1.412582 one day -0.03967361
-2.52877 one home -0.03967361
-2.51368 one must -0.03967362
-2.577468 one step -0.03967361
-2.081113 one i -0.03967361
-2.368044 one when -0.03967361
-1.836085 one side -0.03967361
-2.53913 one looking -0.03967361
-2.533919 one isn't -0.03967362
-2.566164 one kind -0.03967361
-2.560621 one thin -0.03967361
-1.815794 one two -0.03967361
-2.571779 one broke -0.03967361
-2.508764 one may -0.03967361
-2.533919 one thing -0.03967362
-2.518652 one hand -0.03967361
-2.560621 one short -0.03967361
-2.577468 one lovely -0.03967361
-1.827854 one way -0.03967362
-1.414152 one hundred -0.4376136
-2.577468 one fault -0.03967361
-2.560621 one either -0.03967361
-2.549742 one else -0.03967362
-2.583231 one bone -0.03967361
-2.583231 one theory -0.03967361
-2.577468 one glance -0.03967362
-2.566164 one virtue -0.03967362
-2.583231 one measure -0.03967362
-2.577468 one o -0.03967362
-2.583231 one delighted -0.03967361
-1.839212 one leg -0.03967362
-0.295575 missus rachel -0.2467992
-1.904802 missus <unk> -0.03967361
-1.02446 missus alexander -0.6417336
-0.7380963 missus spencer -0.1066204
-1.186058 missus savareen -0.03967361
-2.201464 missus griffin -0.03967361
-1.466746 rachel </s>
-1.988095 rachel lynde -0.03967361
-1.361723 rachel <unk> -0.03967362
-1.658519 rachel in -0.03967361
-1.782903 rachel was -0.03967361
-1.580367 rachel to -0.03967361
-1.236917 rachel lynde's -0.03967362
-1.936001 rachel could -0.03967361
-1.893345 rachel up -0.03967362
-1.9624 rachel found -0.03967361
-1.925458 rachel would -0.3407036
-1.980935 rachel knew -0.03967361
-1.925458 rachel before -0.03967361
-1.953421 rachel marilla -0.03967361
-1.70862 rachel i -0.03967361
-1.971568 rachel set -0.03967362
-1.983308 rachel stepped -0.03967361
-1.885674 rachel when -0.03967361
-1.973891 rachel felt -0.03967361
-1.953421 rachel i've -0.03967361
-1.334638 lynde is -0.03967361
-1.367258 lynde lived -0.03967361
-1.273495 lynde a -0.03967361
-1.306922 lynde was -0.03967361
-1.352977 lynde did -0.03967361
-1.497505 is </s>
-2.445783 is one -0.03967361
-2.009904 is surprised -0.03967362
-1.001511 is the -0.2157649
-1.030134 is <unk> -0.1122243
-1.019385 is a -0.1858017
-2.299068 is with -0.03967361
-1.658363 is that -0.03967361
-1.608375 is in -0.03967362
-1.972722 is of -0.03967361
-1.855107 is it -0.03967361
-1.951402 is to -0.03967361
-2.257674 is for -0.03967361
-1.449579 is not -0.03967361
-2.649107 is even -0.03967361
-2.313792 is at -0.03967361
-1.712605 is this -0.03967361
-2.332146 is she -0.03967361
-2.630082 is never -0.03967361
-1.952825 is there -0.03967361
-2.675844 is always -0.03967361
-2.316797 is as -0.03967361
-2.577548 is over -0.03967361
-1.905882 is his -0.03967361
-1.699305 is so -0.03967361
-1.641478 is he -0.03967361
-2.630082 is because -0.03967362
-2.617847 is nothing -0.03967362
-2.727002 is worthy -0.03967361
-1.974216 is more -0.03967362
-2.588686 is made -0.03967361
-2.470847 is what -0.03967361
-2.1407 is i -0.03967361
-2.445783 is no -0.03967361
-2.682794 is enough -0.03967361
-2.689856 is being -0.03967361
-2.605946 is very -0.3407036
-2.704335 is getting -0.03967361
-2.577548 is only -0.03967361
-2.623921 is how -0.03967361
-1.964728 is your -0.03967361
-1.990981 is too -0.03967361
-2.71176 is hard -0.03967362
-2.583081 is like -0.03967361
-2.682794 is right -0.03967361
-1.94124 is my -0.03967361
-2.577548 is will -0.03967362
-2.66227 is another -0.03967361
-2.697036 is really -0.03967361
-2.71176 is possible -0.03967361
-2.642672 is come -0.03967361
-2.719314 is also -0.0396736
-2.750917 is extremely -0.03967362
-2.734828 is worse -0.03967361
-2.697036 is rather -0.03967362
-2.66227 is himself -0.03967361
-2.675844 is jesus -0.03967361
-2.675844 is money -0.03967361
-2.742798 is impossible -0.03967361
-2.750917 is injured -0.03967361
-2.630082 is still -0.03967361
-2.525782 is bobby -0.03967361
-2.742798 is natural -0.03967361
-2.742798 is perfectly -0.03967361
-2.750917 is receiving -0.03967361
-2.697036 is indeed -0.03967362
-2.750917 is transacting -0.03967361
-2.750917 is magnificent -0.03967362
-2.742798 is horrible -0.03967361
-2.750917 is weeping -0.03967362
-1.137022 surprised missus -0.03967361
-1.114814 surprised at -0.03967361
-1.137022 surprised matthew -0.03967361
-1.261249 lived just -0.03967361
-1.263625 lived where -0.03967361
-1.194193 lived a -0.03967361
-1.22186 lived was -0.03967361
-2.053986 just where -0.03967361
-1.650218 just the -0.03967361
-0.9567083 just <unk> -0.03967361
-1.781747 just a -0.03967361
-1.259417 just in -0.03967361
-2.056389 just time -0.03967361
-2.058805 just people -0.03967361
-2.078633 just done -0.03967362
-1.305627 just as -0.03967361
-2.066135 just tell -0.03967361
-1.926213 just his -0.03967361
-2.063678 just went -0.03967362
-2.094122 just step -0.03967362
-1.985417 just what -0.03967361
-1.329359 just then -0.03967361
-2.066135 just left -0.03967362
-2.076104 just give -0.03967361
-2.078633 just love -0.03967361
-2.078633 just want -0.03967361
-2.078633 just lost -0.03967361
-2.094122 just asking -0.03967361
-2.094122 just swim -0.03967361
-0.9765566 where the -0.2157649
-1.232858 where a -0.03967362
-1.629508 where and -0.03967361
-1.835972 where that -0.03967361
-1.835972 where it -0.03967361
-1.857876 where was -0.03967361
-1.280678 where an -0.03967361
-2.017228 where even -0.03967362
-1.965695 where there -0.03967361
-1.003977 where he -0.1646123
-2.03375 where he's -0.03967361
-2.03586 where wild -0.03967361
-1.960329 where they -0.03967361
-1.876523 where you -0.3407036
-2.005236 where these -0.03967361
-2.046568 where careless -0.03967361
-2.037981 where thou -0.03967361
-2.044405 where jill -0.03967362
-2.566436 the one -0.03967361
-2.082588 the the -0.03967361
-2.858783 the avonlea -0.03967361
-2.640712 the main -0.2157649
-2.640712 the road -0.03967362
-0.9264858 the <unk> -0.404755
-2.339021 the little -0.2827116
-2.63559 the hollow -0.1646123
-2.640712 the ladies -0.03967361
-3.535393 the brook -0.03967361
-3.078774 the back -0.03967361
-2.65114 the woods -0.0396736
-1.906545 the old -0.4198849
-2.587445 the place -0.03967361
-3.49674 the course -0.03967361
-2.250285 the time -0.03967361
-2.96726 the well -0.03967361
-2.082283 the door -0.1945756
-2.368277 the window -0.03967362
-3.577826 the school -0.03967361
-3.577826 the church -0.03967361
-3.535393 the society -0.03967361
-2.87615 the hours -0.03967362
-2.903577 the kitchen -0.03967361
-2.645895 the rest -0.03967361
-2.336456 the people -0.0396736
-2.027152 the other -0.07746217
-3.577826 the steep -0.03967361
-3.369432 the red -0.03967361
-2.885101 the hill -0.03967362
-3.535393 the orchard -0.03967361
-2.076624 the house -0.07746217
-3.461247 the bloom -0.03967361
-2.733886 the man -0.03967362
-3.461247 the late -0.03967361
-3.577826 the barn -0.03967362
-3.49674 the afternoon -0.03967361
-2.379424 the sun -0.03967362
-2.87615 the evening -0.03967362
-2.630528 the next -0.03967361
-2.365535 the best -0.1188549
-2.492535 the buggy -0.03967361
-3.624858 the sorrel -0.5167949
-3.535393 the mare -0.03967361
-3.535393 the distance -0.03967361
-2.368277 the whole -0.03967362
-2.457371 the day -0.03967361
-3.577826 the strangers -0.03967362
-3.535393 the collar -0.03967361
-2.753476 the good -0.03967361
-3.342686 the green -0.03967361
-2.63559 the worthy -0.03967361
-2.850353 the woman -0.03967361
-2.87615 the year -0.03967361
-2.409448 the more -0.03967362
-2.894241 the big -0.03967362
-2.625525 the long -0.03967361
-2.894241 the lane -0.03967362
-3.397933 the father -0.03967361
-3.49674 the silent -0.03967361
-2.640712 the son -0.3407036
-2.781051 the last -0.2157649
-2.134065 the night -0.09766555
-3.271107 the mind -0.03967361
-3.369432 the far -0.03967361
-3.342686 the living -0.03967361
-3.461247 the deep -0.03967361
-2.578424 the men -0.03967361
-2.65114 the edge -0.6417336
-3.397933 the wild -0.03967361
-3.535393 the trees -0.03967361
-3.397933 the company -0.03967361
-3.249648 the look -0.03967362
-2.640712 the side -0.6417336
-2.645895 the stone -0.3407036
-2.913118 the opinion -0.03967361
-3.49674 the yard -0.03967361
-2.86738 the body -0.03967362
-3.078774 the very -0.03967361
-2.640712 the ground -0.03967361
-2.592026 the left -0.03967361
-3.49674 the appearance -0.03967361
-2.903577 the east -0.03967361
-3.535393 the west -0.03967361
-3.535393 the closed -0.03967361
-2.903577 the mystery -0.3407036
-3.577826 the real -0.03967361
-3.49674 the fine -0.5167949
-3.577826 the dishes -0.03967361
-1.966082 the only -0.1122243
-3.428438 the expected -0.03967361
-2.86738 the name -0.3407036
-3.535393 the lips -0.03967361
-2.858783 the sight -0.3407036
-3.249648 the oh -0.03967361
-3.49674 the bad -0.03967362
-2.733886 the two -0.03967361
-2.63559 the mouth -0.2157649
-3.535393 the river -0.03967361
-3.342686 the boy -0.03967361
-2.373815 the asylum -0.03967361
-2.645895 the train -0.03967361
-3.577826 the kangaroo -0.03967361
-2.344195 the five -0.2615224
-3.461247 the fun -0.03967362
-3.535393 the usual -0.03967361
-2.492535 the spring -0.3407036
-3.397933 the girl -0.03967361
-2.373815 the world -0.03967361
-3.49674 the earth -0.03967362
-2.86738 the head -0.03967361
-2.87615 the fact -0.03967361
-3.624858 the states -0.03967361
-2.460762 the first -0.03967361
-2.606067 the right -0.03967361
-3.428438 the street -0.03967362
-3.577826 the least -0.03967361
-3.577826 the risk -0.03967361
-3.49674 the matter -0.03967361
-3.49674 the years -0.03967361
-3.461247 the use -0.03967361
-2.467624 the young -0.3407036
-3.535393 the proper -0.03967361
-3.577826 the mail -0.03967361
-2.65114 the station -0.03967362
-3.577826 the amazing -0.03967361
-2.645895 the news -0.0396736
-3.535393 the end -0.03967361
-2.894241 the week -0.03967361
-3.535393 the paper -0.03967362
-3.49674 the wife -0.03967361
-2.894241 the island -0.03967361
-2.87615 the fire -0.03967361
-2.606067 the thing -0.03967361
-2.352075 the child -0.03967361
-2.488888 the case -0.03967361
-3.577826 the tone -0.0396736
-3.535393 the people's -0.03967361
-3.577826 the wells -0.03967361
-2.81818 the new -0.03967361
-3.428438 the family -0.03967361
-2.373815 the second -0.1365836
-2.587445 the poor -0.03967361
-2.913118 the latter -0.03967361
-3.49674 the influence -0.03967361
-2.278436 the air -0.1858017
-3.397933 the breath -0.03967361
-3.535393 the pity -0.03967361
-3.49674 the eight -0.03967361
-3.535393 the bit -0.03967361
-3.535393 the wood -0.03967361
-3.577826 the drive -0.03967361
-3.535393 the iron -0.03967361
-3.369432 the women -0.03967361
-1.696541 the prince -0.1646124
-3.342686 the full -0.03967361
-3.535393 the soft -0.03967361
-2.885101 the horse -0.03967361
-3.49674 the small -0.03967361
-3.577826 the platform -0.03967361
-3.577826 the shingles -0.03967361
-2.913118 the extreme -0.03967361
-3.428438 the waiting -0.0396736
-2.913118 the stationmaster -0.3407036
-2.454006 the room -0.03967361
-3.49674 the outside -0.03967361
-3.461247 the orphans -0.03967361
-2.903577 the situation -0.03967361
-3.293681 the better -0.03967361
-3.577826 the unfortunate -0.03967361
-3.49674 the walk -0.03967361
-3.461247 the hat -0.03967361
-3.535393 the thick -0.03967361
-2.61085 the face -0.2157649
-3.49674 the lights -0.03967361
-2.280679 the others -0.1066204
-3.577826 the chin -0.03967361
-2.913118 the forehead -0.03967361
-3.577826 the broad -0.03967361
-2.894241 the ordeal -0.03967361
-2.913118 the handle -0.03967361
-3.535393 the tree -0.03967361
-2.630528 the heavy -0.2157649
-2.601336 the way -0.03967361
-3.535393 the exact -0.03967361
-3.342686 the love -0.03967361
-3.577826 the worst -0.03967361
-3.535393 the imagination -0.03967361
-3.535393 the interesting -0.03967361
-3.461247 the talking -0.03967361
-3.577826 the soil -0.03967361
-3.369432 the beautiful -0.03967361
-2.209725 the bank -0.03967361
-2.271776 the most -0.1188549
-3.317493 the already -0.03967361
-2.894241 the boat -0.03967361
-3.577826 the roads -0.03967361
-3.535393 the true -0.03967361
-2.87615 the gentleman -0.03967361
-2.615687 the black -0.03967362
-3.535393 the city -0.03967361
-2.86738 the moment -0.03967361
-3.577826 the worship -0.03967361
-2.894241 the priest -0.03967362
-2.810496 the light -0.03967362
-3.49674 the divine -0.03967361
-3.535393 the presence -0.03967361
-3.577826 the various -0.03967361
-3.577826 the meaning -0.03967361
-3.577826 the anniversary -0.03967362
-2.903577 the birthday -0.3407036
-2.63559 the search -0.03967361
-2.913118 the universe -0.03967361
-3.577826 the touch -0.03967361
-3.577826 the golden -0.03967361
-3.577826 the music -0.03967361
-2.63559 the truth -0.03967361
-2.885101 the open -0.03967362
-3.577826 the discussion -0.03967362
-2.360101 the count -0.03967361
-2.903577 the courage -0.03967361
-3.577826 the industry -0.03967361
-3.535393 the searching -0.03967361
-3.577826 the myth -0.03967361
-3.577826 the knowledge -0.03967361
-3.577826 the mythus -0.03967361
-3.49674 the science -0.03967362
-3.577826 the realization -0.03967361
-3.535393 the restless -0.03967361
-3.577826 the space -0.03967361
-3.577826 the fairies -0.03967361
-2.488888 the moon -0.3407036
-2.903577 the firm -0.03967361
-3.397933 the hands -0.03967361
-2.87615 the evidence -0.1646124
-2.913118 the christian -0.03967361
-3.271107 the money -0.03967361
-3.428438 the evil -0.03967361
-2.913118 the infant -0.03967361
-3.461247 the position -0.03967361
-3.577826 the object -0.03967361
-3.577826 the origin -0.03967361
-3.577826 the following -0.03967362
-2.903577 the numerous -0.3407036
-3.397933 the silence -0.03967361
-3.535393 the sword -0.03967361
-3.577826 the hereafter -0.03967361
-2.913118 the government -0.0396736
-3.535393 the courtiers -0.03967362
-3.577826 the promise -0.03967362
-2.287479 the same -0.1066204
-2.87615 the words -0.03967361
-2.488888 the car -0.03967362
-2.87615 the lady -0.03967361
-3.535393 the balance -0.03967362
-3.461247 the foot -0.03967361
-1.850003 the water -0.131444
-3.535393 the picture -0.03967361
-3.535393 the useful -0.03967361
-2.858783 the dead -0.03967361
-3.577826 the color -0.03967361
-3.577826 the sensorium -0.03967362
-3.535393 the cause -0.03967361
-3.577826 the price -0.03967362
-3.461247 the sarah -0.03967362
-3.577826 the bower -0.03967361
-3.535393 the general -0.03967361
-3.535393 the heat -0.03967361
-3.577826 the inside -0.03967361
-3.49674 the crowd -0.03967361
-3.577826 the intellect -0.03967362
-3.577826 the wall -0.03967361
-3.577826 the match -0.03967362
-2.913118 the fourth -0.0396736
-2.885101 the condition -0.3407036
-3.577826 the neighborhood -0.03967361
-2.645895 the country -0.03967361
-2.903577 the missing -0.03967362
-3.535393 the lord -0.03967361
-2.202152 the squire -0.03967361
-2.485271 the story -0.03967362
-2.63559 the man's -0.03967361
-2.913118 the previous -0.03967361
-3.624858 the interior -0.03967361
-2.640712 the coat -0.03967361
-3.577826 the party -0.03967361
-2.903577 the damp -0.03967361
-3.577826 the swamp -0.03967362
-2.903577 the rear -0.3407036
-2.903577 the saddle -0.03967361
-3.577826 the disappearance -0.03967362
-3.535393 the wet -0.03967361
-3.577826 the traces -0.03967362
-2.86738 the care -0.3407036
-2.903577 the local -0.03967361
-2.894241 the top -0.03967363
-3.461247 the days -0.03967361
-3.577826 the bar -0.03967361
-3.397933 the doctor -0.03967362
-3.13931 the still -0.03967362
-3.535393 the corner -0.03967361
-2.211639 the district -0.4076504
-3.577826 the courtyard -0.03967361
-2.620578 the bed -0.03967361
-2.209725 the lake -0.09766555
-3.577826 the movement -0.03967361
-3.535393 the chief -0.03967361
-3.577826 the landscape -0.03967361
-2.913118 the underbrush -0.03967361
-2.65114 the grave -0.0396736
-3.461247 the dull -0.03967362
-2.373815 the court -0.03967362
-3.577826 the uncommunicative -0.03967361
-3.577826 the minister -0.03967362
-3.577826 the entrance -0.03967362
-3.577826 the front -0.03967361
-2.894241 the direction -0.3407036
-3.624858 the courthouse -0.03967361
-2.913118 the panamanian -0.03967361
-2.496213 the cedars -0.1365836
-2.885101 the present -0.03967361
-3.577826 the mournful -0.03967362
-3.49674 the sum -0.03967361
-3.49674 the difficulty -0.03967361
-3.535393 the judge -0.03967361
-3.342686 the hold -0.03967361
-3.577826 the lawyer -0.03967361
-2.496213 the hall -0.03967361
-2.903577 the opening -0.3407036
-2.903577 the staircase -0.03967361
-3.577826 the flesh -0.03967362
-3.577826 the impression -0.03967361
-3.577826 the measure -0.03967361
-2.913118 the law -0.03967361
-3.577826 the indifference -0.03967361
-2.913118 the thicket -0.03967361
-3.577826 the labour -0.03967361
-2.903577 the nature -0.3407036
-3.577826 the smoke -0.03967361
-2.63559 the forest -0.03967361
-3.577826 the dismal -0.03967361
-2.86738 the death -0.03967361
-2.492535 the power -0.1646124
-3.577826 the accusation -0.03967362
-3.49674 the fresh -0.03967362
-2.913118 the speaker -0.03967361
-3.577826 the definite -0.03967362
-2.903577 the mourning -0.03967361
-2.87615 the sad -0.03967361
-3.624858 the creeps -0.03967361
-3.577826 the shape -0.03967361
-3.577826 the ghosts -0.03967361
-3.577826 the idea -0.03967361
-3.535393 the opposite -0.03967361
-3.577826 the chair -0.03967361
-3.461247 the arm -0.03967361
-2.65114 the stairs -0.03967361
-2.913118 the clergyman -0.03967361
-3.577826 the entire -0.03967361
-3.577826 the need -0.03967361
-3.535393 the cousin -0.03967361
-2.913118 the chest -0.3407036
-2.885101 the beauty -0.3407036
-3.577826 the crystal -0.03967361
-3.535393 the kings -0.03967361
-3.577826 the sin -0.03967361
-2.913118 the key -0.03967361
-3.535393 the written -0.03967361
-2.913118 the third -0.0396736
-3.577826 the touches -0.03967361
-3.535393 the point -0.03967361
-3.577826 the sacrifice -0.03967361
-2.913118 the corpse -0.0396736
-3.577826 the winding -0.03967361
-3.577826 the sheet -0.03967361
-2.913118 the assassin -0.03967361
-2.913118 the reception -0.3407036
-3.577826 the procureur -0.03967361
-3.624858 the occasion -0.03967361
-3.535393 the rich -0.03967361
-3.577826 the marriage -0.03967361
-2.913118 the army -0.03967361
-3.577826 the event -0.03967361
-3.577826 the banker -0.03967361
-3.535393 the example -0.03967361
-3.577826 the pride -0.03967361
-2.894241 the baron -0.3407036
-2.640712 the king -0.03967361
-3.535393 the consolation -0.03967361
-3.428438 the bonds -0.3407036
-2.913118 the noise -0.03967361
-3.624858 the governor -0.03967361
-3.577826 the order -0.03967361
-3.577826 the fund -0.03967361
-3.535393 the notes -0.03967361
-2.894241 the six -0.03967361
-3.428438 the receipt -0.03967361
-2.913118 the charity -0.3407036
-3.577826 the perspiration -0.03967362
-2.65645 the receiver -0.03967361
-3.577826 the charities -0.03967361
-3.577826 the amount -0.03967361
-3.577826 the creditor -0.03967361
-3.49674 the mother -0.03967361
-2.913118 the examination -0.0396736
-3.535393 the pleasure -0.0396736
-3.577826 the double -0.03967361
-3.577826 the cry -0.03967362
-2.640712 the rain -0.03967361
-2.640712 the wine -0.03967361
-3.577826 the sky -0.03967361
-3.577826 the ancient -0.3407036
-3.577826 the smell -0.03967362
-3.49674 the laughter -0.03967361
-2.913118 the subway -0.03967361
-3.577826 the battle -0.03967361
-3.535393 the calories -0.0396736
-3.577826 the simper -0.03967361
-3.577826 the faces -0.03967361
-3.577826 the darned -0.03967361
-3.577826 the american -0.03967362
-3.535393 the princes -0.03967361
-1.636027 the princess -0.2024009
-3.577826 the advantage -0.03967362
-3.577826 the princesses -0.03967361
-3.577826 the neighbourhood -0.03967361
-2.485271 the shore -0.1646124
-3.577826 the throat -0.03967362
-3.577826 the bewitched -0.03967361
-2.913118 the rock -0.03967362
-2.65645 the balcony -0.2157649
-2.65645 the hole -0.03967361
-3.577826 the fruits -0.03967361
-2.65645 the prince's -0.2157649
-3.577826 the dying -0.03967361
-2.903577 the waters -0.03967361
-2.913118 the landing -0.03967361
-2.903577 the doctors -0.03967361
-2.903577 the chamberlain -0.03967361
-2.903577 the philosopher -0.03967361
-2.903577 the garden -0.03967361
-3.577826 the sublime -0.03967362
-2.65114 the dervish -0.03967361
-3.577826 the soul -0.03967362
-3.535393 the mufti -0.03967361
-3.577826 the strangled -0.03967361
-3.577826 the estate -0.03967361
-3.577826 the turk -0.03967361
-3.624858 the inquisition -0.03967362
-3.624858 the wizard -0.03967362
-3.461247 the nottingham -0.03967361
-3.624858 the tent -0.03967361
-3.577826 the stroller -0.03967361
-3.577826 the rioting -0.03967362
-2.65645 the squire's -0.03967361
-2.903577 the sheriff's -0.03967361
-2.913118 the sheriff -0.03967361
-3.577826 the lad -0.03967361
-2.496213 the hut -0.1646124
-3.577826 the ladder -0.03967362
-3.577826 the eternal -0.03967361
-1.642455 avonlea missus -0.03967361
-1.666839 avonlea main -0.03967361
-0.8258563 avonlea <unk> -0.03967361
-0.8636236 avonlea and -0.03967361
-1.654476 avonlea people -0.03967361
-1.665875 avonlea today -0.03967362
-1.668772 avonlea houses -0.03967361
-1.667805 avonlea farm -0.03967361
-0.6146078 main road -0.03967361
-1.355325 main matthew -0.03967361
-1.367742 main condition -0.03967361
-1.368712 main facts -0.03967361
-0.7800988 road <unk> -0.03967361
-1.387316 road and -0.03967361
-1.516179 road that -0.03967362
-1.411638 road to -0.03967361
-1.577955 road from -0.03967361
-1.615331 road along -0.03967362
-1.619156 road part -0.0396736
-1.613432 road whether -0.03967362
-1.219365 <unk> </s>
-2.486992 <unk> one -0.03967361
-2.647211 <unk> missus -0.7386436
-3.824509 <unk> lynde -0.03967361
-2.357239 <unk> is -0.1268238
-3.729804 <unk> lived -0.03967361
-3.258621 <unk> just -0.03967362
-2.687739 <unk> where -0.03967361
-1.353784 <unk> the -0.2298079
-3.617907 <unk> avonlea -0.03967361
-1.137325 <unk> <unk> -0.4567136
-2.695532 <unk> down -0.03967361
-2.225454 <unk> into -0.1779763
-1.739797 <unk> a -0.2585168
-2.699481 <unk> little -0.03967361
-3.824509 <unk> fringed -0.03967361
-1.735787 <unk> with -0.4076505
-1.338628 <unk> and -0.3184273
-3.729804 <unk> ladies -0.03967362
-1.995512 <unk> by -0.3728882
-3.77458 <unk> brook -0.03967361
-1.749 <unk> that -0.3029151
-2.287264 <unk> had -0.03967361
-2.609872 <unk> its -0.2615224
-2.606656 <unk> away -0.03967362
-2.797345 <unk> back -0.03967361
-1.548104 <unk> in -0.3901889
-1.49409 <unk> of -0.3805751
-2.844554 <unk> old -0.03967361
-2.703467 <unk> place -0.03967362
-1.921356 <unk> it -0.1972815
-2.128026 <unk> was -0.1488181
-1.400346 <unk> to -0.3496584
-2.353495 <unk> be -0.03967362
-2.392947 <unk> an -0.4076504
-2.388883 <unk> through -0.2949461
-1.950766 <unk> but -0.153617
-2.822937 <unk> time -0.03967361
-2.549685 <unk> well -0.03967361
-1.857891 <unk> for -0.1596489
-2.317468 <unk> not -0.1646124
-3.028689 <unk> even -0.03967361
-3.244476 <unk> could -0.03967362
-3.122872 <unk> past -0.03967361
-3.617907 <unk> door -0.03967361
-3.320309 <unk> without -0.03967361
-3.11248 <unk> probably -0.03967361
-1.964485 <unk> at -0.2681529
-2.143095 <unk> her -0.07443572
-2.053546 <unk> on -0.1646124
-3.6521 <unk> passed -0.03967361
-1.877715 <unk> from -0.1858016
-3.586211 <unk> children -0.03967362
-2.284074 <unk> up -0.1488181
-3.824509 <unk> school -0.03967361
-3.478481 <unk> yet -0.03967361
-2.364517 <unk> all -0.03967362
-2.278019 <unk> this -0.03967361
-3.689216 <unk> hours -0.03967362
-2.30945 <unk> she -0.1646124
-2.360709 <unk> them -0.1365836
-2.527766 <unk> if -0.03967361
-3.073232 <unk> anything -0.03967361
-2.133198 <unk> or -0.2895511
-2.208475 <unk> out -0.1268238
-2.763876 <unk> would -0.2157649
-3.337204 <unk> never -0.03967361
-2.861504 <unk> until -0.03967361
-2.707831 <unk> there -0.03967361
-2.477169 <unk> are -0.1066204
-3.77458 <unk> plenty -0.0396736
-2.695532 <unk> people -0.03967361
-2.603732 <unk> who -0.1646124
-2.194504 <unk> their -0.2157649
-3.122872 <unk> business -0.03967361
-3.178926 <unk> creatures -0.03967361
-3.729804 <unk> folks -0.03967361
-3.529014 <unk> work -0.03967361
-3.77458 <unk> circle -0.03967361
-2.010003 <unk> as -0.2267602
-2.392947 <unk> were -0.2157649
-3.729804 <unk> voices -0.03967361
-3.6521 <unk> beyond -0.03967362
-3.77458 <unk> orchard -0.03967361
-3.073232 <unk> house -0.03967361
-3.082716 <unk> white -0.03967361
-3.689216 <unk> bloom -0.03967361
-2.484362 <unk> over -0.2157649
-3.258621 <unk> man -0.03967362
-1.996363 <unk> his -0.1758934
-3.729804 <unk> pass -0.03967361
-2.295011 <unk> so -0.3918561
-3.824509 <unk> june -0.03967362
-3.11248 <unk> coming -0.03967361
-1.868984 <unk> he -0.1858017
-3.337204 <unk> because -0.03967361
-2.087167 <unk> him -0.1488181
-2.647211 <unk> before -0.03967362
-3.824509 <unk> store -0.03967361
-3.6521 <unk> next -0.03967361
-2.237726 <unk> which -0.1646123
-3.77458 <unk> distance -0.03967361
-2.782684 <unk> now -0.03967361
-3.179938 <unk> matthew -0.03967361
-2.817696 <unk> why -0.03967361
-3.373105 <unk> been -0.03967361
-3.689216 <unk> known -0.03967361
-3.178926 <unk> information -0.03967361
-2.290215 <unk> about -0.1488181
-3.503013 <unk> life -0.03967361
-2.661514 <unk> here -0.03967361
-3.586211 <unk> half -0.03967361
-3.012077 <unk> three -0.03967361
-3.063951 <unk> day -0.03967361
-3.133519 <unk> driving -0.03967361
-2.917278 <unk> have -0.3407036
-3.412243 <unk> go -0.03967361
-3.824509 <unk> strangers -0.03967361
-3.145367 <unk> any -0.03967362
-2.965743 <unk> might -0.03967361
-3.77458 <unk> talk -0.03967361
-3.133519 <unk> dressed -0.03967361
-3.028689 <unk> something -0.03967362
-3.6521 <unk> often -0.03967361
-2.850131 <unk> make -0.03967361
-3.304046 <unk> nothing -0.03967361
-3.824509 <unk> putting -0.03967361
-3.133519 <unk> together -0.03967361
-3.617907 <unk> both -0.03967362
-3.6521 <unk> questions -0.03967361
-2.703467 <unk> must -0.03967361
-3.689216 <unk> taking -0.03967361
-3.617907 <unk> i'll -0.03967361
-2.873183 <unk> green -0.5167949
-2.792403 <unk> after -0.03967361
-3.020303 <unk> marilla -0.03967361
-3.586211 <unk> he's -0.03967362
-2.879142 <unk> woman -0.2157649
-3.824509 <unk> generally -0.03967361
-3.77458 <unk> he'd -0.03967361
-3.10233 <unk> dress -0.03967361
-2.777906 <unk> more -0.2157649
-3.824509 <unk> quarter -0.03967361
-3.77458 <unk> lane -0.03967361
-2.782684 <unk> made -0.03967361
-3.11248 <unk> father -0.03967361
-3.073232 <unk> since -0.03967362
-3.373105 <unk> last -0.03967361
-2.597149 <unk> off -0.1188548
-2.965743 <unk> i'm -0.03967361
-3.77458 <unk> clean -0.03967361
-2.873183 <unk> that's -0.2157649
-2.680403 <unk> what -0.03967361
-1.998928 <unk> i -0.1298503
-3.556672 <unk> know -0.03967361
-3.824509 <unk> peace -0.03967361
-2.910231 <unk> conscience -0.03967361
-2.687739 <unk> has -0.1365836
-3.556672 <unk> set -0.03967361
-3.082716 <unk> along -0.03967362
-3.204615 <unk> did -0.03967361
-2.844554 <unk> such -0.0396736
-2.839048 <unk> it's -0.2157649
-2.336111 <unk> said -0.3407036
-3.133519 <unk> deep -0.03967361
-3.478481 <unk> got -0.03967362
-2.828241 <unk> men -0.03967361
-2.501837 <unk> when -0.1188548
-3.824509 <unk> edge -0.03967362
-3.617907 <unk> wild -0.03967361
-2.486992 <unk> no -0.2615224
-3.6521 <unk> wonder -0.03967362
-2.850131 <unk> themselves -0.0396736
-3.412243 <unk> much -0.03967361
-3.617907 <unk> company -0.03967361
-3.586211 <unk> though -0.03967361
-2.594288 <unk> they -0.03967361
-3.073232 <unk> enough -0.03967361
-3.054863 <unk> look -0.03967362
-3.082716 <unk> nor -0.03967361
-2.724318 <unk> then -0.03967361
-3.6521 <unk> used -0.03967361
-3.122872 <unk> body -0.03967361
-3.478481 <unk> get -0.03967361
-3.273241 <unk> very -0.03967362
-3.144433 <unk> ground -0.3407036
-2.917278 <unk> do -0.3407036
-3.77458 <unk> whence -0.03967361
-2.029989 <unk> you -0.1516474
-3.045962 <unk> left -0.03967361
-3.824509 <unk> birches -0.03967361
-3.082716 <unk> give -0.03967361
-3.43322 <unk> looked -0.03967361
-3.304046 <unk> came -0.03967362
-2.903833 <unk> behind -0.1365836
-3.689216 <unk> laid -0.03967362
-3.586211 <unk> getting -0.03967361
-3.503013 <unk> isn't -0.03967362
-3.824509 <unk> dishes -0.03967361
-2.93739 <unk> only -0.03967361
-3.824509 <unk> apple -0.03967361
-2.812519 <unk> how -0.03967361
-2.470093 <unk> your -0.03967362
-3.122872 <unk> name -0.03967361
-3.77458 <unk> existed -0.03967361
-2.619665 <unk> between -0.1365836
-3.586211 <unk> perhaps -0.03967361
-3.77458 <unk> lips -0.03967361
-3.412243 <unk> too -0.03967361
-3.689216 <unk> curiosity -0.03967361
-2.71155 <unk> oh -0.1646123
-2.897527 <unk> yesterday -0.03967362
-3.6521 <unk> thin -0.03967361
-3.6521 <unk> hair -0.03967362
-3.689216 <unk> gray -0.03967362
-3.617907 <unk> hard -0.03967361
-3.258621 <unk> two -0.03967361
-3.824509 <unk> stuck -0.03967362
-2.944307 <unk> like -0.03967361
-3.689216 <unk> mouth -0.03967361
-3.77458 <unk> sense -0.03967361
-3.77458 <unk> we're -0.03967361
-3.122872 <unk> afraid -0.03967361
-3.045962 <unk> thought -0.03967361
-2.891312 <unk> maybe -0.03967362
-3.092413 <unk> boy -0.03967361
-3.729804 <unk> orphan -0.03967361
-3.045962 <unk> five -0.0396736
-3.6521 <unk> almost -0.03967361
-3.689216 <unk> forced -0.03967361
-3.586211 <unk> voice -0.03967361
-3.586211 <unk> returned -0.03967362
-3.392233 <unk> yes -0.03967361
-3.77458 <unk> farm -0.03967361
-3.729804 <unk> mental -0.03967362
-3.11248 <unk> certainly -0.03967361
-3.729804 <unk> turning -0.03967361
-3.729804 <unk> earth -0.03967361
-3.43322 <unk> put -0.03967361
-3.689216 <unk> winter -0.03967361
-3.689216 <unk> fact -0.03967361
-3.729804 <unk> broke -0.03967361
-3.073232 <unk> first -0.03967361
-3.073232 <unk> right -0.03967362
-3.6521 <unk> street -0.03967362
-2.069992 <unk> me -0.1239945
-3.689216 <unk> born -0.03967361
-2.879649 <unk> we -0.03967361
-2.575994 <unk> my -0.1365836
-3.11248 <unk> sleep -0.03967361
-3.824509 <unk> help -0.03967362
-3.689216 <unk> use -0.03967361
-3.824509 <unk> station -0.03967361
-2.93739 <unk> will -0.03967361
-3.617907 <unk> herself -0.03967362
-3.77458 <unk> pick -0.03967361
-3.012077 <unk> us -0.03967361
-3.689216 <unk> sent -0.03967362
-3.77458 <unk> likely -0.03967361
-3.122872 <unk> turn -0.03967361
-3.092413 <unk> took -0.03967361
-3.689216 <unk> fire -0.03967361
-3.824509 <unk> foolish -0.03967361
-2.861504 <unk> thing -0.03967361
-3.392233 <unk> don't -0.03967361
-3.529014 <unk> strange -0.03967361
-3.503013 <unk> child -0.03967361
-3.729804 <unk> parents -0.03967361
-3.689216 <unk> couldn't -0.03967361
-3.824509 <unk> sake -0.3407036
-3.586211 <unk> seemed -0.0396736
-3.824509 <unk> deny -0.03967361
-3.373105 <unk> i've -0.03967361
-3.054863 <unk> myself -0.03967361
-3.045962 <unk> see -0.03967361
-2.85578 <unk> gave -0.03967361
-3.824509 <unk> painful -0.03967361
-3.556672 <unk> does -0.0396736
-3.824509 <unk> wells -0.03967361
-3.556672 <unk> really -0.03967361
-3.412243 <unk> poor -0.03967361
-3.77458 <unk> expect -0.03967362
-3.167122 <unk> loved -0.03967362
-3.729804 <unk> somewhat -0.03967361
-3.824509 <unk> relief -0.03967361
-3.586211 <unk> under -0.03967362
-3.729804 <unk> influence -0.03967361
-2.861504 <unk> things -0.03967361
-3.144433 <unk> hung -0.03967361
-3.617907 <unk> many -0.03967362
-2.951335 <unk> again -0.03967361
-3.155629 <unk> wood -0.03967361
-3.77458 <unk> laughing -0.03967362
-3.155629 <unk> figure -0.03967361
-3.689216 <unk> except -0.03967361
-3.6521 <unk> during -0.03967362
-3.6521 <unk> brown -0.0396736
-3.824509 <unk> creature -0.03967361
-3.729804 <unk> notice -0.03967361
-3.77458 <unk> expression -0.03967361
-3.6521 <unk> waiting -0.03967361
-3.77458 <unk> office -0.03967361
-3.77458 <unk> ago -0.03967361
-3.77458 <unk> dropped -0.03967361
-2.850131 <unk> room -0.03967361
-3.729804 <unk> outside -0.03967361
-3.122872 <unk> should -0.03967361
-3.020303 <unk> come -0.03967361
-3.045962 <unk> hand -0.03967361
-3.503013 <unk> better -0.03967361
-2.603464 <unk> question -0.03967362
-3.77458 <unk> tongue -0.03967361
-2.524878 <unk> than -0.07746216
-3.729804 <unk> walk -0.03967362
-3.617907 <unk> turned -0.03967361
-3.77458 <unk> gently -0.03967362
-3.529014 <unk> towards -0.03967362
-2.861504 <unk> eyes -0.03967361
-3.689216 <unk> hat -0.0396736
-3.155629 <unk> beneath -0.03967362
-3.529014 <unk> face -0.03967362
-3.6521 <unk> also -0.03967361
-3.77458 <unk> large -0.03967361
-3.824509 <unk> observer -0.03967361
-3.824509 <unk> extraordinary -0.03967361
-3.337204 <unk> our -0.03967362
-3.6521 <unk> stood -0.03967362
-3.77458 <unk> carpet -0.03967361
-3.77458 <unk> clear -0.03967361
-2.85578 <unk> way -0.03967362
-3.77458 <unk> you've -0.03967361
-3.556672 <unk> love -0.03967361
-3.689216 <unk> wonderful -0.03967361
-3.824509 <unk> companion -0.03967361
-3.824509 <unk> stolen -0.03967361
-3.824509 <unk> nurse -0.03967361
-3.729804 <unk> lie -0.03967361
-3.556672 <unk> want -0.03967362
-3.617907 <unk> several -0.03967362
-3.689216 <unk> feet -0.03967361
-2.629684 <unk> against -0.2615224
-3.824509 <unk> veil -0.03967362
-2.879142 <unk> most -0.5167949
-3.10233 <unk> hundred -0.3407036
-3.729804 <unk> kept -0.03967361
-3.77458 <unk> watch -0.03967361
-3.824509 <unk> gloves -0.03967361
-3.880932 <unk> intelligence -0.03967361
-2.449343 <unk> himself -0.0396736
-3.824509 <unk> girls -0.03967361
-3.092413 <unk> black -0.5167949
-3.824509 <unk> extended -0.03967362
-3.824509 <unk> astir -0.03967361
-3.6521 <unk> moment -0.03967361
-3.6521 <unk> each -0.03967361
-3.824509 <unk> guide -0.03967361
-3.77458 <unk> gods -0.03967361
-2.850131 <unk> light -0.03967361
-3.824509 <unk> created -0.03967361
-3.10233 <unk> told -0.03967361
-3.77458 <unk> presence -0.03967361
-3.824509 <unk> birthday -0.03967361
-3.478481 <unk> jesus -0.03967361
-3.689216 <unk> search -0.03967361
-3.729804 <unk> person -0.03967361
-3.689216 <unk> truth -0.03967361
-3.77458 <unk> moral -0.03967361
-3.824509 <unk> discussion -0.03967362
-3.586211 <unk> count -0.03967361
-3.824509 <unk> social -0.03967362
-3.77458 <unk> searching -0.03967361
-3.824509 <unk> page -0.03967361
-3.824509 <unk> calling -0.03967361
-3.77458 <unk> explanation -0.03967361
-3.77458 <unk> desire -0.03967362
-3.144433 <unk> science -0.03967363
-3.729804 <unk> less -0.03967362
-3.824509 <unk> fairies -0.03967361
-3.167122 <unk> beings -0.03967361
-3.77458 <unk> says -0.03967361
-3.689216 <unk> thus -0.03967361
-2.691618 <unk> upon -0.4376136
-3.824509 <unk> john -0.03967362
-3.824509 <unk> judas -0.03967362
-3.586211 <unk> else -0.03967361
-3.617907 <unk> silence -0.03967362
-3.28837 <unk> these -0.03967361
-3.178926 <unk> claims -0.03967361
-3.824509 <unk> mothers -0.03967361
-3.824509 <unk> caused -0.03967362
-3.689216 <unk> words -0.03967361
-3.77458 <unk> effort -0.03967362
-3.77458 <unk> poverty -0.03967361
-3.824509 <unk> animal -0.03967361
-3.77458 <unk> car -0.03967361
-3.77458 <unk> balance -0.03967361
-3.824509 <unk> fight -0.03967361
-3.824509 <unk> gain -0.03967362
-3.155629 <unk> birth -0.03967361
-3.6521 <unk> around -0.03967361
-3.77458 <unk> lower -0.03967361
-3.824509 <unk> figures -0.03967361
-3.155629 <unk> picture -0.03967362
-3.824509 <unk> product -0.3407036
-3.155629 <unk> board -0.03967361
-3.880932 <unk> complaint -0.03967361
-3.880932 <unk> whereby -0.03967361
-3.824509 <unk> blush -0.03967362
-3.824509 <unk> sensorium -0.03967361
-3.77458 <unk> anger -0.03967361
-3.824509 <unk> price -0.03967362
-3.689216 <unk> sarah -0.03967362
-3.178926 <unk> security -0.5167949
-3.167122 <unk> brain -0.03967362
-3.144433 <unk> cold -0.03967362
-3.824509 <unk> inside -0.03967362
-3.824509 <unk> occupied -0.03967361
-3.77458 <unk> thoughts -0.03967361
-3.824509 <unk> wall -0.03967361
-3.729804 <unk> condition -0.03967361
-3.729804 <unk> fallen -0.03967361
-3.6521 <unk> round -0.03967361
-3.167122 <unk> according -0.3407036
-3.77458 <unk> arrived -0.03967361
-3.689216 <unk> man's -0.03967362
-3.144433 <unk> manner -0.03967361
-3.824509 <unk> longer -0.03967361
-3.824509 <unk> interview -0.03967361
-3.729804 <unk> within -0.03967361
-3.824509 <unk> swamp -0.03967361
-3.77458 <unk> spent -0.03967361
-3.155629 <unk> neck -0.03967362
-3.824509 <unk> character -0.03967362
-3.77458 <unk> remembered -0.03967361
-2.885185 <unk> every -0.03967361
-3.824509 <unk> proved -0.03967362
-3.004003 <unk> still -0.03967361
-2.910231 <unk> forth -0.03967361
-3.824509 <unk> newspapers -0.03967361
-3.824509 <unk> unconsciously -0.03967361
-2.72854 <unk> bobby -0.03967361
-3.729804 <unk> graham's -0.03967361
-3.77458 <unk> remained -0.03967361
-3.155629 <unk> paredes's -0.03967361
-3.77458 <unk> weariness -0.03967361
-3.556672 <unk> became -0.03967362
-3.824509 <unk> fellows -0.03967361
-3.689216 <unk> across -0.03967361
-3.824509 <unk> telephoned -0.03967361
-3.824509 <unk> katherine -0.03967361
-3.824509 <unk> landscape -0.03967361
-2.581751 <unk> graham -0.03967361
-3.689216 <unk> dull -0.03967361
-3.824509 <unk> buried -0.03967361
-3.133519 <unk> robinson -0.03967361
-3.77458 <unk> court -0.03967361
-3.729804 <unk> easy -0.03967362
-3.824509 <unk> uncommunicative -0.03967362
-3.617907 <unk> appeared -0.03967361
-3.824509 <unk> pleasantly -0.03967361
-3.77458 <unk> bobby's -0.03967361
-3.824509 <unk> expressed -0.03967362
-3.77458 <unk> remain -0.03967361
-3.824509 <unk> crush -0.03967361
-3.729804 <unk> sum -0.03967361
-3.556672 <unk> hold -0.03967362
-3.77458 <unk> witness -0.03967361
-3.824509 <unk> staircase -0.03967362
-3.824509 <unk> worry -0.03967361
-3.824509 <unk> impression -0.03967361
-3.824509 <unk> sound -0.03967361
-3.6521 <unk> led -0.03967362
-3.824509 <unk> roofs -0.03967362
-3.824509 <unk> weaving -0.03967361
-3.77458 <unk> melancholy -0.03967361
-3.824509 <unk> walls -0.03967361
-3.689216 <unk> path -0.03967362
-3.824509 <unk> justice -0.03967361
-3.6521 <unk> death -0.03967362
-3.77458 <unk> fingers -0.03967361
-3.167122 <unk> power -0.03967361
-3.824509 <unk> interest -0.03967362
-3.824509 <unk> apprehension -0.03967362
-3.178926 <unk> harmony -0.03967361
-3.689216 <unk> sad -0.03967361
-3.77458 <unk> asking -0.03967361
-3.824509 <unk> acquired -0.03967362
-3.824509 <unk> direct -0.03967361
-3.824509 <unk> shape -0.03967362
-3.77458 <unk> opposite -0.03967361
-3.729804 <unk> followed -0.03967361
-3.824509 <unk> delay -0.03967361
-3.77458 <unk> desk -0.03967361
-3.77458 <unk> keeps -0.03967361
-3.77458 <unk> gives -0.03967362
-3.729804 <unk> beauty -0.03967361
-3.6521 <unk> thou -0.03967361
-3.824509 <unk> receiving -0.03967362
-2.897527 <unk> doth -0.03967361
-3.824509 <unk> strong -0.03967362
-3.729804 <unk> tis -0.03967361
-3.824509 <unk> sin -0.03967361
-3.689216 <unk> cried -0.03967362
-3.77458 <unk> written -0.03967361
-3.729804 <unk> thank -0.03967361
-3.824509 <unk> delighted -0.03967361
-2.873183 <unk> indeed -0.03967362
-3.824509 <unk> study -0.03967362
-3.77458 <unk> villefort -0.03967361
-3.824509 <unk> procureur -0.03967361
-3.824509 <unk> presented -0.03967362
-3.77458 <unk> rolled -0.03967361
-3.824509 <unk> procession -0.03967361
-3.824509 <unk> gradually -0.03967362
-3.729804 <unk> chateau -0.0396736
-3.729804 <unk> replied -0.03967362
-3.586211 <unk> monte -0.03967361
-3.729804 <unk> smile -0.03967361
-3.824509 <unk> offered -0.03967361
-3.6521 <unk> happy -0.03967361
-3.155629 <unk> baron -0.03967361
-3.729804 <unk> king -0.03967361
-3.824509 <unk> philosophers -0.03967361
-3.77458 <unk> consolation -0.03967361
-3.6521 <unk> bonds -0.03967362
-3.6521 <unk> placed -0.03967361
-3.6521 <unk> receipt -0.03967361
-3.824509 <unk> impertinence -0.03967362
-3.178926 <unk> de -0.03967361
-3.729804 <unk> mother -0.03967361
-3.729804 <unk> rain -0.03967361
-3.824509 <unk> mass -0.03967362
-3.77458 <unk> line -0.03967361
-3.77458 <unk> rising -0.03967361
-3.824509 <unk> smell -0.03967362
-3.729804 <unk> laughter -0.03967361
-3.824509 <unk> thrusting -0.03967361
-3.824509 <unk> disgust -0.03967361
-3.77458 <unk> coffee -0.03967361
-3.77458 <unk> secret -0.03967361
-3.824509 <unk> physical -0.03967362
-3.824509 <unk> alike -0.03967361
-3.77458 <unk> youth -0.03967361
-3.824509 <unk> remark -0.03967361
-3.824509 <unk> state -0.03967362
-3.824509 <unk> impressions -0.03967361
-3.77458 <unk> rosalind -0.03967362
-3.824509 <unk> rivers -0.03967361
-3.824509 <unk> darned -0.03967361
-3.178926 <unk> clara -0.03967361
-3.77458 <unk> princes -0.03967361
-3.729804 <unk> gravity -0.03967361
-3.824509 <unk> lift -0.03967361
-3.77458 <unk> cries -0.03967361
-2.903833 <unk> chamber -0.03967363
-3.824509 <unk> leaves -0.03967361
-3.824509 <unk> contained -0.03967361
-3.824509 <unk> flowed -0.03967361
-3.77458 <unk> bear -0.03967361
-3.824509 <unk> asleep -0.03967362
-3.824509 <unk> lip -0.03967362
-3.178926 <unk> yourself -0.03967361
-3.155629 <unk> cacambo -0.03967361
-3.824509 <unk> candide -0.03967361
-3.729804 <unk> martin -0.03967361
-3.824509 <unk> impaled -0.03967361
-3.824509 <unk> dervish -0.03967362
-3.77458 <unk> sons -0.03967361
-3.824509 <unk> pistachio -0.03967361
-3.167122 <unk> apprentice -0.03967361
-3.478481 <unk> robin -0.03967361
-3.586211 <unk> montfichet -0.03967361
-3.824509 <unk> esquire -0.03967361
-3.178926 <unk> singing -0.03967361
-3.824509 <unk> onward -0.03967361
-1.127208 down </s>
-0.9418236 down the -0.03967361
-1.956952 down into -0.03967361
-1.747621 down a -0.03967361
-1.606969 down and -0.03967361
-1.715194 down in -0.03967361
-1.166007 down to -0.03967361
-1.866994 down but -0.03967361
-1.891299 down her -0.03967361
-1.227512 down she -0.03967362
-1.923727 down or -0.03967361
-1.933947 down out -0.03967362
-1.932227 down there -0.03967362
-1.853898 down as -0.03967361
-1.871449 down his -0.03967361
-1.983171 down too -0.03967362
-1.962439 down again -0.03967361
-1.794929 into </s>
-0.4712327 into the -0.1488181
-1.694588 into <unk> -0.03967361
-1.22305 into a -0.03967361
-1.474131 into it -0.03967362
-1.493979 into her -0.03967361
-2.18001 into this -0.03967362
-2.197045 into if -0.03967361
-1.084101 into his -0.1365836
-1.250262 into your -0.03967361
-2.260539 into thin -0.03967361
-1.499522 into my -0.03967361
-2.260539 into each -0.03967361
-2.268658 into jail -0.03967362
-2.268658 into egypt -0.03967362
-2.266614 into vision -0.03967361
-2.260539 into danglars -0.03967361
-1.876639 a </s>
-2.654799 a one -0.03967361
-0.7218026 a <unk> -0.2955414
-1.429075 a little -0.1709525
-2.511071 a hollow -0.03967361
-2.519703 a brook -0.03967361
-2.236463 a place -0.03967361
-3.195934 a course -0.03967361
-3.175729 a quiet -0.03967361
-3.175729 a window -0.03967361
-3.239405 a sharp -0.3407036
-2.524084 a foreign -0.3407036
-3.217126 a circle -0.03967361
-3.239405 a steep -0.03967361
-2.490215 a white -0.03967361
-1.555743 a man -0.1188549
-3.239405 a buggy -0.03967362
-3.175729 a whole -0.03967361
-3.120207 a half -0.03967361
-2.528509 a busy -0.03967361
-3.055744 a day -0.03967361
-3.120207 a given -0.03967361
-2.096661 a pretty -0.03967361
-1.640323 a good -0.302915
-3.055744 a home -0.03967361
-3.175729 a worthy -0.03967361
-2.498437 a woman -0.03967361
-2.874678 a more -0.03967362
-2.519703 a big -0.03967362
-2.524084 a quarter -0.03967362
-1.983396 a long -0.03967361
-3.103172 a further -0.03967361
-3.137937 a father -0.03967361
-2.986658 a last -0.03967361
-3.217126 a clean -0.03967361
-3.055744 a mind -0.03967361
-3.195934 a land -0.03967362
-2.502608 a wild -0.2157649
-3.156422 a wonder -0.03967361
-3.041019 a look -0.03967361
-2.09831 a great -0.0396736
-2.528509 a stray -0.03967361
-3.195934 a stick -0.03967361
-3.195934 a yard -0.03967361
-2.257395 a body -0.03967361
-1.96357 a very -0.1365836
-3.239405 a neat -0.03967361
-3.239405 a cheerful -0.03967361
-2.524084 a real -0.03967361
-2.515366 a fine -0.03967361
-3.175729 a kind -0.03967361
-3.137937 a sight -0.03967361
-2.103294 a bad -0.03967361
-3.156422 a hair -0.03967361
-3.137937 a hard -0.03967362
-3.217126 a narrow -0.03967361
-2.519703 a sense -0.3407036
-1.890562 a boy -0.1188549
-3.239405 a kangaroo -0.03967361
-3.120207 a voice -0.03967361
-2.999624 a yes -0.03967361
-3.156422 a part -0.0396736
-1.892614 a girl -0.1066204
-3.217126 a world -0.03967362
-3.239405 a flat -0.03967361
-3.070985 a right -0.03967361
-3.156422 a street -0.03967361
-3.175729 a born -0.03967361
-3.239405 a risk -0.03967361
-3.195934 a matter -0.03967361
-3.156422 a heart -0.03967361
-3.103172 a young -0.03967362
-3.217126 a pick -0.03967361
-3.217126 a week -0.03967362
-2.259784 a word -0.03967361
-3.156422 a turn -0.03967362
-2.515366 a wife -0.03967361
-3.175729 a fire -0.03967361
-3.070985 a thing -0.03967362
-2.247967 a strange -0.03967361
-2.486161 a child -0.03967361
-2.269475 a single -0.03967361
-3.217126 a sort -0.0396736
-2.519703 a case -0.03967361
-2.515366 a different -0.03967362
-2.524084 a tone -0.03967362
-2.482144 a new -0.3407036
-3.262889 a sensation -0.03967361
-3.175729 a mistake -0.03967362
-3.239405 a relief -0.03967361
-3.137937 a breath -0.03967362
-2.494306 a while -0.03967361
-1.988497 a bit -0.1365836
-3.156422 a feeling -0.03967361
-3.217126 a personage -0.03967361
-3.217126 a figure -0.03967361
-3.239405 a fashion -0.03967362
-2.498437 a prince -0.03967361
-3.103172 a full -0.03967361
-2.515366 a sign -0.3407036
-2.515366 a horse -0.03967361
-3.195934 a small -0.03967361
-3.041019 a room -0.03967361
-3.239405 a situation -0.03967361
-3.217126 a tongue -0.03967361
-3.217126 a certain -0.03967361
-2.506819 a short -0.03967361
-3.217126 a thick -0.03967361
-3.08678 a face -0.03967361
-3.217126 a large -0.03967361
-3.217126 a lovely -0.03967361
-2.243329 a way -0.03967361
-3.195934 a live -0.03967361
-3.195934 a worse -0.03967361
-2.269475 a bride -0.03967361
-3.120207 a beautiful -0.03967361
-3.239405 a veil -0.03967361
-1.98213 a hundred -0.03967361
-2.528509 a lot -0.0396736
-3.262889 a mercy -0.03967361
-3.137937 a thousand -0.03967361
-3.217126 a delightful -0.03967361
-3.217126 a flash -0.03967361
-3.175729 a gentleman -0.03967361
-3.217126 a city -0.03967361
-3.156422 a moment -0.03967361
-3.217126 a priest -0.03967361
-3.239405 a low -0.03967361
-3.041019 a light -0.03967361
-2.101626 a god -0.2157649
-3.239405 a suggestion -0.03967361
-2.267032 a number -0.5167949
-3.195934 a person -0.03967361
-3.239405 a golden -0.03967361
-3.175729 a faith -0.03967361
-3.217126 a moral -0.03967361
-3.239405 a subject -0.03967361
-2.106649 a myth -0.1646123
-3.239405 a friday -0.03967361
-3.239405 a mythical -0.03967361
-3.239405 a unanimous -0.03967362
-3.137937 a silence -0.03967362
-3.239405 a sleeping -0.03967361
-3.239405 a wide -0.03967361
-3.175729 a lady -0.03967361
-3.217126 a balance -0.03967361
-3.217126 a cash -0.03967361
-3.239405 a brilliant -0.03967362
-3.217126 a game -0.03967361
-3.239405 a department -0.03967361
-3.175729 a foot -0.03967361
-3.239405 a married -0.03967362
-3.239405 a female -0.03967362
-3.137937 a dead -0.03967361
-3.239405 a form -0.03967361
-2.528509 a shady -0.3407036
-3.195934 a crowd -0.03967361
-3.195934 a fallen -0.03967361
-3.239405 a tough -0.03967362
-3.195934 a story -0.03967361
-2.511071 a man's -0.03967361
-2.515366 a manner -0.03967362
-3.195934 a conversation -0.03967361
-3.217126 a top -0.03967361
-3.239405 a public -0.03967361
-3.217126 a fence -0.03967361
-3.120207 a bed -0.03967361
-3.239405 a lake -0.03967361
-3.239405 a harsh -0.03967361
-3.239405 a mournful -0.03967361
-3.195934 a sum -0.03967361
-3.239405 a reply -0.03967361
-2.528509 a vast -0.03967362
-3.239405 a shroud -0.03967361
-3.175729 a forest -0.03967362
-3.195934 a fresh -0.03967362
-3.175729 a sad -0.03967361
-3.217126 a cousin -0.03967361
-3.239405 a strong -0.03967361
-3.239405 a spot -0.03967361
-3.217126 a point -0.03967362
-3.217126 a passion -0.03967362
-3.217126 a vision -0.03967361
-3.217126 a funeral -0.03967361
-3.239405 a brother -0.03967361
-2.515366 a smile -0.03967362
-3.156422 a happy -0.03967361
-3.195934 a fortune -0.03967361
-2.528509 a million -0.03967361
-3.217126 a credit -0.03967361
-3.239405 a curious -0.03967362
-3.156422 a receipt -0.03967361
-2.528509 a mere -0.03967361
-3.239405 a faint -0.03967361
-2.269475 a month -0.03967361
-2.267032 a cry -0.03967361
-3.217126 a rising -0.03967361
-3.217126 a dirty -0.03967361
-3.239405 a state -0.03967361
-2.247967 a princess -0.03967361
-3.217126 a shriek -0.03967361
-3.217126 a swim -0.03967361
-3.217126 a safe -0.03967361
-2.524084 a few -0.03967362
-3.239405 a biscuit -0.03967361
-3.239405 a ship -0.03967361
-2.511071 a nottingham -0.03967361
-2.498437 a montfichet -0.03967361
-3.239405 a burden -0.03967361
-3.239405 a ladder -0.03967362
-0.8641076 little <unk> -0.08106628
-2.161417 little into -0.03967361
-2.242736 little hollow -0.03967361
-1.731122 little of -0.03967361
-2.250254 little society -0.03967361
-2.242736 little odd -0.03967361
-2.250254 little circle -0.03967361
-2.246479 little hill -0.03967362
-2.177148 little man -0.03967361
-2.158338 little before -0.03967361
-2.122998 little about -0.03967361
-2.167641 little more -0.03967361
-2.228081 little further -0.03967361
-1.867472 little i -0.03967361
-2.235347 little company -0.03967361
-2.228081 little boy -0.03967361
-1.243376 little girl -0.03967361
-2.250254 little french -0.03967361
-2.220935 little child -0.03967361
-2.228081 little while -0.03967361
-2.250254 little bit -0.03967362
-2.210432 little hand -0.03967361
-2.254062 little scope -0.03967361
-1.504995 little boat -0.03967361
-2.254062 little boots -0.03967361
-2.254062 little girls -0.03967361
-2.246479 little later -0.03967361
-2.217406 little money -0.03967361
-2.246479 little pocket -0.03967361
-2.239026 little bonds -0.03967361
-2.254062 little scraps -0.03967362
-2.254062 little stroller -0.03967361
-1.606847 hollow where -0.03967361
-1.261141 hollow <unk> -0.03967361
-1.623015 hollow fringed -0.03967361
-0.8178661 hollow and -0.2157649
-1.576212 hollow by -0.03967362
-1.421273 hollow of -0.03967362
-1.516179 hollow it -0.03967361
-1.411638 hollow to -0.03967361
-0.2148965 fringed with -0.3407036
-1.785722 with one -0.03967361
-0.9842331 with the -0.1758934
-0.8830602 with <unk> -0.3559437
-0.8486843 with a -0.1646123
-1.4995 with that -0.1365836
-2.760671 with its -0.03967361
-2.749018 with old -0.03967361
-2.351805 with it -0.03967362
-2.035173 with an -0.3407036
-2.804109 with dark -0.03967361
-1.357806 with her -0.03967363
-1.634861 with all -0.2615224
-1.789492 with this -0.03967361
-2.695028 with their -0.03967361
-2.804109 with bloom -0.03967361
-2.078361 with whom -0.03967361
-1.354781 with his -0.2437936
-1.780746 with him -0.03967361
-2.026374 with which -0.03967361
-2.684991 with now -0.03967361
-2.665588 with matthew -0.03967361
-2.72661 with three -0.03967361
-2.710532 with good -0.03967362
-2.680059 with more -0.03967362
-2.579772 with what -0.03967361
-2.272065 with i -0.03967361
-2.749018 with such -0.03967361
-2.791248 with wild -0.03967361
-2.557017 with no -0.03967361
-2.797631 with wonder -0.03967361
-2.074694 with great -0.3407036
-1.508989 with you -0.1365836
-2.052167 with some -0.03967362
-2.043021 with your -0.03967361
-2.695028 with two -0.03967361
-1.787603 with me -0.03967362
-2.572054 with my -0.03967361
-2.804109 with decided -0.03967361
-2.749018 with another -0.03967361
-2.791248 with many -0.03967361
-2.778758 with full -0.03967361
-2.824143 with pronounced -0.03967362
-2.804109 with wonderful -0.03967361
-2.791248 with several -0.0396736
-2.784958 with mine -0.03967362
-2.754805 with light -0.03967361
-2.082058 with greater -0.03967361
-2.705303 with these -0.03967361
-2.804109 with lady -0.03967361
-2.824143 with broken -0.03967362
-2.817362 with mud -0.03967361
-2.629203 with bobby -0.03967361
-2.824143 with crystal -0.03967361
-2.824143 with bankers -0.03967362
-2.824143 with condescension -0.03967361
-2.817362 with jill -0.03967361
-2.824143 with hearty -0.03967362
-2.824143 with sending -0.03967361
-2.385431 and one -0.03967361
-2.28728 and missus -0.5167949
-2.371907 and is -0.03967361
-2.926358 and just -0.03967361
-2.990541 and where -0.03967361
-1.227521 and the -0.2417783
-3.272699 and main -0.03967361
-0.8704403 and <unk> -0.2656388
-1.862424 and a -0.0396736
-3.034161 and little -0.03967361
-2.258319 and with -0.03967361
-3.272699 and ladies -0.03967361
-2.671852 and by -0.03967362
-1.854192 and that -0.03967361
-2.183052 and had -0.03967361
-3.100104 and its -0.03967361
-2.565902 and away -0.3407036
-1.780048 and in -0.1188549
-2.041174 and of -0.03967361
-2.191908 and it -0.2157649
-2.013762 and was -0.03967361
-1.87299 and to -0.03967361
-2.83039 and be -0.03967361
-2.759897 and an -0.03967361
-3.065882 and through -0.03967361
-3.082656 and those -0.03967361
-2.476828 and well -0.03967361
-2.385664 and for -0.03967361
-2.226057 and not -0.03967361
-3.034161 and even -0.03967361
-2.976923 and without -0.03967361
-3.222709 and sitting -0.03967361
-2.271326 and at -0.03967362
-2.081537 and her -0.1646123
-3.329202 and keeping -0.0396736
-2.336751 and on -0.03967361
-3.137254 and everything -0.03967361
-2.592731 and children -0.03967361
-2.421207 and up -0.03967361
-3.329202 and foreign -0.03967362
-2.571137 and yet -0.03967361
-2.102505 and all -0.1646123
-2.23568 and this -0.2157649
-2.565902 and found -0.03967361
-2.048694 and she -0.1188549
-1.884462 and if -0.2437936
-2.255591 and out -0.03967362
-2.860084 and would -0.03967362
-2.535752 and never -0.03967361
-2.028503 and there -0.2615224
-2.253052 and who -0.1365836
-2.339622 and other -0.03967361
-2.339622 and always -0.03967362
-2.040858 and as -0.03967361
-2.759897 and were -0.03967362
-3.065882 and tell -0.03967361
-3.137254 and white -0.03967361
-2.292794 and over -0.03967361
-1.97462 and his -0.1365836
-2.330449 and went -0.03967362
-2.193963 and so -0.03967361
-3.246985 and seeing -0.03967361
-3.246985 and bright -0.03967361
-3.246985 and knew -0.03967361
-1.61461 and he -0.1066204
-2.990541 and because -0.03967362
-2.699264 and which -0.03967361
-2.903125 and now -0.03967361
-2.860084 and matthew -0.03967361
-2.318511 and why -0.03967361
-3.019129 and asked -0.03967362
-2.751838 and about -0.03967361
-2.503035 and here -0.03967362
-3.177883 and half -0.03967361
-3.0046 and three -0.03967361
-3.246985 and driving -0.03967361
-2.149737 and have -0.03967361
-3.246985 and dressed -0.03967362
-3.222709 and often -0.03967361
-3.177883 and given -0.03967361
-3.100104 and home -0.03967361
-3.049732 and must -0.03967361
-3.329202 and unusual -0.03967361
-2.926358 and after -0.03967361
-3.272699 and find -0.03967362
-3.019129 and marilla -0.03967361
-3.177883 and he's -0.03967361
-3.118282 and gone -0.03967362
-3.157094 and take -0.03967361
-2.891959 and more -0.03967361
-3.199718 and long -0.03967361
-2.503035 and made -0.03967361
-3.272699 and silent -0.3407036
-3.118282 and since -0.03967361
-3.034161 and off -0.03967361
-2.926358 and i'm -0.03967361
-2.23568 and what -0.2157649
-1.575627 and i -0.06963683
-2.881072 and did -0.03967361
-3.157094 and living -0.03967361
-3.065882 and such -0.03967361
-2.333692 and said -0.03967361
-3.272699 and stepped -0.03967361
-2.23568 and when -0.03967361
-2.615456 and land -0.03967361
-2.603945 and rose -0.03967361
-2.385431 and no -0.03967361
-3.049732 and much -0.03967361
-2.245521 and they -0.03967361
-3.082656 and look -0.03967361
-1.885547 and then -0.1779763
-3.100104 and get -0.03967362
-2.938459 and very -0.03967362
-3.329202 and neat -0.03967361
-3.329202 and precise -0.03967361
-2.849959 and do -0.03967362
-1.952521 and you -0.03967361
-2.333485 and left -0.2157649
-2.633316 and nodding -0.3407036
-2.560729 and looked -0.3407036
-3.300032 and west -0.03967361
-3.137254 and looking -0.03967361
-3.246985 and laid -0.03967361
-2.903125 and some -0.03967361
-2.881072 and only -0.03967362
-2.976923 and how -0.03967361
-2.820927 and your -0.03967361
-3.177883 and perhaps -0.03967361
-3.246985 and although -0.03967361
-3.222709 and thin -0.03967361
-3.246985 and gray -0.03967361
-2.926358 and two -0.03967361
-3.329202 and developed -0.03967361
-2.339622 and saw -0.03967361
-3.246985 and instead -0.0396736
-3.272699 and turning -0.03967361
-3.300032 and french -0.03967361
-3.272699 and broke -0.03967362
-3.222709 and saying -0.03967361
-3.329202 and london -0.03967362
-2.793715 and we -0.03967361
-2.015124 and my -0.03967361
-2.598302 and sleep -0.03967361
-3.300032 and nights -0.03967361
-3.157094 and young -0.03967361
-3.329202 and thirty -0.03967361
-2.881072 and will -0.03967362
-3.157094 and took -0.03967361
-3.222709 and nearly -0.03967361
-3.034161 and don't -0.03967361
-3.137254 and strange -0.03967361
-2.560729 and another -0.03967361
-3.019129 and i've -0.03967361
-3.065882 and see -0.03967362
-2.571137 and gave -0.03967361
-3.300032 and liked -0.03967361
-3.049732 and poor -0.03967361
-3.177883 and under -0.03967362
-3.246985 and sweet -0.03967361
-3.329202 and purple -0.03967361
-2.903125 and again -0.03967361
-3.329202 and stooping -0.03967361
-3.157094 and full -0.03967361
-3.177883 and twenty -0.03967362
-3.300032 and expression -0.03967361
-3.222709 and waiting -0.03967361
-3.300032 and dropped -0.03967361
-3.329202 and charge -0.03967362
-3.246985 and orphans -0.03967362
-3.300032 and demand -0.03967361
-3.300032 and groaned -0.03967361
-3.199718 and turned -0.03967361
-3.246985 and hat -0.0396736
-3.300032 and beneath -0.03967361
-3.329202 and pronounced -0.03967361
-3.222709 and stood -0.03967361
-3.222709 and held -0.03967361
-3.222709 and imagine -0.03967361
-2.592731 and let -0.03967362
-3.300032 and belong -0.03967362
-3.329202 and partly -0.03967362
-3.329202 and bones -0.03967361
-3.157094 and want -0.03967361
-3.222709 and against -0.03967361
-3.329202 and imagined -0.03967361
-3.329202 and wear -0.03967361
-2.615456 and kept -0.03967361
-3.329202 and boots -0.03967361
-3.157094 and black -0.03967361
-3.246985 and wished -0.03967361
-2.592731 and mine -0.03967361
-3.300032 and surprise -0.03967361
-3.082656 and light -0.03967362
-3.177883 and told -0.03967361
-3.329202 and music -0.03967362
-3.300032 and moral -0.03967361
-3.329202 and free -0.03967361
-3.272699 and appear -0.03967362
-3.100104 and money -0.03967361
-3.300032 and says -0.03967361
-3.222709 and evil -0.03967361
-3.329202 and mary -0.03967362
-3.329202 and hurried -0.03967361
-3.246985 and thus -0.03967361
-3.300032 and sword -0.03967361
-3.300032 and prayers -0.03967361
-3.329202 and brilliant -0.03967361
-3.246985 and foot -0.03967361
-3.329202 and gain -0.03967361
-3.300032 and higher -0.03967361
-2.609662 and water -0.03967361
-3.199718 and dead -0.03967361
-3.246985 and sarah -0.03967362
-2.62728 and furnished -0.03967361
-3.300032 and heat -0.03967361
-3.246985 and savareen -0.03967362
-3.329202 and disturbed -0.03967361
-3.246985 and leave -0.03967361
-3.329202 and literally -0.03967361
-3.272699 and conversation -0.03967361
-3.329202 and afterwards -0.03967362
-3.300032 and deposited -0.03967361
-3.329202 and saddle -0.03967361
-3.329202 and character -0.03967361
-3.300032 and throw -0.03967361
-3.329202 and funds -0.03967361
-3.300032 and fence -0.03967361
-3.300032 and merely -0.03967361
-2.78501 and bobby -0.03967362
-2.615456 and lay -0.03967361
-3.329202 and movement -0.03967361
-3.157094 and became -0.03967362
-3.300032 and chief -0.03967361
-3.246985 and glanced -0.03967361
-3.329202 and grave -0.03967361
-3.272699 and sprang -0.03967361
-3.329202 and handed -0.03967361
-3.272699 and easy -0.03967362
-2.587231 and entered -0.03967361
-3.300032 and bobby's -0.03967361
-3.329202 and glancing -0.03967361
-3.300032 and hurry -0.03967361
-3.329202 and torn -0.03967361
-3.222709 and death -0.03967361
-3.300032 and slowly -0.03967361
-3.272699 and pocket -0.03967361
-3.300032 and changed -0.03967361
-3.272699 and followed -0.03967361
-3.329202 and watched -0.03967362
-3.199718 and thy -0.03967361
-3.246985 and doth -0.03967362
-3.272699 and send -0.03967361
-3.157094 and indeed -0.03967362
-3.300032 and villefort -0.03967361
-3.329202 and presented -0.03967361
-3.329202 and marriage -0.03967361
-3.272699 and standing -0.03967361
-3.329202 and beauchamp -0.03967361
-3.177883 and monte -0.03967362
-3.329202 and obtain -0.03967361
-3.329202 and magnificent -0.03967361
-3.329202 and listen -0.03967362
-3.329202 and fifty -0.03967362
-3.329202 and danced -0.03967361
-3.329202 and yellow -0.03967362
-3.329202 and danger -0.03967361
-3.329202 and henry -0.03967361
-3.329202 and physical -0.03967361
-3.329202 and screaming -0.03967362
-3.300032 and fear -0.03967361
-3.329202 and fruits -0.03967361
-3.360472 and wetted -0.03967361
-3.329202 and encouraged -0.03967362
-3.329202 and grew -0.03967362
-3.329202 and gush -0.03967361
-2.62728 and shone -0.03967361
-2.375021 and pulled -0.2157649
-2.621328 and rowed -0.03967361
-3.300032 and cacambo -0.03967361
-2.615456 and martin -0.03967362
-3.329202 and pistachio -0.5167949
-3.329202 and pierced -0.03967361
-3.300032 and show -0.03967361
-3.300032 and mistress -0.0396736
-3.329202 and forthwith -0.03967362
-3.329202 and rioting -0.03967361
-3.100104 and robin -0.03967361
-2.621328 and stuteley -0.03967361
-1.273 ladies the -0.03967361
-1.151475 ladies <unk> -0.03967361
-1.418559 ladies who -0.03967361
-1.43663 ladies asked -0.03967361
-1.444508 ladies waiting -0.0396736
-1.442345 ladies whose -0.03967361
-1.767952 by </s>
-2.405451 by missus -0.03967361
-0.6889265 by the -0.1709525
-0.7613133 by <unk> -0.2157649
-1.440506 by a -0.4076504
-1.858903 by and -0.03967361
-2.143327 by that -0.03967361
-2.366446 by an -0.03967361
-2.283361 by her -0.03967361
-2.318342 by all -0.03967361
-2.33695 by this -0.03967361
-2.428301 by their -0.03967361
-1.218685 by his -0.2615224
-2.283361 by so -0.03967361
-2.509786 by seeing -0.03967362
-2.294712 by him -0.03967361
-2.495859 by woman -0.03967361
-2.469279 by such -0.03967361
-2.456574 by men -0.03967361
-2.473597 by themselves -0.03967362
-2.519325 by narrow -0.03967361
-2.505094 by saying -0.03967361
-1.735124 by me -0.03967362
-2.469279 by another -0.03967361
-2.477959 by new -0.03967361
-2.500452 by several -0.0396736
-2.519325 by surprise -0.03967361
-2.524174 by calling -0.03967361
-2.524174 by mothers -0.03967361
-2.519325 by book -0.03967361
-2.509786 by water -0.03967361
-2.509786 by heaven -0.03967361
-2.524174 by figures -0.03967361
-2.509786 by savareen -0.03967361
-2.519325 by lapierre -0.03967361
-2.505094 by rawlins -0.03967361
-2.514529 by ill -0.03967361
-2.519325 by falling -0.03967361
-2.524174 by thomson -0.03967362
-2.519325 by leaving -0.03967361
-2.524174 by weight -0.03967362
-1.104936 brook </s>
-1.182177 brook in -0.03967362
-1.22186 brook was -0.03967361
-1.260775 brook could -0.03967361
-1.58693 that </s>
-2.749947 that missus -0.03967361
-1.621142 that is -0.03967361
-1.249245 that the -0.1188548
-1.218742 that <unk> -0.1909413
-1.837041 that a -0.03967361
-1.985659 that and -0.03967361
-1.801569 that had -0.03967361
-2.160346 that in -0.03967361
-1.889122 that of -0.3407036
-2.88128 that old -0.03967361
-1.665275 that it -0.1858017
-1.772266 that was -0.03967361
-1.873781 that to -0.03967361
-2.678282 that an -0.03967361
-2.965645 that reached -0.03967361
-2.37519 that for -0.03967361
-2.862522 that even -0.03967361
-2.827274 that without -0.03967361
-2.141275 that on -0.03967362
-2.921417 that everything -0.03967362
-2.965645 that passed -0.03967361
-2.168258 that all -0.03967361
-1.963799 that this -0.2157649
-1.606644 that she -0.1488181
-1.975547 that if -0.03967362
-2.219408 that would -0.03967362
-2.666433 that there -0.03967361
-2.197028 that were -0.03967361
-3.014893 that crossed -0.03967361
-2.989571 that hill -0.03967361
-2.232119 that man -0.3407036
-1.69295 that his -0.1188549
-1.943422 that so -0.03967361
-1.043578 that he -0.3962209
-2.835821 that because -0.03967362
-1.96496 that which -0.03967361
-2.749947 that matthew -0.03967361
-2.900885 that day -0.03967362
-2.794673 that might -0.03967361
-2.954158 that didn't -0.03967361
-2.977443 that together -0.03967361
-2.818891 that good -0.03967361
-2.932059 that green -0.03967361
-2.794673 that after -0.03967361
-2.003837 that marilla -0.1646124
-2.779247 that made -0.03967361
-2.232119 that i'm -0.03967361
-2.627338 that what -0.03967361
-1.214573 that i -0.1066204
-2.835821 that has -0.03967361
-2.76435 that did -0.03967361
-2.853438 that men -0.03967361
-1.963799 that when -0.03967361
-2.168258 that no -0.03967361
-1.628577 that they -0.1188549
-2.921417 that nor -0.03967361
-2.277397 that yard -0.03967361
-2.690463 that then -0.03967361
-1.601581 that you -0.03967361
-2.779247 that some -0.03967361
-2.722499 that your -0.03967361
-2.954158 that sight -0.03967361
-2.871799 that too -0.03967362
-2.794673 that two -0.03967361
-2.249668 that ever -0.03967361
-2.954158 that girl -0.03967361
-2.702995 that we -0.03967361
-2.616785 that my -0.03967361
-2.989571 that can't -0.03967361
-2.932059 that does -0.0396736
-2.977443 that near -0.03967361
-2.871799 that poor -0.03967361
-3.014893 that touched -0.03967361
-2.942968 that women -0.03967361
-2.942968 that prince -0.03967361
-3.002047 that failed -0.03967362
-3.014893 that brisk -0.03967362
-2.88128 that question -0.03967361
-3.002047 that tree -0.03967361
-2.900885 that way -0.03967362
-2.954158 that several -0.03967361
-2.942968 that beautiful -0.03967361
-3.002047 that boat -0.03967362
-3.002047 that flash -0.03967361
-2.977443 that gentleman -0.03967361
-2.942968 that mine -0.03967361
-2.272651 that moment -0.03967362
-2.900885 that jesus -0.03967361
-2.977443 that truth -0.03967361
-3.014893 that building -0.03967361
-3.014893 that realization -0.03967362
-2.258716 that money -0.03967362
-2.810668 that these -0.03967361
-3.014893 that interview -0.03967361
-2.696684 that bobby -0.03967361
-2.27979 that remained -0.03967361
-3.014893 that maria -0.03967361
-2.989571 that sum -0.03967361
-3.014893 that dismal -0.03967361
-2.989571 that makes -0.03967361
-3.014893 that weak -0.03967361
-3.002047 that keeps -0.03967361
-2.272651 that thou -0.03967362
-3.014893 that drew -0.03967361
-3.014893 that persons -0.03967362
-2.965645 that sir -0.03967362
-2.284615 that affair -0.0396736
-3.014893 that ancient -0.03967361
-3.014893 that remark -0.03967361
-2.989571 that chamber -0.03967361
-2.900885 that robin -0.03967361
-2.989571 that warrenton -0.03967362
-3.02813 that geoffrey -0.03967361
-1.837523 had </s>
-2.702134 had just -0.03967362
-1.345829 had the -0.1066204
-1.024868 had <unk> -0.1239945
-1.383992 had a -0.1066204
-2.794231 had its -0.03967361
-1.869075 had in -0.03967361
-1.812047 had of -0.03967361
-1.776343 had it -0.2157649
-1.479352 had to -0.1365836
-2.59809 had an -0.03967361
-2.410894 had but -0.03967361
-2.848817 had reached -0.03967362
-1.975593 had for -0.03967361
-1.586324 had not -0.3184273
-2.730716 had without -0.03967362
-2.471521 had her -0.03967361
-2.45949 had on -0.03967361
-2.848817 had passed -0.03967361
-2.794231 had yet -0.03967361
-2.058273 had all -0.03967361
-2.785764 had found -0.03967361
-2.396973 had she -0.03967361
-2.889435 had knitted -0.03967362
-1.60527 had never -0.1066204
-2.794231 had always -0.03967362
-2.820667 had done -0.03967362
-2.421635 had his -0.03967361
-2.471521 had so -0.03967361
-2.217243 had he -0.03967361
-2.137274 had heard -0.03967361
-1.877508 had asked -0.03967361
-1.002328 had been -0.206005
-2.858621 had known -0.03967361
-2.643969 had any -0.03967361
-2.723393 had nothing -0.03967361
-2.829849 had given -0.03967361
-2.723393 had good -0.03967361
-2.802865 had gone -0.03967361
-2.142961 had long -0.03967362
-2.108137 had made -0.03967361
-2.839229 had taken -0.03967361
-1.823986 had said -0.03967361
-1.882717 had got -0.03967361
-2.878919 had actually -0.03967361
-2.858621 had seen -0.03967361
-2.364006 had you -0.03967361
-2.129804 had left -0.3407036
-2.77746 had looked -0.03967362
-2.889435 had fairly -0.03967361
-2.108137 had some -0.03967361
-2.104629 had only -0.03967361
-2.848817 had expected -0.03967361
-2.878919 had existed -0.03967361
-2.769312 had too -0.03967361
-1.878545 had ever -0.03967361
-2.77746 had five -0.03967361
-2.829849 had returned -0.03967361
-2.829849 had felt -0.03967361
-2.150662 had received -0.03967361
-2.829849 had soon -0.03967361
-2.829849 had once -0.03967361
-2.820667 had brought -0.03967362
-2.858621 had none -0.03967361
-2.878919 had worn -0.03967361
-2.878919 had failed -0.03967362
-2.75346 had come -0.03967361
-2.858621 had walked -0.03967362
-2.829849 had let -0.03967361
-1.610278 had already -0.03967361
-2.820667 had lost -0.03967361
-2.148724 had fallen -0.03967361
-2.878919 had arrived -0.03967361
-2.848817 had started -0.03967361
-2.154565 had ridden -0.03967362
-2.152609 had disappeared -0.03967362
-2.878919 had apparently -0.03967362
-2.868651 had slept -0.03967361
-2.858621 had tried -0.03967361
-2.820667 had entered -0.03967361
-2.829849 had suddenly -0.03967361
-2.868651 had paid -0.03967361
-2.889435 had increased -0.03967362
-2.889435 had paused -0.03967361
-2.889435 had imposed -0.0396736
-2.889435 had torn -0.03967361
-2.900213 had spoken -0.3407036
-2.878919 had changed -0.03967361
-2.889435 had executed -0.03967361
-2.889435 had offered -0.03967361
-2.868651 had amory -0.03967361
-2.889435 had hoped -0.03967361
-0.3517405 its <unk> -0.0854311
-1.883287 its place -0.03967361
-1.897529 its earlier -0.03967361
-1.893924 its heavy -0.03967362
-1.897529 its restless -0.03967361
-1.892729 its silence -0.03967362
-1.898737 its match -0.03967361
-1.898737 its brevity -0.03967361
-1.891538 its bed -0.03967361
-1.897529 its grasp -0.03967361
-1.489012 away </s>
-1.095659 away and -0.03967362
-1.186929 away back -0.03967361
-1.129076 away in -0.3407036
-1.593728 away to -0.03967361
-1.860058 away from -0.03967361
-1.805066 away she -0.03967362
-1.798142 away as -0.03967361
-1.833924 away so -0.03967361
-1.936051 away coming -0.03967361
-1.868053 away they -0.03967361
-1.8795 away then -0.03967362
-1.930425 away being -0.03967361
-1.941751 away somewhat -0.03967361
-1.932292 away while -0.03967362
-1.939842 away quietly -0.0396736
-1.591936 back </s>
-1.049704 back the -0.03967361
-1.172801 back <unk> -0.03967361
-2.064701 back into -0.03967361
-1.93379 back with -0.03967362
-1.252467 back and -0.03967361
-1.78719 back in -0.03967361
-0.9098744 back to -0.1646123
-1.95871 back but -0.03967361
-1.338063 back at -0.03967361
-2.019157 back from -0.03967361
-2.00944 back all -0.03967361
-2.039269 back were -0.03967361
-1.854334 back he -0.03967361
-2.071298 back here -0.03967361
-1.83849 back i -0.03967361
-2.108286 back along -0.03967361
-2.123011 back yard -0.03967362
-2.043405 back then -0.03967362
-2.017196 back my -0.03967361
-2.082522 back graham -0.03967361
-1.913384 in </s>
-2.939462 in just -0.03967361
-0.6505823 in the -0.2447286
-2.402811 in avonlea -0.03967361
-1.123641 in <unk> -0.2437936
-1.035036 in a -0.1880935
-2.048965 in with -0.2157649
-1.704922 in and -0.03967361
-1.656188 in that -0.1858016
-2.142685 in its -0.03967361
-2.319019 in in -0.03967361
-1.80186 in it -0.03967361
-2.334131 in an -0.03967361
-3.031365 in those -0.03967361
-2.379381 in time -0.03967361
-2.757574 in not -0.03967361
-2.244928 in at -0.3407036
-1.679968 in her -0.03967361
-3.060217 in everything -0.03967362
-1.756697 in all -0.2157649
-1.523318 in this -0.1365836
-2.367114 in their -0.03967361
-3.060217 in white -0.03967361
-3.113019 in bloom -0.03967361
-2.939462 in man -0.03967361
-1.279013 in his -0.302915
-2.693236 in so -0.03967361
-3.148085 in early -0.03967361
-2.293153 in him -0.03967361
-1.955388 in which -0.1188549
-3.050385 in life -0.03967361
-2.876487 in any -0.03967361
-3.148085 in putting -0.03967361
-3.080574 in pretty -0.03967361
-2.777854 in what -0.03967361
-2.387755 in such -0.3407036
-3.113019 in deep -0.03967362
-2.777854 in when -0.03967361
-2.747778 in no -0.03967361
-2.839064 in then -0.03967361
-2.363101 in some -0.03967362
-2.117009 in your -0.03967361
-2.416145 in spite -0.3407036
-2.402811 in sight -0.03967361
-2.411654 in nova -0.3407036
-3.148085 in earnest -0.03967361
-3.124396 in exclamation -0.03967362
-2.416145 in hopeton -0.03967361
-3.136079 in thinking -0.03967361
-3.113019 in winter -0.03967361
-1.874535 in fact -0.1188549
-2.762556 in me -0.03967361
-1.758679 in my -0.1488181
-3.091122 in sleep -0.03967361
-3.124396 in years -0.03967361
-3.113019 in doing -0.03967361
-3.136079 in england -0.03967361
-3.136079 in people's -0.03967361
-2.392004 in new -0.03967361
-3.101933 in family -0.03967361
-3.148085 in summer -0.03967361
-3.080574 in prince -0.03967361
-3.070276 in full -0.03967361
-3.022159 in hand -0.03967361
-3.022159 in question -0.03967361
-3.136079 in spirit -0.03967361
-1.990347 in short -0.03967362
-3.124396 in others -0.03967362
-2.978845 in our -0.03967361
-3.080574 in let -0.03967361
-2.146307 in love -0.6417336
-3.148085 in bank -0.03967362
-3.070276 in black -0.03967362
-3.101933 in answer -0.0396736
-3.101933 in apollo -0.03967361
-3.040771 in jesus -0.03967361
-3.113019 in search -0.03967361
-3.136079 in freedom -0.03967361
-3.148085 in jail -0.03967361
-3.136079 in quest -0.03967361
-3.124396 in less -0.03967362
-3.101933 in millions -0.03967362
-2.954789 in these -0.03967361
-3.148085 in gait -0.03967362
-3.148085 in department -0.03967362
-2.411654 in general -0.03967361
-2.416145 in vain -0.03967361
-3.148085 in according -0.03967361
-3.148085 in rear -0.03967362
-3.136079 in mud -0.03967361
-3.091122 in every -0.03967361
-3.080574 in bed -0.03967361
-3.136079 in walking -0.03967361
-2.154878 in smithtown -0.03967361
-2.413893 in front -0.3407036
-2.154878 in itself -0.2157649
-3.148085 in consequence -0.03967361
-3.148085 in supreme -0.03967362
-3.148085 in delight -0.03967361
-3.148085 in study -0.03967362
-3.136079 in twelve -0.03967362
-3.148085 in france -0.03967361
-3.136079 in consolation -0.03967361
-3.148085 in transacting -0.03967362
-3.113019 in nottingham -0.03967361
-2.416145 in sooth -0.03967362
-1.227085 woods with -0.03967361
-1.1591 woods of -0.03967361
-1.204051 woods he -0.03967361
-1.249099 woods when -0.03967362
-1.922502 of </s>
-1.821917 of one -0.1066204
-2.473432 of missus -0.3407036
-0.7170228 of the -0.2424171
-3.201214 of avonlea -0.03967361
-0.9711387 of <unk> -0.345968
-1.205713 of a -0.1239945
-2.002282 of that -0.03967361
-3.131317 of its -0.03967361
-3.094211 of place -0.03967361
-1.592817 of it -0.1743722
-1.987796 of an -0.1858016
-1.641399 of course -0.07746217
-3.118593 of those -0.03967362
-3.23266 of dark -0.03967361
-3.060027 of time -0.03967361
-2.928653 of well -0.03967361
-1.814383 of her -0.03967361
-1.762051 of all -0.09082614
-1.765374 of this -0.2949461
-2.618147 of she -0.03967361
-1.999075 of them -0.1066204
-2.815272 of or -0.03967361
-2.511998 of people -0.03967361
-1.842671 of their -0.09766556
-2.527794 of other -0.03967362
-3.157942 of white -0.03967361
-1.39667 of his -0.1218604
-3.266562 of turnip -0.0396736
-3.23266 of seeing -0.03967361
-1.75766 of him -0.3918561
-3.23266 of clothes -0.03967361
-2.422591 of which -0.03967361
-2.945158 of matthew -0.03967361
-2.440637 of about -0.03967361
-2.531023 of life -0.03967361
-1.908812 of any -0.03967362
-3.23266 of taking -0.03967361
-2.537555 of green -0.3407036
-3.23266 of year -0.03967362
-3.071125 of last -0.03967361
-3.131317 of mind -0.03967361
-3.23266 of today -0.03967361
-2.280888 of such -0.03967361
-2.275456 of men -0.03967361
-3.24928 of land -0.03967362
-3.201214 of wild -0.03967361
-3.28456 of bushes -0.03967361
-2.768041 of no -0.03967361
-2.132142 of being -0.0396736
-3.008428 of very -0.03967361
-3.24928 of ground -0.03967361
-2.313721 of you -0.03967361
-2.980177 of some -0.03967361
-2.912753 of your -0.03967361
-3.23266 of curiosity -0.03967361
-3.23266 of yesterday -0.03967362
-2.263038 of two -0.03967362
-3.266562 of narrow -0.03967361
-3.216653 of afraid -0.03967361
-2.521407 of five -0.03967361
-3.24928 of making -0.03967361
-3.23266 of fun -0.03967362
-3.266562 of boys -0.03967361
-2.554327 of earth -0.0396736
-3.23266 of winter -0.03967361
-2.412606 of me -0.03967361
-2.216642 of my -0.03967361
-3.266562 of speaking -0.03967361
-3.266562 of news -0.03967361
-2.55776 of paper -0.0396736
-3.24928 of parents -0.03967361
-3.24928 of hope -0.03967361
-3.171892 of really -0.03967361
-3.094211 of poor -0.03967361
-3.24928 of influence -0.03967361
-2.544186 of breath -0.1365836
-2.544186 of many -0.03967362
-3.28456 of summer -0.03967361
-3.28456 of miles -0.03967361
-3.28456 of shingles -0.03967361
-3.201214 of possible -0.03967362
-3.266562 of spirit -0.03967361
-3.266562 of wincey -0.03967361
-2.008704 of our -0.1188549
-3.266562 of imagination -0.03967361
-3.10623 of himself -0.03967361
-3.186306 of mine -0.03967361
-3.266562 of city -0.03967361
-3.118593 of light -0.03967361
-3.23266 of god -0.03967361
-3.266562 of homer -0.03967361
-2.284547 of jesus -0.1646123
-3.23266 of faith -0.03967361
-3.23266 of truth -0.03967361
-3.266562 of searching -0.03967361
-3.24928 of science -0.03967362
-3.23266 of evidence -0.03967361
-2.527794 of money -0.03967361
-3.216653 of evil -0.03967361
-3.303336 of herod -0.03967362
-3.24928 of rome -0.03967361
-3.28456 of numerous -0.03967361
-3.201214 of silence -0.03967362
-2.496757 of these -0.03967362
-3.28456 of insanity -0.03967361
-3.266562 of poverty -0.03967361
-3.266562 of bat -0.03967361
-2.564709 of sand -0.03967361
-3.23266 of water -0.03967361
-3.266562 of shame -0.03967361
-3.24928 of human -0.03967361
-3.216653 of squire -0.03967361
-3.28456 of footsteps -0.03967361
-3.28456 of public -0.03967361
-3.28456 of newspapers -0.03967362
-3.24928 of graham's -0.03967361
-3.028338 of graham -0.03967361
-3.266562 of silas -0.03967362
-3.266562 of court -0.03967361
-3.23266 of virtue -0.03967361
-2.564709 of action -0.03967361
-3.28456 of indifference -0.03967361
-3.28456 of blood -0.03967362
-3.28456 of justice -0.03967362
-2.54754 of death -0.03967361
-3.28456 of accusation -0.03967361
-3.24928 of fresh -0.03967361
-3.28456 of salvation -0.03967361
-3.28456 of entire -0.03967362
-3.28456 of drawers -0.03967361
-3.266562 of kings -0.03967361
-3.266562 of content -0.03967361
-3.28456 of travel -0.03967362
-3.216653 of danglars -0.03967361
-2.561221 of benedetto -0.03967361
-2.554327 of debray -0.03967361
-3.186306 of monte -0.3407036
-3.303336 of honor -0.03967362
-3.24928 of king -0.03967361
-3.303336 of finance -0.03967362
-3.28456 of philosophers -0.03967361
-3.28456 of folding -0.03967362
-3.28456 of perspiration -0.03967361
-3.28456 of thomson -0.03967362
-3.28456 of condescension -0.03967361
-3.266562 of desires -0.03967361
-3.24928 of rain -0.03967362
-3.24928 of wine -0.03967361
-3.201214 of tired -0.03967362
-3.24928 of laughter -0.03967361
-3.28456 of losing -0.03967361
-3.266562 of eating -0.03967361
-3.24928 of gravity -0.03967361
-3.28456 of events -0.03967361
-3.28456 of leaves -0.03967361
-3.28456 of biscuit -0.03967361
-3.28456 of citrons -0.03967361
-3.303336 of el -0.5167949
-2.55092 of nottingham -0.03967362
-2.54754 of gamewell -0.3407036
-3.186306 of montfichet -0.03967361
-3.24928 of warrenton -0.03967362
-3.266562 of noirtier -0.03967361
-3.28456 of eternal -0.03967361
-0.9567083 old <unk> -0.03967362
-2.094122 old cuthbert -0.03967361
-1.080144 old man -0.03967362
-2.081176 old woman -0.03967361
-2.058805 old men -0.03967362
-2.07359 old enough -0.0396736
-2.086308 old family -0.03967361
-2.068606 old room -0.03967361
-2.066135 old question -0.03967361
-2.094122 old wincey -0.03967361
-2.096758 old fashioned -0.03967361
-2.094122 old carpet -0.03967361
-1.346403 old nurse -0.03967361
-2.091502 old friends -0.03967361
-2.096758 old jonathan -0.03967361
-2.088897 old man's -0.03967361
-2.096758 old courtyard -0.03967361
-2.09941 old cemetery -0.03967361
-2.088897 old path -0.03967362
-2.094122 old desires -0.03967361
-2.091502 old wine -0.03967362
-2.086308 old gamewell -0.03967362
-1.644632 cuthbert is -0.03967361
-0.8928572 cuthbert and -0.03967362
-1.631298 cuthbert had -0.03967361
-1.469568 cuthbert of -0.03967361
-1.694231 cuthbert place -0.03967361
-1.610588 cuthbert at -0.03967361
-1.663797 cuthbert out -0.03967362
-1.700108 cuthbert going -0.03967361
-1.655175 cuthbert when -0.03967361
-1.709681 cuthbert swept -0.03967361
-1.01355 place where -0.2157649
-1.130469 place <unk> -0.03967361
-1.675523 place and -0.03967361
-0.983924 place in -0.03967362
-1.204283 place of -0.03967362
-1.856901 place it -0.03967361
-0.9724987 place to -0.03967361
-1.87194 place for -0.03967361
-1.25042 place at -0.03967361
-1.903675 place she -0.03967361
-1.815712 place i -0.03967361
-2.017377 place living -0.03967361
-2.012469 place gave -0.03967361
-2.027363 place ourselves -0.03967361
-1.2756 it </s>
-2.621992 it one -0.03967361
-1.117926 it is -0.09766556
-1.753312 it the -0.03967361
-1.363486 it <unk> -0.1066204
-2.766798 it into -0.03967361
-1.8345 it a -0.03967361
-2.092889 it with -0.03967361
-1.559619 it and -0.1188549
-1.873387 it that -0.03967361
-1.401423 it had -0.1268238
-2.882861 it away -0.03967361
-0.8921425 it was -0.2581687
-1.896596 it to -0.03967362
-2.742054 it be -0.03967362
-1.667094 it but -0.0396736
-2.94536 it reached -0.03967362
-1.752834 it for -0.03967361
-2.858604 it even -0.03967361
-2.206293 it could -0.03967361
-2.935862 it probably -0.03967361
-2.94536 it sitting -0.03967362
-2.476159 it at -0.03967361
-2.558463 it on -0.03967361
-2.645416 it from -0.03967361
-2.170993 it up -0.03967361
-2.155141 it all -0.03967361
-1.906338 it she -0.03967362
-2.180789 it if -0.03967361
-2.660102 it or -0.03967361
-2.177499 it out -0.03967362
-1.468598 it would -0.3918561
-2.75425 it are -0.03967362
-2.685739 it who -0.03967361
-2.479431 it as -0.03967361
-2.696432 it were -0.03967361
-2.201071 it over -0.03967361
-2.835631 it because -0.03967362
-2.655151 it which -0.03967362
-2.975168 it plain -0.03967361
-2.786327 it now -0.03967361
-2.850811 it been -0.03967361
-2.204545 it here -0.03967361
-2.843155 it three -0.03967361
-2.799852 it might -0.03967361
-2.858604 it something -0.03967361
-2.224168 it must -0.3407036
-2.786327 it made -0.03967361
-2.858604 it off -0.03967361
-2.650256 it what -0.03967361
-2.290637 it i -0.03967361
-2.239017 it won't -0.03967362
-2.835631 it has -0.03967361
-2.224168 it it's -0.03967361
-2.130923 it said -0.3407036
-2.621992 it no -0.03967361
-2.86654 it much -0.03967361
-2.463311 it you -0.03967361
-2.213355 it came -0.03967361
-1.821474 it isn't -0.1646124
-2.95507 it although -0.03967361
-1.606825 it will -0.1066204
-1.982933 it seemed -0.2157649
-2.850811 it i've -0.03967361
-2.235257 it does -0.03967361
-2.985577 it comes -0.03967361
-2.246636 it seems -0.03967361
-1.82802 it touched -0.3407036
-2.874624 it question -0.03967362
-2.246636 it wasn't -0.03967362
-2.908554 it keep -0.03967361
-2.94536 it four -0.03967362
-2.917467 it rather -0.03967361
-2.95507 it worth -0.03967362
-2.908554 it already -0.03967361
-2.965003 it kept -0.03967361
-2.985577 it created -0.03967362
-2.975168 it bat -0.03967361
-2.985577 it takes -0.03967361
-2.965003 it covered -0.03967361
-2.216929 it still -0.03967362
-2.975168 it merely -0.03967361
-1.952605 it bobby -0.03967361
-2.965003 it easy -0.03967361
-2.975168 it necessary -0.03967361
-2.985577 it needs -0.03967362
-2.935862 it thy -0.03967361
-2.250496 it sounded -0.03967362
-2.926567 it monte -0.03967362
-2.985577 it roused -0.03967361
-2.926567 it montfichet -0.03967361
-1.665861 was </s>
-2.591824 was one -0.03967361
-2.756372 was missus -0.03967361
-2.266623 was just -0.03967361
-1.194579 was the -0.2535534
-0.9106955 was <unk> -0.2359683
-1.348936 was a -0.4014015
-2.409528 was with -0.03967362
-1.962113 was and -0.03967361
-2.607922 was by -0.03967361
-1.619883 was that -0.03967361
-1.577105 was in -0.09766556
-1.774612 was of -0.2157649
-2.322026 was it -0.03967361
-1.540031 was to -0.1646124
-2.009385 was an -0.1646123
-2.996872 was reached -0.03967361
-3.01047 was quiet -0.03967361
-2.741249 was well -0.03967361
-1.47799 was not -0.1122243
-2.996872 was past -0.03967361
-2.060504 was sitting -0.1646123
-2.12001 was at -0.03967361
-2.519226 was on -0.03967361
-2.215005 was up -0.03967362
-2.591824 was all -0.03967361
-2.624641 was this -0.03967362
-2.912019 was found -0.03967361
-2.223945 was out -0.3407036
-2.221693 was there -0.03967361
-2.297598 was always -0.03967361
-2.430814 was as -0.03967361
-2.772041 was over -0.03967361
-1.957498 was his -0.03967361
-3.01047 was late -0.03967361
-1.73715 was so -0.1365836
-2.058957 was coming -0.2157649
-2.026068 was he -0.03967361
-2.850519 was because -0.03967361
-2.302982 was heard -0.03967361
-3.039014 was plain -0.03967361
-2.302982 was going -0.1365836
-2.788296 was now -0.03967361
-2.024813 was matthew -0.2157649
-2.045275 was something -0.03967361
-2.274162 was nothing -0.03967361
-2.970891 was given -0.03967361
-2.970891 was pretty -0.03967361
-2.316743 was taking -0.03967362
-2.934619 was gone -0.03967361
-2.996872 was sure -0.03967361
-2.261668 was made -0.03967361
-3.024507 was silent -0.03967361
-2.983687 was taken -0.03967361
-2.970891 was far -0.03967361
-2.958461 was living -0.03967361
-3.039014 was actually -0.03967361
-2.206245 was when -0.03967361
-2.328074 was built -0.03967362
-2.591824 was no -0.03967361
-2.890537 was much -0.03967361
-2.934619 was enough -0.03967362
-2.269121 was very -0.03967361
-2.901145 was left -0.03967361
-3.01047 was laid -0.03967361
-2.308434 was getting -0.03967361
-2.788296 was some -0.03967361
-1.878482 was only -0.03967362
-3.01047 was kind -0.03967361
-2.841065 was how -0.03967361
-2.289645 was too -0.03967361
-2.970891 was quite -0.03967361
-2.780093 was like -0.03967361
-2.880181 was ever -0.03967361
-3.024507 was making -0.03967361
-2.060504 was almost -0.03967362
-3.039014 was demanded -0.03967361
-2.311186 was certainly -0.03967361
-2.901145 was put -0.03967361
-2.934619 was first -0.03967361
-2.996872 was saying -0.03967361
-2.062057 was born -0.03967362
-2.201931 was my -0.03967362
-2.958461 was young -0.03967361
-2.996872 was nearly -0.03967361
-3.054021 was terrible -0.03967361
-3.01047 was near -0.03967361
-2.328074 was safely -0.03967362
-3.024507 was hung -0.03967361
-2.316743 was sweet -0.03967362
-3.024507 was eight -0.03967361
-2.788296 was again -0.03967362
-2.970891 was twenty -0.03967361
-3.054021 was lacking -0.03967361
-3.024507 was small -0.03967361
-2.983687 was possible -0.03967362
-3.024507 was able -0.03967361
-3.039014 was certain -0.03967361
-2.328074 was harder -0.03967361
-3.039014 was large -0.03967361
-3.054021 was broad -0.03967361
-2.316743 was glad -0.03967361
-3.054021 was beginning -0.03967361
-2.996872 was heavy -0.03967361
-2.958461 was rather -0.03967361
-2.946376 was already -0.03967361
-3.024507 was kept -0.03967361
-3.054021 was astir -0.03967361
-3.024507 was divine -0.03967361
-3.054021 was conquered -0.03967361
-2.860183 was upon -0.03967362
-3.039014 was discovered -0.03967361
-2.983687 was dead -0.03967361
-3.054021 was carefully -0.03967362
-3.054021 was broken -0.03967361
-3.01047 was quietly -0.03967361
-3.054021 was wholly -0.03967362
-3.039014 was wet -0.03967361
-3.054021 was especially -0.03967362
-3.054021 was proved -0.03967361
-3.039014 was necessary -0.03967361
-3.024507 was ill -0.03967361
-3.01047 was immediately -0.03967362
-3.054021 was approaching -0.03967362
-3.039014 was perfectly -0.03967361
-3.039014 was opposite -0.03967361
-3.054021 was executed -0.03967361
-3.024507 was standing -0.03967361
-2.302982 was alone -0.03967361
-2.996872 was placed -0.03967361
-3.054021 was wilder -0.03967362
-3.039014 was jill -0.03967361
-3.054021 was killed -0.03967361
-3.039014 was safe -0.03967361
-3.054021 was resolved -0.03967361
-1.876582 to </s>
-2.451229 to one -0.03967361
-1.029276 to the -0.2464336
-0.9177627 to <unk> -0.3302382
-1.802306 to a -0.2157649
-2.132181 to and -0.03967361
-2.049967 to that -0.03967361
-3.147961 to old -0.03967361
-2.049967 to it -0.03967361
-1.259098 to be -0.1980361
-2.492594 to an -0.3407036
-3.161247 to those -0.03967361
-2.018833 to her -0.03967361
-2.792816 to all -0.03967362
-2.272759 to this -0.03967361
-3.322803 to sit -0.03967361
-2.528781 to them -0.03967361
-3.189103 to anything -0.03967362
-2.841671 to or -0.03967361
-2.173541 to their -0.1646123
-2.593061 to work -0.03967361
-2.187647 to tell -0.03967361
-3.203732 to white -0.03967361
-1.669284 to his -0.1561792
-3.322803 to anybody -0.03967361
-3.303661 to pass -0.03967361
-3.322803 to warm -0.03967361
-2.359322 to bright -0.6417336
-1.94246 to him -0.1858016
-2.140162 to which -0.1646123
-3.203732 to going -0.03967361
-2.882294 to about -0.03967361
-3.189103 to life -0.03967361
-1.782784 to have -0.03967361
-1.847095 to go -0.09766555
-2.951386 to any -0.03967361
-2.363601 to talk -0.03967361
-3.342829 to happen -0.03967361
-1.986162 to make -0.1066204
-3.250828 to both -0.03967361
-3.21887 to green -0.03967361
-3.342829 to tea -0.03967361
-2.61551 to find -0.03967361
-2.619367 to town -0.03967361
-3.285327 to year -0.03967361
-3.234555 to dress -0.03967361
-2.35089 to take -0.03967362
-2.194875 to night -0.1646124
-2.194875 to know -0.03967361
-3.174951 to mind -0.03967361
-3.161247 to look -0.03967361
-3.342829 to suppose -0.03967362
-2.076987 to get -0.03967362
-3.203732 to being -0.03967361
-1.898381 to do -0.08543109
-1.915592 to you -0.03967361
-1.745534 to give -0.08543109
-3.189103 to isn't -0.03967362
-2.538319 to some -0.03967361
-2.363601 to meet -0.1646124
-2.578715 to put -0.03967361
-1.770541 to me -0.03967361
-2.607897 to feel -0.03967362
-1.952355 to my -0.1066204
-2.082579 to sleep -0.1188549
-3.342829 to help -0.03967361
-3.342829 to mail -0.03967361
-3.250828 to herself -0.03967361
-2.619367 to speak -0.03967361
-2.361456 to ask -0.03967361
-3.322803 to pick -0.03967361
-2.564828 to us -0.03967361
-2.363601 to bring -0.03967361
-3.267735 to turn -0.03967361
-3.342829 to read -0.03967361
-2.078099 to think -0.2827116
-1.985262 to say -0.09082613
-3.161247 to myself -0.03967361
-1.792486 to see -0.03967361
-3.322803 to england -0.03967361
-3.174951 to new -0.03967361
-2.083706 to stay -0.1365836
-2.611687 to none -0.03967361
-3.234555 to believe -0.03967361
-3.303661 to eight -0.03967361
-3.013929 to again -0.03967361
-2.205201 to drive -0.03967362
-2.627185 to nod -0.3407036
-3.174951 to whether -0.03967362
-3.234555 to twenty -0.03967362
-3.303661 to sign -0.03967362
-3.303661 to notice -0.03967361
-3.110381 to come -0.03967362
-2.359322 to understand -0.03967361
-2.627185 to explain -0.03967361
-3.303661 to walk -0.03967362
-2.619367 to demand -0.03967361
-3.203732 to face -0.03967361
-2.202225 to others -0.1646124
-2.561425 to our -0.03967361
-2.19927 to imagine -0.03967361
-3.234555 to let -0.03967362
-1.91413 to keep -0.1858016
-2.61551 to live -0.03967362
-3.303661 to lie -0.03967361
-3.21887 to want -0.03967362
-2.623258 to marry -0.03967362
-3.342829 to wear -0.0396736
-3.267735 to fall -0.03967361
-3.322803 to flash -0.03967361
-3.267735 to each -0.03967361
-3.285327 to search -0.03967361
-2.623258 to touch -0.03967362
-3.342829 to inhale -0.03967362
-2.619367 to hear -0.03967362
-3.342829 to deliver -0.03967361
-3.303661 to reward -0.03967361
-2.367922 to escape -0.2157649
-3.342829 to egypt -0.03967361
-3.303661 to rome -0.03967361
-3.322803 to decide -0.03967361
-3.322803 to courtiers -0.03967361
-3.054179 to these -0.03967361
-2.611687 to heaven -0.03967362
-3.322803 to lower -0.03967362
-3.303661 to human -0.03967361
-3.285327 to savareen -0.03967361
-3.342829 to jonathan -0.03967361
-2.627185 to fix -0.03967362
-2.611687 to leave -0.03967361
-3.08702 to still -0.03967361
-2.911654 to bobby -0.03967361
-3.234555 to bed -0.03967361
-3.303661 to lay -0.03967362
-3.342829 to learn -0.03967361
-3.064852 to graham -0.03967361
-3.342829 to prepare -0.03967362
-2.363601 to stand -0.2157649
-2.627185 to eat -0.03967362
-3.322803 to rise -0.03967361
-3.322803 to glance -0.03967362
-3.285327 to pay -0.03967362
-3.322803 to bobby's -0.03967361
-2.359322 to return -0.5167949
-3.322803 to remain -0.03967361
-3.342829 to support -0.03967362
-2.619367 to witness -0.2157649
-2.365756 to reply -0.03967361
-3.322803 to forgive -0.03967361
-3.342829 to sound -0.03967362
-3.342829 to blame -0.03967361
-3.342829 to share -0.03967361
-3.342829 to direct -0.03967361
-3.363822 to howells -0.03967361
-3.303661 to thee -0.03967361
-3.303661 to send -0.03967361
-3.342829 to travel -0.03967362
-3.342829 to alter -0.03967362
-3.342829 to force -0.03967362
-3.234555 to monte -0.03967362
-3.322803 to morcerf -0.03967361
-3.342829 to france -0.03967361
-2.627185 to ascertain -0.03967362
-3.303661 to laugh -0.03967362
-3.342829 to obtain -0.03967361
-3.342829 to receive -0.03967362
-3.342829 to spend -0.03967361
-1.921058 to morrow -0.03967362
-3.342829 to seek -0.03967362
-3.322803 to line -0.03967361
-3.322803 to lose -0.03967362
-2.627185 to repeat -0.3407036
-3.342829 to follow -0.03967361
-3.303661 to shore -0.03967362
-3.342829 to play -0.03967362
-2.61551 to die -0.03967361
-3.322803 to bear -0.03967361
-3.342829 to oblige -0.03967361
-3.342829 to feed -0.03967361
-3.322803 to kiss -0.03967361
-3.285327 to pangloss -0.03967362
-3.342829 to constantinople -0.03967362
-3.342829 to beg -0.03967361
-2.619367 to show -0.03967361
-3.267735 to gamewell -0.03967362
-3.342829 to weeping -0.03967361
-1.762944 be </s>
-2.70732 be surprised -0.03967361
-1.895066 be the -0.03967361
-0.8879203 be <unk> -0.1461289
-1.153054 be a -0.09766556
-2.259351 be with -0.03967361
-2.341578 be had -0.03967361
-1.270068 be in -0.03967362
-1.688515 be of -0.03967361
-2.185354 be it -0.03967361
-1.676305 be to -0.03967361
-2.470325 be an -0.03967361
-2.304874 be but -0.03967361
-2.21815 be for -0.03967361
-2.413349 be not -0.03967362
-2.274001 be at -0.03967362
-2.348598 be on -0.03967361
-1.960288 be passed -0.03967361
-2.40521 be all -0.03967361
-1.697611 be found -0.03967361
-1.955968 be done -0.03967361
-1.963192 be called -0.03967362
-2.31458 be his -0.03967361
-2.359345 be so -0.03967361
-1.954537 be heard -0.03967361
-2.525162 be before -0.03967362
-1.687456 be here -0.1858016
-2.509507 be any -0.03967362
-2.60676 be something -0.03967362
-1.957403 be given -0.03967361
-2.541403 be more -0.03967362
-2.676137 be sure -0.03967361
-2.691448 be silent -0.03967361
-2.668678 be taken -0.03967361
-2.683725 be today -0.03967362
-2.661346 be far -0.03967361
-1.954537 be along -0.03967361
-2.345074 be said -0.03967362
-1.893362 be no -0.03967361
-2.61322 be much -0.03967361
-2.640064 be enough -0.03967361
-1.961737 be seen -0.03967361
-1.936358 be very -0.03967361
-2.619777 be left -0.03967361
-2.647043 be looking -0.03967362
-2.699312 be expecting -0.03967361
-2.61322 be too -0.03967361
-2.661346 be quite -0.03967362
-2.676137 be afraid -0.03967361
-2.619777 be put -0.03967361
-2.70732 be talked -0.03967361
-2.699312 be proper -0.03967361
-2.70732 be dreaded -0.03967361
-2.640064 be better -0.03967361
-1.426743 be able -0.7386436
-2.699312 be lovely -0.03967361
-2.661346 be most -0.03967361
-1.961737 be worth -0.0396736
-2.676137 be evil -0.03967361
-2.587938 be still -0.03967361
-2.70732 be raised -0.03967361
-2.691448 be paid -0.03967361
-2.691448 be present -0.03967362
-2.70732 be definite -0.03967362
-2.668678 be thy -0.03967361
-2.70732 be consoled -0.03967361
-2.647043 be alone -0.03967361
-2.70732 be believed -0.03967362
-2.699312 be safe -0.03967361
-0.452431 an <unk> -0.208078
-1.383401 an old -0.03967361
-2.391583 an eye -0.03967361
-1.647348 an aid -0.3407036
-2.388748 an odd -0.03967361
-1.224648 an orphan -0.5167949
-2.394436 an asylum -0.03967362
-2.391583 an exclamation -0.03967361
-2.391583 an influence -0.03967361
-2.394436 an uncomfortable -0.03967361
-2.391583 an hour -0.03967361
-1.647348 an extraordinary -0.03967361
-2.394436 an exact -0.03967361
-2.397307 an extremely -0.03967361
-2.394436 an interesting -0.03967361
-1.107609 an idol -0.1365836
-2.391583 an open -0.03967362
-2.394436 an explanation -0.03967361
-2.394436 an effort -0.03967362
-2.397307 an animal -0.03967361
-2.397307 an unattached -0.03967361
-2.388748 an arm -0.03967361
-2.397307 an unlimited -0.03967361
-1.64786 an instant -0.03967361
-1.051061 earlier the -0.03967361
-0.9741672 earlier <unk> -0.03967361
-1.146379 earlier course -0.03967361
-0.9584081 course </s>
-1.498436 course the -0.03967361
-1.600778 course a -0.03967361
-1.65174 course that -0.03967361
-1.52185 course of -0.03967361
-1.795246 course through -0.03967361
-1.666032 course for -0.03967361
-1.74419 course this -0.03967361
-1.696108 course she -0.03967361
-1.624495 course he -0.03967361
-1.793743 course it's -0.03967361
-1.684293 course you -0.03967361
-1.810562 course thank -0.03967361
-1.067553 through </s>
-0.6074675 through the -0.2157649
-1.430372 through <unk> -0.03967361
-1.760885 through it -0.03967361
-1.905897 through those -0.03967361
-1.84538 through all -0.03967361
-1.882383 through them -0.03967361
-1.813719 through his -0.03967361
-1.854675 through which -0.03967361
-1.849339 through me -0.03967362
-1.892514 through these -0.03967361
-1.921268 through mud -0.03967361
-1.921268 through youth -0.03967361
-1.322977 those <unk> -0.03967361
-1.897047 those woods -0.03967361
-1.544834 those of -0.03967361
-1.820253 those who -0.03967361
-1.871197 those can -0.03967361
-1.877027 those other -0.03967361
-1.884924 those red -0.03967361
-1.884924 those pretty -0.03967361
-1.867353 those men -0.03967362
-1.895003 those stupid -0.03967361
-1.871197 those poor -0.03967362
-1.897047 those beings -0.03967361
-1.897047 those high -0.03967361
-1.895003 those melancholy -0.03967361
-1.895003 those papers -0.03967361
-1.897047 those gentlemen -0.03967361
-1.895003 those desires -0.03967361
-0.5675546 dark <unk> -0.03967361
-1.366775 dark hair -0.03967362
-1.366775 dark brown -0.0396736
-1.368712 dark clothed -0.03967361
-1.817351 but </s>
-2.472812 but one -0.03967361
-2.010194 but missus -0.3407036
-1.041395 but the -0.2287298
-1.193575 but <unk> -0.03967361
-2.136749 but a -0.03967361
-2.68473 but little -0.03967361
-2.32203 but with -0.03967361
-1.978172 but by -0.3407036
-1.695366 but that -0.03967361
-1.809105 but in -0.03967362
-1.607016 but of -0.2157649
-2.698608 but old -0.03967361
-1.562043 but it -0.4376136
-2.287859 but was -0.03967361
-1.968852 but to -0.03967361
-2.035479 but those -0.03967361
-2.279721 but for -0.03967361
-2.481278 but not -0.03967361
-2.658238 but without -0.03967361
-1.92636 but at -0.03967362
-1.958492 but her -0.3407036
-2.494296 but from -0.03967361
-2.498723 but this -0.03967361
-2.705717 but found -0.03967361
-1.582601 but she -0.03967362
-2.545672 but if -0.03967361
-2.664711 but never -0.03967361
-1.607598 but there -0.2615224
-2.531047 but who -0.03967361
-2.691613 but can -0.03967361
-1.38933 but as -0.03967361
-2.775547 but whom -0.03967361
-2.378926 but his -0.03967361
-1.242274 but he -0.1945756
-2.598318 but before -0.03967361
-2.503196 but which -0.03967361
-2.010194 but matthew -0.03967361
-2.621304 but here -0.03967362
-2.743118 but given -0.03967361
-2.751001 but both -0.03967361
-2.751001 but i'll -0.03967361
-2.735376 but take -0.03967361
-2.615442 but more -0.03967361
-2.735376 but that's -0.03967361
-1.18789 but i -0.1066204
-2.013093 but did -0.0396736
-2.691613 but it's -0.03967361
-2.498723 but when -0.03967361
-2.472812 but no -0.03967361
-2.516898 but they -0.03967361
-2.75903 but i'd -0.03967361
-1.761782 but then -0.03967361
-1.716151 but you -0.03967361
-2.024888 but how -0.03967361
-2.615442 but like -0.03967361
-2.75903 but almost -0.03967361
-2.751001 but certainly -0.03967362
-2.720293 but first -0.03967361
-2.560806 but we -0.03967361
-2.76721 but doing -0.03967361
-2.677954 but i've -0.03967361
-2.735376 but does -0.0396736
-2.691613 but poor -0.03967361
-2.743118 but under -0.03967362
-2.775547 but master -0.03967361
-2.75903 but also -0.03967362
-2.75903 but heavy -0.03967361
-2.727769 but keep -0.03967361
-2.784047 but am -0.03967362
-2.775547 but later -0.03967361
-2.76721 but sarah -0.03967362
-2.664711 but still -0.03967361
-2.784047 but ah -0.03967361
-2.743118 but monte -0.03967362
-1.063098 time </s>
-1.299905 time the -0.03967361
-1.207824 time <unk> -0.03967361
-1.6983 time and -0.03967361
-1.818733 time in -0.03967361
-1.096116 time of -0.1646124
-1.924779 time it -0.03967361
-1.949492 time was -0.03967361
-0.8437411 time to -0.03967361
-2.125383 time without -0.03967361
-1.977388 time at -0.03967361
-2.023852 time her -0.03967361
-2.047097 time all -0.03967361
-1.987678 time she -0.03967361
-1.887398 time he -0.03967361
-2.123006 time nothing -0.03967361
-2.099931 time do -0.03967361
-1.970661 time you -0.03967361
-2.152419 time whose -0.03967361
-2.084478 time bobby -0.03967361
-2.123006 time graham -0.03967361
-2.167908 time amongst -0.03967361
-0.6634597 reached the -0.03967361
-1.285931 reached and -0.03967361
-1.447045 reached lynde's -0.03967361
-1.445835 reached bright -0.03967362
-1.41158 reached him -0.03967361
-0.5177191 lynde's hollow -0.03967361
-1.270227 lynde's door -0.03967362
-1.271681 lynde's husband -0.03967361
-1.10975 quiet <unk> -0.03967361
-1.20675 quiet and -0.03967361
-1.350642 quiet well -0.03967361
-1.367258 quiet folks -0.03967361
-1.367258 quiet manner -0.03967361
-1.340329 well </s>
-1.771559 well the -0.03967361
-0.8313554 well <unk> -0.03967361
-1.875045 well in -0.03967361
-1.803391 well of -0.03967361
-2.193988 well be -0.03967362
-2.101694 well on -0.03967361
-2.175446 well if -0.03967361
-2.264338 well done -0.03967361
-1.951512 well he -0.03967361
-1.523922 well now -0.3407036
-2.277256 well dressed -0.03967361
-2.2396 well marilla -0.03967361
-2.283862 well he'd -0.03967361
-2.219053 well i'm -0.03967361
-1.080461 well i -0.03967361
-1.100285 well said -0.03967361
-2.283862 well knows -0.03967361
-2.25802 well enough -0.03967361
-2.178047 well then -0.03967361
-2.277256 well although -0.03967361
-2.283862 well we're -0.03967361
-2.283862 well received -0.03967361
-2.248712 well say -0.03967361
-2.261168 well towards -0.03967361
-2.273991 well imagine -0.03967361
-1.538631 well bred -0.03967361
-2.283862 well what's -0.03967361
-1.708636 for </s>
-2.664871 for missus -0.03967361
-0.7920445 for the -0.1508241
-1.070987 for <unk> -0.1298502
-1.260348 for a -0.2359683
-1.775295 for and -0.03967361
-2.548186 for by -0.03967361
-1.957181 for that -0.03967361
-2.784757 for its -0.03967361
-1.711837 for in -0.03967361
-2.769681 for old -0.03967361
-1.957181 for it -0.03967361
-2.60515 for an -0.03967361
-2.428416 for but -0.03967362
-2.049646 for not -0.03967361
-1.474073 for her -0.03967361
-2.561742 for this -0.03967361
-2.124987 for hours -0.03967362
-2.004124 for she -0.03967361
-2.792496 for anything -0.03967361
-2.664871 for would -0.03967361
-2.701276 for their -0.03967361
-2.399043 for as -0.03967361
-2.850913 for whom -0.03967361
-1.802357 for his -0.03967362
-1.37579 for he -0.1858016
-2.035755 for him -0.03967361
-2.566356 for which -0.03967361
-2.084919 for matthew -0.03967361
-2.842071 for whole -0.03967361
-2.647752 for any -0.03967362
-2.755111 for something -0.03967361
-2.72069 for good -0.03967361
-2.784757 for home -0.03967361
-2.701276 for after -0.03967361
-2.089536 for more -0.03967361
-2.05533 for what -0.03967361
-1.915857 for i -0.03967361
-2.561742 for when -0.03967361
-2.580501 for they -0.03967361
-2.800376 for being -0.03967361
-1.54703 for you -0.1365836
-2.131755 for supper -0.03967362
-1.848673 for some -0.5167949
-2.642193 for your -0.03967361
-2.808401 for between -0.03967361
-2.701276 for two -0.03967361
-2.769681 for five -0.03967362
-1.406782 for me -0.1066204
-2.552658 for my -0.03967361
-2.816577 for once -0.03967361
-2.842071 for doing -0.03967362
-2.762335 for poor -0.03967362
-2.824909 for many -0.03967361
-2.816577 for women -0.03967361
-2.734133 for our -0.03967361
-2.859939 for imagination -0.03967361
-2.824909 for several -0.03967361
-2.769681 for himself -0.03967361
-2.850913 for divine -0.03967361
-2.842071 for doubt -0.03967361
-2.833405 for apollo -0.03967362
-2.869156 for wetting -0.03967361
-2.869156 for knowledge -0.03967362
-2.784757 for money -0.03967361
-2.833405 for evil -0.03967361
-2.859939 for holding -0.03967361
-2.842071 for savareen -0.03967361
-2.734133 for still -0.03967361
-2.859939 for silas -0.03967361
-2.842071 for robinson -0.03967361
-2.869156 for groom -0.03967361
-2.850913 for thee -0.03967361
-2.808401 for indeed -0.03967361
-2.869156 for joy -0.03967361
-2.859939 for example -0.03967361
-2.859939 for six -0.03967361
-2.869156 for screaming -0.03967361
-2.131755 for sale -0.03967361
-2.784757 for robin -0.03967361
-1.490439 not </s>
-1.457632 not the -0.03967361
-1.124232 not <unk> -0.03967361
-1.282729 not a -0.03967361
-1.852602 not and -0.03967361
-1.677068 not that -0.03967361
-1.617853 not in -0.03967363
-1.927632 not of -0.03967361
-1.464382 not to -0.1188549
-1.494544 not be -0.2437936
-2.504073 not an -0.03967361
-2.320177 not but -0.03967361
-2.226461 not for -0.03967361
-2.663033 not even -0.03967361
-2.368046 not on -0.03967361
-2.453846 not from -0.03967361
-2.28988 not as -0.03967361
-2.027104 not tell -0.03967361
-1.476684 not so -0.03967362
-2.128744 not he -0.03967361
-2.566989 not before -0.03967361
-2.566989 not matthew -0.03967361
-2.655422 not asked -0.03967362
-2.02181 not been -0.2615223
-2.756953 not known -0.03967361
-2.560877 not have -0.03967361
-2.548906 not any -0.03967361
-2.720408 not take -0.03967362
-2.747525 not sure -0.03967361
-2.738296 not father -0.03967361
-2.458615 not what -0.03967361
-2.036073 not know -0.2157649
-2.694885 not mind -0.03967361
-2.03789 not far -0.03967361
-2.766591 not call -0.03967361
-2.678667 not such -0.03967361
-2.756953 not deep -0.03967361
-2.025332 not much -0.03967361
-2.766591 not seem -0.03967361
-2.514855 not then -0.03967361
-2.694885 not get -0.03967361
-2.711733 not being -0.03967361
-2.711733 not looking -0.03967362
-2.72926 not getting -0.03967361
-2.776448 not expecting -0.03967361
-1.763665 not only -0.03967361
-2.585857 not like -0.03967361
-2.678667 not thought -0.03967361
-2.747525 not saying -0.03967361
-2.756953 not born -0.03967362
-2.449129 not my -0.03967362
-2.756953 not doing -0.03967362
-2.720408 not young -0.03967362
-2.045232 not mean -0.03967362
-2.047087 not speak -0.03967361
-2.03789 not having -0.03967361
-2.032463 not think -0.03967362
-2.678667 not another -0.03967361
-2.027104 not say -0.03967361
-2.027104 not see -0.03967361
-2.036073 not really -0.03967361
-2.776448 not expect -0.03967362
-2.72926 not believe -0.03967361
-2.776448 not worn -0.03967361
-2.776448 not dare -0.03967361
-2.756953 not walked -0.5167949
-2.776448 not exact -0.03967361
-2.756953 not stopped -0.03967361
-2.786533 not marry -0.03967361
-2.047087 not true -0.3407036
-2.756953 not wished -0.03967362
-2.72926 not mine -0.03967361
-2.756953 not faith -0.03967361
-2.747525 not either -0.03967361
-2.766591 not appear -0.03967362
-2.786533 not following -0.03967362
-2.720408 not lost -0.5167949
-2.747525 not care -0.03967362
-2.756953 not robinson -0.03967362
-2.756953 not pay -0.03967361
-2.756953 not immediately -0.03967361
-2.047087 not move -0.0396736
-2.786533 not delay -0.03967361
-2.756953 not till -0.03967361
-2.786533 not spend -0.03967361
-2.776448 not lose -0.03967361
-2.796859 not stabbed -0.5167949
-2.786533 not weep -0.3407036
-1.582757 even the -0.03967361
-1.405548 even <unk> -0.03967361
-1.685099 even a -0.03967361
-1.736061 even that -0.03967361
-1.657165 even in -0.03967361
-1.074071 even to -0.03967361
-1.851875 even be -0.03967361
-1.115817 even for -0.3407036
-1.882587 even yet -0.03967361
-1.135441 even if -0.3407036
-1.708816 even he -0.03967361
-1.138981 even more -0.3407036
-1.893326 even thus -0.03967361
-0.8491125 could <unk> -0.03967362
-1.927135 could a -0.03967361
-1.753018 could and -0.03967361
-2.211014 could be -0.03967361
-0.9185966 could not -0.08543109
-2.296875 could run -0.03967361
-2.163614 could from -0.03967361
-2.273767 could yet -0.03967361
-1.55083 could tell -0.03967361
-1.473555 could he -0.03967361
-2.216614 could have -0.03967361
-1.551439 could make -0.03967361
-2.17627 could they -0.03967361
-2.273767 could get -0.03967362
-1.50251 could you -0.03967361
-2.276993 could think -0.03967361
-1.55083 could see -0.1365836
-2.30371 could hardly -0.03967362
-2.293497 could imagine -0.03967361
-2.280244 could keep -0.03967361
-2.300279 could live -0.03967361
-2.30371 could confess -0.03967361
-2.30371 could picture -0.03967361
-2.307167 could learn -0.03967362
-2.28352 could hold -0.03967361
-2.307167 could scarcely -0.03967361
-2.300279 could send -0.03967361
-2.307167 could alter -0.03967361
-2.30371 could bear -0.03967361
-0.590242 run the -0.3407036
-1.150745 run <unk> -0.03967361
-1.366775 run past -0.03967361
-1.349711 run out -0.03967362
-1.548978 past missus -0.03967361
-0.7392407 past <unk> -0.03967361
-1.519441 past her -0.03967361
-1.522457 past him -0.03967362
-1.558739 past three -0.03967361
-1.452058 past i -0.03967361
-1.571257 past eating -0.03967361
-1.433872 door </s>
-0.9330859 door <unk> -0.03967361
-0.9857646 door and -0.03967361
-1.587446 door in -0.03967361
-1.53864 door of -0.03967362
-1.526501 door to -0.03967361
-1.788583 door without -0.03967361
-1.698696 door as -0.03967361
-1.727432 door so -0.03967361
-1.636617 door he -0.03967361
-1.763338 door then -0.03967361
-1.813933 door bell -0.03967361
-1.671053 without the -0.03967361
-0.4183228 without <unk> -0.1646124
-1.768975 without a -0.03967361
-1.882334 without her -0.03967361
-1.926055 without any -0.03967361
-1.967387 without actually -0.03967361
-1.21445 without looking -0.0396736
-1.924743 without your -0.03967361
-1.968835 without knowing -0.03967361
-1.954569 without money -0.03967361
-1.968835 without fail -0.03967362
-1.967387 without seeking -0.03967361
-1.241932 probably <unk> -0.03967361
-1.488274 probably was -0.03967361
-1.382082 probably to -0.03967361
-0.8110548 probably not -0.03967361
-1.559563 probably been -0.03967361
-1.562042 probably thought -0.03967361
-1.567044 probably hundred -0.03967361
-1.561569 sitting down -0.03967361
-1.384514 sitting and -0.03967361
-1.510095 sitting at -0.03967361
-0.5530518 sitting on -0.0396736
-1.544179 sitting out -0.03967362
-1.543497 sitting there -0.03967361
-1.916244 at </s>
-2.529579 at one -0.03967361
-2.63815 at missus -0.03967362
-0.6181725 at the -0.1753362
-1.789183 at <unk> -0.03967361
-1.878067 at a -0.03967361
-2.324367 at that -0.03967362
-1.602151 at her -0.03967361
-1.495671 at all -0.03967361
-1.997849 at this -0.03967361
-2.64292 at them -0.03967361
-2.704667 at people -0.03967361
-2.027046 at their -0.03967361
-2.733232 at other -0.03967361
-2.745206 at work -0.03967362
-1.965422 at his -0.3407036
-2.776671 at bright -0.03967362
-1.492946 at him -0.03967361
-2.05462 at carmody -0.03967361
-2.770193 at best -0.03967362
-2.556244 at which -0.03967361
-2.584655 at about -0.03967361
-2.75752 at half -0.03967361
-2.624146 at any -0.03967361
-2.683094 at nothing -0.03967361
-1.788729 at green -0.5167949
-1.278201 at last -0.1365836
-2.75132 at night -0.03967361
-2.552333 at what -0.03967361
-1.772269 at your -0.2157649
-2.66759 at two -0.03967361
-2.739178 at first -0.03967361
-1.608751 at me -0.03967361
-1.514527 at least -0.03967362
-2.544615 at my -0.03967361
-2.052151 at nights -0.03967361
-2.796705 at sixty -0.03967361
-1.344612 at once -0.1066204
-2.75752 at having -0.03967361
-2.789924 at eleven -0.03967361
-2.783247 at eight -0.03967361
-2.75752 at twenty -0.03967362
-2.72158 at hand -0.03967361
-2.796705 at worst -0.03967362
-2.770193 at each -0.03967361
-2.796705 at various -0.03967361
-2.789924 at ease -0.03967361
-2.050922 at rome -0.03967361
-2.677864 at these -0.03967361
-1.794131 at length -0.03967361
-2.601764 at bobby -0.03967361
-2.783247 at graham's -0.03967361
-2.683094 at graham -0.03967361
-2.796705 at breakfast -0.03967361
-2.783247 at present -0.03967362
-2.796705 at sea -0.03967361
-1.631504 at twelve -0.1646123
-2.053384 at constantinople -0.03967361
-1.309231 her </s>
-1.438096 her the -0.03967361
-0.9609899 her <unk> -0.2157649
-1.979583 her into -0.03967362
-1.786859 her a -0.03967361
-2.643057 her little -0.03967361
-1.425101 her and -0.1646123
-2.343944 her had -0.03967361
-1.98953 her back -0.03967361
-1.913509 her of -0.03967361
-2.65843 her old -0.03967362
-2.219485 her was -0.03967361
-1.444742 her to -0.03967362
-2.735261 her dark -0.03967361
-1.897669 her but -0.03967361
-1.858747 her for -0.03967361
-2.270814 her at -0.03967362
-2.735261 her window -0.03967361
-1.915683 her on -0.03967362
-1.720244 her from -0.03967361
-2.460733 her up -0.03967361
-2.76422 her kitchen -0.03967361
-1.892274 her she -0.03967361
-2.450919 her or -0.03967361
-2.63557 her people -0.03967361
-1.761869 her own -0.03967361
-2.690912 her work -0.03967361
-2.274031 her as -0.03967361
-2.682561 her house -0.03967361
-2.024437 her husband -0.03967361
-2.363334 her so -0.03967361
-2.11384 her he -0.03967361
-2.620972 her why -0.03967361
-2.735261 her whole -0.03967362
-2.53058 her any -0.03967361
-2.58649 her might -0.03967362
-2.674368 her home -0.03967361
-2.708112 her dress -0.03967361
-2.567042 her more -0.03967362
-2.744701 her son -0.03967361
-2.674368 her mind -0.03967361
-1.763859 her mouth -0.03967361
-2.726021 her almost -0.03967362
-2.643057 her yes -0.03967361
-2.754351 her usual -0.03967361
-2.744701 her mental -0.03967361
-2.726021 her head -0.03967362
-2.744701 her advice -0.03967361
-2.726021 her heart -0.03967361
-2.754351 her attitude -0.03967361
-2.735261 her word -0.03967362
-2.682561 her think -0.03967361
-2.744701 her parents -0.03967361
-2.76422 her painful -0.03967361
-2.754351 her doubts -0.03967361
-2.735261 her except -0.03967361
-2.76422 her brisk -0.03967361
-2.726021 her presently -0.03967361
-2.004892 her hand -0.03967361
-1.483514 her eyes -0.03967361
-2.690912 her face -0.03967361
-2.744701 her reward -0.03967361
-2.735261 her position -0.03967361
-2.76422 her wide -0.03967361
-2.020817 her foot -0.03967361
-2.754351 her anger -0.03967361
-2.754351 her lord -0.03967361
-2.76422 her couch -0.03967361
-2.754351 her neck -0.03967361
-2.620972 her still -0.03967361
-2.708112 her bed -0.03967361
-2.735261 her virtue -0.03967362
-2.76422 her flesh -0.03967361
-2.76422 her strength -0.03967361
-2.735261 her immediately -0.03967361
-2.754351 her fingers -0.03967361
-2.76422 her share -0.03967361
-2.754351 her passion -0.03967361
-2.76422 her pride -0.03967361
-2.744701 her laugh -0.03967361
-2.744701 her mother -0.03967361
-2.744701 her gravity -0.03967361
-2.76422 her throat -0.03967361
-2.774319 her ascend -0.03967361
-2.754351 her shriek -0.03967361
-2.744701 her chamber -0.03967361
-0.8755004 window </s>
-1.430964 window and -0.03967361
-1.469568 window of -0.03967361
-1.579916 window it -0.03967361
-1.610588 window at -0.03967362
-1.709681 window keeping -0.0396736
-1.709681 window knitting -0.03967362
-1.679311 window over -0.03967362
-1.708473 window warm -0.03967361
-1.691902 window i've -0.03967361
-0.2132385 keeping a -0.3407036
-0.9707725 sharp eye -0.3407036
-0.9707725 sharp exclamation -0.03967362
-1.20675 eye and -0.03967361
-1.350642 eye well -0.03967361
-1.328508 eye on -0.03967362
-1.319203 eye she -0.03967361
-1.36847 eye loves -0.03967361
-1.852779 on one -0.03967361
-0.464761 on the -0.1683402
-1.161895 on <unk> -0.2157649
-1.421552 on a -0.3407036
-1.986287 on and -0.03967361
-1.801226 on that -0.03967361
-1.581352 on it -0.03967361
-2.032718 on to -0.03967361
-2.606858 on everything -0.03967362
-2.441457 on all -0.03967361
-2.459779 on this -0.03967361
-2.602504 on anything -0.03967361
-2.598193 on always -0.03967361
-1.449876 on his -0.1646123
-1.608161 on him -0.03967361
-2.46291 on which -0.03967361
-2.541941 on here -0.03967361
-2.516331 on any -0.03967361
-2.6157 on pretty -0.03967361
-2.611257 on green -0.03967361
-2.198298 on i -0.03967361
-1.593487 on you -0.03967361
-2.512792 on your -0.03967361
-2.549544 on two -0.03967361
-2.581364 on ever -0.03967361
-2.589697 on five -0.03967361
-1.635329 on earth -0.03967361
-2.450522 on me -0.03967361
-1.458808 on my -0.03967361
-2.64336 on purpose -0.03967361
-2.6157 on women -0.03967361
-2.64336 on easter -0.03967362
-2.638626 on paying -0.03967361
-2.638626 on board -0.03967361
-2.638626 on wet -0.03967361
-2.638626 on top -0.03967361
-2.648146 on rothschild -0.03967361
-2.648146 on lafitte -0.03967361
-2.638626 on line -0.03967361
-2.633943 on shore -0.03967362
-1.525615 everything a -0.03967361
-1.433074 everything and -0.03967361
-0.6431719 everything that -0.03967361
-1.5719 everything for -0.03967361
-1.644283 everything over -0.03967361
-1.656355 everything went -0.03967361
-1.631646 everything about -0.03967361
-1.654476 everything answered -0.03967361
-1.525059 passed by -0.03967361
-1.408286 passed in -0.03967361
-1.560388 passed through -0.03967362
-1.512201 passed her -0.03967362
-1.526803 passed from -0.03967361
-1.547372 passed over -0.03967361
-1.564179 passed already -0.03967362
-1.571862 passed wearily -0.03967361
-2.431516 from missus -0.03967362
-0.6142716 from the -0.1324277
-1.221605 from <unk> -0.03967362
-1.672519 from a -0.03967361
-2.50545 from its -0.03967361
-1.527279 from an -0.2615224
-2.547744 from lynde's -0.03967361
-1.514748 from her -0.03967361
-2.43531 from them -0.03967361
-2.388407 from out -0.03967361
-2.385 from who -0.03967361
-1.787021 from their -0.03967361
-1.084771 from his -0.1488181
-2.319018 from him -0.03967361
-2.537983 from clothes -0.03967361
-2.479382 from three -0.03967361
-2.466912 from nothing -0.03967361
-2.50545 from home -0.03967361
-2.483619 from marilla -0.03967361
-2.537983 from year -0.03967361
-2.487898 from off -0.03967361
-2.514499 from being -0.03967361
-1.727871 from you -0.03967361
-2.416666 from your -0.03967361
-2.537983 from curiosity -0.03967362
-2.542836 from orphan -0.03967361
-2.547744 from nova -0.0396736
-2.547744 from adopting -0.03967361
-2.352328 from me -0.03967362
-1.763683 from my -0.03967361
-2.479382 from us -0.03967361
-2.547744 from england -0.03967361
-2.547744 from ourselves -0.03967361
-2.547744 from pity -0.03967361
-2.523741 from morning -0.03967362
-2.552708 from envy -0.03967362
-1.806281 from smithtown -0.03967361
-2.528436 from thy -0.03967361
-2.542836 from thee -0.03967361
-2.542836 from douglas -0.03967361
-2.547744 from twelve -0.03967361
-2.537983 from seat -0.03967361
-1.231387 children <unk> -0.03967361
-1.365021 children and -0.03967361
-1.401411 children of -0.03967361
-1.5773 children up -0.03967361
-1.574367 children which -0.03967361
-1.567598 children no -0.03967361
-1.592274 children do -0.03967361
-1.622773 children berth -0.03967361
-1.620599 children cultivate -0.03967361
-1.45001 up </s>
-2.257073 up one -0.03967361
-2.244923 up is -0.03967361
-2.368875 up just -0.03967361
-2.38927 up where -0.3407036
-0.905303 up the -0.1945756
-1.580193 up <unk> -0.03967361
-2.349395 up into -0.03967361
-1.64121 up with -0.03967361
-1.324786 up and -0.03967361
-1.369491 up in -0.03967362
-1.113846 up to -0.1365836
-2.305925 up an -0.03967361
-2.410671 up through -0.03967361
-2.338113 up well -0.03967361
-2.107429 up for -0.03967361
-2.385114 up without -0.03967361
-1.644956 up at -0.03967361
-2.213164 up on -0.03967361
-1.674534 up all -0.3407036
-2.16824 up she -0.03967361
-2.282442 up or -0.03967361
-2.397704 up people -0.03967361
-1.422927 up his -0.03967362
-2.360978 up here -0.03967361
-2.380997 up good -0.03967361
-2.008338 up i -0.03967361
-2.27596 up when -0.03967361
-2.461829 up west -0.03967361
-2.424036 up isn't -0.03967361
-2.424036 up right -0.03967361
-1.677768 up my -0.3407036
-2.461829 up proper -0.03967361
-2.360978 up again -0.03967361
-2.447269 up waiting -0.03967361
-2.437826 up mine -0.03967361
-2.466793 up directly -0.03967361
-2.447269 up started -0.03967361
-2.316392 up bobby -0.03967361
-2.380997 up graham -0.03967361
-2.433181 up indeed -0.03967362
-2.466793 up rejoined -0.03967361
-0.5002403 helped to -0.3407036
-1.270954 helped run -0.03967361
-1.268056 helped themselves -0.03967362
-0.9573849 school is -0.03967362
-0.8990917 school and -0.03967361
-0.9494535 church at -0.03967361
-0.9712584 church aid -0.03967361
-0.9078251 aid to -0.03967361
-0.9710154 aid society -0.03967361
-1.042958 society and -0.03967361
-1.059914 society of -0.03967361
-1.144563 society entered -0.03967361
-0.8486216 foreign <unk> -0.03967361
-0.9715015 foreign missionary -0.03967361
-1.093179 yet the -0.03967361
-1.352878 yet <unk> -0.03967361
-1.773602 yet with -0.03967361
-1.734514 yet that -0.03967361
-1.756418 yet was -0.03967361
-1.564386 yet to -0.03967361
-1.882618 yet be -0.03967361
-1.91577 yet even -0.03967362
-1.864237 yet there -0.03967361
-1.701121 yet he -0.03967361
-1.895964 yet here -0.03967361
-1.91577 yet something -0.03967361
-1.851818 yet what -0.03967361
-1.917802 yet it's -0.03967362
-1.886389 yet do -0.03967361
-1.913749 yet come -0.03967361
-1.930193 yet whose -0.03967361
-1.905754 yet graham -0.03967361
-1.549653 all </s>
-0.9595436 all the -0.1993745
-1.178032 all <unk> -0.2157649
-2.062072 all a -0.03967361
-1.606427 all and -0.03967361
-1.75398 all that -0.03967361
-1.505098 all in -0.03967361
-1.47607 all of -0.2157649
-2.163177 all it -0.03967361
-2.201226 all was -0.03967361
-2.552968 all through -0.03967361
-1.793922 all but -0.03967361
-1.580889 all her -0.03967361
-1.828329 all this -0.03967361
-2.536524 all people -0.03967361
-2.500416 all their -0.03967361
-2.564287 all always -0.03967362
-2.62578 all ran -0.03967361
-1.872641 all white -0.03967361
-2.481055 all over -0.03967361
-1.42632 all his -0.1365836
-2.606401 all seeing -0.03967361
-2.107681 all he -0.03967361
-2.536524 all been -0.03967361
-2.419376 all about -0.03967361
-2.467081 all have -0.03967361
-2.458008 all any -0.03967361
-2.58785 all pretty -0.03967361
-2.600129 all questions -0.03967362
-2.570059 all gone -0.03967361
-1.873809 all night -0.03967361
-1.526637 all i -0.2157649
-2.619224 all conscience -0.03967361
-2.547417 all it's -0.03967362
-1.601631 all your -0.2615224
-2.606401 all winter -0.03967361
-1.871476 all right -0.03967362
-2.600129 all feel -0.03967361
-1.826228 all my -0.1646124
-1.874979 all seemed -0.03967361
-1.871476 all things -0.03967361
-2.490628 all again -0.03967361
-2.58785 all women -0.03967361
-2.600129 all brown -0.03967361
-2.593946 all possible -0.03967362
-2.525897 all our -0.03967361
-2.62578 all flowers -0.03967361
-2.62578 all loves -0.03967362
-2.51043 all these -0.03967361
-2.612765 all human -0.03967361
-2.581838 all became -0.03967361
-2.62578 all american -0.03967361
-2.619224 all princes -0.03967361
-2.62578 all events -0.03967361
-2.62578 all waters -0.03967361
-2.564287 all robin -0.03967361
-1.725755 this </s>
-1.829643 this missus -0.3407036
-1.303817 this is -0.1188549
-1.854748 this the -0.03967361
-0.8274262 this <unk> -0.2044839
-1.425565 this and -0.03967361
-2.280426 this had -0.03967362
-2.525379 this place -0.03967361
-1.534682 this was -0.03967361
-2.246296 this but -0.03967361
-1.843583 this time -0.03967361
-2.389991 this there -0.03967361
-2.255342 this his -0.03967361
-2.579704 this best -0.03967361
-1.850725 this day -0.3407036
-2.519742 this something -0.03967361
-2.492605 this nothing -0.03967361
-2.606216 this unusual -0.03967361
-2.586182 this year -0.03967361
-1.601608 this fellow -0.03967361
-2.377704 this they -0.03967361
-2.599435 this world -0.03967361
-2.592758 this advice -0.03967362
-2.592758 this matter -0.03967361
-2.354126 this my -0.03967361
-2.606216 this amazing -0.03967361
-2.599435 this island -0.03967361
-2.548689 this child -0.03967361
-2.542743 this new -0.03967361
-2.599435 this uncomfortable -0.03967361
-2.606216 this freckled -0.03967362
-2.542743 this way -0.03967361
-1.321902 this morning -0.1365836
-2.586182 this gentleman -0.03967361
-2.579704 this moment -0.03967361
-2.542743 this jesus -0.03967361
-2.606216 this subject -0.03967361
-2.567031 this count -0.03967362
-2.592758 this reward -0.03967361
-2.606216 this mythus -0.03967362
-2.586182 this evidence -0.03967361
-1.436831 this money -0.1646124
-2.606216 this hurried -0.03967362
-2.606216 this unanimous -0.03967361
-2.592758 this conversation -0.03967361
-2.573321 this every -0.03967361
-2.599435 this necessary -0.03967361
-2.586182 this forest -0.03967361
-2.586182 this path -0.03967361
-2.579704 this death -0.03967361
-2.586182 this sad -0.03967361
-2.599435 this point -0.03967361
-2.606216 this winding -0.03967361
-2.599435 this funeral -0.03967361
-2.599435 this secret -0.03967361
-2.599435 this horrible -0.03967361
-2.606216 this problem -0.03967361
-2.606216 this honest -0.03967361
-1.146825 found the -0.3407036
-1.433965 found <unk> -0.03967361
-1.181464 found a -0.03967361
-1.797239 found that -0.03967361
-0.7892754 found in -0.0396736
-1.797239 found it -0.03967361
-1.955648 found without -0.03967361
-1.872937 found on -0.03967361
-1.848532 found she -0.03967361
-1.93986 found them -0.03967362
-1.858416 found his -0.03967361
-1.953865 found nothing -0.03967361
-1.983308 found worthy -0.03967361
-1.922966 found then -0.03967362
-1.945059 found some -0.03967362
-1.966502 found himself -0.03967361
-1.141675 sit down -0.03967361
-1.042958 sit and -0.03967361
-1.108101 sit for -0.03967361
-0.7388029 hours of -0.03967361
-0.7531049 hours at -0.03967361
-0.7605647 hours passed -0.03967361
-1.504287 hours after -0.03967361
-1.145289 kitchen door -0.03967361
-1.114814 kitchen at -0.03967361
-1.146015 kitchen window -0.03967361
-0.8486216 knitting <unk> -0.03967361
-0.8990917 knitting and -0.03967361
-2.51239 she is -0.03967361
-1.074788 she <unk> -0.03967361
-2.382364 she with -0.03967361
-1.014285 she had -0.1188549
-0.904914 she was -0.1226478
-2.035873 she to -0.03967361
-1.54095 she could -0.1365836
-2.704854 she without -0.03967361
-2.830332 she knitted -0.03967362
-2.830332 she noticed -0.03967361
-1.53888 she would -0.1365836
-2.064884 she never -0.03967361
-2.830332 she ran -0.03967362
-2.070468 she went -0.03967362
-2.806738 she knew -0.03967361
-2.067667 she asked -0.03967361
-2.723408 she been -0.03967361
-1.812016 she might -0.03967361
-2.791691 she didn't -0.03967361
-2.763077 she gone -0.03967361
-2.086204 she concluded -0.0396736
-2.830332 she generally -0.03967361
-2.814461 she wouldn't -0.03967361
-2.669967 she made -0.03967361
-2.224647 she i -0.03967361
-2.710951 she has -0.03967361
-1.653781 she did -0.1646124
-1.197887 she said -0.1779763
-2.814461 she stepped -0.03967361
-1.454862 she got -0.03967361
-2.830332 she swept -0.03967361
-2.071875 she left -0.03967361
-1.827796 she sat -0.03967362
-2.74279 she looked -0.03967361
-2.806738 she laid -0.03967361
-2.74279 she thought -0.03967361
-2.087664 she demanded -0.03967361
-2.544655 she my -0.03967361
-2.791691 she herself -0.03967362
-2.822324 she proceeded -0.03967361
-2.806738 she sent -0.03967361
-2.078981 she took -0.03967361
-2.806738 she couldn't -0.03967361
-2.74279 she say -0.03967361
-2.087664 she died -0.3407036
-2.822324 she hardly -0.03967361
-2.723408 she answered -0.03967361
-2.822324 she preferred -0.03967361
-2.822324 she wasn't -0.03967361
-2.830332 she wore -0.03967362
-2.799149 she stood -0.03967361
-2.799149 she held -0.03967361
-2.806738 she stopped -0.03967361
-2.770056 she already -0.03967361
-2.0833 she hadn't -0.03967361
-2.784359 she began -0.03967362
-2.822324 she holding -0.03967361
-2.814461 she lay -0.03967361
-2.777149 she became -0.03967361
-2.822324 she persisted -0.03967361
-2.806738 she tried -0.03967362
-2.830332 she wants -0.03967361
-2.822324 she promised -0.03967362
-2.806738 she cried -0.03967362
-2.822324 she continued -0.03967362
-2.822324 she mentioned -0.03967361
-2.830332 she caught -0.03967361
-2.090597 she fed -0.3407036
-2.822324 she rowed -0.03967361
-0.2046675 knitted <unk> -0.03967361
-0.810063 them </s>
-1.411112 them the -0.03967361
-1.551857 them <unk> -0.03967361
-1.92815 them a -0.03967361
-1.509873 them with -0.03967361
-1.398796 them and -0.3407036
-1.812849 them of -0.03967361
-2.03772 them was -0.03967361
-1.417403 them to -0.03967361
-1.501553 them for -0.03967361
-2.181975 them up -0.03967361
-1.288868 them all -0.1646123
-2.198063 them if -0.03967361
-2.176742 them or -0.03967361
-2.073115 them as -0.03967361
-2.295667 them red -0.03967361
-2.244129 them i'm -0.03967361
-1.946124 them i -0.03967361
-2.171571 them when -0.03967361
-2.181975 them they -0.03967361
-2.302562 them i'd -0.03967361
-1.510434 them you -0.03967361
-2.299101 them hard -0.03967362
-2.238096 them again -0.03967361
-1.557162 them our -0.03967361
-2.316688 them carry -0.03967362
-2.275617 them himself -0.03967361
-2.316688 them fled -0.03967362
-2.30605 them tried -0.03967361
-2.299101 them tired -0.03967361
-2.36327 if one -0.03967361
-1.424915 if the -0.03967361
-1.74446 if <unk> -0.03967361
-1.678304 if a -0.03967362
-2.371116 if by -0.03967361
-2.209834 if that -0.03967361
-0.8498473 if it -0.1858016
-2.23417 if for -0.03967361
-2.333228 if her -0.03967361
-1.728777 if she -0.03967361
-2.398346 if there -0.03967361
-1.324394 if he -0.03967361
-2.524646 if peter -0.03967362
-2.427397 if any -0.03967361
-2.478343 if marilla -0.03967361
-2.528421 if he'd -0.03967361
-1.126572 if i -0.1188549
-1.775059 if it's -0.03967361
-1.350525 if they -0.03967361
-0.7420958 if you -0.4471589
-2.509866 if getting -0.03967361
-2.442685 if only -0.03967361
-2.520904 if instead -0.0396736
-2.506248 if there's -0.03967361
-1.352796 if we -0.03967361
-2.528421 if everybody -0.03967361
-2.520904 if god -0.03967362
-2.495573 if jesus -0.03967361
-2.520904 if faith -0.03967361
-2.532229 if ye -0.03967361
-2.532229 if desired -0.03967362
-2.412628 if bobby -0.03967361
-0.9048946 noticed the -0.03967361
-0.9690763 noticed anything -0.03967362
-1.411556 anything </s>
-0.9687985 anything that -0.03967361
-0.9529777 anything in -0.03967361
-1.617705 anything it -0.03967361
-1.730853 anything even -0.03967361
-1.743855 anything odd -0.03967361
-1.701586 anything about -0.03967361
-1.584877 anything i -0.03967361
-1.722777 anything very -0.03967362
-1.644541 anything you -0.03967361
-1.10975 odd <unk> -0.03967361
-1.259111 odd in -0.03967361
-1.341425 odd or -0.03967361
-1.364244 odd living -0.03967361
-1.363644 odd looking -0.03967361
-2.227159 or one -0.03967362
-1.012047 or the -0.0854311
-0.8467977 or <unk> -0.08543111
-2.325209 or into -0.03967362
-1.360979 or a -0.2157649
-1.898729 or in -0.03967361
-1.815649 or of -0.03967361
-1.493131 or to -0.03967361
-1.658222 or not -0.03967361
-2.118448 or at -0.03967362
-2.189804 or her -0.03967361
-2.420494 or children -0.03967361
-2.275235 or out -0.03967362
-2.321154 or would -0.03967362
-2.400659 or other -0.03967361
-1.990105 or he -0.03967361
-2.250532 or which -0.03967361
-2.441278 or alive -0.03967361
-2.35909 or good -0.03967361
-2.247115 or what -0.03967361
-2.446633 or conscience -0.03967361
-2.247115 or when -0.03967362
-2.260948 or they -0.03967362
-2.400659 or get -0.03967361
-2.420494 or perhaps -0.03967361
-2.386356 or too -0.03967361
-2.346073 or two -0.03967361
-2.405534 or right -0.03967361
-2.329303 or will -0.03967361
-2.446633 or eleven -0.03967361
-2.400659 or whether -0.03967361
-2.452055 or somebody -0.03967362
-2.430761 or four -0.03967361
-2.41545 or black -0.03967362
-2.446633 or priest -0.03967361
-2.420494 or else -0.03967362
-2.441278 or wrong -0.03967361
-2.446633 or cash -0.03967361
-2.435988 or heaven -0.03967361
-2.441278 or cold -0.03967361
-2.446633 or move -0.03967361
-2.41545 or indeed -0.03967361
-2.452055 or force -0.03967361
-2.446633 or six -0.03967361
-2.435988 or seat -0.03967361
-2.452055 or caught -0.03967361
-2.270333 out one -0.03967361
-0.9942077 out the -0.1066204
-1.253625 out <unk> -0.2157649
-1.562004 out in -0.03967361
-0.5019715 out of -0.2770346
-1.932994 out to -0.03967361
-2.211581 out but -0.03967361
-2.327911 out well -0.03967362
-1.604961 out for -0.03967361
-2.244174 out her -0.03967361
-1.626356 out on -0.03967362
-1.387834 out from -0.03967361
-2.270333 out all -0.03967361
-2.2038 out she -0.03967361
-1.640877 out there -0.03967361
-2.348934 out their -0.03967361
-2.194267 out as -0.03967362
-2.244174 out so -0.03967361
-2.362611 out why -0.03967361
-2.302986 out about -0.03967361
-2.403367 out together -0.03967361
-2.340931 out like -0.03967361
-2.38543 out first -0.03967361
-2.279414 out my -0.03967361
-2.40643 out ten -0.03967361
-2.412622 out building -0.03967361
-2.319242 would just -0.03967361
-1.679392 would <unk> -0.03967362
-0.6643578 would be -0.09082614
-1.198257 would not -0.2827117
-1.621935 would never -0.03967361
-2.272388 would there -0.03967361
-2.07042 would he -0.03967361
-0.704865 would have -0.4376136
-2.348874 would make -0.03967361
-2.374719 would find -0.03967361
-2.360171 would take -0.03967361
-2.343334 would it's -0.03967361
-2.348874 would look -0.03967361
-2.374719 would seem -0.03967361
-2.301387 would do -0.03967361
-2.159768 would you -0.03967361
-2.365932 would certainly -0.03967361
-1.627724 would soon -0.3407036
-2.346095 would say -0.03967362
-2.368841 would stay -0.03967361
-2.377688 would hardly -0.03967362
-2.337864 would come -0.03967362
-1.630915 would crush -0.03967361
-2.377688 would grasp -0.03967361
-2.377688 would judge -0.03967361
-0.9360565 never <unk> -0.1646124
-1.90617 never that -0.03967361
-2.021245 never had -0.03967361
-2.131795 never be -0.03967361
-2.157734 never could -0.03967362
-2.1998 never found -0.03967361
-2.238262 never rest -0.03967361
-2.214778 never done -0.03967361
-2.238262 never anybody -0.03967361
-2.141342 never before -0.03967361
-1.483567 never been -0.03967361
-2.131795 never any -0.03967361
-2.234259 never find -0.03967361
-2.242303 never visits -0.03967362
-2.214778 never set -0.03967361
-2.147824 never did -0.03967361
-2.230293 never seen -0.03967362
-2.171308 never came -0.03967361
-2.226362 never expected -0.03967361
-2.203496 never saw -0.03967361
-2.196134 never thought -0.03967361
-2.242303 never dream -0.03967361
-2.214778 never really -0.03967362
-2.154405 never again -0.03967362
-2.238262 never forget -0.03967361
-2.242303 never deliver -0.03967362
-2.242303 never free -0.03967361
-2.230293 never trouble -0.03967361
-2.242303 never dreamed -0.03967361
-2.234259 never makes -0.03967361
-2.238262 never fell -0.03967362
-2.238262 never swim -0.03967361
-2.238262 never fear -0.03967361
-2.238262 never rowed -0.03967361
-1.168367 rest </s>
-1.20675 rest and -0.03967361
-1.231699 rest of -0.03967361
-1.363044 rest until -0.03967362
-1.367864 rest paying -0.03967361
-1.312395 until <unk> -0.03967361
-1.6654 until at -0.03967361
-1.672108 until she -0.03967361
-1.75096 until man -0.03967361
-1.680068 until his -0.03967361
-1.604432 until he -0.03967361
-1.742929 until matthew -0.03967361
-1.774556 until long -0.03967362
-0.9894911 until i -0.03967361
-1.722211 until they -0.03967361
-1.733743 until we -0.03967361
-1.778857 until daylight -0.03967361
-1.287012 there </s>
-2.263739 there one -0.03967361
-0.9553303 there is -0.1993745
-2.412701 there lived -0.03967361
-1.893465 there the -0.03967361
-1.246958 there <unk> -0.2157649
-2.039557 there a -0.03967361
-1.614388 there with -0.03967362
-1.312295 there and -0.2157649
-1.62876 there had -0.3407036
-1.925643 there of -0.03967361
-2.118712 there it -0.03967361
-0.7824732 there was -0.4656424
-2.323436 there be -0.03967361
-2.20065 there but -0.03967361
-1.606308 there for -0.03967362
-2.235572 there her -0.03967361
-2.228807 there on -0.03967361
-1.62041 there she -0.03967361
-2.331864 there would -0.03967361
-1.653029 there are -0.03967361
-1.397076 there were -0.03967361
-2.075758 there he -0.03967361
-2.307054 there then -0.03967361
-2.389415 there isn't -0.03967361
-2.376649 there too -0.03967361
-2.40592 there waiting -0.03967361
-2.364248 there still -0.03967361
-2.41959 there shone -0.03967361
-1.431839 are the -0.03967361
-1.29892 are <unk> -0.1646124
-1.502008 are a -0.03967361
-1.86563 are in -0.03967361
-1.76645 are to -0.03967361
-2.181211 are not -0.03967361
-2.074254 are at -0.03967361
-2.206171 are up -0.03967361
-2.331925 are yet -0.03967362
-1.586511 are all -0.03967361
-2.193512 are this -0.03967361
-2.260854 are would -0.03967361
-2.372358 are plenty -0.0396736
-2.331925 are always -0.03967362
-2.344989 are done -0.03967361
-1.577357 are so -0.3407036
-2.363042 are clothes -0.03967361
-1.623506 are going -0.03967362
-2.275673 are here -0.03967361
-2.353922 are both -0.03967362
-2.336236 are gone -0.03967361
-2.206171 are they -0.03967361
-2.287129 are very -0.03967361
-0.9065887 are you -0.03967361
-2.246524 are your -0.03967361
-2.363042 are forced -0.03967362
-2.323429 are put -0.03967361
-2.336236 are right -0.03967361
-2.236079 are we -0.03967361
-2.187318 are my -0.03967361
-2.331925 are new -0.03967361
-2.372358 are laughing -0.03967362
-2.372358 are mister -0.03967361
-2.363042 are worth -0.03967361
-2.367675 are wrong -0.03967361
-2.372358 are deposited -0.03967361
-2.302889 are still -0.03967361
-2.377092 are bygones -0.03967361
-2.377092 are scruples -0.03967361
-2.377092 are acute -0.03967362
-0.1289313 plenty of -0.2157649
-1.562208 people </s>
-2.107296 people lived -0.03967361
-0.9725025 people <unk> -0.03967361
-1.95653 people had -0.03967361
-1.275211 people in -0.03967361
-1.695351 people of -0.03967361
-1.246928 people to -0.03967361
-1.936684 people but -0.03967361
-1.886758 people for -0.03967361
-2.107296 people helped -0.03967361
-2.041939 people are -0.03967361
-1.344251 people were -0.03967361
-2.107296 people called -0.03967361
-2.094427 people living -0.03967361
-1.330497 people said -0.03967361
-2.001211 people when -0.03967361
-2.009474 people they -0.03967361
-2.079472 people too -0.03967361
-2.081929 people thought -0.03967361
-2.109916 people adopting -0.03967361
-2.094427 people whose -0.03967362
-2.109916 people horrible -0.03967361
-1.029582 who is -0.03967361
-2.344368 who just -0.03967361
-1.87279 who the -0.03967361
-0.7874928 who <unk> -0.1779763
-1.117509 who had -0.1365836
-1.110531 who was -0.1858016
-2.341258 who could -0.03967362
-2.180032 who she -0.03967361
-2.323052 who are -0.03967361
-1.405385 who can -0.03967361
-1.645472 who were -0.03967361
-2.373408 who went -0.03967361
-2.059469 who he -0.03967361
-1.651761 who have -0.03967361
-2.419111 who visits -0.03967361
-1.659429 who has -0.03967362
-2.33206 who did -0.03967361
-2.335104 who like -0.03967361
-2.383536 who saw -0.03967361
-2.370084 who may -0.03967361
-2.305579 who we -0.03967362
-2.370084 who don't -0.03967361
-2.415419 who died -0.03967362
-2.40453 who should -0.03967361
-2.400959 who turned -0.03967361
-2.419111 who receives -0.03967361
-2.411759 who worked -0.03967361
-2.419111 who wishes -0.03967362
-2.419111 who roused -0.03967361
-2.419111 who surely -0.03967361
-2.419111 who lives -0.03967362
-0.8224574 can <unk> -0.03967361
-1.673121 can to -0.03967361
-1.317053 can be -0.03967361
-2.080849 can attend -0.03967362
-1.816818 can he -0.03967361
-2.050641 can go -0.03967361
-1.801374 can i -0.03967361
-2.057428 can get -0.03967361
-1.062691 can do -0.03967361
-2.071328 can feel -0.03967361
-2.052892 can say -0.03967361
-2.073689 can understand -0.03967361
-2.071328 can imagine -0.03967361
-2.080849 can carry -0.03967361
-2.080849 can remember -0.03967361
-2.080849 can stop -0.03967361
-2.080849 can number -0.03967362
-2.078449 can decide -0.03967361
-2.062012 can alone -0.03967361
-2.078449 can show -0.03967361
-0.2046675 attend <unk> -0.03967361
-0.7145034 their <unk> -0.2157649
-2.247677 their little -0.03967361
-2.275012 their children -0.03967361
-1.007496 their own -0.2157649
-2.241104 their three -0.03967361
-2.296705 their apartment -0.03967361
-2.289353 their appearance -0.03967361
-2.282123 their part -0.03967361
-2.282123 their turn -0.03967361
-2.289353 their different -0.03967362
-2.296705 their shoulders -0.03967362
-2.26113 their way -0.03967361
-2.296705 their heads -0.03967362
-2.275012 their beautiful -0.03967361
-2.293013 their gods -0.03967361
-2.285723 their search -0.03967362
-2.296705 their industry -0.03967361
-2.293013 their quest -0.03967361
-2.293013 their ease -0.03967361
-2.293013 their courtiers -0.03967361
-2.293013 their attention -0.03967361
-2.293013 their birth -0.03967361
-2.289353 their friends -0.03967361
-2.289353 their coat -0.03967361
-2.293013 their direction -0.03967361
-1.548786 their efforts -0.03967361
-2.293013 their melancholy -0.03967361
-2.285723 their path -0.03967362
-2.289353 their fortune -0.03967361
-2.289353 their rain -0.03967362
-2.296705 their faces -0.03967362
-1.254409 business </s>
-1.183941 business <unk> -0.03967361
-1.472869 business by -0.03967362
-1.457708 business had -0.03967361
-1.446674 business she -0.03967361
-1.394066 business i -0.03967361
-1.458453 business said -0.03967361
-1.477724 own </s>
-0.6618751 own <unk> -0.03967361
-1.837874 own if -0.03967361
-1.896084 own town -0.03967361
-1.858993 own made -0.03967361
-1.894403 own son -0.03967361
-1.886098 own that's -0.03967361
-1.891062 own used -0.03967361
-1.89777 own sake -0.03967361
-1.89777 own grandfather -0.03967361
-1.89777 own fashion -0.03967361
-1.879566 own room -0.03967361
-1.88282 own eyes -0.03967361
-1.896084 own affairs -0.03967361
-0.9614055 creatures who -0.03967361
-0.961881 creatures were -0.03967362
-1.548188 other </s>
-2.098713 other avonlea -0.03967361
-0.6677061 other <unk> -0.03967361
-1.903587 other with -0.03967362
-1.627337 other and -0.03967361
-1.858205 other that -0.03967361
-1.930001 other but -0.03967361
-1.922799 other she -0.03967362
-2.072731 other people -0.03967361
-2.106821 other folks -0.03967361
-2.055426 other man -0.03967361
-2.093391 other night -0.03967361
-2.106821 other side -0.03967362
-2.101399 other name -0.03967361
-2.088133 other thing -0.03967361
-2.109558 other people's -0.03967361
-2.104102 other orphans -0.03967361
-2.080364 other hand -0.03967361
-2.109558 other nice -0.03967361
-2.112312 other invisible -0.03967361
-2.106821 other times -0.03967361
-2.109558 other cause -0.03967361
-2.109558 other easily -0.03967361
-1.258886 folks into -0.03967361
-1.229281 folks at -0.03967361
-1.204051 folks he -0.03967361
-1.265057 folks something -0.03967361
-1.410745 work and -0.03967361
-1.497821 work in -0.03967361
-1.568666 work it -0.03967361
-1.584336 work was -0.03967361
-1.626177 work on -0.03967361
-1.698926 work work -0.03967361
-1.651032 work which -0.03967361
-1.62508 work said -0.03967361
-1.647558 work my -0.03967361
-1.696337 work new -0.03967362
-1.702839 work doctor -0.03967361
-0.9640322 always <unk> -0.03967361
-1.758639 always had -0.03967361
-1.761441 always on -0.03967362
-1.802697 always there -0.03967361
-1.858713 always done -0.03967361
-1.731568 always as -0.03967361
-1.856958 always heard -0.03967361
-1.8712 always slightly -0.03967362
-1.850008 always thought -0.03967361
-1.864021 always feel -0.03967361
-1.869394 always speaking -0.03967361
-1.864021 always turn -0.03967361
-1.8712 always telling -0.03967362
-1.8712 always support -0.03967362
-1.8712 always suffered -0.03967362
-1.59647 done with -0.03967361
-1.410745 done and -0.03967361
-1.497821 done in -0.03967361
-1.439779 done to -0.03967361
-1.686133 done without -0.03967361
-1.6079 done she -0.03967361
-1.633932 done him -0.03967361
-1.673706 done before -0.03967361
-1.659249 done about -0.03967362
-1.693764 done five -0.03967361
-1.708111 done pardon -0.03967361
-0.9048946 ran the -0.03967361
-0.9078251 ran to -0.03967361
-1.016274 circle </s>
-1.122665 circle on -0.03967361
-1.140238 circle came -0.03967361
-2.547224 as one -0.03967361
-1.180529 as the -0.0854311
-2.770015 as avonlea -0.03967361
-1.138591 as <unk> -0.09082614
-1.564952 as a -0.3407036
-2.197623 as in -0.03967361
-1.583884 as it -0.03967361
-1.290093 as to -0.1066204
-2.782063 as dark -0.03967361
-2.642268 as well -0.03967361
-2.378429 as for -0.03967361
-2.554396 as not -0.03967361
-2.496903 as on -0.03967361
-2.547224 as all -0.03967361
-1.490034 as she -0.0396736
-1.221713 as if -0.07746217
-2.746879 as anything -0.03967361
-2.651213 as would -0.03967362
-2.741283 as always -0.03967361
-2.679211 as man -0.03967361
-2.466328 as his -0.03967361
-1.006057 as he -0.09766557
-2.775997 as best -0.03967361
-2.669677 as now -0.03967361
-2.637863 as any -0.03967361
-2.679211 as might -0.03967361
-2.052116 as often -0.3407036
-2.03538 as good -0.3407036
-2.775997 as sure -0.03967361
-1.383632 as i -0.1188548
-1.792907 as far -0.2157649
-2.735758 as themselves -0.03967362
-1.788545 as much -0.0396736
-1.792907 as though -0.2157649
-1.503331 as they -0.1188549
-1.400299 as you -0.1188549
-2.770015 as hard -0.03967362
-2.040887 as ever -0.03967362
-2.788214 as turning -0.03967361
-1.28332 as soon -0.7386436
-2.620679 as we -0.03967361
-2.746879 as think -0.03967361
-2.730302 as another -0.03967361
-2.05669 as quickly -0.3407036
-2.05098 as possible -0.03967361
-2.794454 as clear -0.03967361
-2.794454 as belong -0.03967362
-2.775997 as apollo -0.0396736
-2.800785 as mythical -0.03967361
-2.616487 as bobby -0.03967361
-2.794454 as chief -0.03967361
-2.775997 as rawlins -0.03967361
-2.775997 as bonds -0.03967361
-2.800785 as bankers -0.03967361
-1.21882 were the -0.03967361
-0.7169174 were <unk> -0.2044839
-1.974275 were a -0.03967361
-1.822274 were to -0.03967361
-1.452206 were not -0.03967361
-1.656511 were at -0.03967361
-2.2191 were her -0.03967361
-2.210142 were on -0.03967361
-2.453296 were children -0.03967361
-2.291131 were up -0.03967361
-1.689092 were all -0.03967361
-2.284066 were or -0.03967361
-2.305615 were out -0.03967362
-2.479965 were plenty -0.0396736
-2.2191 were so -0.03967361
-2.4585 were coming -0.03967361
-2.404418 were three -0.03967361
-2.4691 were driving -0.03967361
-2.390767 were good -0.03967361
-2.364688 were more -0.03967361
-1.689092 were no -0.03967361
-2.136886 were you -0.03967361
-1.728197 were left -0.03967361
-2.453296 were getting -0.03967361
-2.36049 were only -0.03967361
-2.474498 were bad -0.03967361
-2.377532 were two -0.03967361
-2.463768 were part -0.0396736
-2.479965 were adopting -0.03967361
-2.479965 were grown -0.03967362
-2.448153 were full -0.03967362
-2.4585 were possible -0.03967361
-2.43308 were than -0.03967361
-2.463768 were heavy -0.03967362
-2.474498 were worse -0.03967361
-2.4585 were several -0.03967361
-2.44307 were already -0.03967362
-2.479965 were restless -0.03967362
-2.485501 were observed -0.03967361
-2.404418 were upon -0.03967362
-2.485501 were john -0.03967361
-2.485501 were disappointed -0.03967362
-2.474498 were drawn -0.03967361
-2.463768 were led -0.03967361
-2.479965 were natural -0.03967361
-2.479965 were rising -0.03967361
-2.4585 were tired -0.03967361
-1.511288 tell </s>
-1.125636 tell the -0.03967361
-1.412776 tell <unk> -0.03967361
-1.686672 tell in -0.03967361
-1.883922 tell this -0.03967361
-1.964027 tell peter -0.03967361
-1.936249 tell why -0.03967361
-1.883922 tell what -0.03967362
-1.731298 tell i -0.03967361
-1.850274 tell said -0.03967361
-0.9379439 tell you -0.03967361
-1.934459 tell how -0.03967361
-1.199231 tell me -0.03967361
-1.948991 tell whether -0.03967361
-1.962119 tell robinson -0.03967361
-1.964027 tell douglas -0.03967361
-1.148005 voices the -0.03967361
-1.137899 voices and -0.03967361
-1.233706 voices but -0.03967361
-1.204051 voices he -0.03967361
-0.2107 crossed the -0.03967361
-0.9678688 steep little -0.03967362
-0.9698025 steep red -0.03967362
-1.312401 red </s>
-1.241932 red <unk> -0.03967361
-1.477225 red that -0.03967361
-1.547372 red well -0.03967361
-1.570411 red hill -0.03967361
-1.568725 red hair -0.03967362
-0.8187705 red roads -0.03967361
-0.5803282 hill </s>
-1.367742 hill road -0.03967361
-1.366775 hill beyond -0.03967361
-1.368227 hill field -0.03967361
-1.247549 beyond </s>
-0.6634597 beyond the -0.03967361
-1.442825 beyond everything -0.03967361
-1.402192 beyond his -0.03967361
-1.420036 beyond which -0.03967361
-0.9741672 orchard <unk> -0.03967362
-1.042958 orchard and -0.03967361
-1.122665 orchard on -0.03967361
-1.139903 house </s>
-1.992707 house where -0.03967361
-1.176154 house the -0.03967361
-1.167699 house and -0.03967361
-1.721998 house in -0.03967361
-1.662043 house of -0.03967361
-1.236925 house was -0.03967361
-1.863943 house at -0.03967362
-1.865431 house as -0.03967361
-1.247575 house his -0.03967361
-1.904399 house so -0.03967361
-1.784096 house he -0.03967361
-1.978938 house here -0.03967361
-1.934792 house when -0.03967362
-1.954471 house then -0.03967361
-2.021628 house filled -0.03967361
-1.988728 house graham -0.03967361
-2.02377 house therefore -0.03967361
-0.9619283 white <unk> -0.03967361
-1.043447 white with -0.03967361
-0.7680303 white and -0.03967361
-1.634453 white in -0.03967361
-1.811402 white bloom -0.03967362
-1.061531 white collar -0.3407036
-1.80817 white dress -0.03967361
-1.81357 white cherry -0.03967362
-1.814658 white birches -0.03967361
-1.218616 bloom the -0.03967361
-1.10975 bloom <unk> -0.03967361
-1.259111 bloom in -0.03967361
-1.340286 bloom this -0.03967361
-1.363644 bloom white -0.03967361
-1.700829 over </s>
-0.6772851 over the -0.08543111
-1.274575 over <unk> -0.03967361
-1.351607 over and -0.03967361
-2.114092 over by -0.3407036
-1.993622 over that -0.03967361
-0.9068703 over in -0.1365836
-1.993622 over it -0.03967361
-1.149441 over to -0.03967362
-2.059509 over but -0.03967362
-2.04327 over at -0.03967361
-2.117861 over from -0.03967361
-2.1085 over all -0.03967361
-2.16163 over them -0.03967361
-2.044867 over as -0.03967361
-2.189731 over off -0.03967361
-2.036941 over you -0.03967361
-2.185288 over us -0.03967361
-1.461294 over again -0.03967361
-2.224591 over america -0.5167949
-1.051822 man </s>
-1.770128 man the -0.03967361
-1.539991 man <unk> -0.03967361
-1.919578 man a -0.03967361
-2.054468 man with -0.03967361
-1.071617 man and -0.03967361
-1.523277 man had -0.03967361
-1.449866 man in -0.03967361
-1.007869 man was -0.03967361
-2.086006 man but -0.03967362
-2.156915 man not -0.03967361
-2.238596 man could -0.03967362
-2.115324 man on -0.03967361
-1.514415 man she -0.03967361
-2.223372 man would -0.03967361
-1.541563 man who -0.03967361
-2.309097 man whom -0.03967361
-1.956807 man he -0.03967361
-2.169947 man which -0.03967361
-2.287759 man going -0.03967362
-2.309097 man alive -0.03967361
-2.251172 man good -0.03967361
-2.235508 man made -0.03967361
-2.167309 man what -0.03967361
-1.937794 man i -0.03967361
-2.291244 man brought -0.03967361
-2.294756 man seemed -0.03967361
-2.264123 man answered -0.03967362
-2.291244 man whose -0.03967362
-2.298297 man appeared -0.03967362
-2.316449 man lifted -0.03967361
-1.366291 whom avonlea -0.03967361
-1.354854 whom are -0.03967362
-1.300961 whom he -0.03967361
-0.6117942 whom we -0.03967361
-1.367742 called rachel -0.03967362
-1.244915 called the -0.03967361
-0.5675546 called <unk> -0.03967361
-1.349711 called out -0.03967361
-1.148005 husband the -0.03967361
-1.22186 husband was -0.03967361
-1.233706 husband but -0.03967361
-1.270832 husband alive -0.03967361
-2.905099 his main -0.03967361
-0.919317 his <unk> -0.1932575
-2.918358 his earlier -0.03967361
-1.919937 his time -0.03967361
-2.892233 his quiet -0.03967361
-2.188112 his door -0.03967361
-2.932033 his sharp -0.03967361
-1.776217 his own -0.03967361
-2.822144 his house -0.03967361
-2.892233 his late -0.03967361
-2.918358 his turnip -0.0396736
-2.879738 his best -0.03967361
-2.892233 his whole -0.03967361
-2.178204 his life -0.03967361
-2.752522 his three -0.03967361
-2.175762 his day -0.03967361
-2.918358 his collar -0.03967361
-2.867592 his father -0.03967362
-2.905099 his son -0.03967361
-2.761811 his last -0.03967361
-1.656467 his mind -0.1646124
-2.905099 his fellow -0.03967361
-2.932033 his cleared -0.03967361
-2.905099 his side -0.03967362
-2.592846 his then -0.03967361
-2.669162 his only -0.03967362
-2.879738 his name -0.03967361
-2.198252 his lips -0.03967362
-2.892233 his curiosity -0.03967361
-2.190625 his hair -0.03967361
-2.14748 his two -0.03967361
-1.933664 his voice -0.03967361
-2.918358 his usual -0.03967361
-2.905099 his mental -0.03967362
-2.905099 his exclamation -0.03967361
-1.777188 his head -0.03967361
-2.867592 his sleep -0.03967361
-2.190625 his heart -0.03967361
-2.844274 his young -0.03967361
-2.918358 his end -0.03967361
-1.939278 his wife -0.03967361
-2.918358 his doubts -0.03967361
-2.932033 his duty -0.03967361
-2.879738 his family -0.03967361
-2.932033 his arrival -0.03967361
-2.200824 his grandfather -0.03967362
-2.867592 his breath -0.03967361
-2.932033 his stooping -0.03967361
-2.905099 his horse -0.03967361
-2.905099 his small -0.03967361
-2.173334 his room -0.03967361
-2.918358 his sister -0.03967361
-1.564484 his hand -0.1066204
-2.790931 his question -0.03967361
-1.427087 his eyes -0.03967361
-2.892233 his hat -0.03967361
-2.833068 his face -0.03967361
-2.932033 his chin -0.03967361
-2.918358 his ordeal -0.03967361
-2.175762 his way -0.03967361
-2.932033 his companion -0.03967361
-2.892233 his feet -0.03967361
-2.844274 his black -0.03967361
-2.905099 his divine -0.03967361
-1.936462 his answer -0.03967361
-2.892233 his tears -0.03967361
-2.918358 his freedom -0.03967361
-2.932033 his social -0.03967361
-2.905099 his reward -0.03967361
-2.918358 his quest -0.03967361
-2.867592 his hands -0.03967362
-2.932033 his service -0.03967361
-2.193152 his position -0.03967361
-1.940693 his attention -0.2157649
-2.200824 his promise -0.03967361
-2.932033 his sleeping -0.03967361
-2.918358 his lower -0.03967361
-2.932033 his brain -0.03967362
-2.905099 his condition -0.03967361
-2.918358 his country -0.03967361
-2.879738 his round -0.03967361
-2.932033 his couch -0.03967361
-2.932033 his disturbed -0.03967362
-2.195695 his coat -0.03967361
-2.918358 his neck -0.03967361
-2.932033 his disappearance -0.03967362
-2.203412 his fate -0.03967361
-2.932033 his personal -0.03967362
-2.855776 his bed -0.03967361
-2.918358 his weariness -0.03967361
-2.200824 his clothing -0.03967362
-2.918358 his direction -0.03967361
-2.932033 his increased -0.03967361
-2.932033 his strength -0.03967362
-2.932033 his blood -0.03967361
-2.879738 his death -0.03967361
-2.198252 his fingers -0.03967361
-2.932033 his approaching -0.03967361
-2.932033 his salvation -0.03967361
-2.905099 his pocket -0.2157649
-2.200824 his chair -0.03967361
-2.193152 his arm -0.03967361
-2.918358 his desk -0.03967361
-2.932033 his drawers -0.03967361
-2.932033 his scruples -0.03967361
-2.200824 his banker -0.03967361
-2.918358 his daughter -0.03967362
-2.879738 his receipt -0.03967361
-2.932033 his charities -0.03967361
-2.905099 his mother -0.03967361
-2.892233 his seat -0.03967361
-2.932033 his problem -0.03967361
-2.932033 his profound -0.03967362
-2.932033 his reactions -0.03967361
-2.932033 his innocent -0.03967361
-2.203412 his tunic -0.03967361
-2.203412 his nostrils -0.03967362
-2.932033 his highness -0.03967362
-2.932033 his burden -0.03967361
-2.200824 his cheeks -0.03967361
-2.932033 his converse -0.03967361
-2.946154 his default -0.03967361
-0.5879833 late and -0.03967362
-1.368227 late turnip -0.0396736
-1.300961 late he -0.03967361
-1.366775 late fall -0.03967362
-0.1320409 turnip seed -0.03967361
-1.051061 seed the -0.03967361
-1.122665 seed on -0.03967361
-1.095301 seed he -0.03967361
-1.042958 field and -0.03967361
-1.145652 field beyond -0.03967362
-1.095301 field he -0.03967361
-0.8797674 barn </s>
-0.8990917 barn and -0.03967361
-1.05517 anybody to -0.03967361
-1.12856 anybody not -0.03967362
-1.132418 anybody who -0.03967361
-1.084725 went <unk> -0.03967361
-1.191111 went down -0.03967361
-1.92235 went back -0.03967361
-1.15255 went in -0.03967361
-0.547756 went to -0.1066204
-1.89147 went from -0.03967361
-1.896825 went up -0.03967361
-1.901158 went out -0.03967362
-1.188782 went over -0.3407036
-1.942229 went presently -0.03967361
-1.104936 pass </s>
-1.194193 pass a -0.03967361
-1.252801 pass out -0.03967362
-1.259358 pass over -0.03967362
-1.568844 so </s>
-1.370463 so the -0.03967361
-0.7884179 so <unk> -0.1143072
-2.56881 so little -0.03967361
-1.247069 so that -0.09766556
-1.711364 so in -0.03967361
-1.916549 so to -0.03967361
-2.292606 so but -0.03967361
-1.791658 so for -0.03967361
-2.636229 so run -0.03967361
-1.85047 so all -0.03967361
-1.817042 so she -0.03967361
-2.266366 so as -0.03967361
-1.867071 so were -0.03967361
-1.560159 so he -0.03967361
-2.552104 so because -0.03967361
-2.495824 so before -0.03967362
-2.495824 so matthew -0.03967361
-2.574524 so go -0.03967361
-2.629649 so often -0.03967361
-2.65659 so rarely -0.03967361
-2.623167 so i'll -0.03967362
-2.525615 so i'm -0.03967362
-1.319161 so i -0.03967361
-2.552104 so has -0.03967361
-1.649429 so far -0.03967362
-2.330258 so said -0.03967361
-1.485935 so much -0.03967361
-2.629649 so i'd -0.03967361
-2.623167 so great -0.03967361
-2.530785 so very -0.03967361
-2.65659 so slightly -0.03967361
-2.636229 so kind -0.03967362
-2.61678 so perhaps -0.03967362
-2.642911 so bad -0.03967361
-1.908469 so thin -0.03967361
-2.65659 so earnest -0.03967362
-2.649697 so stupid -0.03967361
-2.61678 so soon -0.03967361
-2.463468 so we -0.03967361
-2.610486 so young -0.03967361
-2.65659 so foolish -0.03967362
-2.604282 so strange -0.03967361
-2.636229 so near -0.03967361
-2.636229 so sweet -0.03967361
-1.90723 so many -0.3407036
-2.636229 so glad -0.03967361
-2.636229 so wonderful -0.03967361
-2.61678 so beautiful -0.03967361
-2.65659 so ashamed -0.03967361
-2.65659 so low -0.03967361
-2.459036 so bobby -0.03967362
-2.649697 so perfectly -0.03967361
-2.610486 so indeed -0.03967361
-2.649697 so rich -0.03967361
-2.642911 so replied -0.03967362
-2.65659 so curious -0.03967361
-2.65659 so rotten -0.03967361
-2.65659 so brave -0.03967362
-1.20675 seeing and -0.03967361
-1.330172 seeing her -0.03967361
-1.367258 seeing eye -0.03967361
-1.332399 seeing him -0.03967362
-1.31382 seeing you -0.03967361
-0.4918183 afternoon </s>
-1.203117 afternoon in -0.03967361
-1.184852 afternoon of -0.03967361
-0.9555056 early so -0.03967361
-0.9712584 early june -0.03967362
-0.9048946 june the -0.03967361
-0.8486216 june <unk> -0.03967361
-1.259575 sun and -0.03967362
-1.319195 sun in -0.03967361
-1.37457 sun was -0.03967361
-1.4275 sun would -0.03967361
-1.438052 sun went -0.03967361
-1.444508 sun rose -0.03967361
-1.495286 coming in -0.03967361
-0.5896956 coming to -0.1646123
-1.614856 coming through -0.03967361
-1.548819 coming for -0.03967361
-0.8612001 coming on -0.3407036
-1.604984 coming over -0.03967361
-1.042958 warm and -0.03967361
-1.143117 warm themselves -0.03967361
-1.143117 warm myself -0.03967362
-1.277707 bright </s>
-0.1919507 bright river -0.1066204
-1.298579 knew that -0.03967361
-1.338018 knew not -0.03967362
-1.319203 knew she -0.03967361
-1.340286 knew what -0.03967361
-1.338584 knew me -0.03967361
-1.951118 he </s>
-1.721528 he is -0.1646123
-0.9113167 he <unk> -0.206005
-2.290706 he a -0.03967361
-2.497637 he with -0.03967361
-2.055379 he and -0.03967361
-1.080558 he had -0.1209786
-1.151243 he was -0.1993745
-1.954152 he to -0.03967361
-2.551865 he but -0.03967361
-3.06271 he reached -0.03967361
-2.160619 he for -0.3407036
-2.056938 he not -0.03967361
-1.34715 he could -0.2615223
-1.749135 he found -0.03967362
-3.11576 he noticed -0.03967362
-1.665608 he would -0.2437936
-2.342494 he never -0.03967362
-2.827518 he are -0.03967362
-2.748079 he who -0.03967361
-2.962781 he can -0.03967362
-3.11576 he crossed -0.03967361
-3.075377 he knew -0.03967361
-2.379709 he ought -0.03967362
-3.11576 he meant -0.03967361
-3.01544 he going -0.03967361
-2.105094 he asked -0.03967361
-2.095565 he might -0.2157649
-3.050401 he didn't -0.03967361
-2.107856 he must -0.2157649
-3.088425 he wouldn't -0.03967361
-1.830149 he made -0.1365836
-2.087384 he i -0.03967361
-1.948611 he has -0.03967361
-3.026784 he set -0.03967361
-2.321605 he did -0.5167949
-1.485332 he said -0.03967361
-3.088425 he stepped -0.03967361
-2.993604 he got -0.03967361
-3.11576 he possibly -0.03967361
-2.675795 he no -0.03967361
-2.297368 he then -0.03967361
-2.109243 he looked -0.2157649
-2.099623 he came -0.03967362
-3.004385 he isn't -0.03967361
-2.962781 he too -0.03967361
-1.955384 he saw -0.03967361
-2.354548 he thought -0.2157649
-2.369469 he felt -0.03967361
-2.354548 he put -0.03967361
-2.369469 he soon -0.03967361
-3.088425 he broke -0.03967362
-2.349686 he may -0.03967361
-2.785985 he we -0.03967361
-3.038432 he once -0.03967361
-3.026784 he brought -0.03967362
-2.321605 he will -0.03967362
-3.075377 he decided -0.03967362
-2.366946 he took -0.03967361
-3.075377 he couldn't -0.03967361
-2.112032 he gave -0.2157649
-3.088425 he can't -0.03967361
-3.026784 he does -0.03967361
-3.101877 he liked -0.03967361
-3.101877 he seems -0.03967361
-3.088425 he hung -0.03967361
-3.101877 he met -0.03967361
-3.11576 he tied -0.03967362
-2.943384 he answered -0.03967361
-1.961274 he should -0.1646123
-3.075377 he understand -0.03967361
-2.121934 he walked -0.03967362
-1.960287 he turned -0.03967361
-3.11576 he extending -0.03967362
-3.06271 he stood -0.03967362
-3.06271 he held -0.03967361
-3.075377 he stopped -0.03967361
-2.374559 he hadn't -0.03967361
-3.101877 he watch -0.03967361
-1.959302 he began -0.1646124
-2.972814 he himself -0.03967362
-3.075377 he wished -0.03967361
-3.11576 he accepted -0.03967361
-3.11576 he pressed -0.03967361
-3.075377 he tears -0.03967361
-3.026784 he lost -0.03967361
-3.075377 he trouble -0.03967361
-3.11576 he occupied -0.03967361
-3.11576 he finds -0.03967361
-3.11576 he learned -0.03967361
-3.101877 he remembered -0.03967361
-3.088425 he lay -0.03967362
-3.088425 he slept -0.03967361
-2.366946 he became -0.03967361
-2.384921 he raised -0.03967361
-3.075377 he glanced -0.03967361
-3.101877 he repeated -0.03967362
-3.11576 he softly -0.03967361
-2.379709 he sprang -0.03967361
-3.050401 he appeared -0.03967361
-1.847292 he spoke -0.03967361
-3.026784 he entered -0.03967361
-3.11576 he faced -0.03967361
-3.11576 he wants -0.03967361
-3.075377 he rushed -0.03967361
-3.101877 he witness -0.03967361
-3.088425 he fixed -0.03967361
-3.11576 he wishes -0.03967361
-2.384921 he paused -0.03967362
-3.11576 he emerged -0.03967361
-3.101877 he changed -0.03967361
-3.11576 he scarcely -0.03967361
-3.101877 he gives -0.03967362
-3.11576 he reproach -0.03967361
-3.101877 he continued -0.03967362
-2.127695 he added -0.03967361
-3.06271 he placed -0.03967361
-3.11576 he double -0.03967362
-3.11576 he bore -0.03967361
-3.101877 he fell -0.03967361
-3.11576 he swam -0.03967361
-3.11576 he resolved -0.03967361
-3.101877 he shut -0.03967361
-3.11576 he asserted -0.03967361
-0.344053 ought to -0.2157649
-1.362805 ought because -0.03967361
-1.313286 ought i -0.03967361
-1.728997 because the -0.03967361
-0.9286457 because of -0.03967361
-1.851102 because it -0.03967361
-1.200383 because she -0.0396736
-1.830056 because he -0.03967361
-0.5015349 because i -0.1066204
-1.920181 because when -0.03967362
-0.951131 because they -0.03967361
-1.96956 because virgilius -0.03967361
-1.549357 heard the -0.03967361
-1.362303 heard <unk> -0.03967361
-1.65967 heard a -0.03967361
-1.527199 heard and -0.03967361
-1.107462 heard that -0.03967361
-1.629355 heard in -0.03967361
-1.068205 heard of -0.03967361
-1.792007 heard her -0.03967361
-1.816833 heard from -0.03967361
-1.797722 heard him -0.03967361
-1.830575 heard about -0.03967361
-1.864436 heard nothing -0.03967361
-1.871197 heard last -0.03967361
-1.885042 heard while -0.03967361
-1.895723 heard cries -0.03967361
-0.9749324 him </s>
-2.548143 him missus -0.03967361
-1.53847 him the -0.03967361
-1.130692 him <unk> -0.1858017
-1.67469 him into -0.2157649
-1.46058 him a -0.2615223
-1.294922 him with -0.2437936
-1.317811 him and -0.03967361
-1.897104 him by -0.3407036
-2.580551 him back -0.03967361
-1.579626 him in -0.03967362
-1.55176 him of -0.03967361
-2.285206 him was -0.03967361
-1.077893 him to -0.1365836
-2.50165 him an -0.03967361
-1.626695 him for -0.03967361
-1.63752 him at -0.03967361
-2.3955 him on -0.03967361
-2.463311 him from -0.03967361
-2.482057 him up -0.03967361
-2.345168 him she -0.03967361
-2.505677 him if -0.03967361
-2.493707 him there -0.03967361
-1.858974 him as -0.03967361
-2.626121 him tell -0.03967361
-2.557158 him over -0.03967361
-2.365191 him his -0.03967361
-1.606332 him he -0.03967361
-1.924874 him now -0.03967362
-1.924874 him here -0.03967361
-2.590272 him good -0.03967362
-2.615573 him off -0.03967361
-2.65367 him that's -0.03967361
-1.797787 him i -0.03967361
-2.648019 him nor -0.03967361
-2.509741 him then -0.03967361
-2.566365 him some -0.03967361
-2.631493 him oh -0.03967361
-2.561737 him like -0.03967361
-2.615573 him ever -0.03967361
-2.557158 him will -0.03967362
-2.615573 him don't -0.03967361
-2.636932 him than -0.03967361
-1.950017 him awake -0.03967361
-2.689215 him homer -0.03967361
-2.695433 him inhale -0.03967362
-2.695433 him courage -0.03967362
-2.67704 him quietly -0.03967361
-2.695433 him urged -0.03967361
-2.665198 him thy -0.03967362
-2.689215 him ah -0.03967361
-2.683085 him standing -0.03967361
-2.67704 him pangloss -0.03967362
-0.5675546 peter <unk> -0.03967361
-1.335537 peter had -0.03967361
-1.361967 peter ever -0.03967361
-1.368712 peter judas -0.03967361
-1.445956 evening rachel -0.03967361
-1.335753 evening a -0.03967361
-1.259575 evening and -0.03967361
-1.4275 evening before -0.03967361
-1.43169 evening after -0.03967361
-1.440909 evening isn't -0.03967362
-1.633564 before </s>
-0.961711 before the -0.03967361
-1.525954 before <unk> -0.03967361
-1.711664 before and -0.03967361
-1.346567 before in -0.03967361
-1.938143 before it -0.03967361
-1.750814 before to -0.03967361
-1.151305 before she -0.03967362
-2.117813 before them -0.03967361
-1.39794 before his -0.03967361
-1.367844 before he -0.03967361
-1.157233 before him -0.03967362
-2.141136 before why -0.03967361
-2.170885 before long -0.03967361
-2.145955 before last -0.03967361
-1.884537 before i -0.03967361
-2.072567 before when -0.03967361
-2.08083 before they -0.03967361
-1.984025 before you -0.03967361
-2.173459 before either -0.03967361
-2.173459 before round -0.03967361
-1.434023 before noon -0.03967361
-0.9649844 store over -0.03967361
-0.9712584 store crowded -0.03967361
-0.9418915 carmody that -0.03967361
-0.9078251 carmody to -0.03967361
-0.9078251 meant to -0.03967361
-0.9702873 meant four -0.03967362
-1.568725 next door -0.03967362
-0.8079147 next she -0.03967361
-1.570895 next afternoon -0.03967361
-1.474409 next he -0.03967361
-1.565848 next thing -0.03967362
-0.818044 next morning -0.03967361
-1.647961 best just -0.03967361
-0.8258563 best <unk> -0.03967361
-0.8725166 best of -0.03967361
-1.59254 best she -0.03967361
-1.668772 best houses -0.03967361
-1.624587 best when -0.03967362
-1.668772 best age -0.03967362
-1.668772 best philosopher -0.03967361
-1.20675 clothes and -0.03967361
-1.36605 clothes sitting -0.03967362
-1.351224 clothes are -0.03967361
-1.340855 clothes which -0.03967361
-1.36847 clothes absorbing -0.03967362
-1.332782 which is -0.03967361
-1.088654 which the -0.03967362
-1.043903 which <unk> -0.09082614
-1.651845 which a -0.03967362
-2.337892 which by -0.03967361
-1.329065 which had -0.03967361
-2.030337 which in -0.03967361
-1.601056 which of -0.03967361
-1.120217 which was -0.03967361
-2.453751 which time -0.03967361
-2.232623 which at -0.03967361
-2.329262 which all -0.03967361
-2.246523 which she -0.03967361
-2.377408 which if -0.03967361
-2.410457 which would -0.03967361
-2.367965 which there -0.03967361
-1.112887 which he -0.2157649
-2.407036 which have -0.03967361
-2.400275 which any -0.03967361
-2.442516 which nothing -0.03967361
-1.110815 which i -0.03967362
-2.449974 which has -0.03967361
-1.738335 which they -0.03967361
-1.701916 which you -0.03967361
-2.469198 which looked -0.03967361
-2.514748 which demanded -0.03967361
-2.497626 which certainly -0.03967361
-2.49345 which seemed -0.03967362
-2.510404 which hung -0.03967361
-2.501844 which should -0.03967361
-2.519136 which finds -0.03967361
-2.514748 which whatever -0.03967361
-2.449974 which still -0.03967362
-2.38382 which bobby -0.03967361
-2.489312 which became -0.03967361
-2.510404 which moved -0.03967361
-2.501844 which led -0.03967361
-0.3876992 plain that -0.03967361
-1.14735 plain proof -0.03967361
-0.9418915 proof that -0.03967361
-0.9111986 proof of -0.03967361
-1.641952 going a -0.03967361
-1.5357 going and -0.03967361
-0.6168688 going to -0.1066204
-1.7642 going up -0.03967361
-1.768532 going out -0.03967362
-1.053002 going there -0.03967361
-1.741113 going so -0.03967361
-1.802483 going home -0.03967362
-1.812003 going wrong -0.03967361
-1.809604 going sir -0.03967362
-1.168367 buggy </s>
-1.20675 buggy and -0.03967361
-1.306922 buggy was -0.03967361
-1.224672 buggy to -0.03967361
-1.338018 buggy not -0.03967361
-0.6703499 sorrel mare -0.03967362
-1.351808 mare missus -0.03967361
-1.10975 mare <unk> -0.03967361
-1.20675 mare and -0.03967361
-1.340855 mare which -0.03967362
-1.36605 mare hadn't -0.03967361
-1.016274 distance </s>
-1.05517 distance to -0.03967361
-1.138448 distance now -0.03967361
-0.9525594 now </s>
-2.152037 now where -0.03967361
-1.523733 now <unk> -0.03967361
-0.8630537 now and -0.2615223
-1.942526 now that -0.03967362
-1.751409 now to -0.03967361
-2.118465 now be -0.03967361
-1.963008 now for -0.03967361
-2.080907 now this -0.03967361
-2.196633 now knitting -0.03967361
-1.428203 now if -0.03967361
-2.09598 now there -0.03967361
-2.019804 now his -0.03967361
-1.90425 now he -0.03967361
-2.125443 now matthew -0.03967361
-2.152037 now why -0.03967361
-1.144023 now i -0.1365836
-2.036675 now said -0.03967361
-1.401717 now you -0.3407036
-2.180365 now quite -0.03967361
-2.169849 now saw -0.03967362
-2.180365 now having -0.03967361
-2.177712 now hold -0.03967361
-1.360987 matthew </s>
-2.141482 matthew is -0.03967361
-0.8276865 matthew <unk> -0.1066204
-1.043165 matthew and -0.3407036
-1.486412 matthew had -0.03967361
-0.8084643 matthew cuthbert -0.09766555
-1.23047 matthew was -0.03967361
-1.847092 matthew to -0.03967361
-2.174833 matthew who -0.03967361
-1.511351 matthew went -0.3407036
-2.126631 matthew so -0.03967361
-2.226756 matthew why -0.03967361
-2.260184 matthew dressed -0.03967361
-2.267695 matthew barely -0.03967362
-2.222184 matthew came -0.03967361
-2.267695 matthew dreaded -0.03967361
-2.267695 matthew enjoyed -0.03967362
-2.267695 matthew encountered -0.03967362
-2.265177 matthew groaned -0.03967361
-2.260184 matthew however -0.03967362
-2.265177 matthew says -0.03967361
-1.214563 why the -0.03967361
-1.438149 why <unk> -0.03967361
-1.257908 why a -0.03967361
-1.277328 why it -0.03967361
-1.867409 why was -0.03967361
-1.309044 why this -0.03967361
-1.904499 why she -0.03967361
-1.939544 why so -0.03967361
-1.806909 why he -0.03967361
-2.063281 why take -0.03967361
-2.028329 why i'm -0.03967361
-1.973702 why what -0.03967361
-2.019464 why did -0.03967361
-1.973702 why when -0.03967362
-1.31724 why do -0.3407036
-2.019464 why will -0.03967361
-2.073097 why couldn't -0.03967361
-2.044291 why i've -0.03967361
-2.075586 why can't -0.03967361
-2.080608 why object -0.03967361
-1.998064 why bobby -0.03967362
-1.227647 asked </s>
-2.065637 asked missus -0.03967361
-0.9098962 asked the -0.1365836
-1.501901 asked <unk> -0.03967361
-1.941469 asked with -0.03967361
-1.682715 asked and -0.03967361
-2.061491 asked well -0.03967361
-1.332135 asked for -0.03967361
-1.350206 asked her -0.03967361
-1.864243 asked he -0.03967361
-1.351814 asked him -0.03967362
-1.848798 asked i -0.03967361
-2.118753 asked maybe -0.03967361
-1.356672 asked my -0.03967361
-2.074051 asked again -0.03967361
-2.121113 asked quietly -0.03967361
-2.128273 asked wearily -0.03967362
-2.118753 asked rawlins -0.03967361
-2.123487 asked chateau -0.0396736
-1.376243 asked morrel -0.03967362
-2.183118 been one -0.03967361
-1.440451 been the -0.03967361
-1.063433 been <unk> -0.08106629
-1.908407 been a -0.03967361
-0.9800861 been in -0.1188548
-2.365388 been done -0.03967361
-2.146685 been so -0.03967361
-2.385103 been known -0.03967361
-2.290343 been here -0.03967361
-2.262853 been any -0.03967361
-2.385103 been worthy -0.03967361
-2.286308 been more -0.03967362
-2.290343 been made -0.03967361
-2.341939 been such -0.03967361
-2.385103 been seen -0.03967361
-2.302679 been very -0.03967361
-2.400501 been cheerful -0.03967361
-2.370233 been quite -0.03967361
-2.385103 been yesterday -0.03967362
-2.332902 been ever -0.03967361
-2.400501 been considered -0.03967362
-1.643356 been put -0.3407036
-2.395307 been thinking -0.03967361
-2.400501 been encountered -0.03967361
-2.328454 been answered -0.03967361
-2.390175 been able -0.03967361
-1.653527 been watching -0.03967362
-2.400501 been fashioned -0.03967361
-2.400501 been carried -0.03967361
-2.395307 been nice -0.03967361
-2.400501 been stolen -0.03967361
-2.370233 been beautiful -0.03967361
-2.400501 been replaced -0.03967361
-2.375133 been dead -0.03967361
-2.390175 been daylight -0.03967361
-2.390175 been drawn -0.03967361
-2.390175 been fixed -0.03967361
-2.395307 been asking -0.03967361
-2.400501 been weak -0.03967362
-2.395307 been mentioned -0.03967361
-2.400501 been killed -0.03967362
-2.400501 been bewitched -0.03967362
-2.400501 been impaled -0.03967362
-2.400501 been strangled -0.03967361
-1.218616 known the -0.03967361
-1.298579 known that -0.03967361
-1.259111 known in -0.03967361
-1.224672 known to -0.03967361
-1.316503 known as -0.03967361
-0.9616432 information about -0.03967361
-0.9712584 information concerning -0.03967361
-0.9355792 about the -0.03967362
-1.324625 about <unk> -0.03967361
-1.948684 about a -0.03967361
-1.430682 about and -0.03967362
-1.533414 about that -0.03967361
-1.159386 about it -0.03967362
-1.450536 about to -0.03967361
-2.120103 about but -0.03967361
-2.35006 about quiet -0.03967362
-2.057103 about for -0.03967361
-1.328341 about her -0.03967361
-2.150524 about on -0.03967361
-2.338697 about children -0.03967362
-2.204665 about this -0.03967361
-1.342816 about them -0.2157649
-2.327624 about anything -0.03967361
-2.167831 about him -0.03967361
-2.292629 about good -0.03967361
-2.204665 about what -0.03967361
-2.204665 about when -0.03967361
-2.196505 about me -0.03967361
-2.199208 about my -0.03967362
-2.353915 about ten -0.03967361
-2.357804 about eleven -0.03967361
-2.327624 about things -0.03967361
-2.323995 about whether -0.03967361
-2.338697 about twenty -0.03967361
-2.299406 about our -0.03967361
-1.606557 about jesus -0.03967361
-2.357804 about paying -0.03967361
-2.357804 about paredes's -0.03967361
-2.361728 about ready -0.03967361
-2.361728 about fifty -0.03967361
-1.607782 whole little -0.03967361
-1.613076 whole life -0.03967361
-1.599442 whole might -0.03967361
-1.617359 whole great -0.03967361
-1.620599 whole orphan -0.03967361
-1.618437 whole family -0.03967361
-1.619517 whole truth -0.03967362
-1.622773 whole neighborhood -0.03967361
-1.622773 whole soul -0.03967361
-1.432492 life </s>
-1.777184 life is -0.03967361
-0.9640322 life <unk> -0.03967362
-1.500871 life and -0.03967362
-1.6891 life that -0.03967361
-1.758639 life had -0.03967361
-1.743542 life but -0.03967361
-1.786019 life not -0.03967361
-1.839788 life without -0.03967361
-1.79201 life this -0.03967361
-1.821653 life have -0.03967361
-1.844868 life answered -0.03967361
-1.850008 life himself -0.03967361
-1.8712 life wetting -0.03967361
-1.869394 life discovered -0.03967361
-1.582028 here </s>
-2.071408 here one -0.03967361
-2.141266 here missus -0.03967362
-1.202512 here is -0.0396736
-1.695332 here the -0.03967361
-1.213544 here <unk> -0.03967361
-1.667039 here and -0.03967361
-1.451421 here by -0.03967361
-1.418193 here was -0.03967361
-2.006945 here but -0.03967361
-2.086561 here this -0.03967361
-1.99847 here she -0.03967361
-2.113053 here if -0.03967361
-2.138361 here are -0.03967361
-1.395626 here he -0.03967361
-2.141266 here before -0.03967361
-2.153086 here now -0.03967362
-2.153086 here here -0.03967361
-1.389388 here i -0.03967361
-2.033409 here said -0.03967361
-1.977979 here you -0.03967362
-2.224556 here sat -0.03967361
-2.190606 here another -0.03967361
-2.180918 here i've -0.03967361
-2.231677 here comes -0.03967361
-2.153086 here again -0.03967361
-2.197187 here than -0.03967361
-2.231677 here distinctly -0.03967361
-2.118551 here bobby -0.03967361
-2.228102 here eating -0.5167949
-1.209989 half <unk> -0.03967362
-1.408286 half in -0.03967361
-1.535627 half an -0.03967361
-1.568004 half past -0.03967361
-1.534736 half out -0.03967362
-1.501358 half his -0.03967361
-1.570895 half grown -0.03967361
-1.569929 half laugh -0.03967361
-0.7101798 three <unk> -0.03967361
-1.625198 three to -0.03967361
-1.842779 three on -0.03967361
-1.874557 three or -0.03967361
-1.927871 three look -0.03967361
-1.937706 three great -0.03967362
-1.939367 three four -0.03967361
-1.194135 three months -0.03967362
-1.936051 three hundred -0.03967361
-1.937706 three thousand -0.03967361
-1.193537 three times -0.03967361
-1.944388 three board -0.03967361
-1.946075 three unlimited -0.03967362
-1.944388 three sons -0.03967361
-0.8486216 busy <unk> -0.03967361
-0.9688346 busy day -0.03967361
-0.9316931 day </s>
-1.620677 day the -0.03967361
-1.088015 day <unk> -0.03967361
-1.848616 day with -0.03967361
-1.709847 day in -0.03967361
-1.648415 day of -0.03967361
-1.80817 day it -0.03967361
-1.87194 day but -0.03967361
-1.996947 day even -0.03967361
-1.856252 day at -0.03967362
-1.898281 day so -0.03967361
-1.773713 day he -0.03967362
-1.990603 day because -0.03967362
-1.968103 day before -0.03967362
-1.974125 day more -0.03967362
-1.215319 day i -0.03967361
-1.990603 day has -0.03967361
-1.891545 day said -0.03967361
-1.976151 day again -0.03967361
-1.43663 driving down -0.03967361
-1.319195 driving in -0.03967361
-1.385156 driving at -0.03967361
-1.413146 driving from -0.03967361
-1.428893 driving over -0.03967362
-1.439478 driving oh -0.03967362
-1.20675 alive and -0.03967361
-1.298579 alive that -0.03967361
-1.231699 alive of -0.03967361
-1.341425 alive or -0.03967361
-1.36605 alive next -0.03967361
-2.465134 have just -0.03967362
-1.838719 have the -0.03967361
-1.077549 have <unk> -0.03967361
-1.254863 have a -0.1188549
-2.266512 have had -0.03967361
-1.594762 have to -0.03967361
-2.497121 have time -0.03967361
-2.569168 have reached -0.03967362
-2.333187 have not -0.03967361
-1.844281 have done -0.03967361
-2.502689 have asked -0.03967361
-1.021834 have been -0.06770233
-2.381268 have about -0.03967361
-1.815711 have any -0.3407036
-2.508329 have something -0.03967361
-2.480833 have nothing -0.03967362
-2.5563 have given -0.03967362
-2.537684 have gone -0.03967362
-2.58243 have concluded -0.03967361
-1.823852 have made -0.03967361
-2.550005 have further -0.03967361
-2.589216 have happened -0.03967361
-1.68532 have i -0.03967361
-1.838172 have such -0.03967362
-2.269777 have said -0.03967361
-1.591003 have seen -0.03967362
-1.531418 have you -0.03967361
-2.454975 have some -0.03967361
-2.445048 have only -0.03967361
-2.41656 have your -0.03967361
-2.5563 have quite -0.03967361
-2.59611 have talked -0.03967361
-2.550005 have brought -0.03967361
-2.589216 have proceeded -0.03967361
-2.575748 have sent -0.03967361
-2.519834 have another -0.03967361
-2.589216 have liked -0.03967361
-2.59611 have loved -0.03967361
-2.589216 have met -0.03967361
-2.589216 have failed -0.03967362
-2.491624 have our -0.03967361
-2.59611 have imagined -0.03967361
-2.543801 have already -0.3407036
-2.589216 have realized -0.03967361
-2.5563 have told -0.03967362
-2.575748 have filled -0.03967361
-2.475537 have these -0.03967361
-2.589216 have produced -0.03967361
-1.850478 have fallen -0.3407036
-2.58243 have within -0.03967361
-2.589216 have spent -0.03967361
-2.58243 have slept -0.03967361
-2.562686 have appeared -0.03967361
-2.58243 have drawn -0.03967361
-2.58243 have moved -0.03967362
-2.569168 have led -0.03967361
-2.589216 have written -0.03967361
-2.589216 have rolled -0.03967361
-2.603114 have won -0.03967361
-1.556361 go </s>
-1.653392 go the -0.03967361
-1.454336 go <unk> -0.03967361
-1.289691 go down -0.03967361
-1.991652 go into -0.03967361
-1.186182 go and -0.03967361
-1.740482 go in -0.03967361
-0.7252607 go to -0.2157649
-2.0213 go through -0.03967361
-1.853684 go for -0.03967361
-1.960329 go up -0.03967361
-1.967498 go out -0.03967361
-2.0213 go tell -0.03967361
-2.025411 go home -0.03967361
-1.987847 go do -0.03967361
-2.02335 go myself -0.03967361
-2.044405 go repeated -0.03967362
-2.044405 go leaving -0.03967361
-0.9647449 strangers into -0.03967361
-0.9602191 strangers or -0.03967361
-1.092883 any one -0.03967362
-0.8944584 any <unk> -0.03967361
-1.855085 any in -0.03967361
-2.233558 any place -0.03967361
-2.224224 any time -0.03967361
-2.183136 any well -0.03967361
-1.263651 any other -0.03967361
-1.099531 any more -0.03967361
-2.252851 any further -0.03967361
-2.276499 any particular -0.03967361
-2.273041 any train -0.03967361
-2.26961 any advice -0.03967361
-2.246324 any right -0.03967361
-2.266206 any use -0.03967361
-2.273041 any news -0.03967361
-2.266206 any mistake -0.03967361
-2.259477 any breath -0.03967361
-2.259477 any possible -0.03967361
-2.239894 any room -0.03967361
-2.262829 any moment -0.03967361
-2.239894 any light -0.03967361
-2.266206 any lady -0.03967361
-2.276499 any trace -0.03967361
-2.273041 any whatever -0.03967362
-2.276499 any traces -0.03967362
-2.276499 any harm -0.03967361
-2.276499 any battle -0.03967361
-2.26961 any gravity -0.03967361
-2.273041 any mufti -0.03967361
-1.760953 might and -0.03967361
-0.8196826 might be -0.1365836
-2.034445 might not -0.03967362
-2.07725 might could -0.03967361
-1.336131 might as -0.3407036
-0.7278768 might have -0.03967361
-2.096276 might make -0.03967361
-0.8085118 might i -0.1365836
-2.114479 might possibly -0.03967361
-2.075702 might some -0.03967361
-2.109439 might return -0.03967362
-2.109439 might till -0.03967362
-2.112793 might lose -0.03967361
-2.111112 might cultivate -0.03967361
-1.361251 talk old -0.03967361
-1.346009 talk if -0.03967361
-1.351808 talk matthew -0.03967361
-1.353563 talk like -0.03967361
-1.36847 talk pushing -0.03967361
-1.183941 dressed <unk> -0.03967361
-1.301674 dressed and -0.03967361
-1.367848 dressed in -0.03967361
-1.478304 dressed up -0.03967361
-1.501571 dressed people -0.03967361
-1.401857 dressed he -0.03967361
-1.510733 dressed stood -0.03967361
-1.042958 collar and -0.03967361
-1.059914 collar of -0.03967362
-1.095301 collar he -0.03967361
-1.507126 something </s>
-1.410608 something <unk> -0.03967361
-1.155766 something that -0.03967361
-1.67766 something in -0.03967361
-1.622725 something of -0.03967361
-0.8865355 something to -0.03967361
-1.940438 something odd -0.03967361
-1.86967 something or -0.03967361
-1.931591 something white -0.03967361
-1.878879 something about -0.03967361
-1.189945 something must -0.0396736
-1.935108 something he's -0.03967362
-1.945834 something terrible -0.03967361
-1.942229 something wanted -0.03967361
-1.940438 something worth -0.03967362
-1.506455 didn't of -0.03967361
-1.741605 didn't have -0.03967361
-1.7803 didn't talk -0.03967362
-1.781748 didn't happen -0.03967362
-1.027618 didn't know -0.03967361
-1.741605 didn't do -0.03967361
-1.768888 didn't think -0.03967361
-1.781748 didn't warn -0.03967361
-1.760521 didn't come -0.03967361
-1.775985 didn't fall -0.03967361
-1.775985 didn't care -0.03967361
-1.781748 didn't miss -0.03967361
-0.9078251 happen to -0.03967361
-0.9702873 happen often -0.03967362
-1.4275 often missus -0.03967361
-1.385787 often as -0.3407036
-1.430289 often made -0.03967361
-1.442345 often lost -0.03967361
-1.447409 often mistaken -0.03967361
-1.446682 often gives -0.03967361
-1.89026 make one -0.03967361
-1.141705 make the -0.03967361
-1.178153 make a -0.2157649
-1.69499 make in -0.03967361
-1.221778 make up -0.03967361
-1.936749 make them -0.03967361
-1.87739 make him -0.03967361
-1.92954 make any -0.03967361
-1.951537 make nothing -0.03967362
-1.236022 make sure -0.03967361
-1.959123 make men -0.03967361
-1.89026 make no -0.03967361
-1.966845 make themselves -0.03967362
-1.826585 make you -0.03967361
-1.942235 make some -0.03967361
-1.968797 make jesus -0.03967361
-1.957214 make upon -0.03967362
-1.140738 nothing </s>
-1.686394 nothing of -0.03967361
-1.224156 nothing was -0.03967361
-0.802434 nothing to -0.03967362
-2.005898 nothing ought -0.03967361
-1.245125 nothing about -0.03967362
-1.971408 nothing after -0.03967361
-1.966463 nothing more -0.03967361
-1.255523 nothing further -0.03967362
-1.784387 nothing i -0.03967361
-1.89834 nothing said -0.03967361
-1.988311 nothing left -0.03967361
-1.991772 nothing new -0.03967361
-1.998778 nothing else -0.03967361
-2.004107 nothing doth -0.03967361
-0.9555056 putting her -0.03967361
-0.9597455 putting this -0.03967361
-0.6356532 together <unk> -0.03967361
-1.392467 together with -0.03967361
-1.303854 together to -0.03967361
-1.434506 together their -0.03967361
-1.434506 together might -0.03967362
-1.231387 given <unk> -0.03967361
-1.464707 given a -0.03967361
-1.504315 given it -0.03967361
-1.582234 given an -0.03967361
-1.583228 given if -0.03967361
-1.559989 given him -0.03967361
-1.570486 given me -0.03967362
-1.604635 given our -0.03967362
-1.617359 given every -0.03967361
-1.707749 pretty road -0.03967361
-0.8571929 pretty <unk> -0.03967362
-0.9512526 pretty well -0.03967361
-1.706667 pretty clothes -0.03967361
-1.689701 pretty good -0.03967361
-1.703435 pretty dress -0.03967362
-1.706667 pretty near -0.03967362
-1.708835 pretty interesting -0.03967361
-1.709923 pretty tricks -0.03967362
-1.505642 good </s>
-1.111642 good <unk> -0.03967362
-1.201097 good and -0.03967361
-2.058694 good place -0.03967361
-1.884241 good as -0.03967361
-2.084202 good beyond -0.03967361
-2.034603 good man -0.03967361
-2.087131 good evening -0.03967361
-2.093048 good guess -0.03967361
-2.067032 good home -0.03967361
-2.099047 good deal -0.03967361
-2.058694 good it's -0.03967361
-1.971686 good when -0.03967361
-1.875128 good you -0.03967361
-2.034603 good two -0.03967361
-2.087131 good fun -0.03967361
-2.055951 good yes -0.03967361
-2.075532 good while -0.03967361
-2.078403 good morning -0.03967361
-2.096037 good friday -0.03967362
-2.093048 good cause -0.03967361
-2.096037 good dollars -0.03967361
-2.096037 good supreme -0.03967362
-2.096037 good heavens -0.03967361
-2.096037 good e -0.03967361
-1.115152 guess as -0.03967361
-1.144563 guess that's -0.03967361
-1.144563 guess there's -0.03967361
-1.352226 both the -0.03967361
-1.428705 both a -0.03967361
-1.501358 both his -0.03967361
-1.445761 both he -0.03967361
-1.568004 both questions -0.03967361
-1.566087 both returned -0.03967361
-1.566087 both began -0.03967361
-1.571862 both sea -0.03967361
-0.6606766 questions and -0.03967362
-1.400556 questions but -0.03967362
-1.395147 questions at -0.03967362
-1.398384 questions she -0.03967361
-1.437459 questions because -0.03967361
-0.8797674 rarely </s>
-0.9681101 rarely went -0.03967361
-0.9764997 home with -0.03967361
-0.7010836 home and -0.03967362
-1.629254 home that -0.03967361
-1.516003 home to -0.03967361
-1.707173 home an -0.03967361
-1.640172 home for -0.03967361
-1.608207 home he -0.03967361
-1.677449 home said -0.03967362
-1.740151 home boy -0.03967361
-0.9350979 must <unk> -0.03967361
-0.7352597 must be -0.03967362
-2.027791 must but -0.03967361
-2.194596 must sit -0.03967361
-2.197114 must attend -0.03967362
-0.9028477 must have -0.03967361
-2.165466 must go -0.03967361
-1.907571 must i -0.03967361
-2.116662 must we -0.03967361
-2.174961 must think -0.03967361
-2.167821 must say -0.03967361
-2.194596 must confess -0.03967361
-2.194596 must decide -0.03967361
-2.197114 must literally -0.03967361
-2.114569 must bobby -0.03967361
-2.197114 must needs -0.03967362
-2.194596 must allow -0.03967361
-2.197114 must visit -0.03967361
-2.197114 must feed -0.03967361
-2.192092 must cultivate -0.03967361
-2.197114 must weep -0.03967362
-0.9599822 unusual which -0.03967361
-0.9712584 unusual mystery -0.03967361
-1.335753 taking a -0.03967362
-1.364836 taking it -0.03967361
-1.404492 taking him -0.03967361
-1.444508 taking part -0.03967361
-1.444508 taking heart -0.03967362
-1.447409 taking advantage -0.03967362
-0.8154894 i'll just -0.03967361
-1.241932 i'll <unk> -0.03967361
-1.546572 i'll be -0.03967362
-1.562042 i'll tell -0.03967361
-1.548175 i'll do -0.03967361
-1.568725 i'll feel -0.03967361
-1.572105 i'll stop -0.03967361
-1.016274 step </s>
-1.051061 step the -0.03967361
-1.137734 step over -0.03967361
-0.8432558 green and -0.03967361
-1.53436 green in -0.03967361
-0.4472394 green gables -0.09082614
-0.8691111 green light -0.03967361
-1.557566 gables down -0.03967361
-1.477322 gables was -0.03967361
-1.49563 gables she -0.03967361
-1.553831 gables good -0.03967361
-1.551051 gables after -0.03967361
-1.551051 gables i'm -0.03967361
-1.551976 gables very -0.03967361
-1.571862 gables somehow -0.03967361
-1.591685 after </s>
-0.8946563 after the -0.03967362
-1.486661 after <unk> -0.03967362
-1.884477 after that -0.03967361
-1.884477 after it -0.03967361
-1.999355 after all -0.03967361
-1.342248 after this -0.03967361
-1.955357 after his -0.03967361
-1.977679 after so -0.03967361
-1.087326 after him -0.2157649
-1.342656 after which -0.03967361
-1.362283 after tea -0.03967362
-2.010613 after what -0.03967361
-2.058811 after some -0.03967361
-2.108247 after ten -0.03967361
-2.085076 after another -0.03967362
-2.113033 after expressing -0.03967361
-2.108247 after daylight -0.03967361
-2.113033 after wandering -0.03967361
-2.113033 after gush -0.03967362
-1.137022 tea missus -0.03967361
-1.042958 tea and -0.03967361
-1.11821 tea but -0.03967361
-1.311899 find it -0.03967361
-0.6113695 find out -0.03967361
-1.353915 find any -0.03967361
-1.361967 find something -0.03967361
-1.153225 marilla </s>
-1.996947 marilla where -0.03967361
-0.9595722 marilla and -0.03967361
-1.909502 marilla had -0.03967362
-1.016096 marilla cuthbert -0.03967361
-1.241272 marilla was -0.03967361
-1.248575 marilla she -0.03967361
-1.975937 marilla are -0.03967361
-1.881116 marilla as -0.03967361
-1.959173 marilla were -0.03967362
-2.004182 marilla must -0.03967361
-2.019025 marilla i'll -0.03967361
-1.910972 marilla said -0.03967362
-2.020917 marilla i'd -0.03967361
-1.975937 marilla do -0.03967361
-2.002362 marilla don't -0.03967361
-1.428705 he's a -0.03967361
-1.507999 he's had -0.03967361
-1.531192 he's up -0.03967361
-1.567044 he's coming -0.03967361
-1.563228 he's gone -0.03967361
-1.571862 he's sixty -0.03967361
-1.570895 he's likely -0.03967361
-1.571862 he's wandering -0.03967362
-1.373767 gone </s>
-1.449173 gone the -0.03967361
-1.430964 gone and -0.03967361
-0.9006751 gone to -0.03967361
-1.620327 gone but -0.03967361
-1.659464 gone up -0.03967361
-1.611552 gone as -0.03967361
-1.681573 gone now -0.03967362
-1.702482 gone half -0.03967361
-1.697748 gone home -0.03967361
-1.255878 worthy <unk> -0.03967361
-0.4846425 worthy of -0.03967361
-1.501453 worthy man -0.03967361
-1.510973 worthy woman -0.03967361
-1.512782 worthy gentleman -0.03967361
-0.9883713 woman </s>
-1.351191 woman <unk> -0.03967362
-1.713092 woman with -0.03967362
-1.507627 woman and -0.03967361
-1.551813 woman of -0.03967361
-1.699361 woman was -0.03967361
-1.718944 woman at -0.03967362
-1.842087 woman finally -0.03967361
-1.825209 woman looked -0.03967362
-1.820717 woman i've -0.03967361
-1.838969 woman however -0.03967362
-1.842087 woman higher -0.03967361
-1.091793 woman hating -0.03967361
-1.051061 finally the -0.03967361
-1.114814 finally at -0.03967362
-1.146379 finally concluded -0.03967361
-1.201846 concluded </s>
-0.6042122 concluded that -0.03967362
-1.250057 concluded to -0.03967361
-1.300961 concluded he -0.03967361
-0.9573849 generally is -0.03967361
-0.9681101 generally go -0.03967361
-1.053835 town <unk> -0.03967362
-1.137899 town and -0.03967362
-1.249099 town this -0.03967361
-1.271317 town unless -0.03967361
-0.4137615 year </s>
-1.31399 year and -0.03967361
-1.329239 year to -0.03967361
-1.445956 year around -0.03967361
-0.8797674 visits </s>
-0.9590359 visits me -0.03967361
-1.121976 he'd had -0.03967361
-1.146015 he'd run -0.03967361
-1.136666 he'd have -0.03967362
-1.053835 wouldn't <unk> -0.03967361
-1.257005 wouldn't be -0.03967361
-1.268899 wouldn't dress -0.03967361
-1.227523 wouldn't you -0.03967361
-1.231387 dress <unk> -0.03967361
-1.504315 dress that -0.03967361
-1.442567 dress in -0.03967362
-1.401411 dress of -0.03967361
-1.515233 dress for -0.03967361
-1.5773 dress up -0.03967361
-1.567598 dress all -0.03967361
-1.604635 dress because -0.03967361
-1.622773 dress smiling -0.03967361
-1.727298 take one -0.03967361
-0.7385945 take the -0.03967361
-1.768536 take place -0.03967361
-0.7556674 take it -0.03967362
-1.715934 take her -0.03967361
-1.748938 take your -0.03967361
-1.77706 take breath -0.03967362
-1.7803 take notice -0.03967361
-1.761213 take these -0.03967361
-1.353281 more </s>
-0.6104892 more <unk> -0.302915
-1.409583 more of -0.03967361
-1.820688 more to -0.03967361
-2.269139 more dark -0.03967361
-2.119979 more so -0.03967361
-2.175479 more about -0.03967361
-2.266323 more questions -0.03967361
-2.208588 more did -0.03967361
-2.112037 more said -0.03967362
-2.274826 more cherry -0.03967362
-2.266323 more nearly -0.03967361
-2.255238 more strange -0.03967361
-2.269139 more orphans -0.03967361
-2.24443 more question -0.03967362
-0.8942268 more than -0.1858017
-2.247107 more light -0.03967361
-1.528251 more important -0.03967361
-2.184684 more bobby -0.03967361
-2.269139 more virtue -0.03967361
-2.271973 more difficulty -0.03967361
-2.269139 more immediately -0.03967361
-2.277697 more danced -0.03967361
-2.277697 more dignified -0.03967361
-1.150745 big <unk> -0.03967361
-0.6140094 big house -0.03967361
-1.364364 big eyes -0.03967361
-1.367258 big hat -0.03967361
-1.059914 quarter of -0.03967361
-1.05517 quarter to -0.03967361
-1.147107 quarter interest -0.03967361
-1.382123 sure </s>
-1.449136 sure the -0.03967361
-1.561937 sure that -0.03967362
-0.8725166 sure of -0.03967361
-1.588493 sure as -0.03967361
-1.631646 sure about -0.03967361
-1.647961 sure i'm -0.03967362
-0.8886114 sure i -0.03967361
-0.7256425 long <unk> -0.03967361
-1.791327 long time -0.03967361
-1.80817 long past -0.03967361
-1.636617 long he -0.03967361
-1.792706 long been -0.03967361
-1.812485 long lane -0.03967361
-1.754396 long they -0.03967361
-1.812485 long piece -0.03967361
-1.809604 long sweet -0.03967361
-1.812485 long iron -0.03967361
-1.813933 long platform -0.03967361
-1.803898 long black -0.03967361
-0.4918183 lane </s>
-1.262317 lane into -0.03967361
-1.263387 lane made -0.03967362
-1.329312 made the -0.03967361
-1.231684 made <unk> -0.03967361
-1.004057 made a -0.03967361
-1.993204 made with -0.03967361
-1.711652 made and -0.03967361
-1.836063 made in -0.03967361
-1.12966 made of -0.03967362
-1.399275 made it -0.03967361
-2.109046 made an -0.03967361
-1.426455 made her -0.03967361
-1.437042 made up -0.03967361
-1.445403 made them -0.03967361
-2.106763 made out -0.03967361
-2.149814 made their -0.03967361
-2.025965 made his -0.03967361
-2.051264 made so -0.03967361
-2.059354 made him -0.03967361
-2.197607 made sure -0.03967361
-2.076001 made no -0.03967361
-2.178391 made themselves -0.03967362
-2.173054 made much -0.03967361
-2.082412 made me -0.03967361
-2.208982 made inquiries -0.03967361
-2.208982 made profound -0.03967361
-1.137899 deal and -0.03967362
-1.182177 deal in -0.03967362
-1.1591 deal of -0.03967361
-1.268417 deal further -0.03967361
-0.8158002 further <unk> -0.03967361
-1.488325 further in -0.03967361
-1.436822 further to -0.03967361
-1.644168 further could -0.03967361
-1.6211 further or -0.03967361
-1.639048 further matthew -0.03967361
-1.667442 further explanation -0.03967361
-1.66853 further inquiries -0.03967361
-1.66853 further scattering -0.03967361
-0.654001 father </s>
-1.318538 father <unk> -0.03967361
-1.551857 father a -0.03967361
-1.529717 father in -0.03967361
-1.488561 father of -0.03967361
-1.620622 father as -0.03967361
-1.660544 father what -0.03967361
-1.691786 father has -0.03967361
-1.683505 father like -0.03967361
-1.053835 silent <unk> -0.03967361
-1.239527 silent on -0.03967362
-1.229721 silent as -0.03967361
-1.240882 silent so -0.03967361
-1.10975 son <unk> -0.03967361
-1.231699 son of -0.03967361
-1.36605 son beyond -0.03967361
-1.355325 son after -0.03967361
-1.340286 son what -0.03967361
-1.182177 happened in -0.03967361
-1.267454 happened since -0.03967362
-1.264579 happened last -0.03967361
-1.270348 happened yesterday -0.03967362
-0.7353568 since the -0.03967361
-1.652467 since that -0.03967361
-1.652467 since it -0.03967361
-1.777419 since sitting -0.03967361
-0.9983553 since he -0.0396736
-1.728794 since which -0.03967361
-1.764452 since last -0.03967361
-1.679303 since you -0.03967362
-1.741825 since we -0.03967361
-1.781023 since everybody -0.03967361
-1.140714 last <unk> -0.03967361
-1.253873 last a -0.03967362
-2.032935 last time -0.03967361
-1.965981 last all -0.03967361
-1.916642 last she -0.03967361
-1.830945 last he -0.03967361
-2.064538 last proof -0.03967361
-2.046479 last since -0.03967362
-0.6800538 last night -0.1188549
-1.97589 last when -0.03967361
-1.982624 last they -0.03967361
-2.052416 last quite -0.03967362
-2.058434 last winter -0.03967362
-1.31283 last week -0.03967361
-2.054413 last breath -0.03967361
-2.060459 last hour -0.03967361
-2.032935 last upon -0.03967362
-0.9123879 night </s>
-1.151847 night the -0.03967361
-1.576988 night and -0.03967361
-1.629109 night of -0.03967362
-1.614096 night to -0.03967361
-1.986248 night yet -0.03967361
-1.910656 night this -0.03967361
-1.846291 night she -0.03967361
-1.923628 night there -0.03967361
-1.857453 night his -0.03967361
-1.99725 night long -0.03967361
-1.739382 night i -0.03967361
-1.992816 night set -0.03967361
-1.990615 night nor -0.03967362
-1.830827 night you -0.03967361
-1.995027 night perhaps -0.03967361
-2.006257 night dropped -0.03967361
-2.008539 night wore -0.03967361
-1.967119 night graham -0.03967361
-0.8113927 off the -0.03967361
-1.744163 off a -0.03967361
-1.162333 off and -0.03967361
-1.924518 off by -0.03967362
-1.648415 off of -0.03967361
-1.633401 off to -0.03967361
-1.826481 off for -0.03967361
-1.856252 off at -0.03967361
-1.942933 off there -0.03967361
-1.980231 off their -0.03967361
-1.876759 off his -0.03967361
-1.898281 off so -0.03967361
-1.980231 off i'm -0.03967361
-2.021035 off today -0.03967361
-2.00992 off looking -0.03967362
-1.960202 off your -0.03967361
-2.021035 off sarah -0.03967361
-2.025562 off heat -0.03967361
-2.025562 off calories -0.0396736
-0.9015055 i'm not -0.1646123
-1.0581 i'm so -0.03967361
-1.068148 i'm going -0.5167949
-2.076658 i'm dressed -0.03967361
-2.080247 i'm clean -0.03967361
-1.323632 i'm very -0.3407036
-2.037378 i'm only -0.03967362
-2.071328 i'm quite -0.03967361
-1.330312 i'm sorry -0.03967359
-1.329351 i'm glad -0.03967362
-2.082053 i'm beginning -0.03967361
-2.080247 i'm nice -0.03967361
-2.082053 i'm guilty -0.03967361
-2.078449 i'm beatrice -0.03967361
-1.330632 i'm afloat -0.03967362
-0.9741672 clean <unk> -0.03967361
-1.115152 clean as -0.03967361
-1.147107 clean breast -0.03967361
-1.650741 that's just -0.03967362
-1.625463 that's all -0.03967361
-0.913143 that's why -0.03967361
-0.6508443 that's what -0.03967361
-1.661446 that's better -0.03967361
-1.668167 that's certain -0.03967361
-1.668167 that's what's -0.03967361
-1.743634 what </s>
-2.315581 what one -0.03967362
-1.741413 what is -0.03967361
-1.573237 what the -0.03967361
-1.046867 what <unk> -0.03967361
-1.312576 what a -0.1646124
-2.194396 what with -0.03967361
-1.83651 what and -0.03967361
-1.904071 what of -0.03967361
-1.334424 what was -0.1646124
-1.103251 what to -0.3407036
-2.430241 what could -0.03967362
-2.269369 what on -0.03967361
-2.5297 what helped -0.03967361
-1.490674 what she -0.03967362
-1.768221 what would -0.03967362
-1.7673 what are -0.3407036
-2.519183 what business -0.03967362
-1.723585 what his -0.03967361
-2.278226 what so -0.03967361
-1.214831 what he -0.1365836
-2.465498 what asked -0.03967361
-2.434495 what might -0.03967361
-2.514019 what i'll -0.03967362
-2.426029 what made -0.03967361
-1.79385 what happened -0.03967361
-1.658801 what i -0.03967361
-2.456412 what has -0.03967361
-2.417725 what did -0.03967362
-2.374689 what then -0.03967362
-2.405559 what do -0.03967361
-1.709671 what you -0.03967361
-2.393724 what your -0.03967361
-2.382203 what we -0.03967361
-2.417725 what will -0.03967361
-2.52441 what you're -0.03967362
-2.535055 what sort -0.0396736
-2.503872 what does -0.03967361
-2.489081 what new -0.03967361
-2.52441 what mistake -0.03967361
-2.5297 what hour -0.03967361
-2.519183 what held -0.03967362
-2.503872 what indeed -0.03967361
-2.535055 what example -0.03967361
-2.5297 what fortune -0.03967361
-2.540477 what reason -0.03967361
-2.126127 i just -0.2157649
-1.117963 i <unk> -0.1324277
-2.113557 i and -0.03967361
-1.615067 i had -0.03967361
-1.357021 i was -0.03967362
-1.789819 i to -0.03967361
-2.735437 i not -0.03967361
-1.860422 i could -0.1188549
-3.021215 i found -0.03967361
-2.118658 i would -0.03967361
-1.978148 i never -0.03967361
-2.795594 i there -0.03967362
-1.701944 i can -0.1066204
-3.03119 i always -0.03967362
-3.011463 i tell -0.03967361
-3.120499 i pass -0.03967361
-3.108278 i knew -0.03967361
-3.120499 i ought -0.03967361
-2.144072 i heard -0.03967362
-2.908881 i now -0.03967361
-1.865905 i asked -0.03967361
-1.314157 i have -0.1188549
-3.001926 i go -0.03967361
-2.858609 i any -0.03967361
-2.924383 i might -0.03967361
-1.988999 i didn't -0.03967362
-3.021215 i make -0.03967361
-3.133074 i guess -0.03967361
-1.488891 i must -0.07746218
-2.408673 i wouldn't -0.3407036
-2.148015 i won't -0.03967361
-1.780177 i know -0.1066204
-1.858384 i did -0.2615223
-2.408673 i call -0.03967361
-1.829539 i said -0.1365836
-2.403886 i wonder -0.03967361
-3.001926 i much -0.03967362
-1.876375 i suppose -0.1188549
-2.403886 i used -0.3407036
-1.484284 i do -0.2827116
-2.38525 i left -0.03967361
-2.948724 i came -0.03967361
-2.354446 i only -0.03967361
-2.901333 i like -0.03967361
-2.380713 i ever -0.03967361
-1.703365 i saw -0.03967362
-3.011463 i thought -0.03967361
-2.146697 i felt -0.03967361
-2.380713 i may -0.03967361
-3.073553 i once -0.03967361
-3.120499 i mean -0.03967361
-1.577838 i will -0.0854311
-3.146023 i read -0.03967361
-3.062568 i took -0.03967361
-1.870062 i think -0.1188549
-1.488601 i don't -0.1743722
-3.073553 i seemed -0.03967362
-2.389835 i gave -0.03967361
-2.151995 i can't -0.03967361
-3.120499 i hope -0.03967361
-3.146023 i warn -0.03967361
-2.399152 i believe -0.03967362
-2.411086 i pity -0.03967362
-3.146023 i enjoyed -0.03967361
-2.983458 i answered -0.03967362
-3.133074 i haven't -0.03967361
-2.149338 i should -0.03967361
-2.411086 i dare -0.03967361
-3.120499 i wanted -0.03967361
-3.133074 i wasn't -0.03967361
-2.401512 i turned -0.03967361
-3.051855 i keep -0.03967361
-2.396804 i love -0.03967361
-3.120499 i live -0.03967361
-3.108278 i talking -0.03967361
-3.120499 i lie -0.03967361
-1.292 i am -0.1365836
-3.062568 i want -0.3407036
-3.159371 i dunno -0.3407036
-1.641396 i shall -0.03967361
-3.096392 i hadn't -0.03967361
-3.133074 i ventured -0.03967362
-2.406273 i wished -0.03967361
-3.146023 i accepted -0.03967361
-3.146023 i approached -0.03967362
-2.408673 i whispered -0.03967361
-3.108278 i doubt -0.03967361
-3.073553 i told -0.03967361
-3.133074 i forget -0.03967361
-1.992677 i wish -0.1646124
-3.146023 i blush -0.03967361
-3.133074 i arrived -0.03967362
-3.108278 i leave -0.03967361
-3.133074 i spent -0.03967361
-3.133074 i throw -0.03967361
-3.120499 i slept -0.03967361
-3.146023 i telephoned -0.03967361
-3.133074 i rise -0.03967361
-3.146023 i faced -0.03967362
-3.146023 i miss -0.03967361
-3.120499 i paid -0.03967361
-3.133074 i promised -0.03967362
-3.108278 i return -0.03967361
-3.133074 i remain -0.03967361
-3.096392 i excuse -0.03967361
-3.133074 i content -0.03967361
-3.120499 i smile -0.03967362
-3.146023 i owe -0.03967361
-3.146023 i seek -0.03967362
-3.146023 i hate -0.03967362
-1.994528 i cannot -0.03967362
-2.413513 i beheld -0.03967362
-3.120499 i die -0.03967361
-3.120499 i cultivate -0.03967361
-3.146023 i rave -0.03967362
-0.8258563 won't <unk> -0.03967361
-1.657298 won't tell -0.03967361
-1.662042 won't know -0.03967361
-0.8995176 won't you -0.03967361
-1.662997 won't returned -0.03967361
-1.662997 won't believe -0.03967361
-1.662042 won't hold -0.03967361
-1.668772 won't blame -0.03967361
-1.592792 know </s>
-2.036873 know is -0.03967361
-2.134972 know where -0.03967361
-1.299079 know the -0.03967361
-1.124405 know a -0.2157649
-1.673857 know and -0.03967361
-1.371364 know that -0.03967361
-2.020069 know her -0.03967361
-2.108925 know them -0.03967361
-2.081969 know if -0.03967361
-2.156997 know anything -0.03967361
-1.412076 know who -0.03967362
-2.061094 know which -0.03967361
-2.077243 know about -0.03967361
-2.165553 know he's -0.03967362
-1.159022 know what -0.03967361
-2.145845 know it's -0.03967362
-2.132296 know how -0.03967361
-2.165553 know perhaps -0.03967361
-2.054354 know my -0.03967361
-2.148606 know another -0.03967361
-2.174281 know none -0.03967361
-1.428121 know whether -0.03967361
-2.140374 know answered -0.03967362
-2.165553 know count -0.03967362
-0.8797674 peace </s>
-0.9111986 peace of -0.03967361
-1.537878 mind </s>
-1.09618 mind <unk> -0.03967361
-1.755396 mind a -0.03967362
-1.241154 mind with -0.03967361
-1.611025 mind and -0.03967361
-1.817488 mind that -0.03967361
-1.23135 mind it -0.03967361
-1.839392 mind was -0.03967361
-1.180443 mind to -0.03967361
-1.899534 mind on -0.03967361
-1.245067 mind she -0.03967361
-1.938304 mind or -0.03967362
-1.784096 mind he -0.03967361
-1.982828 mind i'm -0.03967361
-1.924423 mind no -0.03967361
-1.929577 mind me -0.03967361
-2.015267 mind most -0.03967361
-1.956305 mind bobby -0.03967361
-1.338584 conscience by -0.03967361
-1.321374 conscience but -0.03967361
-1.341425 conscience or -0.03967362
-1.363044 conscience until -0.03967362
-1.340855 conscience which -0.03967362
-2.036073 has just -0.03967362
-1.688154 has the -0.03967361
-0.8302924 has <unk> -0.1646123
-1.808641 has a -0.03967361
-1.31544 has an -0.03967361
-0.9055366 has been -0.03967362
-2.047956 has three -0.03967361
-2.068512 has given -0.03967361
-2.079167 has happened -0.03967361
-1.328265 has taken -0.03967361
-2.007716 has then -0.03967361
-2.056062 has left -0.03967361
-2.066412 has brought -0.03967362
-2.049968 has come -0.03967362
-2.070623 has doctor -0.0396736
-2.077015 has worked -0.03967361
-2.08133 has departed -0.03967361
-2.079167 has fear -0.03967361
-1.403379 taken the -0.03967361
-1.261141 taken <unk> -0.03967361
-0.8535953 taken with -0.03967362
-1.576212 taken by -0.03967362
-1.610597 taken place -0.03967361
-1.596697 taken matthew -0.03967361
-1.488302 taken i -0.03967361
-1.623015 taken note -0.03967361
-1.218616 today the -0.03967361
-1.10975 today <unk> -0.03967361
-1.279384 today i -0.03967361
-1.336888 today no -0.03967361
-1.363644 today give -0.03967362
-1.504315 set it -0.03967361
-1.553438 set on -0.03967361
-1.5773 set up -0.03967361
-1.59431 set them -0.03967361
-1.581243 set out -0.03967361
-1.59329 set before -0.03967361
-1.581243 set about -0.03967361
-1.619517 set fire -0.03967362
-1.613076 set eyes -0.03967361
-1.521724 far the -0.03967361
-0.919915 far <unk> -0.03967361
-1.02715 far away -0.03967361
-1.531122 far to -0.03967361
-1.726659 far from -0.03967361
-1.688956 far she -0.03967361
-1.010463 far as -0.0396736
-1.749611 far before -0.03967361
-1.765615 far may -0.03967361
-1.781023 far corner -0.03967361
-0.2046675 barely <unk> -0.03967362
-0.9632371 along </s>
-0.4749034 along the -0.0396736
-1.697631 along with -0.03967362
-1.685843 along for -0.03967361
-1.73853 along this -0.03967361
-1.739406 along which -0.03967361
-1.760061 along here -0.03967361
-1.775985 along between -0.03967361
-0.924088 houses in -0.03967361
-0.961881 houses were -0.03967362
-1.724348 did </s>
-1.624007 did <unk> -0.03967361
-1.936677 did a -0.03967361
-1.40355 did that -0.03967361
-0.5644771 did not -0.1066204
-2.080355 did her -0.03967361
-1.416568 did she -0.03967361
-1.156919 did he -0.03967361
-2.116163 did they -0.03967361
-2.176105 did look -0.03967361
-0.8966929 did you -0.03967361
-2.187951 did certainly -0.03967361
-2.189958 did feel -0.03967361
-2.174162 did see -0.03967362
-2.15892 did these -0.03967361
-2.196033 did stand -0.03967361
-2.193998 did beatrice -0.03967361
-1.298579 call it -0.03967361
-1.328508 call on -0.03967361
-1.364244 call living -0.03967361
-1.31382 call you -0.03967361
-1.367864 call attention -0.03967361
-1.261141 living <unk> -0.03967361
-1.53793 living with -0.03967361
-1.612485 living away -0.03967361
-0.8361543 living in -0.03967361
-1.541931 living at -0.03967361
-1.600361 living here -0.03967361
-1.622047 living met -0.03967361
-1.623015 living creature -0.03967361
-0.8922391 such <unk> -0.03967361
-0.3809441 such a -0.08543109
-1.958564 such things -0.03967361
-1.966905 such person -0.03967361
-1.96811 such impossible -0.03967361
-1.96811 such thoughts -0.03967361
-1.969318 such facts -0.03967361
-1.96811 such reflections -0.03967361
-1.966905 such easy -0.03967362
-1.96811 such credit -0.03967361
-1.924743 it's just -0.03967361
-0.9220201 it's a -0.03967361
-1.894281 it's an -0.03967361
-1.869071 it's all -0.03967361
-1.812505 it's as -0.03967361
-1.192949 it's so -0.03967361
-1.924743 it's after -0.03967361
-1.947608 it's got -0.03967362
-1.869071 it's no -0.03967361
-1.957503 it's hard -0.03967362
-1.875652 it's my -0.03967361
-1.963549 it's worse -0.03967361
-1.965584 it's difficult -0.03967362
-1.965584 it's delightful -0.03967361
-1.965584 it's natural -0.03967361
-1.967628 it's rotten -0.03967361
-1.965584 it's dirty -0.03967361
-1.53951 said </s>
-1.566962 said missus -0.3407036
-0.7412424 said the -0.4076504
-1.305867 said <unk> -0.03967361
-1.904152 said with -0.03967361
-1.739225 said and -0.03967361
-1.669996 said that -0.03967361
-1.630436 said in -0.5167949
-1.669996 said it -0.3407036
-2.339269 said was -0.03967361
-2.047581 said to -0.03967361
-2.410002 said but -0.03967361
-2.590892 said well -0.03967361
-2.332077 said for -0.03967361
-2.505034 said not -0.03967361
-2.666082 said even -0.03967361
-2.519435 said this -0.03967361
-1.690672 said she -0.03967361
-2.557674 said if -0.03967361
-2.385122 said as -0.03967361
-2.458091 said so -0.03967361
-1.260987 said he -0.03967362
-2.617586 said now -0.03967361
-1.723364 said matthew -0.1646124
-2.549752 said about -0.03967361
-1.994619 said i'll -0.03967361
-1.983822 said marilla -0.03967361
-1.849195 said i -0.03967361
-2.498009 said no -0.03967361
-2.534329 said they -0.03967362
-2.371892 said you -0.03967361
-2.698012 said give -0.03967361
-2.64603 said how -0.03967361
-2.582346 said your -0.03967361
-2.738498 said gently -0.03967361
-2.63634 said these -0.03967361
-2.720683 said rawlins -0.03967361
-2.732478 said douglas -0.03967361
-1.227095 said danglars -0.1646124
-1.999014 said villefort -0.03967361
-1.997911 said debray -0.03967362
-1.997911 said chateau -0.3407036
-2.744602 said beauchamp -0.03967361
-1.226722 said monte -0.9427635
-2.72654 said morrel -0.03967361
-2.744602 said candide -0.03967361
-1.738251 said pangloss -0.03967361
-2.732478 said martin -0.03967362
-2.732478 said fitzooth -0.03967362
-2.744602 said george -0.03967362
-2.720683 said gamewell -0.03967361
-2.7092 said montfichet -0.03967361
-1.182177 stepped in -0.03967361
-1.252801 stepped out -0.03967362
-1.267935 stepped along -0.03967361
-1.271317 stepped aside -0.03967361
-1.188931 deep <unk> -0.03967361
-1.338292 deep in -0.03967361
-0.6929558 deep enough -0.03967361
-1.447651 deep purpose -0.03967361
-1.447651 deep converse -0.03967361
-1.874483 got one -0.03967361
-1.412776 got <unk> -0.03967361
-1.207192 got into -0.03967362
-1.160275 got a -0.03967362
-0.9058433 got to -0.03967361
-1.851748 got on -0.03967361
-1.874483 got all -0.03967361
-1.895199 got there -0.03967361
-1.820418 got as -0.03967361
-1.856201 got so -0.03967362
-1.86221 got him -0.03967361
-1.911834 got any -0.03967361
-1.879177 got me -0.03967361
-1.956444 got under -0.03967362
-1.954569 got lost -0.03967362
-1.954569 got hold -0.03967362
-0.9657037 possibly could -0.03967362
-0.9707725 possibly lie -0.03967361
-1.216467 fellow </s>
-1.151475 fellow <unk> -0.03967361
-1.259575 fellow and -0.03967361
-1.43663 fellow men -0.03967361
-1.413819 fellow when -0.03967362
-1.446682 fellow thinking -0.03967361
-1.51299 men </s>
-1.40538 men <unk> -0.03967361
-0.9761736 men and -0.03967361
-1.907312 men had -0.03967361
-1.225993 men in -0.03967361
-1.646133 men of -0.03967361
-1.842282 men was -0.03967361
-2.018173 men without -0.03967361
-1.870178 men at -0.03967362
-1.956105 men or -0.03967361
-1.966558 men who -0.03967361
-2.004105 men here -0.03967361
-1.763963 men i -0.03967361
-1.999516 men will -0.03967362
-2.032711 men see -0.03967361
-2.058078 men walk -0.03967361
-2.047753 men began -0.03967361
-2.052885 men around -0.03967362
-1.977268 men bobby -0.03967362
-2.055474 men rushed -0.03967361
-2.063334 men opened -0.03967362
-2.063334 men drew -0.03967361
-0.3687573 actually <unk> -0.03967362
-1.146136 actually taken -0.03967361
-1.676048 when one -0.3407036
-2.371326 when missus -0.03967361
-1.222935 when the -0.03967362
-1.288207 when <unk> -0.03967361
-2.084998 when a -0.03967361
-1.638248 when it -0.3407036
-2.185674 when for -0.03967361
-2.22322 when at -0.03967361
-2.304964 when all -0.03967361
-2.420935 when found -0.03967361
-1.152827 when she -0.03967361
-2.388195 when man -0.03967361
-2.249489 when his -0.03967361
-1.054435 when he -0.03967361
-0.9179272 when i -0.09766556
-1.432469 when they -0.2157649
-1.263793 when you -0.03967361
-1.436295 when your -0.2157649
-2.436674 when voice -0.03967361
-1.161416 when we -0.1365836
-2.314536 when my -0.03967361
-2.436674 when morning -0.03967361
-2.436674 when told -0.03967361
-2.43348 when lost -0.03967361
-2.349806 when bobby -0.03967361
-2.396882 when graham -0.03967361
-2.443133 when thou -0.03967361
-2.456346 when equally -0.03967362
-0.9494535 built at -0.03967362
-0.9621189 built if -0.03967361
-0.2113332 edge of -0.4376136
-0.9048946 cleared the -0.03967361
-0.9707725 cleared land -0.03967361
-1.10975 land <unk> -0.03967361
-1.20675 land and -0.03967361
-1.367258 land ladies -0.03967361
-1.316503 land as -0.03967361
-1.367864 land produced -0.03967361
-0.7605919 wild <unk> -0.03967361
-1.502699 wild it -0.03967361
-0.8184285 wild rose -0.3407036
-0.8187491 wild cherry -0.2157648
-1.570774 wild forest -0.03967361
-0.5805053 rose </s>
-1.449091 rose the -0.03967362
-0.8303754 rose and -0.3407036
-1.592612 rose up -0.03967361
-1.6235 rose bushes -0.0396736
-1.6235 rose likewise -0.03967361
-1.13277 bushes out -0.03967362
-1.142395 bushes it's -0.03967361
-1.147107 bushes bent -0.03967361
-1.744821 no </s>
-1.791197 no one -0.03967361
-0.7023308 no <unk> -0.1945756
-2.212528 no with -0.03967361
-1.839875 no and -0.03967361
-2.349511 no not -0.03967361
-2.534004 no other -0.03967361
-1.30113 no more -0.03967362
-2.550742 no further -0.03967361
-2.472842 no i'm -0.03967361
-1.36205 no i -0.1188548
-1.834882 no such -0.03967361
-1.546819 no said -0.03967362
-2.342412 no no -0.03967361
-2.568151 no wonder -0.03967362
-2.379129 no they -0.03967362
-2.586287 no stone -0.03967361
-2.215147 no you -0.03967362
-2.592504 no flat -0.03967361
-2.592504 no london -0.03967362
-1.845965 no matter -0.03967361
-1.844844 no use -0.03967361
-2.586287 no likely -0.03967361
-2.574112 no mistake -0.03967361
-2.556468 no prince -0.03967361
-2.580157 no sign -0.03967361
-2.580157 no notice -0.03967361
-2.574112 no orphans -0.03967362
-2.539512 no better -0.03967361
-2.586287 no decidedly -0.03967361
-2.54509 no keep -0.03967361
-2.592504 no scope -0.03967361
-2.574112 no doubt -0.03967362
-2.568151 no apollo -0.03967361
-2.586287 no desire -0.03967362
-2.586287 no moon -0.03967361
-1.844844 no evidence -0.3407036
-2.580157 no self -0.03967362
-2.592504 no insanity -0.03967361
-2.580157 no wrong -0.03967361
-2.586287 no prayers -0.03967362
-2.592504 no trace -0.03967361
-1.309208 no longer -0.03967361
-2.586287 no weariness -0.03967361
-2.592504 no thanks -0.03967361
-2.580157 no ill -0.03967361
-2.586287 no chance -0.03967361
-2.586287 no hurry -0.03967361
-2.592504 no ghosts -0.03967361
-2.592504 no sooner -0.03967361
-2.568151 no sir -0.03967362
-2.592504 no danger -0.03967361
-2.54509 no princess -0.03967361
-1.50216 wonder where -0.03967361
-1.4027 wonder a -0.03967361
-1.326522 wonder and -0.03967361
-1.452103 wonder at -0.03967361
-1.494447 wonder matthew -0.03967361
-0.7547047 wonder what -0.03967362
-0.7842418 themselves </s>
-1.583872 themselves the -0.03967361
-1.565663 themselves and -0.03967361
-1.035374 themselves to -0.03967361
-0.8201318 themselves at -0.0396736
-1.74625 themselves as -0.03967361
-1.843171 themselves trees -0.03967362
-1.816272 themselves some -0.03967361
-1.834807 themselves towards -0.03967361
-1.843171 themselves useful -0.03967361
-1.10975 trees <unk> -0.03967361
-1.20675 trees and -0.03967361
-1.327403 trees had -0.03967361
-1.259111 trees in -0.03967361
-1.336888 trees all -0.03967362
-1.126977 much </s>
-1.401231 much <unk> -0.03967361
-1.698027 much in -0.03967361
-1.176255 much of -0.03967361
-1.990713 much time -0.03967361
-1.817934 much for -0.03967361
-1.848696 much at -0.03967361
-1.992929 much people -0.03967361
-1.239622 much as -0.0396736
-1.969153 much did -0.03967362
-2.015735 much company -0.03967361
-2.020443 much curiosity -0.03967362
-2.022817 much different -0.03967361
-2.027603 much freckled -0.03967361
-2.022817 much later -0.03967361
-2.027603 much bent -0.03967361
-2.027603 much disappointed -0.03967361
-2.027603 much imposed -0.0396736
-2.027603 much reproach -0.03967361
-2.020443 much seat -0.03967361
-1.285213 company </s>
-1.408286 company in -0.03967361
-1.370121 company of -0.03967361
-1.47499 company for -0.03967361
-1.550129 company could -0.03967361
-1.566087 company though -0.03967361
-1.571862 company crowded -0.03967362
-1.569929 company beatrice -0.03967361
-1.261141 though <unk> -0.03967362
-1.411638 though to -0.03967361
-1.546782 though she -0.03967361
-0.8447872 though he -0.03967361
-1.488302 though i -0.03967361
-1.57883 though when -0.03967362
-1.621081 though dear -0.03967361
-1.621081 though somewhat -0.03967361
-1.271317 dear knows -0.03967361
-1.265057 dear yes -0.03967361
-1.268899 dear count -0.03967361
-1.271802 dear eugenie -0.03967361
-1.13631 knows well -0.03967361
-1.133476 knows if -0.03967361
-1.129959 knows what -0.03967361
-2.480876 they just -0.03967362
-1.161705 they <unk> -0.03967361
-0.9116094 they had -0.03967362
-2.028943 they in -0.03967361
-1.945422 they of -0.03967361
-1.568115 they would -0.03967361
-1.567584 they are -0.03967361
-2.405293 they who -0.03967361
-0.9595992 they were -0.1646123
-1.830567 they went -0.03967362
-1.578871 they heard -0.03967361
-1.567584 they have -0.03967361
-1.838414 they both -0.03967361
-2.521857 they must -0.03967361
-2.472271 they made -0.03967362
-2.561844 they won't -0.03967361
-2.310541 they said -0.03967361
-2.577842 they seem -0.03967361
-2.420148 they then -0.03967361
-1.824774 they came -0.03967362
-2.572444 they laid -0.03967362
-2.567112 they expected -0.03967361
-1.829596 they ever -0.03967361
-1.833493 they saw -0.03967361
-2.526659 they thought -0.03967361
-2.55664 they soon -0.03967361
-1.829596 they may -0.03967361
-2.463834 they will -0.03967361
-1.829596 they don't -0.03967361
-2.572444 they couldn't -0.03967361
-2.536424 they gave -0.03967361
-2.572444 they walked -0.03967362
-2.567112 they hadn't -0.03967361
-2.583309 they ventured -0.03967362
-2.55664 they told -0.03967361
-2.588845 they disappeared -0.03967361
-2.572444 they leave -0.03967361
-2.588845 they professed -0.03967361
-2.551497 they became -0.03967361
-2.583309 they stand -0.03967361
-2.572444 they tried -0.03967361
-2.577842 they moved -0.03967362
-2.588845 they emerged -0.03967361
-2.588845 they shook -0.03967362
-2.588845 they departed -0.03967361
-2.588845 they swam -0.03967361
-2.588845 they hoped -0.03967361
-1.446318 enough </s>
-1.503515 enough and -0.03967361
-1.586027 enough in -0.03967362
-1.542119 enough of -0.03967361
-0.5846841 enough to -0.3407036
-1.692877 enough but -0.03967361
-1.62974 enough he -0.03967361
-1.70486 enough said -0.03967361
-1.781023 enough mister -0.03967362
-1.781023 enough what's -0.03967361
-1.151475 i'd <unk> -0.03967361
-1.435213 i'd never -0.03967361
-1.426806 i'd have -0.03967361
-1.43734 i'd ever -0.03967361
-1.440909 i'd better -0.03967361
-1.442345 i'd rather -0.03967361
-1.556906 look and -0.03967361
-1.593297 look of -0.03967361
-1.707119 look for -0.03967361
-0.4248095 look at -0.1188548
-1.729816 look she -0.03967361
-1.788241 look like -0.03967361
-1.80817 look seemed -0.03967362
-1.814658 look forward -0.03967361
-1.814658 look alike -0.03967361
-1.216467 side </s>
-1.382016 side with -0.03967361
-1.319195 side in -0.03967361
-1.287859 side of -0.3407036
-1.391507 side but -0.03967361
-1.418559 side there -0.03967361
-0.5359468 great <unk> -0.1365836
-1.604797 great a -0.03967361
-1.746986 great big -0.03967361
-0.9931117 great mind -0.03967361
-1.746986 great hurry -0.03967361
-1.745056 great forest -0.03967362
-1.746986 great funeral -0.03967361
-1.747954 great shout -0.03967362
-0.9698025 stray half -0.03967361
-0.9707725 stray stick -0.03967361
-1.153147 stick to -0.03967361
-1.270832 stick stick -0.03967361
-1.267935 stick nor -0.03967361
-1.271802 stick unattached -0.03967362
-0.9414792 nor of -0.03967361
-1.49636 nor to -0.03967361
-1.730853 nor even -0.03967361
-1.713728 nor have -0.03967361
-1.739082 nor night -0.03967361
-0.9845904 nor what -0.03967361
-1.584877 nor i -0.03967361
-1.746261 nor stone -0.03967361
-1.72622 nor how -0.03967361
-1.741462 nor sleep -0.03967361
-1.053835 stone <unk> -0.03967361
-1.137899 stone and -0.2157649
-1.22186 stone was -0.03967361
-1.267935 stone princess -0.03967361
-1.310779 seen </s>
-1.567598 seen one -0.03967362
-1.231387 seen <unk> -0.03967361
-1.365021 seen and -0.03967361
-1.504315 seen that -0.03967361
-1.504315 seen it -0.03967361
-1.391064 seen to -0.03967361
-1.515233 seen for -0.03967361
-1.553438 seen on -0.03967362
-0.8797674 opinion </s>
-0.9418915 opinion that -0.03967361
-0.9418915 swept that -0.03967361
-0.9555056 swept her -0.03967361
-1.216467 yard </s>
-1.287859 yard of -0.03967361
-1.428893 yard over -0.03967361
-1.441627 yard give -0.03967361
-1.4338 yard came -0.03967361
-1.443786 yard above -0.03967361
-1.099106 seem <unk> -0.03967362
-0.5002403 seem to -0.03967361
-1.240091 seem as -0.03967361
-1.128274 then </s>
-0.9703349 then the -0.03967361
-1.209582 then <unk> -0.03967361
-1.541466 then a -0.03967361
-1.468681 then and -0.03967361
-2.321693 then back -0.03967361
-1.872451 then of -0.03967361
-2.072996 then it -0.03967361
-2.290559 then be -0.03967361
-2.137658 then at -0.03967362
-1.355483 then she -0.2157649
-2.299667 then would -0.03967362
-2.29661 then are -0.03967361
-2.166032 then his -0.03967362
-1.333377 then he -0.03967361
-2.318478 then might -0.03967361
-2.348315 then must -0.03967362
-2.384066 then taking -0.03967361
-1.184722 then i -0.1646124
-1.207192 then said -0.1646123
-2.253158 then they -0.03967361
-2.355234 then look -0.03967361
-2.384066 then although -0.03967361
-2.391583 then nova -0.0396736
-2.278704 then we -0.03967361
-2.36941 then brought -0.03967362
-2.351761 then another -0.03967361
-2.351761 then say -0.03967361
-2.355234 then myself -0.03967361
-2.395391 then pressed -0.03967361
-2.391583 then jenkins -0.03967361
-2.395391 then lifted -0.03967362
-1.335753 suppose a -0.03967361
-1.364836 suppose it -0.03967361
-1.411134 suppose not -0.03967361
-1.342558 suppose i -0.03967361
-1.446682 suppose they're -0.03967361
-1.382642 suppose you -0.03967361
-0.9741672 they're <unk> -0.03967361
-1.12856 they're not -0.03967362
-1.145652 they're used -0.03967361
-1.42994 used by -0.03967361
-0.264373 used to -0.0396736
-1.447772 used coffee -0.03967361
-1.389572 body and -0.03967361
-1.417179 body to -0.03967361
-1.578934 body but -0.03967361
-1.652838 body can -0.03967361
-1.642455 body might -0.03967361
-1.613782 body when -0.03967361
-1.618072 body they -0.03967361
-1.654007 body looked -0.03967361
-1.659901 body does -0.03967361
-1.66708 body move -0.03967361
-1.814934 get one -0.03967361
-1.383388 get <unk> -0.03967361
-0.8572391 get a -0.03967361
-1.142551 get away -0.03967361
-1.643037 get in -0.03967361
-1.590006 get of -0.03967361
-1.777491 get but -0.03967361
-1.79849 get her -0.03967361
-1.829129 get up -0.03967361
-1.83494 get out -0.03967361
-1.848305 get any -0.03967361
-1.891062 get used -0.03967361
-1.89777 get stuck -0.03967361
-1.89777 get sick -0.03967361
-0.461379 being <unk> -0.03967361
-1.639559 being a -0.03967362
-1.547017 being and -0.03967361
-1.74648 being an -0.03967361
-1.768419 being asked -0.03967361
-1.027363 being poor -0.03967361
-1.780782 being able -0.03967361
-1.781748 being discovered -0.03967361
-0.603115 very <unk> -0.03967362
-2.039698 very well -0.03967361
-2.096971 very red -0.03967361
-2.094427 very green -0.03967361
-2.079472 very much -0.03967361
-2.104692 very kind -0.3407036
-2.112552 very particular -0.03967362
-2.102103 very afraid -0.03967362
-2.107296 very different -0.03967361
-2.107296 very outside -0.03967361
-2.112552 very unfortunate -0.03967361
-2.109916 very gently -0.03967361
-2.102103 very short -0.03967361
-2.109916 very thick -0.03967361
-2.112552 very pointed -0.03967361
-2.104692 very glad -0.03967361
-2.109916 very useful -0.03967361
-2.104692 very quietly -0.0396736
-2.109916 very easily -0.03967361
-2.102103 very happy -0.03967361
-2.112552 very faint -0.03967361
-2.112552 very honest -0.03967361
-0.8990917 neat and -0.03967361
-0.9695603 neat black -0.03967361
-0.9455414 precise was -0.03967361
-0.9702873 precise bonds -0.03967361
-1.216467 ground </s>
-1.259575 ground and -0.03967361
-1.37457 ground was -0.03967361
-1.434506 ground without -0.03967361
-1.440909 ground until -0.03967361
-1.445231 ground near -0.03967361
-1.404798 do </s>
-2.202176 do one -0.03967361
-2.289887 do just -0.03967362
-1.8261 do the -0.03967361
-2.106751 do with -0.03967361
-1.540226 do that -0.03967361
-2.054268 do it -0.03967361
-1.840967 do to -0.03967361
-1.064461 do not -0.1268238
-2.327955 do yet -0.03967361
-2.217329 do this -0.03967361
-2.331284 do anything -0.03967361
-2.272034 do would -0.03967361
-1.573349 do so -0.03967361
-2.010633 do he -0.03967361
-2.305345 do why -0.03967361
-2.311686 do marilla -0.03967361
-1.991882 do i -0.03967361
-2.338018 do know -0.03967362
-2.164178 do said -0.03967361
-2.227733 do they -0.03967361
-2.334638 do nor -0.03967361
-2.327955 do get -0.03967361
-0.572214 do you -0.2701225
-2.331284 do think -0.03967361
-2.355325 do hope -0.03967361
-2.331284 do things -0.03967361
-2.331284 do better -0.03967361
-2.321374 do question -0.03967362
-2.338018 do love -0.03967361
-0.9621189 cheerful if -0.03967361
-0.9712584 cheerful apartment -0.03967362
-0.8797674 apartment </s>
-0.9710154 apartment apparently -0.03967361
-1.148005 whence the -0.03967361
-1.231931 whence she -0.03967361
-1.204051 whence he -0.03967361
-1.227523 whence you -0.03967361
-1.318923 you </s>
-2.556234 you one -0.03967361
-1.699867 you the -0.2157649
-1.202316 you <unk> -0.1268238
-1.587089 you a -0.1365836
-1.681262 you and -0.03967361
-2.571117 you by -0.03967362
-2.301616 you that -0.03967361
-2.089403 you had -0.7086803
-1.909389 you in -0.03967361
-1.534858 you to -0.03967361
-2.161681 you be -0.03967361
-2.636342 you an -0.03967361
-2.833302 you through -0.03967361
-2.026013 you for -0.03967361
-1.907362 you not -0.03967361
-1.940326 you could -0.2157649
-2.136847 you up -0.1646123
-2.948953 you sit -0.03967362
-2.642246 you if -0.03967361
-1.582999 you would -0.2437936
-1.342213 you are -0.07185828
-2.624768 you who -0.03967361
-1.796101 you can -0.2615224
-2.405327 you as -0.03967361
-1.92183 you were -0.1646123
-2.833302 you tell -0.03967361
-2.824169 you went -0.03967362
-2.236243 you he -0.03967361
-2.93707 you ought -0.03967361
-2.70618 you before -0.03967361
-2.914238 you best -0.03967361
-2.948953 you plain -0.03967361
-2.871888 you going -0.0396736
-2.925504 you driving -0.03967361
-1.782753 you have -0.03967361
-2.198595 you go -0.3407036
-2.161681 you any -0.03967361
-2.749609 you might -0.03967361
-2.815224 you something -0.03967361
-2.216065 you didn't -0.03967361
-1.681461 you must -0.03967361
-1.800228 you i -0.1646124
-2.903257 you won't -0.03967361
-1.454342 you know -0.0810663
-2.171624 you did -0.03967361
-2.833302 you such -0.03967361
-2.484473 you said -0.03967361
-2.852167 you got -0.03967361
-2.586528 you when -0.03967361
-2.118665 you no -0.03967361
-2.607965 you they -0.03967361
-2.648233 you then -0.03967361
-2.852167 you get -0.03967361
-2.699346 you do -0.03967361
-2.773068 you came -0.03967361
-2.734645 you some -0.03967362
-2.17364 you like -0.03967361
-2.229645 you weren't -0.03967361
-2.948953 you meet -0.03967361
-2.19646 you yes -0.03967362
-2.833302 you put -0.03967362
-2.948953 you stupid -0.03967361
-2.19646 you may -0.03967361
-1.965863 you mean -0.03967363
-1.673084 you will -0.03967361
-2.948953 you speaking -0.03967361
-2.93707 you ask -0.03967361
-1.799503 you think -0.03967361
-1.795255 you don't -0.1646123
-2.200741 you say -0.03967361
-2.806459 you i've -0.03967361
-1.953515 you see -0.03967361
-2.903257 you many -0.03967362
-2.734645 you again -0.03967361
-2.948953 you figure -0.03967361
-2.892547 you prince -0.03967361
-2.948953 you haven't -0.03967361
-2.93707 you wanted -0.03967361
-2.948953 you belong -0.03967362
-2.211631 you want -0.03967361
-2.948953 you unless -0.03967361
-2.914238 you against -0.03967362
-2.903257 you shall -0.03967361
-2.882095 you rather -0.03967361
-2.96117 you telling -0.03967362
-2.925504 you wished -0.03967361
-2.925504 you doubt -0.03967362
-2.225071 you hear -0.0396736
-2.225071 you wish -0.03967363
-2.96117 you fill -0.03967361
-2.914238 you care -0.03967361
-2.948953 you jenkins -0.03967361
-2.882095 you entered -0.03967361
-2.93707 you therefore -0.03967361
-2.948953 you forgive -0.03967361
-2.96117 you ready -0.03967362
-2.93707 you beauty -0.3407036
-2.948953 you mentioned -0.03967361
-2.948953 you seeking -0.03967361
-2.948953 you allow -0.03967361
-2.96117 you please -0.03967361
-2.96117 you receive -0.03967361
-2.96117 you cost -0.03967361
-2.96117 you naughty -0.03967361
-2.948953 you kiss -0.03967361
-2.948953 you amongst -0.03967361
-2.96117 you rave -0.03967362
-0.2569209 cherry trees -0.03967361
-1.272045 cherry tree -0.03967361
-0.8065058 left </s>
-0.7104658 left the -0.1858016
-1.881374 left with -0.03967361
-1.195215 left to -0.03967361
-1.887866 left at -0.03967362
-1.952644 left or -0.03967362
-2.027002 left orchard -0.03967361
-1.905215 left his -0.03967362
-1.949618 left what -0.03967361
-1.940662 left no -0.03967361
-2.000776 left us -0.03967362
-2.011077 left new -0.03967362
-2.023412 left except -0.03967361
-2.007616 left hand -0.03967361
-2.025203 left others -0.03967361
-0.6048045 nodding <unk> -0.03967361
-0.9676276 birches down -0.03967361
-0.961881 birches were -0.03967362
-1.503577 sat down -0.03967361
-0.721231 sat and -0.03967361
-1.452103 sat at -0.03967361
-1.483468 sat up -0.03967361
-1.497236 sat now -0.03967361
-1.503577 sat marilla -0.03967361
-0.8486216 slightly <unk> -0.03967361
-0.9712584 slightly developed -0.03967361
-1.507126 give </s>
-1.857688 give one -0.03967361
-1.707974 give a -0.03967361
-1.67766 give in -0.03967361
-1.763733 give it -0.03967361
-1.860652 give not -0.03967362
-1.872718 give up -0.03967361
-1.822241 give his -0.03967361
-1.733847 give he -0.03967361
-1.846027 give him -0.03967361
-1.921208 give off -0.03967361
-1.857688 give no -0.03967361
-1.79969 give you -0.03967361
-0.7654051 give me -0.3407036
-1.191854 give full -0.03967361
-1.053835 appearance <unk> -0.03967361
-1.1591 appearance of -0.03967361
-1.253266 appearance were -0.03967362
-1.255131 appearance we -0.03967362
-1.427252 looked <unk> -0.03967361
-0.5731561 looked at -0.1858017
-1.817262 looked up -0.03967361
-1.707078 looked he -0.03967361
-1.862954 looked green -0.03967361
-1.843847 looked after -0.03967361
-1.865566 looked wild -0.03967362
-1.872166 looked east -0.03967361
-1.11379 looked like -0.03967361
-1.866878 looked almost -0.03967361
-1.851389 looked upon -0.03967361
-1.127863 east one -0.03967361
-1.042958 east and -0.03967361
-1.091437 east i -0.03967361
-1.127863 west one -0.03967362
-1.059914 west of -0.03967361
-1.142756 west through -0.03967361
-1.380235 looking <unk> -0.03967361
-0.4127187 looking at -0.1365836
-1.677734 looking out -0.03967361
-1.688893 looking over -0.03967362
-1.677734 looking about -0.03967361
-1.70956 looking personage -0.03967361
-1.707027 looking round -0.03967361
-1.590809 came </s>
-1.490468 came <unk> -0.03967361
-1.253873 came a -0.03967362
-1.048308 came back -0.03967361
-1.244471 came in -0.03967361
-0.999805 came to -0.03967361
-1.946816 came so -0.03967361
-1.989464 came about -0.03967362
-2.032935 came three -0.03967361
-2.044518 came home -0.03967361
-2.036762 came off -0.03967361
-2.040623 came another -0.03967361
-2.064538 came close -0.03967361
-1.049296 came upon -0.1646124
-2.058434 came across -0.03967361
-2.060459 came drawn -0.03967361
-2.064538 came onward -0.03967362
-1.31649 behind the -0.03967361
-1.438757 behind with -0.03967361
-1.461449 behind her -0.03967361
-1.491791 behind them -0.03967361
-1.451788 behind his -0.03967361
-1.464465 behind him -0.03967362
-1.50488 behind themselves -0.03967361
-1.298579 laid it -0.03967361
-1.305345 laid for -0.03967361
-1.330172 laid her -0.03967361
-1.330172 laid so -0.03967361
-1.364244 laid hold -0.03967362
-0.9645055 supper missus -0.03967361
-0.8990917 supper and -0.03967361
-0.8486216 fairly <unk> -0.03967361
-0.9710154 fairly closed -0.03967361
-1.051061 closed the -0.03967361
-0.9741672 closed <unk> -0.03967361
-1.137734 closed over -0.03967361
-0.5948754 getting a -0.03967361
-1.568345 getting on -0.03967361
-1.587448 getting up -0.03967361
-1.573609 getting him -0.03967362
-1.623257 getting fairly -0.03967362
-1.62241 getting boys -0.03967361
-1.62072 getting you're -0.03967362
-0.8797674 mystery </s>
-0.9616432 mystery about -0.03967361
-0.9741672 real <unk> -0.03967361
-1.146379 real fine -0.03967361
-1.147107 real hearty -0.03967361
-1.10975 fine <unk> -0.03967361
-1.305345 fine for -0.03967361
-1.366654 fine evening -0.03967361
-1.363044 fine thing -0.03967362
-1.367864 fine country -0.5167949
-1.639559 isn't a -0.03967361
-0.7571152 isn't that -0.03967361
-0.5988385 isn't it -0.1646124
-1.702437 isn't as -0.03967361
-1.723055 isn't so -0.03967361
-1.778857 isn't heavy -0.03967362
-1.782716 isn't carried -0.03967361
-1.782716 isn't leaning -0.03967361
-1.087607 expecting a -0.03967362
-1.05517 expecting to -0.03967362
-1.138448 expecting some -0.03967362
-1.378368 some one -0.03967361
-0.7848182 some <unk> -0.1365836
-1.704197 some of -0.03967362
-2.110513 some time -0.03967361
-2.113222 some people -0.03967362
-2.153046 some distance -0.03967361
-1.400968 some day -0.03967361
-2.1384 some pretty -0.03967361
-2.147128 some gray -0.03967362
-2.147128 some use -0.03967362
-2.147128 some mistake -0.03967362
-2.150077 some lights -0.03967362
-2.153046 some fault -0.03967361
-2.153046 some game -0.03967361
-2.153046 some shame -0.03967361
-2.147128 some trouble -0.03967361
-2.150077 some manner -0.03967361
-2.156035 some local -0.03967361
-2.156035 some breakfast -0.03967362
-2.150077 some difficulty -0.03967361
-2.153046 some chance -0.03967361
-2.156035 some apprehension -0.03967361
-2.156035 some sacrifice -0.03967361
-2.150077 some wine -0.03967361
-2.156035 some disgust -0.03967361
-0.8990917 dishes and -0.03967361
-0.961881 dishes were -0.03967362
-1.303998 only one -0.03967361
-2.248675 only just -0.03967361
-0.8610096 only <unk> -0.03967361
-1.116464 only a -0.03967361
-1.549052 only by -0.03967361
-1.853184 only in -0.03967361
-1.984719 only it -0.03967361
-1.756885 only to -0.03967361
-2.192518 only an -0.03967361
-2.066924 only she -0.03967361
-2.055474 only as -0.03967361
-2.083479 only his -0.03967361
-2.274089 only been -0.03967361
-2.289308 only make -0.03967362
-2.274089 only last -0.03967361
-1.917267 only i -0.03967361
-2.30508 only living -0.03967361
-2.274089 only men -0.03967361
-2.297123 only thing -0.03967362
-2.277844 only don't -0.03967362
-2.297123 only things -0.03967361
-2.309115 only women -0.03967361
-2.309115 only twenty -0.03967361
-2.293198 only way -0.03967361
-2.289308 only light -0.03967361
-2.317297 only answer -0.03967361
-2.325637 only person -0.03967361
-2.329868 only wish -0.03967361
-2.33414 only envy -0.03967362
-2.321447 only evidence -0.03967361
-2.325637 only rome -0.03967361
-2.33414 only color -0.03967361
-2.325637 only paid -0.03967361
-2.321447 only return -0.03967361
-2.33414 only cost -0.03967361
-2.33414 only wilder -0.03967361
-0.8486216 apple <unk> -0.03967361
-0.9712584 apple preserves -0.03967361
-0.8990917 preserves and -0.03967361
-0.9673867 preserves us -0.03967361
-0.187705 kind of -0.2615224
-1.331284 kind i -0.03967361
-1.430989 expected missus -0.03967361
-0.6648579 expected to -0.03967361
-1.41158 expected him -0.03967361
-1.358565 expected i -0.03967361
-1.444628 expected company -0.03967361
-0.8797674 particular </s>
-0.9700448 particular company -0.03967361
-1.965517 how is -0.03967361
-1.227723 how the -0.03967361
-0.9574868 how <unk> -0.03967361
-1.767693 how a -0.03967361
-1.841533 how it -0.03967361
-1.868086 how was -0.03967361
-1.909344 how she -0.03967361
-2.032542 how are -0.03967361
-2.074489 how can -0.03967361
-2.008243 how were -0.03967361
-1.948713 how so -0.03967361
-1.801575 how he -0.03967361
-2.094197 how he's -0.03967361
-2.042655 how more -0.03967361
-1.784303 how i -0.03967361
-2.040104 how did -0.03967361
-2.074489 how much -0.03967361
-2.012995 how then -0.03967361
-2.032542 how do -0.03967361
-1.890923 how you -0.03967361
-2.097087 how many -0.03967361
-2.108842 how am -0.03967362
-2.094197 how else -0.03967362
-2.099996 how happy -0.03967361
-2.111832 how innocent -0.03967362
-0.7656 your <unk> -0.03967362
-2.299716 your little -0.03967361
-2.303774 your place -0.03967361
-2.342109 your business -0.03967361
-1.609147 your own -0.03967361
-2.351108 your folks -0.03967361
-2.320396 your house -0.03967361
-2.31618 your mind -0.03967361
-2.342109 your body -0.03967361
-2.342109 your name -0.03967362
-2.342109 your head -0.03967361
-2.337679 your sleep -0.03967361
-2.253768 your will -0.03967361
-2.346585 your word -0.03967362
-2.355678 your paper -0.03967361
-2.355678 your sister -0.03967361
-2.320396 your better -0.03967361
-1.612453 your tongue -0.03967361
-2.360297 your bag -0.03967361
-2.355678 your watch -0.03967361
-2.360297 your knowing -0.03967361
-2.355678 your presence -0.03967361
-2.355678 your freedom -0.03967361
-1.609147 your hands -0.03967361
-1.613284 your service -0.03967362
-2.360297 your intellect -0.03967362
-2.351108 your friends -0.03967361
-2.342109 your squire -0.03967361
-2.346585 your arm -0.03967361
-2.355678 your cousin -0.03967361
-2.360297 your signature -0.03967361
-2.342109 your bonds -0.03967361
-2.342109 your receipt -0.03967361
-2.360297 your signatures -0.03967361
-2.355678 your calories -0.03967361
-2.360297 your highness -0.03967362
-2.364965 your sheep -0.5167949
-2.360297 your purse -0.03967361
-2.360297 your lives -0.03967361
-1.370121 name of -0.03967361
-1.529431 name or -0.03967361
-1.491583 name as -0.03967361
-1.551051 name might -0.03967361
-1.43715 name i -0.03967361
-1.52593 name my -0.03967362
-1.560388 name question -0.03967361
-1.571862 name lording -0.03967361
-1.016274 existed </s>
-1.042958 existed and -0.03967361
-1.144563 existed between -0.03967361
-1.486962 between the -0.03967361
-0.885153 between <unk> -0.3407036
-1.674167 between her -0.03967361
-1.715973 between them -0.03967361
-1.66108 between his -0.03967362
-1.678274 between him -0.03967361
-1.72969 between marilla -0.03967361
-0.991326 between us -0.03967361
-1.745056 between hope -0.03967361
-1.723922 between these -0.03967361
-0.6393874 spite of -0.03967362
-1.465027 perhaps it -0.03967361
-1.477322 perhaps was -0.03967361
-1.47499 perhaps for -0.03967361
-1.527677 perhaps this -0.03967361
-1.49563 perhaps she -0.03967361
-1.555694 perhaps because -0.03967361
-1.568965 perhaps sent -0.03967361
-1.570895 perhaps watching -0.03967361
-1.104936 lips </s>
-1.053835 lips <unk> -0.03967361
-1.204051 lips he -0.03967361
-1.262673 lips good -0.03967361
-0.7497851 sight <unk> -0.03967361
-1.384514 sight and -0.03967361
-0.7860715 sight of -0.03967361
-1.499508 sight was -0.03967361
-1.497667 sight for -0.03967361
-1.566565 sight being -0.03967361
-1.549357 too the -0.03967361
-1.734898 too was -0.03967361
-1.769871 too but -0.03967361
-1.73118 too for -0.03967362
-1.897529 too early -0.03967361
-1.864436 too good -0.03967361
-1.672414 too i -0.03967361
-0.8827485 too much -0.03967361
-1.895723 too soft -0.03967361
-1.897529 too hot -0.03967361
-1.893924 too cold -0.03967362
-1.886804 too suddenly -0.03967361
-1.893924 too ill -0.03967361
-1.893924 too makes -0.03967361
-1.888573 too tired -0.03967362
-0.5913756 curiosity to -0.03967361
-1.326631 curiosity as -0.03967361
-1.363404 curiosity oh -0.03967361
-1.368712 curiosity conquered -0.03967362
-1.718073 oh a -0.03967361
-1.77605 oh it -0.03967362
-1.913533 oh well -0.03967361
-1.877607 oh not -0.03967361
-1.895199 oh there -0.03967361
-1.952702 oh work -0.03967361
-1.744939 oh he -0.03967361
-1.927371 oh might -0.03967361
-1.927371 oh i'm -0.03967361
-0.9260425 oh i -0.03967361
-1.198246 oh no -0.03967361
-1.964027 oh dear -0.03967361
-1.184686 oh you -0.03967361
-1.934459 oh how -0.03967361
-1.964027 oh thank -0.03967361
-1.967869 oh heavens -0.03967361
-0.5186779 quite <unk> -0.03967361
-1.551051 quite well -0.03967361
-1.544179 quite out -0.03967362
-1.57017 quite late -0.0396736
-1.565848 quite right -0.03967361
-1.567284 quite lost -0.03967361
-1.319203 although she -0.03967361
-1.285354 although he -0.03967361
-1.279384 although i -0.03967361
-1.360654 although it's -0.03967361
-1.339151 although my -0.03967361
-1.499925 bad where -0.03967361
-1.183941 bad <unk> -0.03967361
-1.513265 bad town -0.03967361
-1.512419 bad fellow -0.03967361
-1.506544 bad enough -0.03967361
-1.512419 bad sign -0.03967361
-1.513265 bad coffee -0.03967361
-1.254409 yesterday </s>
-1.301674 yesterday and -0.03967361
-1.446674 yesterday she -0.03967361
-1.401857 yesterday he -0.03967361
-1.498286 yesterday came -0.03967361
-1.502396 yesterday yes -0.03967361
-1.514113 yesterday worry -0.03967361
-1.183941 thin <unk> -0.03967362
-1.419233 thin that -0.03967361
-1.509052 thin woman -0.03967361
-1.394066 thin i -0.03967361
-1.511575 thin air -0.03967361
-1.510733 thin brown -0.03967361
-1.510733 thin also -0.03967361
-0.7101281 hair </s>
-1.218421 hair <unk> -0.03967361
-1.326522 hair and -0.03967361
-1.431783 hair that -0.03967362
-1.513628 hair showed -0.03967361
-1.504287 hair yes -0.03967361
-1.103792 showed that -0.03967361
-1.127863 showed no -0.03967361
-1.138448 showed some -0.03967361
-1.10975 gray <unk> -0.03967361
-1.20675 gray and -0.03967361
-1.259111 gray in -0.03967361
-1.36605 gray hair -0.03967361
-1.367864 gray wincey -0.03967361
-1.508095 hard little -0.03967361
-0.3290741 hard to -0.1646123
-1.508573 hard it's -0.03967361
-1.512903 hard brown -0.0396736
-0.5551234 two <unk> -0.03967362
-1.725467 two and -0.03967361
-2.143068 two old -0.03967361
-2.163865 two hours -0.03967362
-2.166239 two voices -0.03967361
-2.108389 two matthew -0.03967361
-1.413493 two three -0.3407036
-2.154499 two living -0.03967361
-2.136352 two men -0.03967361
-2.163865 two instead -0.0396736
-2.168625 two nights -0.03967361
-2.112576 two will -0.03967362
-2.159157 two above -0.03967362
-1.417719 two hundred -0.03967361
-2.159157 two hands -0.03967361
-2.163865 two o'clock -0.03967361
-1.15891 two days -0.03967361
-2.171025 two seven -0.03967361
-2.171025 two doctors -0.03967361
-2.168625 two sons -0.03967361
-0.8486216 stuck <unk> -0.03967361
-0.9548029 stuck on -0.03967361
-1.271876 like the -0.03967361
-1.484561 like <unk> -0.03967361
-0.7410205 like a -0.1188548
-1.670272 like and -0.03967361
-1.33708 like that -0.03967361
-2.116848 like its -0.03967361
-1.790704 like in -0.03967361
-2.121862 like everything -0.03967361
-2.116848 like other -0.03967362
-1.951057 like as -0.03967361
-2.121862 like going -0.03967361
-2.083287 like now -0.03967361
-1.843145 like i -0.03967361
-1.988343 like said -0.03967362
-2.121862 like nor -0.03967361
-1.942633 like you -0.03967361
-2.114363 like myself -0.03967361
-2.126934 like most -0.03967361
-2.134655 like dull -0.03967362
-2.139879 like falling -0.03967361
-1.391222 like beatrice -0.03967361
-2.137259 like unto -0.03967361
-0.1252428 narrow <unk> -0.03967361
-1.341406 mouth </s>
-1.489775 mouth that -0.03967361
-0.7860715 mouth of -0.03967361
-0.8050458 mouth was -0.03967361
-1.516445 mouth but -0.03967361
-1.539432 mouth which -0.03967361
-1.419715 ever <unk> -0.03967361
-1.244975 ever that -0.03967361
-1.90201 ever had -0.03967361
-1.716511 ever in -0.03967361
-1.653684 ever of -0.03967361
-1.278988 ever were -0.03967361
-2.015879 ever went -0.03967362
-1.910732 ever so -0.03967361
-2.038927 ever known -0.03967361
-1.981372 ever have -0.03967361
-1.032569 ever since -0.2157649
-2.036566 ever expected -0.03967361
-2.043687 ever existed -0.03967361
-2.022666 ever saw -0.03967361
-2.043687 ever expect -0.03967361
-2.02956 ever want -0.03967362
-2.046086 ever guilty -0.03967362
-2.043687 ever allow -0.03967361
-2.046086 ever bore -0.03967362
-2.046086 ever beheld -0.03967361
-0.924088 developed in -0.03967361
-0.9659437 developed might -0.03967362
-0.8486216 considered <unk> -0.03967361
-0.9681101 considered poor -0.03967361
-1.087607 sense a -0.03967361
-1.059914 sense of -0.03967361
-1.13066 sense or -0.03967361
-1.12856 we're not -0.03967362
-1.127863 we're all -0.03967361
-1.144926 we're getting -0.03967361
-1.283414 afraid </s>
-1.326522 afraid and -0.03967361
-1.354806 afraid of -0.03967361
-1.494447 afraid matthew -0.03967361
-0.7486731 afraid you -0.3407036
-1.505711 afraid question -0.03967361
-1.016274 weren't </s>
-1.145289 weren't coming -0.03967361
-1.144926 weren't though -0.03967362
-1.189635 saw the -0.03967361
-1.762647 saw a -0.03967361
-1.007717 saw that -0.03967361
-1.890423 saw but -0.03967361
-1.020243 saw her -0.2157649
-1.988584 saw them -0.03967361
-2.024036 saw other -0.03967361
-1.792196 saw he -0.03967361
-1.923608 saw him -0.03967361
-1.986586 saw matthew -0.03967361
-2.01543 saw something -0.03967361
-2.004908 saw nothing -0.03967361
-1.948444 saw what -0.03967361
-1.937626 saw no -0.03967361
-1.868616 saw you -0.03967361
-1.990592 saw only -0.03967362
-1.994634 saw again -0.03967361
-2.041776 saw lights -0.03967361
-2.046327 saw heads -0.03967362
-1.600472 thought the -0.03967361
-0.8099633 thought <unk> -0.03967361
-1.671767 thought in -0.03967361
-1.082763 thought of -0.03967362
-1.746757 thought it -0.03967361
-1.079229 thought to -0.03967362
-1.793144 thought but -0.03967362
-1.879798 thought can -0.03967361
-1.720937 thought he -0.03967361
-1.892491 thought maybe -0.0396736
-1.888219 thought brought -0.03967362
-1.145403 thought amory -0.03967361
-1.341406 maybe </s>
-0.5473824 maybe he -0.03967361
-1.538758 maybe what -0.03967362
-1.54146 maybe they -0.03967361
-1.556629 maybe two -0.03967361
-1.569447 maybe rawlins -0.03967361
-0.7601806 river </s>
-1.241932 river <unk> -0.03967361
-1.477225 river it -0.03967361
-1.382082 river to -0.3407036
-1.538646 river there -0.03967361
-1.571257 river we're -0.03967361
-1.572105 river hotel -0.03967361
-1.413166 boy </s>
-1.714457 boy had -0.03967361
-1.52185 boy of -0.03967361
-1.700926 boy but -0.03967361
-1.048146 boy from -0.3407036
-1.755028 boy out -0.03967362
-1.77181 boy matthew -0.03967361
-1.807455 boy i'd -0.03967362
-1.807455 boy used -0.03967361
-1.790754 boy i've -0.03967361
-1.807455 boy also -0.0396736
-1.813691 boy injured -0.03967362
-1.809006 boy rushed -0.03967361
-1.150745 orphan <unk> -0.03967361
-1.330616 orphan but -0.03967361
-0.6146933 orphan asylum -0.1188549
-1.366291 orphan girl -0.03967361
-1.410745 asylum and -0.03967361
-1.497821 asylum in -0.03967361
-1.584336 asylum was -0.03967361
-1.671263 asylum well -0.03967361
-1.661625 asylum if -0.03967362
-1.689932 asylum people -0.03967361
-1.676164 asylum over -0.03967361
-1.533572 asylum i -0.03967361
-1.678635 asylum some -0.03967361
-1.676164 asylum only -0.03967361
-1.69763 asylum child -0.03967361
-0.1320409 nova scotia -0.03967361
-1.244515 scotia is -0.03967361
-1.137899 scotia and -0.03967361
-1.220563 scotia for -0.03967361
-1.253266 scotia were -0.03967361
-1.312401 train </s>
-1.496749 train with -0.03967361
-1.500329 train at -0.03967362
-1.548978 train would -0.03967361
-1.452058 train i -0.03967361
-1.557917 train has -0.03967361
-0.8189203 train tonight -0.03967361
-0.8797674 tonight </s>
-0.9621189 tonight if -0.03967362
-1.218616 meet the -0.03967361
-1.273495 meet a -0.03967361
-1.313286 meet with -0.03967361
-1.328508 meet on -0.03967361
-1.332399 meet him -0.03967361
-0.9595088 kangaroo from -0.03967361
-0.9712584 kangaroo gait -0.03967362
-1.532417 five <unk> -0.03967362
-1.168182 five little -0.03967361
-1.853541 five said -0.03967361
-1.923803 five thirty -0.5167949
-1.918389 five thousand -0.03967362
-0.3969355 five millions -0.03967362
-1.170867 five minutes -0.03967361
-1.923803 five scraps -0.03967362
-1.922715 five notes -0.03967361
-1.148005 making the -0.03967361
-1.270348 making fun -0.03967362
-1.265057 making may -0.03967361
-1.271802 making impressions -0.03967361
-0.5981374 fun of -0.03967361
-1.277019 fun to -0.03967361
-0.6044836 fun i -0.03967361
-1.374482 almost the -0.03967361
-0.7392407 almost <unk> -0.03967362
-1.571257 almost expecting -0.03967361
-1.569567 almost forced -0.03967362
-1.565371 almost already -0.03967361
-1.569567 almost immediately -0.03967361
-1.569567 almost sad -0.03967361
-1.355796 forced into -0.03967361
-0.5913756 forced to -0.03967361
-1.362924 forced such -0.03967361
-1.362924 forced himself -0.03967361
-0.9306792 earnest a -0.03967361
-0.9676276 earnest marilla -0.03967361
-1.104936 demanded </s>
-1.053835 demanded <unk> -0.03967361
-1.261249 demanded their -0.03967361
-1.249099 demanded when -0.03967361
-0.8492937 voice </s>
-0.8258563 voice <unk> -0.03967361
-1.574232 voice was -0.03967361
-1.647961 voice i'm -0.03967361
-1.661089 voice give -0.03967361
-1.650741 voice came -0.03967361
-1.662997 voice returned -0.03967361
-1.652604 voice still -0.03967361
-1.312401 returned </s>
-1.374482 returned the -0.03967361
-1.241932 returned <unk> -0.03967361
-1.488274 returned was -0.03967361
-0.7786183 returned to -0.03967361
-1.559563 returned marilla -0.03967361
-1.563703 returned robin -0.03967361
-1.099345 yes </s>
-1.597781 yes and -0.03967361
-1.645002 yes of -0.03967361
-1.190849 yes but -0.03967361
-1.916951 yes well -0.03967362
-1.801762 yes for -0.03967361
-1.887414 yes from -0.03967362
-1.170479 yes he -0.3407036
-0.9278532 yes i -0.2157649
-1.856947 yes said -0.03967361
-1.941778 yes come -0.03967361
-1.938385 yes our -0.03967361
-1.953868 yes keep -0.03967361
-1.907405 yes bobby -0.03967362
-1.964505 yes replied -0.03967361
-1.042958 boys and -0.03967361
-1.059914 boys of -0.03967361
-1.129609 boys from -0.03967361
-0.6853604 part in -0.3407036
-0.2668863 part of -0.03967361
-0.9741672 usual <unk> -0.03967361
-1.147107 usual spring -0.03967361
-1.146379 usual difficulty -0.03967361
-1.016274 spring </s>
-1.144201 spring work -0.03967361
-1.147471 spring equinox -0.03967361
-1.016274 farm </s>
-1.116848 farm she -0.03967361
-1.146015 farm instead -0.0396736
-0.0726902 instead of -0.03967362
-1.469359 felt the -0.03967361
-0.6385694 felt <unk> -0.03967361
-1.591465 felt that -0.03967361
-1.602384 felt for -0.03967361
-1.643384 felt her -0.03967361
-1.620622 felt as -0.03967361
-1.631399 felt his -0.03967362
-1.643384 felt so -0.03967361
-1.700227 felt better -0.03967361
-1.148005 received the -0.03967361
-1.194193 received a -0.03967361
-1.246342 received no -0.03967361
-1.250946 received they -0.03967362
-0.2434769 mental <unk> -0.03967361
-1.272045 mental attitude -0.03967361
-0.4820174 exclamation <unk> -0.03967362
-1.184852 exclamation of -0.03967361
-1.266614 exclamation been -0.03967361
-0.6704715 alexander spencer -0.1646124
-1.517792 spencer was -0.03967361
-1.391064 spencer to -0.03967361
-1.515233 spencer for -0.03967361
-1.573393 spencer what -0.03967361
-1.619517 spencer today -0.03967361
-1.552511 spencer said -0.3407036
-1.60255 spencer came -0.03967361
-1.619517 spencer although -0.03967361
-1.595331 spencer will -0.03967361
-1.03569 girl </s>
-1.383388 girl <unk> -0.03967361
-1.672198 girl a -0.03967361
-1.544244 girl and -0.03967362
-1.643037 girl in -0.03967361
-1.576893 girl to -0.03967361
-1.836405 girl an -0.03967361
-1.777491 girl but -0.03967361
-1.821973 girl from -0.03967361
-1.83348 girl who -0.03967361
-0.8737121 girl said -0.03967361
-1.842314 girl we -0.03967361
-1.887746 girl women -0.03967361
-1.896084 girl she's -0.03967361
-0.924088 hopeton in -0.03967361
-0.9676276 hopeton last -0.03967362
-0.3855907 adopting a -0.03967361
-1.131597 adopting her -0.03967362
-1.373767 world </s>
-1.644632 world is -0.03967362
-1.430964 world and -0.03967361
-1.469568 world of -0.03967361
-1.594517 world was -0.03967361
-1.557189 world he -0.03967361
-0.9468019 world what -0.03967362
-1.648818 world no -0.03967361
-1.701293 world there's -0.03967361
-1.704868 world millions -0.03967362
-1.573609 certainly one -0.03967361
-1.516179 certainly it -0.03967361
-1.528475 certainly was -0.03967361
-0.8447872 certainly he -0.03967362
-1.612485 certainly make -0.03967361
-1.488302 certainly i -0.03967361
-1.621081 certainly turning -0.03967361
-1.622047 certainly bring -0.03967361
-1.053835 turning <unk> -0.03967361
-1.153147 turning to -0.03967361
-1.259358 turning over -0.03967361
-1.270832 turning toward -0.03967361
-1.241932 earth <unk> -0.03967361
-0.7729232 earth and -0.03967361
-1.562042 earth put -0.03967361
-1.567044 earth most -0.03967361
-1.568725 earth fall -0.03967361
-1.567884 earth doctor -0.03967361
-1.571257 earth falling -0.03967362
-1.539935 put </s>
-1.86399 put into -0.2157649
-0.859455 put in -0.03967362
-1.815233 put on -0.03967361
-1.848305 put out -0.03967361
-1.847122 put there -0.03967361
-1.848305 put about -0.03967361
-1.891895 put both -0.03967362
-1.88282 put such -0.03967361
-0.8729134 put you -0.2157649
-0.8785936 put me -0.2157649
-1.350879 head </s>
-1.429884 head the -0.03967361
-1.410745 head and -0.03967361
-1.6079 head she -0.03967361
-1.659249 head about -0.03967361
-1.670047 head any -0.03967361
-1.696337 head whether -0.03967362
-1.702839 head above -0.03967362
-1.706787 head toward -0.03967361
-1.705467 head trouble -0.03967361
-1.708111 head fell -0.03967361
-1.259111 advice in -0.03967361
-1.306922 advice was -0.03967362
-1.321374 advice but -0.03967361
-1.341425 advice or -0.03967361
-1.363644 advice being -0.03967361
-1.123699 thinking so -0.03967362
-1.13277 thinking about -0.03967361
-1.091437 thinking i -0.03967361
-1.168367 winter </s>
-1.10975 winter <unk> -0.03967361
-1.20675 winter and -0.03967361
-1.259111 winter in -0.03967361
-1.354149 winter made -0.03967361
-1.356537 fact </s>
-1.609534 fact is -0.03967361
-1.427967 fact the -0.03967361
-0.8673772 fact of -0.03967362
-1.56355 fact was -0.03967361
-1.436822 fact to -0.03967361
-1.529026 fact he -0.3407036
-1.662042 fact returned -0.03967362
-1.664194 fact nearly -0.03967361
-0.8673855 there's never -0.03967361
-1.597724 there's any -0.03967361
-1.61154 there's something -0.03967362
-1.607431 there's nothing -0.03967361
-1.579706 there's no -0.03967361
-1.60336 there's some -0.03967361
-0.8700727 there's risks -0.3407036
-1.016274 stupid </s>
-1.144926 stupid half -0.03967361
-1.091437 stupid i -0.03967361
-1.14396 grown little -0.03967361
-0.3911369 grown up -0.03967361
-1.1591 french of -0.03967361
-1.258415 french would -0.03967361
-1.271317 french boys -0.03967361
-1.271802 french rivers -0.03967361
-1.338842 soon <unk> -0.03967361
-1.643482 soon be -0.03967361
-1.659782 soon found -0.03967361
-0.9022667 soon as -0.08543109
-0.9123995 soon after -0.03967361
-0.9128455 soon came -0.3407036
-1.655649 soon upon -0.03967361
-1.262317 broke into -0.03967361
-1.212546 broke a -0.03967361
-0.517014 broke off -0.03967361
-0.9494535 states at -0.03967361
-0.9360249 states he -0.03967361
-0.6200023 first <unk> -0.1646124
-1.033369 first of -0.03967361
-1.716053 first for -0.03967361
-1.736327 first at -0.03967362
-1.808405 first matthew -0.03967361
-1.759779 first said -0.03967362
-1.836229 first let -0.03967361
-1.844138 first begin -0.03967362
-1.841486 first tis -0.03967361
-1.838849 first placed -0.03967361
-1.844138 first ship -0.03967361
-0.9078251 flat to -0.03967361
-0.9710154 flat demand -0.03967361
-1.097391 may <unk> -0.03967361
-0.506183 may be -0.03967361
-1.9309 may well -0.03967362
-0.9519789 may have -0.2157649
-1.954686 may make -0.03967361
-1.954686 may look -0.03967361
-1.966424 may stick -0.03967361
-1.953401 may see -0.03967361
-1.958564 may keep -0.03967361
-1.967748 may hear -0.03967361
-1.965104 may thus -0.03967362
-0.9538455 right <unk> -0.03967361
-1.826716 right away -0.03967361
-1.602807 right in -0.03967361
-1.539169 right to -0.03967361
-1.776838 right or -0.03967361
-1.720124 right as -0.03967362
-1.822209 right off -0.03967361
-1.810414 right i'm -0.03967362
-1.072488 right said -0.03967361
-1.822209 right don't -0.03967362
-1.842087 right sort -0.0396736
-1.843654 right close -0.03967361
-1.825209 right hand -0.03967361
-1.279871 saying to -0.03967361
-1.43734 saying something -0.03967361
-1.416521 saying they -0.03967361
-1.446682 saying they're -0.03967361
-1.447409 saying brother -0.03967361
-1.447409 saying persons -0.03967362
-0.8797674 london </s>
-0.9702873 london street -0.03967361
-0.7101281 street </s>
-1.339947 street the -0.03967361
-1.218421 street <unk> -0.03967361
-1.482115 street or -0.03967361
-1.488237 street then -0.03967361
-1.514355 street fight -0.03967362
-1.092714 me </s>
-2.416047 me one -0.03967361
-0.9811529 me the -0.2737568
-1.233238 me <unk> -0.03967362
-2.594982 me down -0.03967361
-1.578811 me a -0.1646124
-2.278592 me with -0.03967361
-1.504575 me and -0.03967362
-2.427477 me by -0.03967362
-1.468866 me that -0.03967361
-2.562186 me back -0.03967362
-1.436155 me in -0.1365836
-2.20794 me it -0.03967361
-1.174359 me to -0.1646124
-2.612358 me through -0.03967361
-1.632918 me but -0.2157649
-2.517215 me well -0.03967361
-2.23932 me for -0.03967361
-2.292514 me at -0.03967361
-2.455379 me up -0.03967361
-2.467909 me who -0.03967361
-2.295353 me as -0.03967361
-2.373116 me so -0.03967361
-1.592142 me he -0.03967361
-2.443201 me which -0.03967362
-2.546673 me now -0.03967362
-2.521988 me have -0.03967361
-2.606488 me go -0.03967361
-2.572845 me good -0.03967361
-2.689779 me rarely -0.03967362
-2.556953 me after -0.03967361
-1.200569 me i -0.03967362
-2.3597 me said -0.03967362
-2.594982 me men -0.03967361
-2.636663 me nor -0.03967361
-2.485198 me then -0.03967361
-2.562186 me very -0.03967361
-2.53663 me only -0.03967361
-2.507824 me your -0.03967361
-2.541622 me like -0.03967361
-1.931789 me five -0.3407036
-2.662409 me saying -0.03967361
-2.649345 me once -0.03967361
-2.53663 me will -0.03967362
-2.675878 me ten -0.03967361
-2.612358 me say -0.03967361
-2.612358 me question -0.03967361
-2.682773 me unless -0.03967361
-2.689779 me remember -0.03967361
-2.682773 me aside -0.03967361
-2.649345 me count -0.03967361
-2.649345 me else -0.03967361
-2.48963 me bobby -0.03967362
-2.669092 me across -0.03967361
-2.572845 me graham -0.03967361
-2.662409 me excuse -0.03967362
-2.675878 me send -0.03967361
-2.669092 me till -0.03967362
-2.636663 me alone -0.03967362
-2.636663 me princess -0.03967361
-1.276413 born <unk> -0.03967361
-0.7860715 born of -0.03967361
-0.7841715 born to -0.03967361
-1.510095 born at -0.03967361
-1.524842 born on -0.03967362
-1.565848 born until -0.03967361
-1.297797 least the -0.03967361
-0.6356532 least <unk> -0.03967361
-1.352676 least a -0.03967361
-1.430989 least before -0.03967362
-1.358565 least i -0.03967361
-0.9583275 risk no -0.03967361
-0.9695603 risk there's -0.03967361
-1.287859 matter of -0.03967361
-1.372728 matter for -0.03967361
-1.418559 matter who -0.03967361
-1.414493 matter which -0.03967361
-1.413819 matter what -0.03967361
-1.42129 matter then -0.03967361
-2.266299 we missus -0.03967361
-1.060406 we <unk> -0.03967361
-1.572049 we had -0.03967361
-1.801384 we to -0.03967361
-2.256538 we be -0.03967362
-2.188209 we all -0.03967361
-1.60093 we are -0.03967361
-1.356385 we can -0.03967361
-2.231533 we were -0.03967361
-2.337662 we heard -0.03967361
-2.31133 we asked -0.03967362
-1.076297 we have -0.03967361
-2.318692 we go -0.03967361
-2.318692 we must -0.03967361
-2.329974 we got -0.03967361
-1.614654 we get -0.03967361
-2.263021 we do -0.03967361
-2.337662 we give -0.03967361
-2.329974 we saw -0.03967361
-2.322421 we thought -0.03967361
-2.365694 we meet -0.03967361
-2.314996 we may -0.03967361
-1.620564 we mean -0.03967361
-2.27293 we will -0.03967361
-1.619821 we decided -0.03967361
-2.357499 we sent -0.03967361
-2.341558 we took -0.03967361
-2.314996 we don't -0.03967361
-2.322421 we see -0.03967361
-1.611 we come -0.3407036
-2.349455 we shall -0.03967361
-2.365694 we ease -0.03967361
-2.365694 we desire -0.03967362
-2.369851 we fill -0.03967362
-1.622055 we need -0.3407036
-0.319617 feel <unk> -0.03967361
-1.508573 feel it's -0.03967361
-1.510973 feel strange -0.03967361
-1.514841 feel invisible -0.03967361
-0.7798525 my <unk> -0.1298502
-2.227104 my but -0.03967361
-2.570728 my window -0.03967362
-2.551279 my children -0.03967361
-2.320646 my all -0.03967361
-2.557665 my own -0.03967361
-2.53878 my work -0.03967361
-2.532663 my house -0.03967361
-2.460114 my man -0.03967361
-2.570728 my seeing -0.03967361
-2.570728 my clothes -0.03967361
-2.532663 my life -0.03967361
-2.460114 my might -0.03967361
-1.424203 my father -0.0396736
-1.581202 my mind -0.03967361
-2.577409 my dear -0.03967361
-2.557665 my great -0.03967361
-1.842968 my name -0.03967361
-2.557665 my sight -0.03967361
-2.570728 my mouth -0.03967361
-2.544985 my boy -0.03967361
-2.551279 my voice -0.03967361
-2.564147 my head -0.03967361
-1.845457 my advice -0.03967361
-1.424676 my heart -0.03967361
-2.570728 my word -0.03967362
-2.591089 my duty -0.03967361
-2.584195 my second -0.03967361
-1.83194 my poor -0.03967361
-2.564147 my feeling -0.03967361
-2.520682 my room -0.03967361
-2.591089 my charge -0.03967362
-2.514814 my hand -0.03967362
-1.836807 my eyes -0.03967361
-2.53878 my face -0.03967361
-2.591089 my bones -0.03967362
-1.588048 my guide -0.03967361
-2.591089 my breast -0.03967362
-2.570728 my god -0.03967361
-2.564147 my answer -0.03967361
-2.570728 my faith -0.03967361
-2.557665 my hands -0.03967361
-2.544985 my lost -0.03967361
-2.570728 my foot -0.03967361
-2.584195 my lord -0.03967361
-2.591089 my funds -0.03967361
-2.591089 my fellows -0.03967361
-2.584195 my desk -0.03967361
-2.584195 my content -0.03967361
-2.584195 my passion -0.03967361
-2.584195 my vision -0.03967361
-2.591089 my joy -0.03967361
-2.591089 my delight -0.03967361
-2.584195 my daughter -0.03967361
-2.591089 my order -0.03967361
-1.842968 my receipt -0.03967361
-2.591089 my signatures -0.03967361
-2.591089 my uncle -0.03967361
-2.591089 my esquire -0.03967362
-0.910304 sleep <unk> -0.03967361
-1.669021 sleep with -0.03967361
-1.696537 sleep had -0.03967361
-0.9837382 sleep in -0.2157649
-1.722422 sleep this -0.03967361
-1.765033 sleep can -0.03967361
-1.606122 sleep i -0.03967361
-1.735369 sleep then -0.03967361
-1.670048 sleep you -0.03967362
-1.751185 sleep again -0.03967361
-1.780662 sleep walking -0.03967362
-1.137899 nights and -0.03967361
-1.233706 nights but -0.03967361
-1.253732 nights if -0.03967362
-1.199094 nights i -0.03967361
-0.9418915 talked it -0.03967361
-0.9616432 talked about -0.03967361
-1.104936 years </s>
-1.1591 years of -0.03967361
-1.227523 years you -0.03967361
-1.268417 years full -0.03967361
-0.8990917 sixty and -0.03967361
-0.9712584 sixty lacking -0.03967362
-1.401687 once </s>
-1.312395 once <unk> -0.03967361
-1.555262 once in -0.03967361
-1.646938 once was -0.03967361
-1.494316 once to -0.03967361
-1.00887 once but -0.03967361
-1.604432 once he -0.03967361
-1.718434 once which -0.03967361
-1.593014 once i -0.03967361
-1.745589 once did -0.03967361
-1.778857 once worked -0.03967361
-1.781748 once asserted -0.03967361
-1.373767 heart </s>
-0.8473644 heart <unk> -0.03967361
-1.430964 heart and -0.03967361
-1.707268 heart wouldn't -0.03967361
-1.547088 heart i -0.03967362
-1.632309 heart said -0.03967362
-1.709681 heart responded -0.03967362
-1.706066 heart trouble -0.03967361
-1.703673 heart thy -0.03967361
-1.706066 heart doth -0.03967361
-0.8797674 help </s>
-0.9517712 help but -0.03967361
-1.338292 use in -0.03967361
-0.6648579 use to -0.03967361
-1.384526 use for -0.03967362
-1.42866 use your -0.03967361
-1.445835 use talking -0.03967361
-1.150745 doing <unk> -0.03967362
-1.291103 doing a -0.03967361
-0.6042122 doing it -0.03967361
-1.331953 doing his -0.03967361
-1.619367 young one -0.03967361
-0.8258563 young <unk> -0.03967361
-0.9118904 young man -0.1646123
-1.609111 young so -0.03967361
-1.660138 young enough -0.0396736
-1.666839 young master -0.03967362
-1.665875 young lady -0.03967361
-1.666839 young fitzooth -0.03967361
-1.11821 proper but -0.03967361
-1.134537 proper we -0.03967362
-1.147107 proper entrance -0.03967362
-0.8570906 mean </s>
-1.650741 mean just -0.03967361
-0.63229 mean to -0.03967361
-1.668167 mean you've -0.03967361
-1.667321 mean carlos -0.03967361
-1.667321 mean debray -0.03967362
-1.665635 mean sir -0.03967361
-0.9543351 mail had -0.03967361
-0.9659437 mail man -0.03967361
-1.382209 brought the -0.03967361
-1.600476 brought back -0.03967361
-1.442567 brought in -0.03967361
-1.504315 brought it -0.03967361
-1.556233 brought her -0.03967362
-1.556233 brought so -0.03967361
-1.567598 brought no -0.03967361
-1.52906 brought you -0.03967361
-1.571453 brought my -0.03967361
-1.267454 station house -0.03967361
-1.269865 station saying -0.03967361
-1.269381 station herself -0.03967361
-1.270832 station master -0.03967362
-0.9710154 thirty train -0.03967361
-0.9712584 thirty seventh -0.03967362
-1.058707 will <unk> -0.03967362
-2.032406 will that -0.03967361
-0.9764543 will be -0.03967361
-1.578396 will not -0.03967361
-2.111156 will she -0.03967361
-2.299406 will never -0.03967361
-2.224324 will who -0.03967361
-2.323995 will always -0.03967362
-2.316826 will tell -0.03967361
-1.986864 will he -0.5167949
-1.604484 will go -0.03967361
-2.320396 will make -0.03967361
-1.60864 will take -0.03967361
-1.967355 will i -0.03967361
-2.334975 will set -0.03967362
-2.260245 will do -0.03967361
-0.9660278 will you -0.03967361
-2.269709 will only -0.03967361
-1.603795 will ever -0.03967361
-2.357804 will bring -0.03967361
-2.346239 will turn -0.03967361
-2.327624 will child -0.03967362
-2.346239 will stay -0.03967361
-2.30629 will answered -0.03967362
-2.346239 will presently -0.03967361
-2.30629 will come -0.03967362
-2.353915 will whispered -0.0396736
-2.353915 will appear -0.03967361
-2.357804 will forgive -0.03967361
-2.346239 will excuse -0.03967362
-2.35006 will cried -0.0396736
-2.361728 will oblige -0.03967361
-2.357804 will stuteley -0.03967361
-1.490986 herself missus -0.03967361
-1.31649 herself the -0.03967361
-1.183941 herself <unk> -0.03967361
-1.50488 herself away -0.03967361
-1.4592 herself on -0.03967361
-1.446674 herself she -0.03967361
-1.512419 herself unto -0.03967361
-1.123699 speaking her -0.03967361
-1.14384 speaking first -0.03967361
-1.147107 speaking seriously -0.03967362
-1.078179 proceeded in -0.03967361
-1.05517 proceeded to -0.03967361
-1.138091 proceeded more -0.03967361
-1.335753 speak a -0.03967361
-1.364836 speak it -0.03967361
-1.279871 speak to -0.03967362
-1.385156 speak at -0.03967362
-1.415168 speak or -0.03967362
-1.430289 speak again -0.03967361
-1.403379 having the -0.03967361
-0.7800988 having <unk> -0.03967361
-1.61724 having children -0.03967361
-1.559989 having said -0.03967361
-1.608718 having men -0.03967362
-1.619156 having either -0.03967361
-1.623015 having mistaken -0.03967361
-1.622047 having besides -0.03967361
-1.042958 attitude and -0.03967361
-1.05517 attitude to -0.03967361
-1.139163 attitude might -0.03967361
-0.9710154 amazing piece -0.0396736
-0.9712584 amazing meeting -0.03967361
-0.3818209 piece of -0.03967361
-1.147107 piece haven't -0.03967361
-1.201846 news </s>
-0.5926748 news of -0.3407036
-1.311899 news it -0.03967361
-1.31877 news was -0.03967361
-1.016274 end </s>
-1.059914 end of -0.03967361
-1.134537 end we -0.03967361
-0.6833934 decided that -0.03967361
-0.6705569 decided to -0.03967361
-1.447409 decided step -0.03967361
-1.42519 decided what -0.03967361
-1.545545 ask missus -0.03967361
-1.209989 ask <unk> -0.03967361
-1.360485 ask to -0.03967361
-1.512201 ask her -0.03967361
-1.563228 ask anything -0.03967361
-1.568004 ask questions -0.03967362
-1.548289 ask more -0.03967361
-1.525059 ask me -0.03967361
-1.042958 pick and -0.03967361
-1.122665 pick on -0.03967361
-1.141315 pick us -0.03967361
-0.9689884 us </s>
-1.943736 us is -0.03967361
-1.407227 us <unk> -0.03967361
-1.755177 us a -0.03967361
-1.284768 us with -0.03967361
-1.958097 us by -0.03967361
-2.04562 us place -0.03967361
-1.634904 us to -0.03967361
-2.001959 us be -0.03967362
-1.96229 us from -0.03967361
-1.97295 us up -0.03967361
-1.981672 us out -0.03967362
-1.979475 us who -0.03967361
-2.058569 us work -0.03967362
-1.927884 us so -0.03967361
-2.006599 us have -0.03967361
-2.030573 us good -0.03967361
-2.074637 us call -0.03967361
-1.992825 us we -0.03967361
-2.048179 us see -0.03967361
-2.018421 us again -0.03967361
-2.058569 us towards -0.03967361
-2.074637 us carlos -0.03967361
-1.10975 week <unk> -0.03967362
-1.259111 week in -0.03967361
-1.319203 week she -0.03967361
-1.351808 week before -0.03967361
-1.279384 week i -0.03967361
-0.610606 sent her -0.03967362
-1.354619 sent out -0.03967361
-0.6115606 sent me -0.03967361
-1.47875 word by -0.03967362
-1.431783 word that -0.03967361
-0.7280796 word of -0.3407036
-1.346818 word to -0.03967362
-1.495839 word did -0.03967361
-1.514355 word expressing -0.03967362
-1.218616 bring the -0.03967361
-1.355914 bring back -0.03967361
-1.342566 bring up -0.03967362
-1.332399 bring him -0.03967361
-1.358871 bring us -0.03967361
-1.05517 likely to -0.03967361
-1.144563 likely boy -0.03967361
-1.146015 likely path -0.03967361
-1.053835 ten <unk> -0.03967361
-1.250021 ten or -0.03967362
-1.269865 ten millions -0.03967361
-1.270348 ten o'clock -0.03967361
-0.9741672 eleven <unk> -0.03967361
-1.134537 eleven we -0.03967361
-1.146015 eleven o'clock -0.03967361
-0.8797674 age </s>
-0.9333439 age i -0.03967361
-1.405239 turn in -0.03967361
-1.377827 turn of -0.03967361
-0.4975726 turn out -0.03967361
-1.488694 turn they -0.03967361
-1.511575 turn thy -0.03967362
-0.924088 read in -0.03967361
-0.9078251 read to -0.03967361
-1.168367 paper </s>
-1.298579 paper that -0.03967361
-1.231699 paper of -0.03967361
-1.298579 paper it -0.03967361
-1.357685 paper how -0.03967362
-1.285213 wife </s>
-1.370121 wife of -0.03967361
-1.531192 wife up -0.03967361
-1.529431 wife or -0.03967361
-1.566087 wife having -0.03967361
-1.571862 wife note -0.03967362
-1.571862 wife distinctly -0.03967361
-1.565132 wife became -0.03967361
-1.407137 island is -0.03967362
-1.382016 island with -0.03967361
-1.364836 island it -0.03967361
-1.37457 island was -0.03967361
-1.382642 island you -0.03967361
-1.442345 island took -0.03967361
-1.337075 took <unk> -0.03967361
-1.595604 took a -0.03967361
-1.483296 took and -0.03967362
-1.00101 took it -0.03967362
-1.019227 took up -0.03967361
-1.75367 took their -0.03967361
-1.715519 took no -0.03967361
-1.718957 took me -0.03967362
-1.720109 took my -0.03967361
-1.775389 took herself -0.03967361
-1.761213 took upon -0.03967361
-0.721231 fire and -0.03967361
-1.346818 fire to -0.03967361
-1.455902 fire she -0.03967361
-1.460377 fire his -0.03967362
-1.497236 fire again -0.03967361
-1.514355 fire hereafter -0.03967362
-0.924088 purpose in -0.03967361
-0.9676276 purpose marilla -0.03967361
-0.2618267 nearly <unk> -0.03967361
-0.6917409 nearly all -0.03967361
-1.571986 think </s>
-1.664852 think the -0.03967361
-1.112987 think <unk> -0.03967361
-1.836748 think that -0.03967361
-0.9692256 think of -0.1365836
-1.236263 think it -0.03967361
-1.888041 think she -0.03967361
-1.955896 think there -0.03967361
-1.004078 think so -0.03967361
-1.988069 think i'm -0.03967361
-1.944619 think what -0.03967361
-1.224594 think i -0.03967361
-1.8743 think you -0.03967361
-2.002362 think yes -0.03967362
-2.022817 think you're -0.03967361
-2.028567 think theirs -0.03967361
-1.10975 you're <unk> -0.03967362
-1.328508 you're on -0.03967361
-1.344858 you're out -0.03967362
-1.364845 you're getting -0.03967361
-1.366654 you're doing -0.03967361
-0.8486216 foolish <unk> -0.03967361
-0.9690763 foolish thing -0.03967362
-1.773125 thing is -0.03967362
-1.657752 thing a -0.03967361
-1.758685 thing had -0.03967362
-1.066697 thing was -0.03967361
-0.7959544 thing to -0.03967361
-1.793948 thing about -0.03967361
-1.815818 thing after -0.03967361
-1.089958 thing that's -0.3407036
-1.759779 thing said -0.03967361
-1.82463 thing i've -0.03967361
-1.836229 thing suddenly -0.03967361
-1.203409 don't <unk> -0.03967361
-2.120946 don't always -0.03967362
-2.116622 don't tell -0.03967361
-2.118779 don't make -0.03967361
-1.130051 don't know -0.1858017
-1.129386 don't mind -0.03967361
-2.052719 don't they -0.03967361
-0.9553578 don't you -0.03967361
-2.11234 don't ever -0.03967362
-1.391478 don't ask -0.03967361
-1.388651 don't think -0.03967362
-2.143237 don't deny -0.03967361
-2.116622 don't say -0.03967361
-2.129726 don't believe -0.03967361
-1.391073 don't understand -0.03967361
-2.140956 don't dare -0.03967361
-2.127514 don't want -0.03967362
-2.134183 don't care -0.03967361
-2.101818 don't graham -0.03967361
-1.277633 strange <unk> -0.03967361
-1.429214 strange and -0.03967361
-1.5205 strange in -0.03967361
-1.595489 strange it -0.03967361
-1.459554 strange to -0.03967361
-1.693818 strange an -0.03967361
-1.716198 strange man -0.03967361
-1.734126 strange since -0.03967362
-1.739794 strange girl -0.03967361
-1.734126 strange child -0.03967361
-1.741223 strange answer -0.0396736
-1.746986 strange harsh -0.03967361
-1.04677 child </s>
-1.822546 child is -0.03967361
-1.006531 child <unk> -0.03967361
-1.872913 child into -0.03967361
-1.766495 child with -0.03967361
-1.535622 child and -0.03967361
-1.584199 child of -0.03967361
-1.750608 child was -0.03967361
-1.773289 child at -0.03967361
-1.854365 child if -0.03967361
-1.903234 child mind -0.03967362
-1.874639 child did -0.03967362
-1.869482 child do -0.03967361
-1.899555 child put -0.03967361
-1.922111 child quickly -0.03967362
-1.922111 child responded -0.03967362
-1.144563 single night -0.03967361
-1.14384 single thing -0.03967361
-1.146742 single fault -0.03967361
-0.1289313 sort of -0.2157649
-1.104936 parents </s>
-1.182177 parents in -0.03967361
-1.257944 parents are -0.03967361
-1.204051 parents he -0.03967361
-0.9538455 another <unk> -0.03967362
-1.009933 another and -0.03967361
-1.838969 another word -0.03967361
-1.842087 another case -0.03967361
-1.842087 another wood -0.03967361
-1.842087 another surprise -0.03967361
-1.826716 another light -0.03967361
-1.842087 another sword -0.03967361
-1.840525 another story -0.03967361
-1.837418 another excuse -0.03967362
-1.843654 another scattering -0.03967362
-1.843654 another flowed -0.03967361
-1.843654 another purse -0.03967361
-1.499925 case where -0.03967362
-1.438757 case with -0.03967361
-1.332943 case of -0.03967361
-1.419233 case it -0.03967361
-1.492598 case over -0.03967361
-1.394066 case i -0.03967361
-1.510733 case against -0.03967361
-0.5675546 couldn't <unk> -0.03967361
-1.353915 couldn't be -0.03967362
-1.347856 couldn't they -0.03967361
-1.324433 couldn't you -0.03967361
-0.9587997 sake not -0.3407036
-0.9693182 sake princess -0.03967361
-0.6632953 seemed <unk> -0.03967361
-0.4081206 seemed to -0.2157649
-1.680441 seemed not -0.03967362
-1.672594 seemed so -0.03967361
-1.710892 seemed neither -0.03967361
-0.9455414 neither was -0.03967362
-0.9078251 neither to -0.03967361
-0.8990917 deny and -0.03967361
-0.9695603 deny there's -0.03967361
-1.521778 say </s>
-2.023293 say rachel -0.03967361
-1.418197 say <unk> -0.03967361
-1.744163 say a -0.03967361
-1.596293 say and -0.03967361
-1.228914 say that -0.03967361
-1.919142 say all -0.03967361
-1.990603 say never -0.03967361
-2.007731 say until -0.03967361
-1.001759 say so -0.03967361
-2.01879 say next -0.03967361
-1.976151 say now -0.03967361
-1.976151 say here -0.03967361
-1.986424 say nothing -0.03967361
-1.980231 say i'm -0.03967362
-1.215319 say i -0.3407036
-1.891545 say said -0.03967361
-1.994822 say come -0.03967361
-2.023293 say unto -0.03967361
-1.04223 i've <unk> -0.03967361
-1.830675 i've had -0.03967361
-0.9075371 i've never -0.03967362
-1.908811 i've always -0.03967361
-1.911627 i've heard -0.03967361
-0.907817 i've been -0.03967361
-1.908811 i've got -0.03967361
-1.851076 i've no -0.03967361
-1.886919 i've only -0.03967361
-1.903234 i've ever -0.03967361
-1.917314 i've nearly -0.03967361
-1.166908 i've come -0.03967362
-1.704328 myself with -0.03967361
-1.522535 myself to -0.03967361
-1.723133 myself but -0.03967362
-1.763378 myself not -0.03967361
-1.064783 myself at -0.03967361
-1.828462 myself since -0.03967361
-1.807737 myself i'm -0.03967361
-1.769037 myself what -0.03967361
-1.630076 myself i -0.03967361
-1.815592 myself has -0.03967361
-1.826832 myself whether -0.03967361
-1.828462 myself better -0.03967361
-1.840046 myself covered -0.03967362
-1.840046 myself within -0.03967361
-0.9078251 terrible to -0.03967361
-0.9695603 terrible set -0.03967362
-1.60666 see </s>
-2.101818 see where -0.03967361
-1.064427 see the -0.03967361
-1.500297 see <unk> -0.03967361
-1.837928 see a -0.03967361
-1.339476 see that -0.03967361
-1.801914 see in -0.03967361
-1.363568 see her -0.03967361
-2.12301 see everything -0.03967362
-2.079424 see them -0.03967361
-1.375486 see if -0.03967361
-1.869057 see he -0.03967362
-1.365251 see him -0.03967361
-2.037829 see which -0.03967361
-0.9617469 see what -0.03967362
-1.853214 see i -0.03967361
-1.95013 see you -0.03967361
-2.031919 see my -0.03967361
-2.11821 see jesus -0.03967361
-2.097246 see graham -0.03967361
-2.135245 see morrel -0.0396736
-1.121217 gave a -0.03967361
-1.667861 gave in -0.03967361
-1.601717 gave to -0.03967361
-1.151342 gave her -0.03967361
-1.853953 gave up -0.03967361
-1.839757 gave all -0.03967361
-1.152488 gave him -0.03967361
-1.899555 gave off -0.03967362
-1.155656 gave me -0.3407036
-1.902772 gave another -0.03967361
-1.906014 gave way -0.03967361
-1.920907 gave rise -0.03967361
-1.919227 gave amory -0.03967361
-1.922594 gave appendicitis -0.03967361
-0.9078251 close to -0.03967361
-0.9690763 close enough -0.0396736
-1.114814 england at -0.03967361
-1.13066 england or -0.03967361
-1.091437 england i -0.03967361
-1.151475 can't <unk> -0.03967361
-1.42542 can't be -0.03967361
-1.422663 can't we -0.03967361
-1.444508 can't imagine -0.03967361
-1.444508 can't fall -0.03967361
-1.445231 can't return -0.03967361
-1.168367 different </s>
-1.10975 different <unk> -0.03967361
-1.339718 different from -0.03967361
-1.363044 different thing -0.03967361
-1.36847 different form -0.03967361
-1.051061 ourselves the -0.03967361
-1.13631 ourselves well -0.03967361
-1.147107 ourselves entirely -0.03967361
-1.137899 hope and -0.03967361
-1.214989 hope that -0.03967361
-1.214989 hope it -0.03967361
-1.271317 hope everybody -0.03967362
-1.117983 tone that -0.03967361
-0.3818209 tone of -0.03967361
-0.9078251 painful to -0.03967361
-0.9710154 painful doubts -0.03967361
-1.016274 doubts </s>
-1.042958 doubts and -0.03967361
-1.059914 doubts of -0.03967361
-1.449136 does the -0.03967361
-1.505196 does in -0.03967361
-1.5719 does for -0.03967361
-0.6498923 does not -0.5167949
-1.542671 does he -0.03967361
-1.658242 does make -0.03967361
-1.53406 does i -0.03967361
-1.662042 does really -0.03967361
-0.9078251 duty to -0.03967361
-0.9496847 duty as -0.03967361
-0.646233 risks in -0.03967361
-0.590242 near the -0.03967361
-1.250057 near to -0.03967361
-1.364845 near everything -0.03967361
-1.368712 near perfection -0.03967361
-1.144926 people's having -0.03967361
-1.143478 people's money -0.03967361
-1.146015 people's virtue -0.03967361
-0.9078251 comes to -0.03967361
-0.9671459 comes our -0.03967361
-0.9111986 wells of -0.03967361
-0.961881 wells were -0.03967361
-0.924088 dreaded in -0.03967361
-0.9583275 dreaded all -0.03967361
-0.8797674 dream </s>
-0.9111986 dream of -0.03967361
-0.2149178 warn you -0.03967362
-0.4118622 new <unk> -0.03967362
-1.808886 new house -0.03967361
-1.804607 new last -0.03967361
-1.811042 new morning -0.03967361
-0.6391088 new york -0.03967361
-1.814658 new reflections -0.03967361
-0.4064617 family <unk> -0.03967361
-1.358269 family in -0.03967361
-1.441627 family place -0.03967361
-1.447409 family died -0.03967361
-1.016274 died </s>
-1.078179 died in -0.03967361
-1.137022 died before -0.03967361
-0.9741672 liked <unk> -0.03967361
-1.05517 liked to -0.03967361
-1.146379 liked within -0.03967361
-1.310779 stay </s>
-1.442567 stay in -0.03967362
-1.613076 stay until -0.03967361
-1.597382 stay here -0.03967361
-1.617359 stay didn't -0.03967362
-1.5773 stay they -0.03967361
-1.52906 stay you -0.03967361
-1.620599 stay outside -0.03967361
-1.616284 stay count -0.03967361
-0.8486216 arrival <unk> -0.03967361
-0.9508427 arrival she -0.03967361
-0.9555056 sensation so -0.03967362
-0.9710154 sensation second -0.03967361
-1.151475 second <unk> -0.3407036
-1.37457 second was -0.03967361
-1.279871 second to -0.03967361
-1.435921 second time -0.03967361
-1.428893 second will -0.03967361
-1.447409 second age -0.03967361
-1.216467 none </s>
-1.287859 none of -0.03967361
-1.426806 none are -0.03967361
-1.445956 none alive -0.03967361
-1.43663 none i've -0.03967361
-1.443065 none else -0.03967361
-1.249299 really <unk> -0.03967361
-1.538523 really it -0.03967361
-1.578934 really but -0.03967361
-1.618072 really they -0.03967361
-1.662281 really great -0.03967362
-1.665875 really seem -0.03967361
-1.663476 really expected -0.03967361
-1.664674 really wonderful -0.03967362
-1.668288 really begin -0.03967361
-1.668288 really ignorant -0.03967361
-1.120946 sorry for -0.03967361
-0.3860958 sorry i -0.03967361
-1.529402 poor </s>
-1.060942 poor <unk> -0.03967361
-1.78601 poor it -0.03967361
-1.631454 poor to -0.03967361
-1.840452 poor but -0.03967361
-1.211587 poor people -0.03967361
-1.214769 poor girl -0.0396736
-1.955623 poor young -0.03967361
-0.9540297 poor child -0.03967361
-1.945198 poor poor -0.03967362
-1.957385 poor prince -0.03967361
-1.946918 poor question -0.03967361
-1.966304 poor poverty -0.03967361
-1.964505 poor douglas -0.03967361
-1.953868 poor princess -0.03967361
-1.335537 mistake had -0.03967362
-0.6020462 mistake he -0.03967362
-1.355325 mistake matthew -0.03967361
-1.349711 mistake about -0.03967361
-1.083916 expect to -0.03967361
-0.3903705 expect him -0.3407036
-1.016274 grandfather </s>
-1.078179 grandfather in -0.03967361
-1.145652 grandfather each -0.03967361
-1.099106 seems <unk> -0.03967361
-0.5002403 seems to -0.03967361
-1.248638 seems so -0.03967361
-0.9048946 somehow the -0.03967361
-0.9695603 somehow there's -0.03967361
-1.550072 believe that -0.03967361
-0.8778351 believe in -0.03967361
-1.550072 believe it -0.03967361
-1.590006 believe his -0.03967362
-1.601991 believe so -0.03967362
-1.529026 believe he -0.03967361
-1.619151 believe when -0.03967361
-1.574817 believe you -0.03967361
-1.634995 believe your -0.03967361
-1.051061 loved the -0.03967361
-1.05517 loved to -0.03967361
-1.139163 loved their -0.03967361
-1.053835 somewhat <unk> -0.03967361
-1.153147 somewhat to -0.03967361
-1.25983 somewhat more -0.03967361
-1.267935 somewhat strange -0.03967361
-0.9078251 relief to -0.03967361
-0.9448547 relief for -0.03967361
-1.145652 latter part -0.0396736
-1.144926 latter felt -0.03967361
-1.146742 latter personage -0.03967361
-0.2729955 under the -0.0396736
-0.8139005 under his -0.03967361
-1.555228 under my -0.03967361
-1.1591 influence of -0.03967361
-1.153147 influence to -0.03967361
-1.220563 influence for -0.03967361
-1.259358 influence over -0.03967362
-1.494999 things the -0.03967361
-1.472842 things and -0.03967361
-1.661071 things that -0.03967361
-1.823706 things found -0.03967361
-1.77933 things if -0.03967361
-1.793624 things are -0.03967361
-1.631185 things he -0.03967361
-1.765492 things which -0.03967361
-1.776217 things about -0.03967361
-1.618056 things i -0.03967361
-1.697028 things you -0.03967361
-1.800132 things like -0.03967361
-1.784043 things we -0.03967361
-1.841365 things difficult -0.03967361
-1.843171 things alas -0.03967361
-0.9661838 safely back -0.03967362
-0.9616432 safely out -0.03967361
-1.10975 hung <unk> -0.03967362
-1.338584 hung by -0.03967361
-1.315965 hung at -0.03967361
-1.344858 hung out -0.03967361
-1.366654 hung fire -0.03967362
-1.261141 air <unk> -0.3407036
-0.8178661 air and -0.03967361
-1.528475 air was -0.03967361
-1.622047 air finally -0.03967361
-1.488302 air i -0.03967361
-1.573609 air no -0.03967361
-1.599442 air like -0.03967362
-1.616284 air became -0.03967362
-1.151475 sweet <unk> -0.03967361
-1.335753 sweet a -0.03967361
-1.382016 sweet with -0.03967361
-1.443065 sweet voice -0.03967362
-1.445956 sweet cold -0.03967362
-1.447409 sweet play -0.03967362
-0.6216634 breath </s>
-0.8361507 breath <unk> -0.03967361
-1.456576 breath and -0.03967361
-1.487845 breath of -0.03967361
-1.478992 breath to -0.03967361
-1.601576 breath she -0.03967361
-1.548968 breath i -0.03967361
-0.5186779 many <unk> -0.03967361
-1.570895 many voices -0.03967361
-1.572347 many apple -0.03967362
-1.570895 many self -0.03967362
-1.57017 many words -0.03967361
-1.57017 many days -0.03967362
-0.9496847 purple as -0.03967361
-0.9695603 purple while -0.03967362
-0.9362719 while </s>
-0.7103813 while the -0.03967361
-1.653316 while it -0.03967361
-1.558174 while to -0.03967362
-0.9728251 while he -0.3407036
-0.9947121 while ago -0.3407036
-1.743136 while monte -0.03967362
-0.924088 summer in -0.03967362
-0.9690763 summer life -0.03967361
-1.233706 pity but -0.03967361
-1.242694 pity him -0.03967361
-1.254198 pity then -0.03967361
-1.227523 pity you -0.03967361
-1.141212 eight </s>
-0.5179116 eight miles -0.03967362
-1.270954 eight o'clock -0.03967361
-1.05517 miles to -0.03967361
-1.139163 miles i'm -0.03967361
-1.129959 miles when -0.03967361
-0.8799257 again </s>
-2.065661 again just -0.03967361
-1.040469 again the -0.2157649
-1.503627 again <unk> -0.03967361
-1.064324 again a -0.2157649
-1.681723 again and -0.03967362
-1.261059 again to -0.03967361
-1.95737 again but -0.03967361
-1.326505 again at -0.03967362
-2.053533 again matthew -0.03967361
-2.065661 again might -0.03967361
-1.844117 again i -0.03967361
-2.035954 again then -0.03967362
-2.057538 again only -0.03967361
-2.039799 again we -0.03967361
-2.011755 again my -0.03967361
-2.086659 again see -0.03967361
-2.113274 again becoming -0.03967362
-2.113274 again visit -0.03967362
-1.431573 bit into -0.03967361
-1.406584 bit had -0.03967362
-0.6664613 bit of -0.2157649
-1.445231 bit afraid -0.03967361
-1.447651 bit sick -0.03967361
-1.22186 wood was -0.03967361
-1.153147 wood to -0.03967361
-1.266014 wood through -0.03967361
-1.247259 wood not -0.03967361
-1.273495 drive a -0.03967361
-1.361251 drive through -0.03967362
-1.339718 drive from -0.03967361
-1.355325 drive after -0.03967361
-1.338584 drive me -0.03967361
-1.145652 uncomfortable feeling -0.03967362
-1.146015 uncomfortable position -0.03967361
-1.146015 uncomfortable seat -0.03967362
-1.364836 feeling that -0.03967361
-1.287859 feeling of -0.03967361
-1.37457 feeling was -0.03967361
-1.41924 feeling about -0.03967361
-1.432392 feeling very -0.03967361
-1.438052 feeling too -0.03967361
-0.3890964 laughing at -0.03967361
-1.141555 laughing now -0.03967361
-1.113126 personage with -0.03967361
-1.14384 personage until -0.03967361
-1.115152 personage as -0.03967361
-1.104936 figure </s>
-1.137899 figure and -0.03967361
-1.22186 figure was -0.03967361
-1.204051 figure he -0.03967361
-0.9741672 iron <unk> -0.03967361
-1.146015 iron gray -0.03967361
-1.144926 iron bed -0.03967361
-0.3896481 touched his -0.03967361
-1.145652 touched between -0.03967361
-0.9712584 stooping shoulders -0.03967362
-0.9712584 stooping forward -0.03967361
-0.2080924 shoulders </s>
-0.9048946 enjoyed the -0.03967361
-0.9592723 enjoyed my -0.03967361
-0.8486216 fashion <unk> -0.03967361
-0.9705298 fashion except -0.03967361
-1.338584 except by -0.03967361
-1.231699 except of -0.03967361
-1.32301 except his -0.03967361
-1.359464 except marilla -0.03967361
-1.36605 except during -0.03967362
-0.4193635 during the -0.2157649
-1.42519 during this -0.03967361
-1.425651 during which -0.03967361
-1.438289 during these -0.03967361
-1.051061 met the -0.03967361
-1.042958 met and -0.03967361
-1.144926 met women -0.03967361
-1.336164 women and -0.03967361
-1.465027 women it -0.03967361
-1.533847 women who -0.03967362
-1.535627 women were -0.03967361
-1.445761 women he -0.03967361
-1.551051 women after -0.03967361
-1.562279 women gave -0.03967361
-1.568965 women except -0.03967361
-0.63758 nod to -0.03967361
-1.216568 prince </s>
-1.267489 prince the -0.03967361
-1.415994 prince <unk> -0.1188549
-1.614716 prince and -0.03967361
-1.747451 prince in -0.03967361
-1.867988 prince it -0.03967361
-1.896701 prince was -0.03967361
-1.65746 prince to -0.03967361
-1.949926 prince but -0.03967361
-2.095561 prince could -0.03967361
-2.125924 prince went -0.03967362
-1.825033 prince he -0.03967361
-2.092638 prince now -0.03967361
-1.806556 prince i -0.03967361
-1.97585 prince said -0.03967362
-2.027814 prince when -0.03967361
-2.101466 prince very -0.3407036
-2.078312 prince do -0.03967361
-2.129081 prince looked -0.03967362
-2.132261 prince oh -0.03967362
-2.135464 prince saw -0.03967361
-2.122791 prince yes -0.03967361
-2.148518 prince felt -0.03967361
-2.129081 prince put -0.03967362
-1.42051 prince edward -0.3407036
-2.158572 prince however -0.03967361
-2.165407 prince ventured -0.03967362
-2.151843 prince appeared -0.03967362
-2.168865 prince encouraged -0.03967362
-0.6703499 edward island -0.03967361
-0.9706042 whether the -0.03967361
-1.708929 whether her -0.03967361
-1.727725 whether this -0.03967361
-1.011487 whether she -0.03967361
-1.735261 whether there -0.03967361
-0.9983553 whether he -0.03967361
-1.619639 whether i -0.03967361
-1.777419 whether i'd -0.03967361
-1.679303 whether you -0.03967361
-1.754124 whether some -0.03967362
-0.8158002 full <unk> -0.03967361
-1.410778 full and -0.03967361
-1.488325 full in -0.03967361
-1.447169 full of -0.03967361
-1.637017 full well -0.03967361
-1.560991 full for -0.03967361
-1.599196 full on -0.03967361
-1.667442 full soft -0.03967361
-1.667442 full moon -0.03967361
-1.042958 soft and -0.03967361
-1.145652 soft brown -0.0396736
-1.147107 soft soil -0.03967361
-0.2572243 brown <unk> -0.03967361
-1.43169 brown or -0.03967361
-1.443786 brown hand -0.03967361
-1.247718 worn by -0.03967361
-1.214989 worn it -0.03967361
-1.248638 worn from -0.03967361
-1.265057 worn ever -0.03967361
-1.241932 twenty <unk> -0.03967362
-1.42584 twenty in -0.03967361
-1.554645 twenty very -0.03967361
-1.570411 twenty years -0.03967361
-0.8181721 twenty four -0.3407036
-1.567884 twenty thousand -0.03967361
-1.572105 twenty seventh -0.03967362
-0.9306792 lacking a -0.03967361
-0.924088 lacking in -0.03967362
-1.228731 sign that -0.03967361
-0.5049492 sign in -0.03967362
-1.184852 sign of -0.03967361
-0.9078251 tied to -0.03967361
-0.952469 tied his -0.03967361
-1.407137 horse is -0.03967361
-1.151475 horse <unk> -0.03967361
-1.319195 horse in -0.03967361
-1.414493 horse which -0.03967361
-1.446682 horse sense -0.03967361
-1.444508 horse should -0.03967361
-1.267935 small white -0.03967361
-1.270348 small bright -0.03967362
-1.268417 small boy -0.03967361
-1.271317 small farm -0.03967361
-0.9306792 hotel a -0.03967361
-0.8990917 hotel and -0.03967361
-0.9455414 platform was -0.03967361
-0.9693182 platform towards -0.03967361
-0.924088 creature in -0.03967362
-0.9333439 creature i -0.03967361
-0.9494535 shingles at -0.03967362
-0.9333439 shingles i -0.03967361
-0.9710154 extreme end -0.03967361
-0.9712584 extreme impertinence -0.03967361
-0.8797674 quickly </s>
-0.9496847 quickly as -0.03967361
-1.397939 possible the -0.03967361
-1.559445 possible without -0.03967361
-1.555228 possible now -0.03967361
-0.8066651 possible you -0.03967361
-1.572347 possible theory -0.03967361
-0.8189416 possible worlds -0.03967361
-0.4820174 hardly <unk> -0.03967361
-1.246915 hardly had -0.03967362
-1.261605 hardly have -0.03967361
-0.128745 failed to -0.03967361
-1.176 notice the -0.03967361
-0.5012274 notice of -0.03967361
-1.254898 notice when -0.03967361
-1.05517 expression to -0.03967362
-1.116848 expression she -0.03967361
-1.13031 expression which -0.03967362
-1.397951 waiting was -0.03967361
-0.6844805 waiting for -0.03967361
-0.6930199 waiting room -0.03967361
-1.446439 waiting till -0.03967362
-0.8797674 somebody </s>
-0.9698025 somebody else -0.03967361
-0.9048946 encountered the -0.03967361
-0.9590359 encountered by -0.03967362
-0.6048045 stationmaster <unk> -0.03967362
-0.9741672 office <unk> -0.03967361
-1.042958 office and -0.03967361
-1.091437 office i -0.03967361
-1.104936 hour </s>
-1.137899 hour and -0.03967361
-1.268417 hour does -0.03967361
-1.271317 hour ago -0.03967362
-1.13277 ago about -0.03967361
-1.091437 ago i -0.03967361
-1.141675 ago answered -0.03967361
-1.153225 answered </s>
-0.7087475 answered the -0.1365836
-1.87295 answered with -0.03967361
-1.836748 answered that -0.03967362
-1.944619 answered this -0.03967361
-1.248575 answered she -0.03967361
-1.264223 answered if -0.03967361
-1.805637 answered he -0.03967361
-1.791996 answered i -0.03967361
-1.935181 answered no -0.03967361
-1.951028 answered they -0.03967361
-2.017142 answered quite -0.03967362
-2.020917 answered feeling -0.03967362
-2.028567 answered softly -0.03967362
-2.009689 answered robin -0.03967362
-2.024725 answered warrenton -0.03967361
-0.8486216 brisk <unk> -0.03967361
-0.9707725 brisk mental -0.03967362
-1.139521 dropped back -0.03967361
-1.078179 dropped in -0.03967361
-1.142035 dropped off -0.03967361
-1.087607 she's a -0.03967361
-1.145652 she's sitting -0.03967361
-1.143478 she's got -0.03967361
-1.554597 room </s>
-1.864686 room with -0.03967361
-0.8122563 room and -0.03967361
-1.676113 room of -0.03967361
-1.185312 room to -0.03967361
-2.006354 room those -0.03967362
-1.886299 room but -0.03967361
-1.238095 room for -0.03967361
-1.873203 room as -0.03967361
-1.225333 room he -0.03967361
-1.981744 room now -0.03967361
-1.929769 room no -0.03967361
-1.972638 room do -0.03967361
-2.008306 room than -0.03967362
-2.022222 room filled -0.03967361
-2.026282 room you'll -0.03967361
-2.012237 room alone -0.03967362
-1.016274 preferred </s>
-0.9741672 preferred <unk> -0.03967361
-1.05517 preferred to -0.03967361
-1.104936 outside </s>
-1.1591 outside of -0.03967361
-1.252337 outside who -0.03967361
-1.261249 outside two -0.03967361
-0.9048946 charge the -0.03967361
-0.954569 charge said -0.03967361
-1.051061 sister the -0.03967361
-0.9741672 sister <unk> -0.03967361
-1.133123 sister were -0.03967362
-1.216467 presently </s>
-1.335753 presently a -0.03967361
-1.34947 presently he -0.03967361
-1.442345 presently that's -0.03967361
-1.441627 presently give -0.03967361
-1.445956 presently whispered -0.0396736
-1.143478 haven't got -0.03967361
-1.142756 haven't looked -0.03967362
-1.134537 haven't we -0.03967361
-1.10975 orphans <unk> -0.03967361
-1.327403 orphans had -0.03967361
-1.298579 orphans it -0.03967361
-1.336888 orphans no -0.03967361
-1.36847 orphans concealed -0.03967362
-0.8486216 concealed <unk> -0.03967361
-0.9700448 concealed every -0.03967361
-0.5322936 should be -0.1365836
-1.693997 should never -0.03967361
-1.708232 should pass -0.03967361
-1.697748 should go -0.03967361
-1.69869 should say -0.03967361
-1.709197 should throw -0.03967361
-1.710165 should fail -0.03967361
-1.710165 should reason -0.03967361
-1.550592 come </s>
-1.454073 come <unk> -0.03967361
-0.5844482 come to -0.1066204
-1.203064 come for -0.03967362
-1.964674 come even -0.03967361
-1.848358 come at -0.03967362
-1.922345 come out -0.03967361
-1.975057 come along -0.03967361
-1.878137 come said -0.03967362
-1.927024 come then -0.03967361
-1.969835 come myself -0.03967361
-1.987493 come true -0.03967361
-1.961267 come upon -0.03967362
-1.987493 come forth -0.03967361
-1.983904 come across -0.03967361
-0.7601806 understand </s>
-1.374482 understand the -0.03967361
-1.501049 understand as -0.03967361
-1.522457 understand him -0.03967361
-1.516445 understand said -0.03967362
-1.497463 understand you -0.03967362
-1.559563 understand i've -0.03967361
-1.127208 hand </s>
-1.630317 hand the -0.03967361
-0.7617129 hand <unk> -0.03967361
-1.606969 hand and -0.03967361
-1.828833 hand was -0.03967361
-1.166007 hand to -0.2157649
-1.886637 hand on -0.03967361
-1.853897 hand as -0.03967361
-1.958773 hand over -0.03967362
-1.775427 hand he -0.03967361
-1.761302 hand i -0.03967361
-1.981245 hand don't -0.03967361
-1.989001 hand than -0.03967361
-1.992932 hand towards -0.03967361
-2.00902 hand extended -0.03967361
-2.00902 hand bills -0.03967362
-2.006976 hand paredes's -0.03967361
-1.13631 situation well -0.03967361
-1.144926 situation far -0.03967361
-1.145652 situation answer -0.0396736
-1.373767 better </s>
-1.290692 better <unk> -0.03967361
-0.9006751 better to -0.03967361
-1.620327 better but -0.03967361
-1.687281 better nothing -0.03967362
-1.632309 better said -0.03967361
-1.6954 better question -0.03967361
-1.700108 better keep -0.03967361
-1.696572 better light -0.03967361
-1.689585 better still -0.03967361
-0.841796 question </s>
-1.828337 question is -0.03967361
-1.574181 question the -0.03967361
-1.869588 question be -0.03967362
-1.856952 question an -0.03967361
-1.871194 question well -0.03967361
-1.834207 question all -0.03967361
-1.872806 question are -0.03967362
-1.856952 question were -0.03967361
-1.874423 question before -0.03967361
-1.872806 question have -0.03967361
-1.155491 question what -0.03967361
-1.885919 question very -0.03967361
-1.872806 question do -0.03967361
-1.897727 question don't -0.03967361
-1.10975 master <unk> -0.03967361
-1.327955 master said -0.03967361
-1.364845 master though -0.03967361
-1.352977 master will -0.03967361
-1.367864 master carelessly -0.03967361
-0.9741672 carelessly <unk> -0.03967361
-1.095301 carelessly he -0.03967361
-1.091437 carelessly i -0.03967361
-1.104936 dare </s>
-1.247259 dare not -0.03967361
-1.204051 dare he -0.03967361
-1.266014 dare say -0.03967361
-0.09280815 able to -0.09766556
-0.9671459 explain why -0.03967361
-0.9710154 explain she's -0.03967361
-1.104936 tongue </s>
-1.1591 tongue of -0.03967361
-1.270348 tongue none -0.03967361
-1.264579 tongue answered -0.03967362
-1.016274 certain </s>
-0.9741672 certain <unk> -0.03967361
-1.143478 certain way -0.03967361
-1.053835 wanted <unk> -0.03967361
-1.247718 wanted by -0.03967362
-1.153147 wanted to -0.03967362
-1.204051 wanted he -0.03967361
-1.218421 walked <unk> -0.03967361
-1.499339 walked back -0.03967361
-1.480093 walked from -0.03967361
-0.7574975 walked over -0.3407036
-1.497236 walked some -0.03967362
-1.513628 walked slowly -0.03967361
-0.9597455 unfortunate this -0.03967361
-0.9645055 unfortunate matthew -0.03967361
-0.9448547 harder for -0.03967362
-0.9712584 harder bygones -0.03967361
-1.978406 than one -0.03967361
-1.230953 than the -0.03967361
-1.141767 than <unk> -0.03967361
-1.79217 than a -0.03967361
-1.26305 than in -0.03967361
-1.293718 than it -0.03967361
-1.8838 than was -0.03967361
-1.676395 than to -0.03967362
-1.920889 than she -0.03967361
-2.074846 than anything -0.03967361
-1.823299 than he -0.03967361
-2.025023 than any -0.03967361
-1.807456 than i -0.03967361
-1.305393 than you -0.03967361
-2.022888 than your -0.03967361
-1.340212 than ever -0.03967362
-2.067706 than five -0.03967361
-2.082105 than once -0.03967362
-2.082105 than mine -0.03967361
-2.096998 than theirs -0.03967362
-2.09448 than pleasure -0.03967361
-1.141212 walk </s>
-0.5150967 walk up -0.03967361
-1.272045 walk unconsciously -0.03967361
-1.1591 demand of -0.03967361
-1.220563 demand for -0.03967362
-1.266014 demand five -0.03967361
-1.271802 demand perfection -0.03967361
-1.099106 wasn't <unk> -0.03967361
-0.5068222 wasn't a -0.03967361
-1.272045 wasn't appendicitis -0.03967362
-1.016274 groaned </s>
-1.078179 groaned in -0.03967361
-1.146742 groaned beneath -0.03967361
-1.016274 spirit </s>
-1.042958 spirit and -0.03967361
-1.115152 spirit as -0.03967361
-1.770059 turned into -0.03967361
-1.674365 turned with -0.03967361
-1.459923 turned and -0.03967361
-1.795246 turned away -0.03967361
-1.710154 turned on -0.03967361
-1.744808 turned up -0.03967361
-1.750619 turned about -0.03967361
-1.806741 turned almost -0.03967362
-1.736235 turned my -0.03967362
-1.80508 turned herself -0.03967361
-1.800135 turned towards -0.03967361
-1.787217 turned upon -0.03967362
-1.78247 turned graham -0.03967361
-1.813449 turned yellow -0.03967362
-1.016274 gently </s>
-1.141675 gently down -0.03967361
-1.091437 gently i -0.03967361
-0.4788618 towards the -0.03967362
-0.9143139 towards those -0.03967361
-1.623713 towards her -0.03967361
-1.626341 towards him -0.03967361
-1.65777 towards us -0.03967361
-1.664914 towards morning -0.03967362
-0.4993784 watching the -0.03967361
-1.180109 watching to -0.03967362
-1.250021 watching him -0.03967361
-1.180222 eyes </s>
-1.133246 eyes <unk> -0.03967361
-1.63529 eyes and -0.03967361
-1.852292 eyes that -0.03967361
-1.875657 eyes was -0.03967361
-1.224113 eyes to -0.03967361
-1.91818 eyes but -0.03967361
-1.30158 eyes on -0.03967361
-2.050641 eyes can -0.03967361
-1.903538 eyes as -0.03967361
-1.31375 eyes were -0.03967361
-1.310471 eyes which -0.03967361
-1.978428 eyes when -0.03967362
-2.052892 eyes looked -0.03967361
-2.078449 eyes showed -0.03967361
-2.073689 eyes filled -0.03967361
-2.064323 eyes whose -0.03967361
-2.041754 eyes still -0.03967361
-2.078449 eyes remained -0.03967361
-2.078449 eyes shut -0.03967361
-1.407781 short the -0.03967361
-1.249299 short <unk> -0.03967362
-1.417179 short to -0.03967361
-1.661089 short red -0.03967361
-1.643596 short very -0.03967362
-1.659901 short while -0.03967361
-1.648192 short our -0.03967362
-1.668288 short space -0.03967362
-1.66708 short bat -0.03967361
-1.668288 short save -0.03967362
-1.05517 wincey to -0.03967361
-1.116848 wincey she -0.03967361
-1.144926 wincey dress -0.03967362
-0.9306792 wore a -0.03967361
-0.9548029 wore on -0.03967361
-1.201846 hat </s>
-0.5879833 hat and -0.03967361
-1.343253 hat all -0.03967361
-1.368712 hat extending -0.03967361
-0.4993784 beneath the -0.03967361
-1.258062 beneath an -0.03967362
-1.244173 beneath his -0.03967361
-0.9676276 extending down -0.03967361
-0.952469 extending his -0.03967361
-1.146742 thick iron -0.03967361
-1.146742 thick decidedly -0.03967361
-1.146379 thick crowd -0.03967361
-1.12856 decidedly not -0.03967361
-1.144926 decidedly red -0.03967361
-1.127863 decidedly no -0.03967362
-1.449173 face the -0.03967361
-1.290692 face <unk> -0.03967361
-1.430964 face and -0.03967361
-1.469568 face of -0.3407036
-0.9342445 face was -0.03967361
-1.458572 face to -0.03967361
-1.657314 face or -0.03967361
-1.623291 face his -0.03967361
-1.557189 face he -0.03967361
-1.681573 face made -0.03967361
-0.6917931 also <unk> -0.03967361
-1.4027 also a -0.03967361
-1.346818 also to -0.03967361
-1.485505 also there -0.03967361
-1.504999 also much -0.03967361
-1.509292 also love -0.03967361
-0.8486216 freckled <unk> -0.03967361
-0.9555056 freckled her -0.03967361
-0.3687573 large <unk> -0.03967361
-1.075183 large and -0.03967361
-1.099106 lights <unk> -0.03967362
-0.4976596 lights and -0.3407036
-1.272045 lights glancing -0.03967361
-0.8906865 others </s>
-0.6446201 others <unk> -0.03967361
-1.650504 others so -0.03967362
-1.584064 others he -0.03967361
-1.689354 others after -0.03967362
-1.690279 others very -0.03967362
-1.709197 others showed -0.03967361
-1.710165 others pray -0.03967361
-1.016274 observer </s>
-1.133123 observer an -0.03967362
-1.139163 observer might -0.03967362
-0.3930157 extraordinary observer -0.03967361
-1.14735 extraordinary weight -0.03967362
-0.9418915 chin it -0.03967361
-0.9455414 chin was -0.03967361
-0.9048946 pointed the -0.03967361
-0.8990917 pointed and -0.03967361
-0.8486216 pronounced <unk> -0.03967361
-0.9418915 pronounced that -0.03967361
-0.9111986 forehead of -0.03967361
-0.9455414 forehead was -0.03967361
-0.8990917 broad and -0.03967361
-0.9707725 broad daylight -0.03967361
-0.8015591 our <unk> -0.03967361
-2.034282 our old -0.03967361
-2.024941 our time -0.3407036
-2.051128 our own -0.03967361
-2.018064 our good -0.03967361
-2.058553 our dear -0.03967361
-2.051128 our sight -0.03967361
-2.039029 our way -0.03967361
-2.056064 our feet -0.03967361
-2.063575 our religion -0.03967361
-2.066107 our neighbor -0.03967362
-2.051128 our hands -0.03967361
-2.053589 our millions -0.03967361
-2.061057 our cash -0.03967361
-2.058553 our story -0.03967361
-2.063575 our minister -0.03967361
-2.063575 our labour -0.03967361
-1.313471 our faults -0.03967361
-2.043828 our princess -0.03967361
-2.063575 our princesses -0.03967361
-2.063575 our garden -0.03967361
-1.306922 however was -0.03967361
-1.351808 however would -0.03967361
-1.353563 however like -0.03967361
-1.364845 however beautiful -0.03967361
-1.36847 however expressed -0.03967362
-1.104936 ordeal </s>
-1.194193 ordeal a -0.03967361
-1.1591 ordeal of -0.03967361
-1.204051 ordeal he -0.03967361
-1.338292 stood in -0.03967361
-1.303854 stood to -0.03967361
-0.6841875 stood at -0.3407036
-1.421747 stood up -0.03967361
-1.447045 stood aside -0.03967361
-0.8486216 handle <unk> -0.03967361
-0.9111986 handle of -0.03967361
-0.9616432 fashioned out -0.03967362
-0.9710154 fashioned carpet -0.03967361
-1.134419 carpet all -0.03967361
-0.3930157 carpet bag -0.03967361
-1.080986 bag the -0.03967361
-0.3925452 bag oh -0.03967361
-1.319195 held in -0.03967361
-1.401864 held her -0.03967361
-1.41924 held out -0.03967361
-1.39343 held his -0.03967361
-1.404492 held him -0.03967361
-1.438764 held himself -0.03967361
-1.140597 mister matthew -0.03967361
-0.3922034 mister graham -0.03967361
-0.9741672 clear <unk> -0.03967361
-1.115152 clear as -0.03967361
-1.146015 clear sweet -0.03967361
-0.5385431 glad to -0.2157649
-1.560152 glad because -0.03967362
-1.556629 glad i'm -0.03967361
-1.538758 glad when -0.03967361
-1.57017 glad you're -0.03967361
-1.57162 glad you've -0.03967362
-0.2109954 beginning to -0.03967361
-0.9741672 lovely <unk> -0.03967361
-1.05517 lovely to -0.03967361
-1.146015 lovely evening -0.03967361
-0.4918183 tree </s>
-1.252801 tree all -0.03967361
-1.272045 tree leaning -0.03967361
-1.680441 imagine missus -0.03967361
-0.9335754 imagine that -0.03967361
-1.656671 imagine not -0.03967361
-1.694932 imagine something -0.03967361
-1.686592 imagine i'm -0.03967361
-1.660544 imagine what -0.03967362
-1.561039 imagine i -0.03967361
-1.61621 imagine you -0.03967361
-0.9552592 imagine things -0.03967361
-0.9048946 carry the -0.03967361
-0.9418915 carry it -0.03967362
-0.9048946 responded the -0.03967361
-0.8486216 responded <unk> -0.03967361
-1.494849 let the -0.03967361
-1.373323 let <unk> -0.03967362
-1.658479 let marilla -0.03967361
-1.604491 let you -0.03967361
-1.633652 let me -0.03967361
-0.3746976 let us -0.03967361
-0.5186779 heavy <unk> -0.1646123
-1.506955 heavy with -0.03967362
-1.384514 heavy and -0.03967361
-1.561569 heavy i've -0.03967361
-1.57017 heavy tears -0.03967362
-1.572347 heavy mourning -0.03967361
-0.924088 carried in -0.03967362
-0.9678688 carried off -0.03967361
-1.554597 way </s>
-1.181214 way the -0.03967361
-1.104502 way <unk> -0.03967361
-1.998632 way down -0.03967361
-1.626274 way and -0.03967362
-1.827012 way that -0.03967362
-1.676113 way of -0.03967361
-0.9635928 way to -0.03967362
-2.004411 way through -0.03967361
-1.943032 way or -0.03967361
-1.225333 way he -0.03967361
-1.780607 way i -0.03967361
-1.261287 way they -0.03967361
-1.958454 way then -0.03967361
-2.020207 way round -0.03967361
-2.020207 way led -0.03967361
-2.026282 way continued -0.03967361
-1.6962 keep that -0.03967361
-0.5145026 keep it -0.03967361
-1.769186 keep up -0.03967361
-1.052583 keep this -0.03967361
-1.736134 keep his -0.03967361
-1.751874 keep him -0.03967361
-1.781123 keep your -0.03967361
-1.763338 keep my -0.03967361
-1.802836 keep myself -0.03967362
-0.3687573 exact <unk> -0.3407036
-1.10677 exact a -0.03967361
-0.8486216 extremely <unk> -0.03967362
-0.9683514 extremely old -0.03967361
-1.127863 you've no -0.03967361
-1.146015 you've decided -0.03967361
-1.141675 you've come -0.03967361
-1.042958 nice and -0.03967361
-1.05517 nice to -0.03967361
-1.14384 nice things -0.03967361
-1.670098 love is -0.03967361
-1.625126 love with -0.03967361
-1.429214 love and -0.03967361
-1.471693 love of -0.03967361
-1.595489 love it -0.03967361
-1.459554 love to -0.03967361
-1.742657 love driving -0.03967362
-1.73837 love pretty -0.03967361
-1.626223 love you -0.03967361
-1.744095 love making -0.03967361
-1.745538 love affairs -0.03967361
-1.746986 love hate -0.03967361
-0.5675546 wonderful <unk> -0.03967362
-1.311899 wonderful that -0.03967361
-1.335987 wonderful said -0.03967362
-1.367742 wonderful parents -0.03967361
-1.151475 live <unk> -0.03967361
-1.382016 live with -0.03967361
-1.259575 live and -0.03967361
-1.399903 live on -0.03967361
-1.430289 live here -0.03967361
-1.444508 live either -0.03967361
-0.128745 belong to -0.03967361
-0.9306792 worst a -0.03967361
-0.9676276 worst i've -0.03967361
-1.183941 four <unk> -0.03967361
-1.511575 four hours -0.03967362
-1.50405 four five -0.03967361
-1.514113 four months -0.03967361
-1.509052 four hundred -0.03967361
-1.514113 four dollars -0.03967362
-1.514113 four contained -0.03967362
-1.042958 months and -0.03967361
-1.11821 months but -0.03967361
-1.147107 months sooner -0.03967361
-1.104936 worse </s>
-1.053835 worse <unk> -0.03967361
-1.153147 worse to -0.03967361
-1.266974 worse than -0.03967361
-0.2145771 scope for -0.03967361
-0.9741672 imagination <unk> -0.03967361
-1.078179 imagination in -0.03967361
-1.133829 imagination then -0.03967361
-1.05517 interesting to -0.03967361
-1.147107 interesting idea -0.03967362
-1.147107 interesting consequence -0.03967361
-0.9482992 companion with -0.03967361
-0.9705298 companion stopped -0.03967361
-1.224672 stopped to -0.03967361
-1.315965 stopped at -0.03967362
-1.328508 stopped on -0.03967361
-1.36605 stopped during -0.03967362
-1.366654 stopped talking -0.03967361
-1.313286 talking with -0.03967361
-1.231699 talking of -0.03967361
-1.361848 talking themselves -0.03967361
-1.360654 talking too -0.03967361
-1.36847 talking partly -0.03967362
-0.2166036 partly because -0.03967361
-1.051061 stolen the -0.03967361
-1.143117 stolen away -0.03967361
-1.146742 stolen earlier -0.03967361
-1.109101 nurse was -0.03967361
-1.132418 nurse who -0.03967361
-1.133123 nurse were -0.03967361
-1.091437 confess i -0.03967361
-1.139879 confess these -0.03967361
-1.134183 confess bobby -0.03967361
-1.194193 lie a -0.03967361
-1.227085 lie with -0.03967361
-1.271802 lie concealed -0.03967361
-1.271317 lie awake -0.03967361
-1.104936 awake </s>
-1.137899 awake and -0.03967362
-1.229281 awake at -0.03967361
-1.246342 awake all -0.03967361
-1.543167 am the -0.03967361
-1.3478 am <unk> -0.03967361
-1.660471 am a -0.03967361
-1.848524 am an -0.03967361
-1.826592 am not -0.03967361
-1.804148 am so -0.03967361
-1.905782 am going -0.03967361
-1.115025 am i -0.03967361
-1.797944 am said -0.3407036
-1.92187 am sorry -0.03967362
-1.915767 am glad -0.0396736
-1.92187 am determined -0.03967362
-1.92187 am entirely -0.03967361
-1.919826 am merely -0.03967361
-1.919826 am rich -0.03967361
-1.919826 am seeking -0.03967361
-1.911745 am tired -0.03967361
-0.8797674 bones </s>
-0.9543351 bones had -0.03967361
-1.059914 bride of -0.03967361
-1.127863 bride all -0.03967362
-1.143117 bride myself -0.03967361
-1.469397 want </s>
-0.8853085 want the -0.03967361
-1.574525 want a -0.03967361
-0.3667279 want to -0.03967362
-1.61485 want you -0.03967361
-1.087607 marry a -0.03967361
-1.137022 marry before -0.03967361
-1.12891 marry me -0.03967362
-1.103792 unless it -0.03967361
-1.091437 unless i -0.03967361
-1.146015 unless you're -0.03967361
-0.8486216 missionary <unk> -0.03967361
-0.9333439 missionary i -0.03967361
-0.9418915 soil that -0.03967361
-0.9111986 soil of -0.03967361
-0.6917931 several <unk> -0.3407036
-1.354806 several of -0.03967361
-1.512178 several feet -0.03967362
-1.514355 several high -0.03967362
-1.512178 several days -0.03967362
-1.513628 several papers -0.03967361
-1.168367 feet </s>
-1.273495 feet a -0.03967361
-1.224672 feet to -0.03967361
-1.351224 feet do -0.03967361
-1.365447 feet above -0.03967361
-0.4829472 above the -0.2157649
-1.483016 above all -0.03967361
-1.501453 above their -0.03967361
-1.469138 above his -0.03967361
-1.510372 above whose -0.03967361
-0.9048946 heads the -0.03967361
-0.8486216 heads <unk> -0.03967361
-0.3866231 against the -0.03967361
-1.354865 against <unk> -0.03967361
-0.8136256 against him -0.03967361
-1.557566 against your -0.03967361
-1.352226 beautiful the -0.03967361
-1.209989 beautiful <unk> -0.03967361
-1.336164 beautiful and -0.03967361
-1.550129 beautiful could -0.03967361
-1.527677 beautiful what -0.03967362
-1.566087 beautiful once -0.03967362
-1.570895 beautiful piece -0.0396736
-1.571862 beautiful pale -0.03967361
-0.9548029 leaning on -0.03967361
-0.9616432 leaning out -0.03967361
-1.310779 bank </s>
-1.604635 bank where -0.03967361
-1.517792 bank was -0.03967361
-1.54153 bank but -0.03967361
-1.567598 bank all -0.03967361
-1.571453 bank my -0.03967361
-1.617359 bank shall -0.03967361
-1.622773 bank please -0.03967361
-1.621685 bank notes -0.03967361
-0.662042 dunno said -0.3407036
-0.8797674 veil </s>
-0.9695603 veil between -0.03967362
-1.34458 shall <unk> -0.03967361
-0.796438 shall be -0.2157649
-1.744396 shall not -0.03967361
-1.789953 shall never -0.03967361
-1.802483 shall work -0.03967361
-1.773789 shall have -0.03967361
-1.625199 shall i -0.03967361
-1.763338 shall then -0.03967361
-1.69317 shall you -0.03967361
-1.765928 shall we -0.03967361
-1.80817 shall presently -0.03967361
-1.811042 shall die -0.03967361
-0.9671459 remember where -0.03967361
-0.9517712 remember but -0.03967361
-0.9078251 forward to -0.03967361
-0.9707725 forward covered -0.03967361
-0.5698304 rather <unk> -0.03967361
-1.511845 rather a -0.03967361
-0.8495361 rather i -0.03967361
-1.617718 rather strange -0.03967361
-1.619156 rather believe -0.03967361
-1.622773 rather difficult -0.03967361
-1.142395 everybody must -0.03967361
-1.146742 everybody knows -0.03967361
-1.137734 everybody will -0.03967361
-0.9418915 imagined that -0.03967361
-0.9597455 imagined this -0.03967362
-0.5316196 most <unk> -0.03967361
-1.52635 most of -0.03967361
-1.744455 most quiet -0.03967361
-1.73062 most three -0.03967361
-1.746623 most decidedly -0.03967361
-1.741223 most beautiful -0.03967362
-1.746623 most delightful -0.03967361
-1.746623 most impossible -0.03967361
-1.743375 most happy -0.03967361
-0.8486216 pale <unk> -0.03967361
-0.9710154 pale blue -0.03967361
-1.051061 blue the -0.03967361
-0.9741672 blue <unk> -0.03967361
-1.087607 blue a -0.03967361
-1.370285 worth a -0.03967361
-1.441627 worth much -0.03967362
-0.4326604 worth while -0.2157649
-1.447894 worth dying -0.03967361
-1.388667 morning </s>
-1.676215 morning is -0.03967361
-1.302313 morning <unk> -0.03967361
-1.634259 morning with -0.03967361
-1.477567 morning to -0.03967361
-0.9835474 morning when -0.03967361
-1.732837 morning oh -0.03967362
-1.739319 morning soon -0.03967361
-1.744576 morning carlos -0.03967361
-1.747227 morning creditor -0.03967362
-1.747227 morning mass -0.03967362
-0.9111986 ashamed of -0.03967361
-0.9671459 ashamed because -0.03967362
-0.9741672 wear <unk> -0.03967361
-1.129959 wear this -0.03967362
-1.137378 wear them -0.03967361
-0.9954218 hundred </s>
-1.671743 hundred a -0.03967361
-0.7715786 hundred and -0.1365836
-1.791327 hundred more -0.03967362
-1.770715 hundred when -0.03967361
-1.061937 hundred yards -0.0396736
-0.8004029 hundred thousand -0.7386436
-1.812967 hundred times -0.03967361
-0.9111986 yards of -0.03967361
-0.9695603 yards further -0.03967361
-0.9111986 lot of -0.03967361
-0.965224 lot more -0.03967361
-1.433872 already </s>
-0.7256425 already <unk> -0.03967361
-1.614073 already a -0.03967361
-1.496161 already and -0.03967361
-1.801073 already gone -0.03967361
-1.625199 already i -0.03967361
-1.805317 already felt -0.03967361
-1.80817 already short -0.03967361
-1.803898 already black -0.03967361
-1.811042 already worked -0.03967361
-1.80817 already placed -0.03967361
-1.813933 already pierced -0.03967361
-1.285213 hadn't </s>
-1.522457 hadn't one -0.03967361
-1.209989 hadn't <unk> -0.03967361
-1.556629 hadn't time -0.03967361
-1.490779 hadn't at -0.03967361
-1.557566 hadn't been -0.03967361
-1.43715 hadn't i -0.03967361
-1.571862 hadn't dreamed -0.03967361
-0.9700448 sick coming -0.03967361
-0.9710154 sick watching -0.03967361
-1.281027 fall </s>
-0.4064617 fall <unk> -0.03967361
-1.358269 fall in -0.03967361
-1.436394 fall here -0.03967361
-1.411804 kept by -0.03967362
-1.401864 kept her -0.03967362
-1.416521 kept up -0.03967361
-1.441627 kept looking -0.03967362
-1.443786 kept herself -0.03967361
-1.447409 kept sending -0.03967361
-0.65109 mercy i -0.03967361
-0.6917931 boat <unk> -0.03967361
-1.448963 boat with -0.03967361
-1.439675 boat for -0.03967361
-1.455902 boat she -0.03967361
-1.50216 boat because -0.03967362
-1.514355 boat neither -0.03967361
-0.8797674 flowers </s>
-0.8990917 flowers and -0.03967361
-1.051061 watch the -0.03967361
-1.042958 watch and -0.03967361
-1.078179 watch in -0.03967361
-0.8486216 gloves <unk> -0.03967361
-0.8990917 gloves and -0.03967361
-0.9673867 boots three -0.03967362
-0.9333439 boots i -0.03967361
-0.2158772 telling me -0.03967361
-0.9333439 stop i -0.03967361
-0.9597455 stop when -0.03967362
-1.05517 difficult to -0.03967361
-1.108101 difficult for -0.03967361
-1.137022 difficult matthew -0.03967361
-1.296873 thousand <unk> -0.03967361
-1.493059 thousand or -0.03967362
-1.510973 thousand already -0.03967361
-0.3380949 thousand francs -0.09766555
-1.136666 roads are -0.03967361
-1.144926 roads red -0.03967361
-1.144926 roads began -0.03967361
-1.129959 delightful when -0.03967361
-1.146015 delightful fun -0.03967362
-1.147107 delightful dream -0.03967362
-1.016274 true </s>
-1.051061 true the -0.03967361
-1.14384 true isn't -0.03967362
-0.8902421 began a -0.3407036
-0.63229 began to -0.03967361
-1.604491 began but -0.03967361
-1.59724 began at -0.03967362
-1.601576 began she -0.03967361
-1.665635 began feeling -0.03967361
-1.663117 began rather -0.03967362
-1.042958 flash and -0.03967361
-1.059914 flash of -0.03967361
-1.145652 flash past -0.03967361
-0.9078251 intelligence to -0.03967361
-0.9710154 intelligence realized -0.03967361
-1.100394 himself </s>
-1.715887 himself a -0.03967361
-1.571516 himself and -0.03967361
-1.77798 himself that -0.03967361
-1.164991 himself in -0.03967361
-1.607852 himself to -0.03967361
-1.927965 himself well -0.03967361
-1.196365 himself for -0.3407036
-1.824434 himself at -0.03967361
-1.860025 himself on -0.03967361
-1.893538 himself from -0.03967361
-1.913136 himself if -0.03967361
-1.744587 himself he -0.03967361
-1.937498 himself like -0.03967362
-1.975758 himself soon -0.03967361
-1.984261 himself somewhat -0.03967361
-1.979989 himself hadn't -0.03967362
-1.988576 himself receives -0.03967361
-0.9595088 girls from -0.03967362
-0.961881 girls were -0.03967361
-0.128745 ventured to -0.2157649
-0.9678688 bred little -0.03967361
-0.8990917 bred and -0.03967361
-1.229926 gentleman <unk> -0.03967361
-1.358269 gentleman in -0.03967361
-0.4310693 gentleman who -0.03967361
-1.436394 gentleman here -0.03967361
-0.4981582 black <unk> -0.1188549
-1.62508 black with -0.03967362
-1.546589 black in -0.03967361
-1.650504 black so -0.03967361
-1.709197 black mare -0.03967361
-1.70439 black dress -0.03967361
-1.710165 black clothing -0.03967361
-1.710165 black clothed -0.03967361
-1.016274 smiling </s>
-1.042958 smiling and -0.03967361
-1.141675 smiling come -0.03967361
-0.9078251 extended to -0.03967361
-0.952469 extended his -0.03967361
-1.103792 realized that -0.03967361
-1.143478 realized its -0.03967361
-1.091437 realized i -0.03967361
-0.6648579 wished to -0.3407036
-1.409353 wished her -0.03967361
-1.418899 wished from -0.03967361
-1.41607 wished no -0.03967361
-1.447651 wished harm -0.03967361
-0.9418915 accepted it -0.03967361
-0.9583275 accepted all -0.03967362
-0.9448547 pressed for -0.03967361
-0.9698025 pressed mine -0.03967361
-0.5805053 mine </s>
-1.583228 mine is -0.03967361
-1.435666 mine and -0.03967361
-0.8697092 mine eye -0.03967361
-1.596014 mine were -0.03967361
-1.590584 mine which -0.03967361
-0.9048946 approached the -0.03967361
-0.9482992 approached with -0.03967361
-1.059914 city of -0.03967361
-1.14384 city life -0.03967361
-1.091437 city i -0.03967361
-1.244515 later is -0.03967361
-1.182177 later in -0.03967361
-1.199094 later i -0.03967361
-1.271317 later mister -0.03967362
-0.9482992 astir with -0.03967362
-0.8990917 astir and -0.03967361
-0.8416343 moment </s>
-1.427967 moment the -0.03967361
-1.277145 moment <unk> -0.03967361
-1.488325 moment in -0.03967361
-1.447169 moment of -0.03967362
-1.56355 moment was -0.03967362
-1.623058 moment up -0.03967361
-1.583687 moment she -0.03967361
-1.66853 moment silently -0.03967362
-0.9647449 silently into -0.03967361
-0.9710154 silently rolled -0.03967362
-0.6467358 each <unk> -0.03967362
-0.6931052 each other -0.03967361
-1.446439 each worth -0.03967361
-1.447894 each dignified -0.03967361
-1.104936 guide </s>
-1.249099 guide what -0.03967361
-1.263149 guide how -0.03967361
-1.268417 guide took -0.03967361
-0.9573849 worship is -0.03967361
-0.9333439 worship i -0.03967361
-0.4918183 priest </s>
-1.251409 priest is -0.03967361
-1.238065 priest with -0.03967361
-1.042958 gods and -0.03967361
-1.103792 gods that -0.03967361
-1.091437 gods i -0.03967361
-0.8797674 breast </s>
-0.9111986 breast of -0.03967361
-1.104936 idol </s>
-1.229721 idol as -0.03967361
-1.199094 idol i -0.03967361
-1.254198 idol then -0.03967361
-1.250057 whispered to -0.03967361
-1.326631 whispered as -0.03967361
-1.366291 whispered taken -0.03967361
-0.613924 whispered robin -0.03967361
-1.016274 surprise </s>
-0.9741672 surprise <unk> -0.03967361
-1.05517 surprise to -0.03967361
-0.9360249 low he -0.03967361
-0.9698025 low voice -0.03967361
-1.028764 light </s>
-1.803513 light is -0.03967361
-1.65967 light a -0.03967361
-1.527199 light and -0.03967361
-1.629355 light in -0.03967361
-1.068205 light of -0.03967362
-1.715429 light it -0.03967361
-1.685543 light he -0.03967361
-1.819849 light which -0.03967361
-1.856131 light made -0.03967361
-1.824413 light they -0.03967361
-1.835253 light then -0.03967361
-1.886804 light under -0.03967362
-1.869497 light upon -0.03967361
-1.886804 light suddenly -0.03967361
-0.9048946 created the -0.03967361
-0.9659437 created man -0.03967362
-0.9573849 religion is -0.03967362
-0.9455414 religion was -0.03967361
-1.104936 divine </s>
-1.053835 divine <unk> -0.03967361
-1.270348 divine feet -0.03967361
-1.269865 divine apollo -0.0396736
-0.7681201 god </s>
-0.7497851 god <unk> -0.03967361
-1.384514 god and -0.03967361
-1.560152 god why -0.03967361
-1.534736 god no -0.03967361
-1.563703 god thought -0.03967361
-1.078179 fault in -0.03967361
-1.13277 fault about -0.03967361
-1.147107 fault interrupted -0.03967361
-0.9482992 interrupted with -0.03967361
-0.9592723 interrupted my -0.03967361
-0.9418915 knowing it -0.03967361
-0.9597455 knowing what -0.03967361
-0.5293528 answer </s>
-1.532075 answer is -0.03967361
-1.397939 answer the -0.03967361
-1.506955 answer with -0.03967361
-1.499508 answer was -0.03967361
-1.552439 answer would -0.03967361
-1.298579 doubt that -0.03967362
-1.285354 doubt he -0.03967361
-1.362446 doubt whether -0.03967361
-1.367864 doubt homer -0.03967361
-1.367864 doubt whatever -0.03967362
-1.016274 homer </s>
-1.051061 homer the -0.03967361
-1.147107 homer concerning -0.03967361
-1.495557 told a -0.03967361
-1.582014 told by -0.03967361
-1.442088 told of -0.03967361
-0.8607391 told him -0.03967361
-1.548615 told you -0.03967361
-0.8623545 told me -0.03967361
-1.582786 told my -0.03967361
-0.3843304 presence in -0.03967362
-1.08729 presence of -0.03967361
-0.2107 concerning the -0.03967361
-0.6512686 apollo </s>
-1.413819 apollo is -0.03967361
-1.338292 apollo in -0.03967362
-1.364536 apollo he -0.03967361
-1.441029 apollo make -0.03967362
-1.103792 forget it -0.03967361
-1.129959 forget this -0.03967361
-1.145652 forget apollo -0.03967362
-0.8486216 suggestion <unk> -0.03967361
-0.9111986 suggestion of -0.03967361
-0.9048946 number the -0.03967361
-0.9111986 number of -0.03967361
-0.9707725 various lights -0.03967362
-0.9707725 various times -0.03967361
-0.9111986 meaning of -0.03967361
-0.9710154 meaning glance -0.03967362
-0.3687573 aside <unk> -0.03967361
-1.075183 aside and -0.03967361
-0.2113332 anniversary of -0.03967361
-0.9111986 birthday of -0.03967361
-0.9712584 birthday anniversary -0.03967362
-1.44313 jesus </s>
-1.760975 jesus is -0.03967361
-1.016429 jesus the -0.2157649
-1.630741 jesus a -0.03967361
-1.730889 jesus but -0.03967361
-1.085171 jesus could -0.03967361
-1.720124 jesus as -0.03967361
-1.642438 jesus i -0.03967361
-1.838969 jesus mouth -0.03967361
-1.791906 jesus we -0.03967361
-1.840525 jesus appear -0.03967362
-1.832799 jesus whose -0.03967361
-1.843654 jesus fled -0.03967362
-0.5055103 toward the -0.03967361
-0.5153093 toward him -0.03967361
-1.254409 search </s>
-1.31649 search the -0.03967361
-1.301674 search and -0.03967361
-1.367848 search in -0.03967361
-1.332943 search of -0.03967362
-1.430282 search was -0.03967361
-1.428188 search for -0.03967361
-0.9078251 universe to -0.03967361
-0.9485298 universe you -0.03967361
-1.182177 person in -0.03967362
-1.229721 person as -0.03967361
-1.204051 person he -0.03967361
-1.260302 person made -0.03967361
-1.051061 touch the -0.03967361
-1.059914 touch of -0.03967361
-1.125083 touch him -0.03967361
-0.9048946 inhale the -0.03967361
-0.9306792 inhale a -0.03967361
-0.9741672 golden <unk> -0.03967361
-1.143117 golden light -0.03967361
-1.146379 golden fortune -0.03967361
-0.6512686 hear </s>
-1.297797 hear the -0.03967361
-1.437459 hear because -0.03967361
-1.417765 hear me -0.03967361
-1.435685 hear these -0.03967361
-0.8797674 music </s>
-0.9111986 music of -0.03967362
-1.201846 faith </s>
-1.341425 faith is -0.03967361
-1.311899 faith that -0.03967361
-0.5975819 faith in -0.03967361
-1.201846 filled </s>
-0.6065569 filled with -0.03967361
-1.363404 filled those -0.03967361
-1.367258 filled air -0.03967361
-0.9587997 determined not -0.03967361
-0.9564442 determined him -0.03967361
-1.491791 truth into -0.03967362
-1.32409 truth to -0.03967361
-1.48144 truth about -0.03967361
-1.498286 truth came -0.03967361
-1.485392 truth we -0.03967361
-1.473642 truth my -0.03967361
-1.502396 truth don't -0.03967361
-0.1252428 moral <unk> -0.03967361
-1.218616 open the -0.03967361
-1.10975 open <unk> -0.03967361
-1.313286 open with -0.03967361
-1.20675 open and -0.03967361
-1.36847 open page -0.03967361
-0.2113332 discussion of -0.03967361
-0.9333439 subject i -0.03967361
-0.965224 subject like -0.03967361
-0.9306792 deliver a -0.03967361
-0.9564442 deliver him -0.03967361
-1.319195 either in -0.03967361
-1.388955 either she -0.03967361
-1.43169 either man -0.03967361
-1.445956 either wife -0.03967361
-1.447409 either directly -0.03967361
-1.447409 either rejoined -0.03967362
-0.9602191 directly or -0.03967361
-0.9683514 directly put -0.03967362
-0.9418915 free it -0.03967361
-0.9710154 free expression -0.03967361
-1.10975 tears <unk> -0.03967361
-1.359464 tears down -0.03967361
-1.316503 tears as -0.03967361
-1.36847 tears silently -0.03967361
-1.36847 tears pushing -0.03967362
-1.016274 freedom </s>
-1.059914 freedom of -0.03967361
-1.05517 freedom to -0.03967361
-0.8486216 jail <unk> -0.03967361
-0.9625952 jail bobby -0.03967361
-0.9606933 building up -0.03967362
-0.9700448 building every -0.03967361
-1.606455 count that -0.03967362
-1.661775 count had -0.03967361
-0.9364587 count of -0.3407036
-1.58214 count he -0.03967362
-1.725184 count has -0.03967362
-1.662869 count said -0.03967361
-1.706622 count your -0.03967361
-1.732837 count oh -0.03967361
-1.740627 count above -0.03967361
-1.747227 count alas -0.03967361
-1.745899 count pardon -0.03967361
-0.8486216 social <unk> -0.03967361
-0.9705298 social position -0.03967361
-0.9048946 conquered the -0.03967361
-0.9448547 conquered for -0.03967361
-1.246342 reward one -0.03967361
-1.148005 reward the -0.03967361
-1.137899 reward and -0.03967361
-1.261249 reward their -0.03967361
-1.39108 wish it -0.03967361
-0.4200005 wish to -0.03967361
-1.375185 wish i -0.03967361
-1.439716 wish our -0.03967361
-0.3811541 courage to -0.03967361
-1.13631 courage or -0.03967361
-0.8990917 industry and -0.03967361
-0.9111986 industry of -0.03967362
-0.6655144 neighbor who -0.03967361
-1.113126 searching with -0.03967361
-1.108101 searching for -0.03967361
-1.147107 searching party -0.03967362
-0.2107 wetting the -0.03967361
-0.9614055 page who -0.03967361
-0.9645055 page before -0.03967361
-0.9647449 pushing into -0.03967361
-0.8990917 pushing and -0.03967361
-0.9741672 quest <unk> -0.03967361
-1.121976 quest had -0.03967362
-1.059914 quest of -0.03967361
-0.9048946 loves the -0.03967361
-0.9418915 loves it -0.03967361
-1.016274 ease </s>
-1.13066 ease or -0.03967361
-1.140956 ease our -0.03967361
-0.9564442 calling him -0.03967362
-0.9685929 calling myself -0.03967361
-0.8797674 envy </s>
-0.9048946 envy the -0.03967361
-1.104936 myth </s>
-1.244515 myth is -0.03967361
-1.1591 myth of -0.03967361
-1.250021 myth or -0.03967361
-1.042958 explanation and -0.03967361
-1.059914 explanation of -0.03967361
-1.140597 explanation how -0.03967361
-0.9048946 knowledge the -0.03967361
-0.9666646 knowledge graham -0.03967361
-0.128745 desire to -0.2157649
-0.9048946 replaced the -0.03967361
-0.9590359 replaced by -0.03967362
-0.9048946 mythus the -0.03967361
-0.9111986 mythus of -0.03967361
-0.5887284 science </s>
-1.281762 science of -0.03967361
-0.6078813 science was -0.03967361
-0.8797674 realization </s>
-0.9418915 realization that -0.03967361
-0.493696 less <unk> -0.03967361
-0.5175267 less than -0.03967362
-0.9741672 restless <unk> -0.03967361
-1.146742 restless spirit -0.03967361
-1.145289 restless doctor -0.0396736
-0.9048946 fill the -0.03967361
-0.9592723 fill my -0.03967361
-0.8797674 space </s>
-0.9616432 space about -0.03967361
-0.8990917 fairies and -0.03967361
-0.9710154 fairies gods -0.03967361
-0.8990917 invisible and -0.03967361
-0.9710154 invisible blue -0.03967361
-1.016274 beings </s>
-0.9741672 beings <unk> -0.03967361
-1.134537 beings we -0.03967361
-1.104936 moon </s>
-1.053835 moon <unk> -0.03967361
-1.199094 moon i -0.03967361
-1.269865 moon rose -0.03967361
-0.8797674 begin </s>
-0.9078251 begin to -0.03967361
-0.9741672 firm <unk> -0.03967361
-1.115152 firm as -0.03967361
-1.146379 firm ground -0.03967361
-0.924088 entirely in -0.03967361
-0.9712584 entirely ignorant -0.03967361
-0.5759059 hands </s>
-1.547901 hands with -0.03967361
-1.476993 hands in -0.03967361
-1.442088 hands of -0.03967361
-1.551482 hands at -0.03967362
-1.591372 hands were -0.03967361
-1.616523 hands alone -0.03967361
-1.283414 evidence </s>
-0.7450691 evidence that -0.03967361
-1.441516 evidence was -0.03967362
-1.510012 evidence under -0.03967361
-1.514355 evidence origin -0.03967362
-1.488923 evidence bobby -0.03967361
-0.9590359 observed by -0.03967362
-0.9649844 observed only -0.03967362
-0.9712584 christian church -0.03967361
-0.9712584 christian easter -0.03967362
-1.168367 times </s>
-1.273495 times a -0.03967361
-1.20675 times and -0.03967361
-1.338584 times by -0.03967362
-1.316503 times as -0.03967361
-0.250401 appear to -0.2157649
-1.27059 appear rather -0.03967361
-0.9111986 ignorant of -0.03967361
-0.9616432 ignorant about -0.03967361
-0.5636062 whose <unk> -0.03967361
-1.615689 whose child -0.03967361
-1.615689 whose eyes -0.03967361
-1.623257 whose worship -0.03967361
-1.62072 whose tears -0.03967361
-1.623257 whose roofs -0.03967361
-1.623257 whose crossing -0.03967361
-1.44313 millions </s>
-1.507627 millions and -0.03967361
-1.602807 millions in -0.03967361
-1.023498 millions of -0.03967362
-1.539169 millions to -0.03967361
-1.816272 millions without -0.03967361
-1.718944 millions at -0.03967362
-1.072754 millions on -0.03967362
-1.772818 millions from -0.03967362
-1.817749 millions why -0.03967361
-1.807515 millions here -0.03967361
-1.642438 millions i -0.03967361
-1.832799 millions between -0.03967361
-1.009361 money </s>
-0.9728616 money <unk> -0.03967361
-1.645869 money a -0.03967361
-1.517915 money and -0.03967361
-1.550564 money to -0.03967361
-1.751162 money but -0.03967361
-1.714332 money for -0.03967361
-1.768145 money on -0.03967361
-1.772161 money so -0.03967361
-1.733585 money you -0.03967361
-1.829583 money only -0.03967361
-1.848402 money yes -0.03967361
-1.8664 money born -0.03967361
-1.864733 money excuse -0.03967362
-1.051061 service the -0.03967361
-1.138448 service here -0.03967362
-1.140238 service graham -0.03967361
-1.103792 says that -0.03967362
-1.078179 says in -0.03967361
-1.140238 says nothing -0.03967361
-0.9048946 escape the -0.03967361
-0.9564442 escape him -0.03967361
-1.216467 evil </s>
-1.273 evil the -0.03967361
-1.151475 evil <unk> -0.03967361
-1.319195 evil in -0.03967361
-1.385156 evil at -0.03967361
-1.415168 evil or -0.03967362
-0.6704715 herod mary -0.03967361
-0.8797674 mary </s>
-0.8990917 mary and -0.03967361
-0.8486216 infant <unk> -0.03967361
-0.9688346 infant jesus -0.03967361
-0.9048946 fled the -0.03967361
-0.9647449 fled into -0.03967362
-0.8486216 egypt <unk> -0.03967361
-0.9695603 egypt does -0.03967362
-0.8486216 hurried <unk> -0.03967361
-0.9661838 hurried back -0.03967361
-0.8486216 important <unk> -0.03967362
-0.9688346 important than -0.03967361
-0.8486216 greater <unk> -0.03967361
-0.9702873 greater care -0.03967362
-0.8486216 friday <unk> -0.03967361
-0.9418915 friday that -0.03967361
-0.9517712 equinox but -0.03967362
-0.9496847 equinox as -0.03967361
-1.313286 thus with -0.03967362
-1.367258 thus making -0.03967361
-1.367864 thus speak -0.03967361
-1.358278 thus our -0.03967361
-1.367258 thus fixed -0.03967361
-0.3680696 upon the -0.1779763
-1.540875 upon <unk> -0.03967361
-1.810368 upon a -0.03967361
-1.941928 upon by -0.03967362
-1.972737 upon them -0.03967361
-1.979439 upon their -0.03967361
-1.238084 upon his -0.03967361
-1.928507 upon him -0.03967361
-1.941928 upon me -0.03967361
-1.994561 upon myself -0.03967361
-2.010227 upon firm -0.03967361
-2.005898 upon morrel -0.03967362
-1.216467 position </s>
-1.151475 position <unk> -0.03967361
-1.287859 position of -0.03967361
-1.372728 position for -0.03967362
-1.388955 position she -0.03967361
-1.440193 position than -0.03967362
-0.8797674 easter </s>
-0.8486216 easter <unk> -0.03967361
-0.9111986 object of -0.03967361
-0.9078251 object to -0.03967361
-0.8486216 origin <unk> -0.03967361
-0.9111986 origin of -0.03967361
-0.8797674 following </s>
-0.8486216 following <unk> -0.03967361
-0.8486216 john <unk> -0.03967361
-0.9707725 john peter -0.03967361
-0.8486216 judas <unk> -0.03967361
-0.8990917 judas and -0.03967361
-0.9496847 mythical as -0.03967361
-0.9688346 mythical jesus -0.03967361
-1.244915 rome the -0.03967361
-0.6065569 rome with -0.03967361
-1.344628 rome by -0.03967362
-1.300961 rome he -0.03967361
-0.8486216 note <unk> -0.03967361
-0.9111986 note of -0.03967361
-0.3687573 impossible <unk> -0.03967362
-1.083916 impossible to -0.03967361
-1.13031 decide which -0.03967362
-1.129959 decide what -0.03967361
-1.144563 decide there's -0.03967361
-0.8486216 numerous <unk> -0.03967361
-0.9700448 numerous dead -0.03967362
-1.519012 else is -0.03967362
-1.507999 else had -0.03967361
-1.360485 else to -0.03967361
-1.47499 else for -0.03967361
-1.542817 else any -0.03967361
-1.43715 else i -0.03967361
-1.547372 else only -0.03967361
-1.566087 else told -0.03967361
-0.8486216 unanimous <unk> -0.03967361
-0.9700448 unanimous silence -0.03967362
-0.7101281 silence </s>
-1.354806 silence of -0.03967361
-1.346818 silence to -0.03967361
-1.501453 silence without -0.03967361
-1.449589 silence you -0.03967361
-1.511455 silence during -0.03967361
-1.042958 sword and -0.03967361
-1.138448 sword now -0.03967361
-1.145652 sword thou -0.03967361
-0.8797674 hereafter </s>
-0.9712584 hereafter brevity -0.03967362
-0.9111986 government of -0.03967361
-0.9078251 government to -0.03967361
-1.132418 courtiers who -0.03967361
-1.137734 courtiers did -0.03967361
-1.138091 courtiers like -0.03967361
-0.4918183 attention </s>
-1.228731 attention it -0.03967361
-1.27059 attention squire -0.03967362
-0.4820174 self <unk> -0.03967362
-1.270954 self doubt -0.03967361
-1.271681 self effort -0.03967361
-0.6029558 these <unk> -0.1066204
-1.846708 these that -0.03967361
-1.979261 these are -0.03967361
-1.272285 these people -0.03967361
-1.963407 these were -0.03967361
-2.028808 these precise -0.03967362
-1.270071 these two -0.03967362
-2.012818 these things -0.03967361
-2.018083 these twenty -0.03967362
-2.021628 these four -0.03967362
-2.027002 these prayers -0.03967362
-1.276106 these words -0.03967361
-2.023412 these days -0.03967361
-2.028808 these careless -0.03967362
-2.028808 these touches -0.03967362
-0.9078251 claims to -0.03967361
-0.9642662 claims have -0.03967361
-1.016274 produced </s>
-0.9741672 produced <unk> -0.03967361
-1.12891 produced by -0.03967362
-0.9078251 moreover to -0.03967361
-0.9621189 moreover if -0.03967361
-1.109101 promise was -0.03967361
-1.05517 promise to -0.03967362
-1.132418 promise there -0.03967361
-0.8990917 mothers and -0.03967361
-0.9583275 mothers no -0.03967361
-0.924088 insanity in -0.03967361
-0.9583275 insanity no -0.03967361
-0.4918183 wrong </s>
-1.099106 wrong <unk> -0.03967361
-1.265535 wrong how -0.03967362
-1.016274 prayers </s>
-1.141675 prayers been -0.03967361
-1.137734 prayers will -0.03967361
-0.2158772 caused by -0.03967361
-1.136666 ye are -0.03967361
-1.146379 ye ask -0.03967361
-1.144201 ye keep -0.03967361
-1.151475 same <unk> -0.03967361
-1.279871 same to -0.03967361
-1.414493 same which -0.03967361
-1.440193 same day -0.03967361
-1.445956 same hour -0.03967361
-1.447409 same spot -0.03967361
-1.31649 words the -0.03967361
-1.183941 words <unk> -0.03967361
-1.301674 words and -0.03967361
-1.483016 words if -0.03967361
-1.401857 words he -0.03967361
-1.498286 words came -0.03967361
-1.508215 words there's -0.03967362
-1.095301 length he -0.03967362
-1.122321 length said -0.03967361
-1.131363 length they -0.03967361
-1.075183 effort and -0.03967361
-0.3811541 effort to -0.3407036
-0.9741672 poverty <unk> -0.03967361
-1.042958 poverty and -0.03967361
-1.142035 poverty may -0.03967361
-0.8797674 theirs </s>
-0.9573849 theirs is -0.03967361
-0.9078251 animal to -0.03967361
-0.9496847 animal as -0.03967361
-0.9685929 sleeping room -0.03967362
-0.9710154 sleeping car -0.03967361
-1.413819 car is -0.03967361
-0.6356532 car <unk> -0.03967362
-1.352676 car a -0.03967361
-1.386103 car was -0.03967361
-1.445835 car stopped -0.03967361
-0.9710154 wide awake -0.03967361
-0.9712584 wide berth -0.03967362
-0.8486216 berth <unk> -0.03967361
-0.961881 berth an -0.03967362
-0.8797674 unattached </s>
-0.9659437 unattached man -0.03967361
-1.188931 lady <unk> -0.03967361
-0.6895543 lady who -0.03967361
-1.43924 lady may -0.03967361
-1.447651 lady wholly -0.03967361
-1.445231 lady sir -0.03967362
-1.059914 balance of -0.03967361
-1.137022 balance would -0.03967361
-1.142035 balance something -0.03967362
-1.053835 book <unk> -0.03967361
-1.233706 book but -0.03967361
-1.250021 book or -0.03967361
-1.204051 book he -0.03967362
-1.576212 lost by -0.03967362
-1.459439 lost in -0.03967361
-0.8587337 lost her -0.03967361
-1.573609 lost all -0.5167949
-1.552511 lost his -0.03967361
-1.618197 lost sight -0.03967361
-1.606847 lost our -0.03967361
-1.622047 lost youth -0.03967361
-1.016274 cash </s>
-1.146742 cash book -0.03967361
-1.147107 cash takes -0.03967361
-0.8486216 gait <unk> -0.03967361
-0.9702873 gait each -0.03967361
-0.8486216 brilliant <unk> -0.03967361
-0.9659437 brilliant man -0.03967362
-0.3843304 game in -0.3407036
-1.135837 game what -0.03967361
-0.9583275 receives no -0.03967361
-0.9673867 receives us -0.03967361
-0.3687573 bat <unk> -0.03967362
-1.14735 bat ball -0.03967361
-0.8486216 ball <unk> -0.03967361
-0.8990917 ball and -0.03967361
-0.9681101 takes place -0.03967361
-0.9700448 takes several -0.03967361
-0.8486216 high <unk> -0.03967361
-0.9690763 high things -0.03967361
-0.8486216 department <unk> -0.03967362
-0.9712584 department store -0.03967361
-0.8797674 fight </s>
-0.8990917 fight and -0.03967361
-1.216467 foot </s>
-1.287859 foot of -0.03967361
-1.415168 foot or -0.03967362
-1.34947 foot he -0.03967361
-1.428893 foot did -0.03967361
-1.447409 foot ball -0.03967362
-0.8486216 gain <unk> -0.03967361
-0.9590359 gain by -0.03967361
-1.137899 birth and -0.03967361
-1.153147 birth to -0.03967361
-1.253266 birth an -0.03967362
-1.271802 birth observed -0.03967361
-0.3908387 discovered by -0.03967361
-1.1356 discovered from -0.03967361
-1.016274 higher </s>
-1.042958 higher and -0.03967361
-1.146742 higher preferred -0.03967361
-0.8797674 sand </s>
-0.8486216 sand <unk> -0.03967361
-1.471961 water </s>
-1.574235 water the -0.03967361
-1.052826 water <unk> -0.03967361
-1.548944 water and -0.03967361
-1.770807 water that -0.03967362
-1.857964 water had -0.03967361
-1.981131 water away -0.03967361
-1.770807 water it -0.03967361
-1.794858 water was -0.03967361
-1.587454 water to -0.03967361
-1.938226 water well -0.03967361
-1.921357 water if -0.03967361
-1.866994 water so -0.03967361
-1.90313 water which -0.03967361
-1.901151 water when -0.03967361
-1.998072 water rose -0.03967361
-1.815432 water you -0.03967361
-2.005539 water closed -0.3407036
-1.990731 water brought -0.03967361
-2.003036 water covered -0.03967362
-2.008057 water grew -0.03967362
-1.176 covered the -0.03967361
-0.51173 covered with -0.03967361
-1.244173 covered his -0.03967361
-1.151475 heaven <unk> -0.03967361
-1.335753 heaven a -0.03967361
-1.372728 heaven for -0.03967361
-1.443786 heaven probably -0.03967362
-1.444508 heaven stay -0.03967361
-1.440909 heaven better -0.03967361
-1.297797 around the -0.03967361
-1.188931 around <unk> -0.03967362
-1.285931 around and -0.03967361
-0.6855492 around his -0.03967361
-1.444026 around perhaps -0.03967361
-0.9741672 married <unk> -0.03967361
-1.042958 married and -0.03967361
-1.147107 married female -0.03967362
-0.8486216 female <unk> -0.03967361
-0.9702873 female head -0.03967361
-1.137734 lower over -0.03967362
-1.146742 lower preferred -0.03967361
-1.147107 lower lip -0.03967361
-0.924088 figures in -0.03967361
-0.9712584 figures weaving -0.03967362
-1.148005 picture the -0.03967361
-1.22186 picture was -0.03967361
-1.269381 picture taken -0.03967361
-1.254198 picture then -0.03967362
-1.078179 useful in -0.03967361
-1.05517 useful to -0.03967361
-1.147107 useful product -0.03967362
-0.2113332 product of -0.5167949
-1.312401 dead </s>
-1.241932 dead <unk> -0.03967361
-1.359666 dead and -0.03967361
-0.8119381 dead or -0.3407036
-1.459849 dead he -0.03967361
-1.559563 dead men -0.03967362
-1.555461 dead these -0.03967361
-0.9111986 form of -0.03967361
-0.9333439 form i -0.03967361
-1.051061 paying the -0.03967361
-1.133123 paying an -0.03967361
-1.141315 paying three -0.03967361
-1.253266 board an -0.03967361
-1.257944 board are -0.03967361
-1.265057 board may -0.03967361
-1.271802 board bills -0.03967361
-0.8486216 bills <unk> -0.03967361
-0.9705298 bills instead -0.0396736
-0.9702873 complaint often -0.03967361
-0.9702873 complaint against -0.03967361
-0.9448547 mistaken for -0.03967361
-0.9712584 mistaken somebody -0.03967361
-0.9693182 whereby being -0.03967361
-0.9695603 whereby love -0.03967361
-0.9078251 color to -0.03967361
-0.9628335 color we -0.03967361
-0.9306792 blush a -0.03967361
-0.9448547 blush for -0.03967361
-0.8797674 sensorium </s>
-0.9555056 sensorium so -0.03967361
-1.103792 shame that -0.03967361
-1.122665 shame on -0.03967361
-1.146742 shame anger -0.03967361
-1.016274 anger </s>
-1.13066 anger or -0.03967361
-1.138448 anger made -0.03967361
-1.016274 cause </s>
-1.059914 cause of -0.03967361
-1.05517 cause to -0.03967361
-0.9583275 bone one -0.03967361
-0.9645055 bone before -0.03967361
-0.2113332 price of -0.03967361
-1.361848 trouble found -0.03967361
-1.32301 trouble his -0.03967361
-1.340855 trouble which -0.03967361
-1.339151 trouble my -0.03967361
-1.36847 trouble caused -0.03967362
-1.053835 human <unk> -0.03967361
-1.271802 human nature -0.03967361
-1.271802 human sympathy -0.03967361
-1.271802 human neighbourhood -0.03967362
-0.1826455 sarah <unk> -0.03967362
-1.368712 sarah makes -0.03967361
-0.9306792 bower a -0.03967361
-0.9614055 bower there -0.03967361
-0.6705931 shady retreat -0.3407036
-0.646233 retreat in -0.03967361
-1.053835 general <unk> -0.03967362
-1.214989 general that -0.03967362
-1.269381 general father -0.03967362
-1.269865 general held -0.03967361
-1.053835 york <unk> -0.03967361
-1.220563 york for -0.03967361
-1.265535 york too -0.03967361
-1.268899 york seemed -0.03967361
-0.6570617 security for -0.5167949
-1.055859 brain </s>
-0.3805716 brain the -0.03967361
-1.051061 furnished the -0.03967361
-1.113126 furnished with -0.03967361
-1.133123 furnished an -0.03967361
-1.059914 heat of -0.03967361
-1.123699 heat so -0.03967361
-1.147107 heat hot -0.03967361
-0.215984 hot or -0.03967361
-1.218616 cold the -0.03967361
-1.360059 cold even -0.03967361
-1.366654 cold water -0.03967361
-1.365447 cold tired -0.03967362
-1.367864 cold kiss -0.03967361
-0.8797674 desired </s>
-0.8486216 desired <unk> -0.03967361
-0.8486216 inside <unk> -0.03967361
-0.9111986 inside of -0.03967361
-1.087607 holding a -0.03967361
-1.13277 holding out -0.03967361
-1.125083 holding him -0.03967361
-1.104936 crowd </s>
-1.137899 crowd and -0.03967361
-1.270348 crowd together -0.03967361
-1.262673 crowd came -0.03967361
-0.9583275 occupied one -0.03967361
-0.9590359 occupied by -0.03967362
-0.8797674 intellect </s>
-0.8486216 intellect <unk> -0.03967361
-0.9741672 thoughts <unk> -0.03967361
-1.042958 thoughts and -0.03967361
-1.133476 thoughts if -0.03967361
-1.238627 friends had -0.03967362
-1.260302 friends made -0.03967361
-1.270832 friends call -0.03967361
-1.239077 friends said -0.03967361
-0.9517712 wall but -0.03967361
-0.9710154 wall papers -0.03967361
-0.9688346 finds its -0.03967361
-0.9418915 finds it -0.03967361
-0.8797674 match </s>
-0.9548029 match on -0.03967361
-0.8797674 brevity </s>
-0.9712584 brevity pointed -0.03967362
-0.8486216 injured <unk> -0.03967361
-0.924088 injured in -0.03967361
-0.8797674 fourth </s>
-0.9111986 fourth of -0.03967361
-0.9048946 expressing the -0.03967361
-0.9712584 expressing acute -0.03967361
-0.5012274 condition of -0.03967361
-1.254548 condition from -0.03967361
-1.255248 condition which -0.03967361
-0.8990917 bent and -0.03967361
-0.9548029 bent on -0.03967361
-1.201846 fallen </s>
-0.5975819 fallen in -0.03967361
-1.326191 fallen at -0.03967362
-1.368712 fallen tough -0.03967362
-0.8486216 tough <unk> -0.03967362
-0.9702873 tough fall -0.03967361
-1.148005 daylight the -0.03967361
-1.214989 daylight it -0.03967361
-1.204051 daylight he -0.03967361
-1.261249 daylight two -0.03967361
-0.9111986 neighborhood of -0.03967361
-0.9455414 neighborhood was -0.03967361
-1.234809 country and -0.03967361
-0.5926748 country of -0.3407036
-1.363884 country home -0.03967361
-1.366775 country round -0.03967361
-1.216467 round </s>
-1.273 round the -0.03967361
-1.151475 round <unk> -0.03967361
-1.37457 round was -0.03967361
-1.401864 round her -0.03967361
-1.441627 round face -0.03967361
-0.2046675 carefully <unk> -0.03967361
-0.9111986 trace of -0.03967361
-0.9707725 trace behind -0.03967361
-1.016274 missing </s>
-1.139163 missing man -0.03967361
-1.146015 missing man's -0.03967361
-1.183941 savareen <unk> -0.03967361
-1.457708 savareen had -0.03967361
-1.419233 savareen it -0.03967361
-1.32409 savareen to -0.03967361
-1.443057 savareen as -0.03967361
-1.512419 savareen sat -0.03967361
-1.510733 savareen squire -0.03967362
-1.14384 lord until -0.03967361
-1.147107 lord chamberlain -0.03967361
-1.147107 lord sheriff's -0.03967362
-0.8486216 vain <unk> -0.03967361
-0.9710154 vain lapierre -0.03967362
-1.016274 lapierre </s>
-1.139163 lapierre after -0.03967361
-1.143478 lapierre gave -0.03967361
-0.2109954 according to -0.03967362
-1.016274 arrived </s>
-1.139163 arrived just -0.03967361
-1.123699 arrived so -0.03967361
-0.8990917 couch and -0.03967361
-0.9705298 couch across -0.03967361
-0.8486216 broken <unk> -0.03967361
-0.8990917 broken and -0.03967361
-0.8486216 disturbed <unk> -0.03967362
-0.9508427 disturbed she -0.03967361
-1.435718 squire </s>
-0.8949815 squire <unk> -0.03967361
-1.489959 squire and -0.03967361
-1.642731 squire was -0.03967361
-1.516003 squire to -0.03967361
-1.745538 squire helped -0.03967361
-0.734007 squire harrington -0.03967361
-1.747711 squire losing -0.03967361
-1.736951 squire robin -0.03967361
-1.109101 harrington was -0.03967361
-1.142395 harrington went -0.03967361
-1.147107 harrington likewise -0.03967361
-0.9494535 inquiries at -0.03967362
-0.9616432 inquiries about -0.03967361
-1.254409 story </s>
-1.31649 story the -0.03967361
-1.472099 story not -0.03967361
-1.443057 story as -0.03967361
-1.509892 story won't -0.03967361
-1.492598 story will -0.03967361
-1.509052 story told -0.03967361
-0.8990917 jonathan and -0.03967361
-0.9712584 jonathan perry -0.03967362
-0.8797674 perry </s>
-0.9712584 perry professed -0.03967361
-0.9048946 fix the -0.03967361
-0.9590359 fix me -0.03967361
-1.273 started the -0.03967361
-1.151475 started <unk> -0.03967361
-1.432392 started back -0.03967361
-1.279871 started to -0.03967361
-1.372728 started for -0.03967361
-1.413146 started from -0.03967361
-0.8486216 ridden <unk> -0.03967361
-0.9595088 ridden from -0.03967361
-0.9496847 theory as -0.03967361
-0.9710154 theory promised -0.03967362
-0.9710154 likewise higher -0.03967361
-0.9712584 likewise learned -0.03967361
-0.9583275 learned all -0.03967361
-0.9666646 learned nothing -0.03967361
-1.231387 man's <unk> -0.03967362
-1.613076 man's house -0.03967361
-1.618437 man's body -0.03967361
-1.613076 man's eyes -0.03967361
-1.621685 man's game -0.03967361
-1.620599 man's conversation -0.03967361
-1.620599 man's coat -0.03967361
-1.622773 man's personal -0.03967361
-1.618437 man's excuse -0.03967361
-0.9741672 previous <unk> -0.03967361
-1.146379 previous afternoon -0.03967361
-1.146015 previous evening -0.03967361
-1.078179 disappeared in -0.03967361
-1.129609 disappeared from -0.03967361
-1.095301 disappeared he -0.03967361
-1.151475 manner <unk> -0.03967361
-1.364836 manner it -0.03967361
-1.414493 manner which -0.03967362
-1.342558 manner i -0.03967361
-1.444508 manner maybe -0.0396736
-1.446682 manner morcerf -0.03967361
-1.273 leave the -0.03967361
-1.382016 leave with -0.03967361
-1.409797 leave no -0.03967361
-1.411804 leave me -0.03967362
-1.440193 leave new -0.03967362
-1.441627 leave alone -0.03967362
-0.9710154 literally warm -0.03967361
-0.9642662 literally have -0.03967361
-0.9078251 professed to -0.03967361
-0.9710154 professed produced -0.03967361
-1.151475 longer <unk> -0.03967362
-1.399903 longer on -0.03967361
-1.419922 longer were -0.03967361
-1.42542 longer any -0.03967361
-1.447409 longer believed -0.03967361
-1.441627 longer princess -0.03967361
-0.8990917 interview and -0.03967361
-0.9710154 interview mistress -0.0396736
-1.148005 conversation the -0.03967361
-1.238627 conversation had -0.03967361
-1.249099 conversation this -0.03967361
-1.268899 conversation began -0.03967361
-1.216467 o'clock </s>
-1.273 o'clock the -0.03967361
-1.372728 o'clock for -0.03967362
-1.385156 o'clock at -0.03967362
-1.399903 o'clock on -0.03967361
-1.342558 o'clock i -0.03967361
-1.194193 within a -0.03967361
-1.266494 within themselves -0.03967361
-1.261249 within two -0.03967361
-1.266014 within five -0.03967361
-0.3805716 minutes the -0.03967361
-1.14735 minutes afterwards -0.03967361
-0.8486216 afterwards <unk> -0.03967361
-0.9360249 afterwards he -0.03967361
-1.12891 deposited by -0.03967362
-1.122665 deposited on -0.03967362
-1.132418 deposited there -0.03967362
-0.9111986 interior of -0.03967361
-0.9606933 interior they -0.03967361
-1.183941 coat <unk> -0.03967361
-1.301674 coat and -0.03967361
-1.430282 coat was -0.03967361
-1.494216 coat made -0.03967361
-1.498286 coat came -0.03967361
-1.513265 coat worn -0.03967361
-1.512419 coat pocket -0.03967362
-0.9306792 party a -0.03967361
-0.9710154 party proceeded -0.03967361
-0.9597455 noon when -0.03967361
-0.9642662 noon do -0.03967361
-1.150745 quietly <unk> -0.03967361
-0.5879833 quietly and -0.03967361
-1.326631 quietly as -0.03967361
-1.360535 quietly why -0.03967361
-0.9741672 damp <unk> -0.03967361
-1.136666 damp are -0.03967361
-1.146379 damp fresh -0.03967361
-1.042958 swamp and -0.03967361
-1.114814 swamp at -0.03967362
-1.131363 swamp they -0.03967361
-0.2113332 rear of -0.03967361
-0.8486216 wholly <unk> -0.03967361
-0.9700448 wholly turned -0.03967361
-1.016274 spent </s>
-1.051061 spent the -0.03967361
-1.087607 spent a -0.03967361
-1.148005 neck the -0.03967361
-1.053835 neck <unk> -0.03967361
-1.262673 neck came -0.03967361
-1.259358 neck will -0.03967362
-1.13031 saddle which -0.03967361
-1.146015 saddle however -0.03967361
-1.147107 saddle furnished -0.03967361
-1.140597 apparently without -0.03967361
-1.141675 apparently been -0.03967361
-1.147107 apparently asleep -0.03967362
-0.2113332 disappearance of -0.03967361
-0.3754455 whatever </s>
-1.14396 whatever may -0.03967361
-0.9741672 wet <unk> -0.03967362
-1.042958 wet and -0.03967361
-1.145652 wet street -0.03967361
-1.042958 mud and -0.03967361
-1.116848 mud she -0.03967361
-1.142756 mud put -0.03967362
-0.8797674 disappointed </s>
-0.924088 disappointed in -0.03967361
-0.2113332 traces of -0.03967362
-0.8990917 footsteps and -0.03967361
-0.9707725 footsteps unto -0.03967361
-0.8797674 character </s>
-0.9111986 character of -0.03967361
-1.216467 care </s>
-1.364836 care that -0.03967361
-1.287859 care of -0.03967361
-1.279871 care to -0.03967361
-1.385156 care at -0.03967361
-1.418559 care who -0.03967361
-1.053835 local <unk> -0.03967361
-1.270832 local fellow -0.03967361
-1.272288 local coroner -0.03967361
-1.271802 local lawyer -0.03967361
-0.9078251 distinctly to -0.03967361
-0.9710154 distinctly remembered -0.03967361
-1.127863 remembered one -0.03967361
-0.9741672 remembered <unk> -0.03967361
-1.144926 remembered having -0.03967361
-1.099106 top <unk> -0.03967361
-0.5012274 top of -0.03967361
-1.266614 top last -0.03967361
-1.283414 days </s>
-1.474084 days is -0.03967361
-0.721231 days and -0.03967361
-1.480766 days when -0.03967362
-1.495839 days will -0.03967361
-1.511455 days nearly -0.03967361
-0.8486216 especially <unk> -0.03967361
-0.9707725 especially concluded -0.03967362
-1.135955 throw any -0.03967361
-1.142035 throw off -0.03967361
-1.12891 throw me -0.03967361
-0.8990917 fate and -0.03967361
-0.9683514 fate hand -0.03967361
-0.8486216 personal <unk> -0.03967361
-0.9707725 personal appearance -0.03967361
-1.619367 every one -0.03967361
-0.8258563 every <unk> -0.03967361
-1.665875 every hollow -0.03967362
-1.659189 every other -0.03967361
-1.667805 every field -0.03967361
-1.668772 every barn -0.03967361
-0.9139304 every day -0.03967361
-1.668772 every bar -0.03967361
-0.924088 bar in -0.03967361
-0.9685929 bar room -0.03967361
-1.341406 doctor </s>
-1.532075 doctor is -0.03967361
-1.276413 doctor <unk> -0.03967361
-1.563703 doctor left -0.03967361
-1.572347 doctor approached -0.03967361
-0.5578806 doctor groom -0.03967362
-0.6699854 coroner held -0.03967361
-0.8486216 proved <unk> -0.03967362
-0.9494535 proved at -0.03967361
-0.9712584 public meeting -0.03967361
-0.9710154 public affairs -0.03967361
-0.924088 meeting in -0.03967361
-0.9111986 meeting of -0.03967361
-0.9642662 funds are -0.03967361
-0.961881 funds were -0.03967362
-0.8833208 still <unk> -0.03967361
-1.191808 still a -0.03967361
-1.905213 still by -0.03967361
-1.973402 still time -0.03967361
-1.988426 still until -0.03967362
-1.754408 still he -0.03967361
-1.992816 still further -0.03967361
-1.988426 still since -0.03967361
-1.87224 still said -0.03967361
-1.995027 still though -0.03967362
-1.935064 still we -0.03967361
-2.00173 still air -0.03967362
-1.973402 still upon -0.03967362
-2.008539 still missing -0.03967361
-2.008539 still smiled -0.03967361
-2.008539 still sneered -0.03967361
-2.00173 still doth -0.03967361
-2.006257 still baron -0.03967361
-2.008539 still owe -0.03967361
-1.016274 fence </s>
-1.051061 fence the -0.03967361
-1.146742 fence corner -0.03967362
-1.103792 corner that -0.03967362
-1.059914 corner of -0.03967361
-1.109101 corner was -0.03967361
-1.133123 district were -0.03967362
-1.145289 district doctor -0.03967362
-1.147471 district attorney -0.03967362
-1.201846 forth </s>
-1.244915 forth the -0.03967361
-0.6065569 forth with -0.03967361
-1.317473 forth for -0.03967361
-0.9678688 facts even -0.03967361
-0.961881 facts were -0.03967362
-0.8486216 newspapers <unk> -0.03967362
-0.9111986 newspapers of -0.03967361
-0.9741672 merely <unk> -0.03967361
-1.145652 merely afraid -0.03967361
-1.146379 merely whispered -0.03967361
-0.9078251 unconsciously to -0.03967361
-0.9595088 unconsciously from -0.03967361
-0.9048946 seven the -0.03967361
-0.9710154 seven rosalind -0.03967361
-1.051061 courtyard the -0.03967361
-1.059914 courtyard of -0.03967361
-1.134183 courtyard bobby -0.03967361
-1.368586 bobby </s>
-1.789888 bobby the -0.03967361
-0.8016502 bobby <unk> -0.03967362
-1.937696 bobby a -0.03967361
-2.018056 bobby that -0.03967361
-1.53423 bobby had -0.3407036
-2.291743 bobby its -0.03967361
-1.804755 bobby to -0.03967361
-2.281909 bobby went -0.03967361
-1.97442 bobby he -0.03967361
-1.311746 bobby asked -0.03967361
-2.308646 bobby didn't -0.03967361
-2.305212 bobby he's -0.03967362
-2.295072 bobby since -0.03967362
-1.95567 bobby i -0.03967362
-2.241692 bobby did -0.03967361
-1.138673 bobby said -0.03967361
-2.285162 bobby looked -0.03967361
-2.315596 bobby forced -0.03967361
-2.305212 bobby returned -0.03967361
-2.215882 bobby we -0.03967362
-1.311746 bobby answered -0.03967361
-2.315596 bobby walked -0.03967361
-1.574267 bobby turned -0.03967361
-2.305212 bobby let -0.03967361
-2.312107 bobby started -0.03967361
-2.315596 bobby glanced -0.03967361
-2.322658 bobby persisted -0.03967361
-2.319113 bobby sprang -0.03967362
-2.326233 bobby handed -0.03967361
-1.373767 bed </s>
-1.449173 bed the -0.03967361
-0.8473644 bed <unk> -0.03967361
-1.430964 bed and -0.03967361
-1.469568 bed of -0.03967361
-1.696572 bed those -0.03967361
-1.591742 bed for -0.03967361
-1.557189 bed he -0.03967361
-1.701293 bed boy -0.03967361
-1.709681 bed pale -0.03967362
-1.359464 lay down -0.03967362
-1.259111 lay in -0.03967361
-1.330172 lay her -0.03967361
-1.344284 lay there -0.03967361
-1.332399 lay him -0.03967361
-1.266014 graham's hand -0.03967361
-1.271802 graham's suggestion -0.03967362
-1.271802 graham's meaning -0.03967361
-1.270348 graham's words -0.03967362
-1.053835 remained <unk> -0.03967361
-1.22186 remained was -0.03967361
-1.270832 remained open -0.03967361
-1.270832 remained fixed -0.03967361
-0.8797674 learn </s>
-0.9669052 learn how -0.03967361
-1.053835 paredes's <unk> -0.03967361
-1.270348 paredes's odd -0.03967362
-1.271802 paredes's arrival -0.03967362
-1.271317 paredes's clear -0.03967361
-0.2143006 dreamed that -0.03967361
-0.9741672 weariness <unk> -0.03967361
-1.138806 weariness could -0.03967362
-1.119234 weariness his -0.03967361
-1.042958 reflections and -0.03967361
-1.11821 reflections but -0.03967361
-1.122665 reflections on -0.03967361
-1.265057 slept little -0.03967361
-1.25983 slept like -0.03967361
-1.260302 slept again -0.03967361
-1.271802 slept pleasantly -0.03967362
-1.336164 lake and -0.03967361
-1.360485 lake to -0.03967361
-1.47499 lake for -0.03967361
-1.509675 lake on -0.03967361
-1.49563 lake she -0.03967361
-1.445761 lake he -0.03967361
-1.564179 lake along -0.03967361
-1.541912 lake your -0.03967361
-0.9111986 movement of -0.03967361
-0.9657037 movement could -0.03967362
-0.4611363 became <unk> -0.03967361
-1.541314 became a -0.03967361
-1.52275 became in -0.03967361
-1.637129 became an -0.03967361
-1.666477 became gray -0.03967361
-1.669015 became purple -0.03967361
-1.669015 became ashamed -0.03967361
-0.9741672 chief <unk> -0.03967361
-1.059914 chief of -0.03967361
-1.146015 chief fact -0.03967361
-0.9707725 harsh voices -0.03967361
-0.9698025 harsh voice -0.03967361
-1.05517 raised to -0.03967361
-1.119234 raised his -0.03967361
-1.142756 raised himself -0.03967361
-1.150745 glanced <unk> -0.03967362
-1.363404 glanced away -0.03967361
-0.6069769 glanced at -0.03967362
-1.345548 glanced from -0.03967361
-0.924088 fellows in -0.03967361
-0.9111986 fellows of -0.03967361
-0.3435716 across the -0.03967361
-1.361012 across their -0.03967361
-1.360297 across some -0.03967361
-0.9496847 telephoned as -0.03967361
-0.9712584 telephoned katherine -0.03967361
-0.9583275 katherine one -0.03967361
-0.9360249 katherine he -0.03967361
-0.8990917 landscape and -0.03967361
-0.9418915 landscape it -0.03967361
-0.9543351 underbrush had -0.03967361
-0.9494535 underbrush at -0.03967362
-0.9828095 graham <unk> -0.03967361
-1.968957 graham had -0.03967361
-1.972425 graham on -0.03967361
-2.050397 graham would -0.03967361
-2.024127 graham there -0.03967361
-1.935723 graham as -0.03967361
-2.07836 graham asked -0.03967362
-2.058811 graham made -0.03967362
-2.010613 graham what -0.03967361
-1.833558 graham i -0.03967361
-0.9287032 graham said -0.1646124
-2.054584 graham only -0.03967361
-1.098119 graham answered -0.03967361
-2.113033 graham interrupted -0.03967361
-2.113033 graham desired -0.03967362
-2.105873 graham leave -0.03967361
-2.113033 graham smiled -0.03967362
-2.110634 graham persisted -0.03967361
-2.113033 graham urged -0.03967361
-1.361429 graham moved -0.0396736
-0.9048946 wearily the -0.03967361
-0.9590359 wearily by -0.03967361
-1.168367 grave </s>
-1.10975 grave <unk> -0.03967361
-1.259111 grave in -0.03967361
-1.316503 grave as -0.03967361
-1.285354 grave he -0.03967361
-0.9418915 cemetery it -0.03967361
-0.9078251 cemetery to -0.03967361
-0.9048946 prepare the -0.03967361
-0.9306792 prepare a -0.03967361
-1.024713 silas <unk> -0.03967361
-0.3930585 silas blackburn -0.0396736
-0.8797674 blackburn </s>
-0.9543351 blackburn had -0.03967361
-1.247718 stand by -0.3407036
-1.261723 stand back -0.03967361
-1.264102 stand upon -0.03967362
-1.269865 stand around -0.03967361
-0.3337842 dull <unk> -0.03967361
-1.264807 dull and -0.03967361
-1.325641 dull it -0.03967361
-0.3805716 repeated the -0.03967361
-1.140836 repeated them -0.03967361
-0.9666646 buried graham -0.03967361
-0.9710154 buried amongst -0.03967361
-0.8486216 softly <unk> -0.03967361
-0.8990917 softly and -0.03967361
-0.8797674 smiled </s>
-0.9517712 smiled but -0.03967362
-1.129609 walking from -0.03967361
-1.141675 walking last -0.03967361
-1.147107 walking compelled -0.03967361
-0.8990917 maria and -0.03967361
-0.9649844 maria did -0.03967361
-1.016274 persisted </s>
-1.05517 persisted to -0.03967361
-1.143478 persisted get -0.03967361
-0.9333439 breakfast i -0.03967361
-0.9623569 breakfast then -0.03967361
-1.10975 sprang <unk> -0.03967361
-1.352392 sprang into -0.03967361
-1.313286 sprang with -0.03967361
-1.339718 sprang from -0.03967361
-1.342566 sprang up -0.03967361
-0.9564442 urged him -0.03967361
-0.9625952 urged bobby -0.03967361
-0.9614055 eat there -0.03967361
-0.9705298 eat tried -0.03967361
-0.344053 tried to -0.03967361
-1.344514 tried on -0.03967362
-1.36605 tried everything -0.03967361
-0.9564442 handed him -0.03967361
-0.9625952 handed bobby -0.03967361
-1.254409 robinson </s>
-1.183941 robinson <unk> -0.03967362
-1.461449 robinson so -0.03967362
-1.499925 robinson still -0.03967361
-1.484599 robinson bobby -0.03967362
-1.508215 robinson entered -0.03967361
-1.514113 robinson sneered -0.03967361
-1.254409 court </s>
-1.386412 court a -0.03967361
-1.301674 court and -0.03967361
-1.474415 court from -0.03967361
-1.47519 court this -0.03967361
-1.401857 court he -0.03967361
-1.478304 court they -0.03967361
-0.9616432 wandering about -0.03967361
-0.9702873 wandering around -0.03967361
-0.2434769 easy <unk> -0.03967361
-1.245885 easy for -0.03967361
-0.8486216 uncommunicative <unk> -0.03967361
-0.9690763 uncommunicative eyes -0.03967361
-1.339947 appeared the -0.03967361
-1.218421 appeared <unk> -0.03967361
-0.7492975 appeared as -0.03967361
-1.509292 appeared rather -0.03967362
-1.514355 appeared moreover -0.03967361
-1.513628 appeared walking -0.03967361
-0.9548029 pleasantly on -0.03967361
-0.952469 pleasantly his -0.03967362
-0.9741672 clothing <unk> -0.03967361
-1.095301 clothing he -0.03967361
-1.127863 clothing no -0.03967361
-1.31649 spoke the -0.03967361
-1.438757 spoke with -0.03967361
-1.332943 spoke of -0.03967361
-1.442338 spoke at -0.03967362
-1.490183 spoke are -0.03967362
-1.511575 spoke thus -0.03967361
-1.514113 spoke seriously -0.03967361
-1.151475 rawlins <unk> -0.03967361
-1.398601 rawlins had -0.03967361
-1.432392 rawlins back -0.03967361
-1.279871 rawlins to -0.03967361
-1.440193 rawlins got -0.03967361
-1.444508 rawlins started -0.03967361
-1.305345 smithtown for -0.03967361
-1.341425 smithtown or -0.03967361
-1.351808 smithtown before -0.03967362
-1.279384 smithtown i -0.03967361
-1.366654 smithtown yesterday -0.03967361
-0.9048946 minister the -0.03967362
-0.9111986 minister of -0.03967361
-0.2113332 entrance of -0.3407036
-0.9111986 front of -0.03967361
-0.9700448 front door -0.03967361
-0.8797674 bell </s>
-0.9710154 bell jenkins -0.03967361
-1.145652 jenkins passed -0.03967361
-1.144563 jenkins entered -0.03967361
-1.147107 jenkins thanks -0.03967362
-1.087607 direction a -0.03967361
-1.059914 direction of -0.3407036
-1.095301 direction he -0.03967361
-1.099106 drawn <unk> -0.03967361
-0.5146505 drawn by -0.03967361
-1.26914 drawn along -0.03967362
-1.05517 rise to -0.03967361
-1.138448 rise again -0.03967361
-1.140238 rise graham -0.03967361
-0.3337842 moved <unk> -0.03967361
-1.364966 moved themselves -0.03967361
-1.368227 moved toward -0.03967361
-0.3645162 entered the -0.03967361
-1.373323 entered <unk> -0.03967361
-1.650045 entered into -0.03967362
-1.481424 entered and -0.03967361
-1.564406 entered i -0.03967361
-1.660613 entered another -0.03967361
-0.8797674 faced </s>
-0.9625952 faced bobby -0.03967361
-1.341406 suddenly </s>
-0.7497851 suddenly <unk> -0.03967361
-0.7998552 suddenly he -0.03967361
-1.467496 suddenly i -0.03967361
-1.572347 suddenly cleared -0.03967362
-1.57017 suddenly rushed -0.03967362
-0.9654638 miss here -0.03967361
-0.9707725 miss graham's -0.03967361
-0.3754455 glance </s>
-1.024713 glance <unk> -0.03967361
-0.2109954 wants to -0.03967361
-1.242694 paid him -0.03967362
-1.199094 paid i -0.03967361
-1.247718 paid me -0.03967361
-1.268899 paid hundred -0.03967361
-1.338584 rushed by -0.03967362
-1.339718 rushed from -0.03967361
-1.344858 rushed out -0.03967361
-1.363644 rushed towards -0.03967361
-1.367864 rushed forth -0.03967361
-0.9306792 courthouse a -0.03967361
-0.9700448 courthouse probably -0.03967362
-1.303854 pay to -0.03967362
-1.419467 pay this -0.03967361
-1.431573 pay them -0.03967361
-1.41158 pay him -0.03967361
-0.6884967 pay me -0.03967361
-0.8797674 thanks </s>
-0.9333439 thanks i -0.03967361
-0.8797674 fail </s>
-0.9078251 fail to -0.03967361
-0.9741672 bobby's <unk> -0.03967361
-1.145652 bobby's questions -0.03967361
-1.146742 bobby's thoughts -0.03967361
-0.9048946 expressed the -0.03967361
-0.8486216 expressed <unk> -0.03967361
-0.128745 promised to -0.03967361
-0.9741672 necessary <unk> -0.03967362
-1.05517 necessary to -0.03967361
-1.108101 necessary for -0.03967361
-0.9543351 panamanian had -0.03967361
-0.9078251 panamanian to -0.03967361
-1.244915 return the -0.03967361
-1.150745 return <unk> -0.03967361
-0.5913756 return to -0.03967361
-1.357212 return again -0.03967361
-1.104936 cedars </s>
-1.260302 cedars again -0.03967361
-1.269381 cedars above -0.03967362
-1.271317 cedars silas -0.03967361
-0.9555056 compelled her -0.03967362
-0.9564442 compelled him -0.03967361
-1.078179 remain in -0.03967361
-1.108101 remain for -0.03967361
-1.147107 remain buried -0.03967361
-1.188931 present <unk> -0.03967361
-0.6725276 present in -0.3407036
-1.37776 present it -0.03967361
-1.42519 present if -0.03967361
-1.441029 present themselves -0.03967362
-0.8486216 mournful <unk> -0.03967362
-0.9693182 mournful face -0.03967362
-1.204051 therefore he -0.03967361
-1.248178 therefore my -0.03967361
-1.263625 therefore still -0.03967361
-1.268417 therefore entered -0.03967361
-1.087607 crush a -0.03967361
-1.059914 crush of -0.03967361
-1.119234 crush his -0.03967361
-0.5012274 sum of -0.03967361
-1.243149 sum but -0.03967361
-1.268417 sum yet -0.03967361
-1.051061 grasp the -0.03967361
-1.114814 grasp at -0.03967362
-1.144926 grasp suddenly -0.03967361
-0.9048946 support the -0.03967361
-0.952469 support his -0.03967361
-1.364836 virtue it -0.03967361
-1.279871 virtue to -0.03967361
-1.391507 virtue but -0.03967362
-1.34947 virtue he -0.03967361
-1.442345 virtue that's -0.03967361
-1.438764 virtue question -0.03967362
-1.099106 ill <unk> -0.03967361
-0.5002403 ill to -0.03967361
-1.239753 ill at -0.03967361
-1.104936 difficulty </s>
-1.182177 difficulty in -0.03967361
-1.1591 difficulty of -0.03967362
-1.252801 difficulty about -0.03967362
-1.059914 judge of -0.03967361
-1.138806 judge could -0.03967361
-1.140956 judge why -0.03967361
-0.5907739 hold of -0.2157649
-1.565047 hold she -0.03967361
-1.561878 hold as -0.03967361
-1.600821 hold your -0.03967361
-1.617001 hold first -0.03967361
-0.8634698 hold me -0.03967361
-0.4993784 witness the -0.03967361
-1.268056 witness those -0.03967361
-1.22024 witness he -0.03967361
-1.104936 fixed </s>
-1.194193 fixed a -0.03967361
-1.239527 fixed on -0.03967361
-1.235043 fixed his -0.03967362
-0.9455414 lawyer was -0.03967361
-0.9614055 lawyer who -0.03967361
-1.168367 hall </s>
-1.359464 hall last -0.03967361
-1.340286 hall when -0.03967361
-1.367864 hall holding -0.03967361
-1.36605 hall rawlins -0.03967361
-1.227085 reply with -0.03967361
-1.214989 reply that -0.03967361
-1.204051 reply he -0.03967361
-1.266494 reply oh -0.03967362
-1.194193 worked a -0.03967361
-1.182177 worked in -0.03967361
-1.268899 worked he's -0.03967362
-1.264102 worked us -0.03967361
-0.9111986 opening of -0.03967362
-0.952469 opening his -0.03967361
-0.8486216 vast <unk> -0.03967361
-0.8990917 vast and -0.03967361
-1.12891 forgive me -0.03967361
-1.141315 forgive us -0.03967361
-1.134183 forgive bobby -0.03967361
-0.9741672 staircase <unk> -0.03967361
-1.109101 staircase was -0.03967361
-1.146742 staircase groaned -0.03967361
-1.104936 carlos </s>
-1.220563 carlos for -0.03967361
-1.265057 carlos may -0.03967361
-1.266974 carlos gave -0.03967361
-0.9642662 bygones are -0.03967361
-0.9690763 bygones isn't -0.03967361
-0.8990917 flesh and -0.03967361
-0.9702873 flesh around -0.03967361
-0.9543351 worry had -0.03967361
-0.9496847 worry as -0.03967361
-0.9048946 increased the -0.03967361
-0.9707725 increased self -0.03967361
-0.9111986 impression of -0.03967361
-0.9418915 impression it -0.03967361
-1.104936 attorney </s>
-1.22186 attorney was -0.03967361
-1.271317 attorney realized -0.03967361
-1.269381 attorney appeared -0.03967361
-0.8797674 measure </s>
-0.9111986 measure of -0.03967362
-0.9508427 strength she -0.03967361
-0.952469 strength his -0.03967361
-0.9700448 law won't -0.03967361
-0.9712584 law watched -0.03967362
-0.8990917 efforts and -0.03967361
-0.9078251 efforts to -0.03967361
-0.952469 sound his -0.03967361
-0.9707725 sound followed -0.03967361
-0.9685929 action those -0.03967361
-0.9625952 action bobby -0.03967361
-0.924088 glancing in -0.03967362
-0.9494535 glancing at -0.03967361
-0.8486216 wishes <unk> -0.03967361
-0.9625952 wishes bobby -0.03967362
-0.8990917 sea and -0.03967361
-0.9496847 sea as -0.03967361
-1.10975 immediately <unk> -0.03967361
-1.224672 immediately to -0.03967361
-1.321374 immediately but -0.03967361
-1.360059 immediately even -0.03967361
-1.363644 immediately towards -0.03967361
-0.9111986 indifference of -0.03967361
-0.9710154 indifference chance -0.03967361
-1.059914 chance of -0.03967361
-1.05517 chance to -0.03967361
-1.145652 chance led -0.03967362
-1.431573 led into -0.03967361
-1.352676 led a -0.03967361
-1.418899 led from -0.03967361
-0.6873364 led him -0.03967361
-1.446439 led thee -0.03967361
-0.9494535 thicket at -0.03967362
-0.9707725 thicket less -0.03967361
-1.016274 hurry </s>
-1.146379 hurry toward -0.03967361
-1.134183 hurry bobby -0.03967362
-0.9690763 sneered since -0.03967361
-0.9710154 sneered you'll -0.03967361
-1.051061 what's the -0.03967361
-1.078179 what's in -0.03967361
-1.146379 what's called -0.03967361
-1.135955 you'll be -0.03967361
-1.146742 you'll confess -0.03967361
-1.146742 you'll easily -0.03967361
-0.8486216 blood <unk> -0.03967361
-0.9705298 blood run -0.03967361
-1.024713 falling <unk> -0.03967361
-0.3843304 falling in -0.03967361
-0.9741672 paused <unk> -0.03967361
-1.042958 paused and -0.03967361
-1.05517 paused to -0.03967361
-0.9111986 labour of -0.03967361
-0.9712584 labour preserves -0.03967361
-0.9111986 nature of -0.03967361
-0.9448547 nature for -0.03967361
-0.216625 imposed upon -0.03967361
-0.8797674 roofs </s>
-0.9712584 roofs smoke -0.03967362
-0.8486216 smoke <unk> -0.03967361
-0.9712584 smoke shroud -0.03967361
-0.9306792 weaving a -0.03967361
-0.9111986 weaving of -0.03967361
-0.9078251 shroud to -0.03967361
-0.9700448 shroud above -0.03967362
-0.9741672 melancholy <unk> -0.03967361
-1.146742 melancholy office -0.03967361
-1.147107 melancholy walls -0.03967362
-0.8797674 walls </s>
-0.9710154 walls dirty -0.03967361
-1.254409 forest </s>
-1.301674 forest and -0.03967361
-1.449589 forest but -0.03967362
-1.428188 forest for -0.03967361
-1.499925 forest because -0.03967361
-1.497469 forest these -0.03967361
-1.514113 forest sometimes -0.03967361
-0.8990917 dismal and -0.03967361
-0.9712584 dismal sky -0.03967361
-0.9111986 torn of -0.03967361
-0.9678688 torn off -0.03967362
-0.8486216 careless <unk> -0.03967361
-0.9700448 careless tired -0.03967361
-0.3393305 path </s>
-1.27291 path the -0.03967361
-1.365327 path yet -0.03967361
-0.8797674 justice </s>
-0.924088 justice in -0.03967361
-1.285213 death </s>
-1.519012 death is -0.03967361
-1.408286 death in -0.03967361
-1.370121 death of -0.03967361
-1.535627 death were -0.03967362
-1.527677 death when -0.03967361
-1.571862 death maria -0.03967361
-1.569929 death chamber -0.03967361
-1.053835 fingers <unk> -0.03967361
-1.1591 fingers of -0.03967361
-1.239527 fingers on -0.03967361
-1.260302 fingers now -0.03967361
-1.168367 power </s>
-1.231699 power of -0.03967361
-1.224672 power to -0.03967361
-1.367258 power behind -0.03967361
-1.36847 power sublime -0.03967361
-0.9360249 accusation he -0.03967361
-0.9702873 accusation against -0.03967361
-0.4820174 fresh <unk> -0.03967361
-1.270954 fresh air -0.03967362
-1.272045 fresh flowers -0.03967362
-1.016274 itself </s>
-0.9741672 itself <unk> -0.03967361
-1.091437 itself i -0.03967361
-0.8797674 speaker </s>
-0.9705298 speaker deep -0.03967361
-0.8797674 definite </s>
-0.8486216 definite <unk> -0.03967361
-0.9048946 interest the -0.03967361
-0.9649844 interest did -0.03967361
-0.952469 apprehension his -0.03967361
-0.9710154 apprehension keeps -0.03967361
-0.9048946 approaching the -0.03967361
-0.9710154 approaching ordeal -0.03967361
-0.9741672 mourning <unk> -0.03967361
-1.059914 mourning of -0.03967361
-1.147107 mourning gloves -0.03967362
-0.9647449 harmony into -0.03967361
-0.9494535 harmony at -0.03967361
-0.9595088 emerged from -0.03967361
-0.9705298 emerged glanced -0.03967361
-1.042958 natural and -0.03967361
-1.05517 natural to -0.03967361
-1.14384 natural enough -0.03967361
-1.051061 slowly the -0.03967361
-1.139521 slowly back -0.03967361
-1.146742 slowly grasp -0.03967361
-1.444508 sad business -0.03967361
-1.342558 sad i -0.03967361
-1.443065 sad though -0.03967361
-1.446682 sad office -0.03967361
-1.441627 sad face -0.03967361
-1.447409 sad event -0.03967361
-0.9573849 crossing is -0.03967362
-0.9111986 crossing of -0.03967361
-0.961881 salvation were -0.03967361
-0.9360249 salvation he -0.03967361
-1.104936 groom </s>
-1.053835 groom <unk> -0.03967362
-1.263625 groom has -0.03967361
-1.269865 groom stood -0.03967361
-0.8797674 ready </s>
-0.9700448 ready doctor -0.0396736
-0.8797674 creeps </s>
-0.9681101 creeps too -0.03967361
-1.214989 makes that -0.03967362
-1.214989 makes it -0.03967361
-1.253266 makes an -0.03967361
-1.247718 makes me -0.03967361
-0.924088 blame in -0.03967361
-0.9707725 blame carlos -0.03967361
-0.9333439 share i -0.03967361
-0.9625952 share bobby -0.03967362
-1.125776 asking as -0.03967361
-0.3925452 asking myself -0.03967361
-0.8486216 weak <unk> -0.03967361
-0.8990917 weak and -0.03967361
-1.104936 move </s>
-1.248178 move my -0.03967361
-1.268899 move under -0.03967362
-1.269865 move either -0.03967361
-0.8797674 acquired </s>
-0.8486216 acquired <unk> -0.03967362
-0.9555056 direct her -0.03967361
-0.9635493 direct your -0.03967361
-1.323995 pocket with -0.03967362
-1.355796 pocket them -0.03967361
-1.358159 pocket might -0.03967362
-0.6146933 pocket book -0.03967361
-0.8797674 shape </s>
-0.8990917 shape and -0.03967361
-0.9661838 ghosts back -0.03967361
-0.924088 ghosts in -0.03967361
-0.63758 spoken to -0.03967361
-0.646233 howells in -0.03967361
-0.8797674 idea </s>
-0.9625952 idea bobby -0.03967362
-0.8797674 guilty </s>
-0.9683514 guilty say -0.03967361
-0.3896481 changed his -0.03967361
-1.145168 changed life -0.03967361
-0.3687573 perfectly <unk> -0.03967361
-1.141315 perfectly like -0.03967361
-1.051061 opposite the -0.03967361
-1.05517 opposite to -0.03967361
-1.146379 opposite shore -0.03967362
-0.9698025 scarcely believe -0.03967361
-0.9705298 scarcely glanced -0.03967361
-0.2166464 clothed men -0.03967362
-1.016274 chair </s>
-1.042958 chair and -0.03967361
-1.146015 chair arm -0.03967361
-0.4137615 arm </s>
-1.403176 arm with -0.03967361
-1.429358 arm were -0.03967362
-1.442106 arm put -0.03967362
-1.104936 stairs </s>
-1.1591 stairs of -0.03967361
-1.239527 stairs on -0.03967361
-1.270348 stairs talking -0.03967361
-0.9306792 clergyman a -0.03967361
-0.9712584 clergyman shook -0.03967362
-0.9048946 opened the -0.03967361
-0.9590359 opened by -0.03967361
-0.5146505 followed by -0.03967361
-1.254898 followed this -0.03967361
-1.265535 followed how -0.03967361
-0.8486216 entire <unk> -0.03967362
-0.9700448 entire company -0.03967362
-0.9048946 crowded the -0.03967361
-0.9693182 crowded along -0.03967361
-0.2168603 shook hands -0.03967362
-0.9448547 need for -0.03967361
-0.9587997 need not -0.03967361
-0.9418915 delay it -0.03967361
-0.9635493 delay your -0.03967361
-1.12647 cousin is -0.03967361
-1.132418 cousin who -0.03967361
-1.146379 cousin standing -0.03967361
-1.051061 desk the -0.03967361
-1.042958 desk and -0.03967361
-1.142756 desk see -0.03967361
-0.6393874 chest of -0.3407036
-1.016274 drawers </s>
-0.9741672 drawers <unk> -0.03967362
-1.139163 drawers two -0.03967361
-0.9048946 watched the -0.03967361
-0.8486216 watched <unk> -0.03967361
-1.246342 keeps one -0.03967361
-1.261723 keeps back -0.03967361
-1.242694 keeps him -0.03967361
-1.227523 keeps you -0.03967361
-0.8797674 faults </s>
-0.9642662 faults do -0.03967361
-1.136785 gives up -0.03967361
-0.392417 gives off -0.03967361
-1.05517 dollars to -0.03967362
-1.108101 dollars for -0.03967362
-1.147107 dollars meant -0.03967362
-1.409131 excuse for -0.03967361
-1.414493 excuse you -0.03967361
-0.2698974 excuse me -0.03967361
-0.8797674 needs </s>
-0.8486216 needs <unk> -0.03967361
-1.183941 thy <unk> -0.03967361
-1.510733 thy business -0.03967361
-1.512419 thy years -0.03967361
-1.510733 thy heart -0.03967361
-1.514113 thy footsteps -0.03967361
-1.512419 thy beauty -0.03967361
-1.514113 thy fair -0.03967361
-1.053835 beauty <unk> -0.03967361
-1.137899 beauty and -0.03967361
-1.1591 beauty of -0.03967361
-1.264579 beauty asked -0.3407036
-0.4734085 thou <unk> -0.03967361
-1.425216 thou in -0.03967361
-1.482115 thou said -0.03967362
-0.7609925 thou art -0.03967361
-0.8797674 art </s>
-0.9690763 art gone -0.03967361
-0.8990917 ay and -0.03967361
-0.9590359 ay me -0.03967361
-0.5002403 thee to -0.03967362
-1.233039 thee for -0.03967361
-1.252801 thee no -0.03967361
-1.055859 ah </s>
-0.3889268 ah you -0.03967361
-0.8486216 receiving <unk> -0.03967361
-0.9673867 receiving us -0.03967362
-0.319617 doth <unk> -0.1646123
-1.458027 doth that -0.03967361
-1.510492 doth first -0.03967361
-1.514841 doth prepare -0.03967362
-0.9681101 crystal can -0.03967361
-0.9690763 crystal eyes -0.03967362
-0.8797674 fair </s>
-0.9707725 fair appearance -0.03967361
-0.3687573 kings <unk> -0.3407036
-1.12439 kings with -0.03967361
-0.8486216 strong <unk> -0.03967361
-0.9712584 strong lift -0.03967361
-0.9671459 alas why -0.03967362
-0.9642662 alas do -0.03967361
-1.139163 o two -0.03967361
-1.146379 o tis -0.03967361
-1.147107 o henry -0.03967361
-0.590242 tis the -0.03967361
-1.150745 tis <unk> -0.03967361
-1.367258 tis late -0.0396736
-1.367742 tis fine -0.03967361
-0.8990917 sin and -0.03967361
-0.9418915 sin that -0.03967361
-0.9661838 drew back -0.03967361
-0.9595088 drew from -0.03967361
-1.141212 douglas </s>
-0.5145868 douglas not -0.03967361
-1.261961 douglas before -0.03967362
-0.9111986 consequence of -0.03967361
-0.9078251 consequence to -0.03967361
-1.042958 content and -0.03967361
-1.091437 content i -0.03967361
-1.143117 content myself -0.03967361
-0.9659437 reproach after -0.03967361
-0.9683514 reproach himself -0.03967361
-1.534736 cried one -0.03967361
-1.397939 cried the -0.03967361
-1.544179 cried out -0.03967361
-0.5473824 cried he -0.03967361
-1.534736 cried no -0.03967361
-1.568004 cried montfichet -0.03967361
-0.9111986 key of -0.03967361
-0.9360249 key he -0.03967361
-1.264579 send down -0.03967361
-1.153147 send to -0.03967361
-1.220563 send for -0.03967361
-1.242694 send him -0.03967361
-0.9418915 scruples that -0.03967361
-0.9333439 scruples i -0.03967361
-1.016274 written </s>
-0.9741672 written <unk> -0.03967361
-1.145652 written during -0.03967361
-0.5117932 thank you -0.03967361
-1.270954 thank god -0.03967362
-1.270954 thank heaven -0.03967361
-1.146742 easily judge -0.03967361
-1.146379 easily followed -0.03967361
-1.147107 easily consoled -0.03967361
-0.3811541 continued to -0.03967361
-1.145894 continued far -0.03967361
-0.8797674 acute </s>
-0.9712584 acute sympathy -0.03967361
-1.244915 till the -0.03967361
-0.5913756 till to -0.3407036
-1.326191 till at -0.03967361
-1.328841 till she -0.03967361
-0.6701069 griffin however -0.03967361
-0.9111986 third of -0.03967361
-0.9700448 third appeared -0.03967361
-0.9482992 spot with -0.03967362
-0.9710154 spot whence -0.03967361
-0.8486216 touches <unk> -0.03967361
-0.9482992 touches with -0.03967361
-1.016274 point </s>
-1.059914 point of -0.03967361
-1.139163 point after -0.03967361
-0.924088 departed in -0.03967361
-0.9642662 departed do -0.03967361
-0.2101098 travel and -0.03967362
-1.059914 affairs of -0.03967361
-1.144563 affairs took -0.03967361
-1.146379 affairs die -0.03967361
-0.2046675 supreme <unk> -0.03967362
-1.016274 passion </s>
-1.137022 passion before -0.03967361
-1.129259 passion my -0.03967361
-0.9741672 vision <unk> -0.03967361
-1.059914 vision of -0.03967361
-1.144926 vision under -0.03967361
-0.9693182 sounded strange -0.03967361
-0.9705298 sounded dull -0.03967361
-1.05517 mentioned to -0.03967361
-1.11821 mentioned but -0.03967361
-1.129959 mentioned this -0.03967361
-0.9360249 delighted he -0.03967361
-0.9710154 delighted shriek -0.03967361
-0.9508427 sacrifice she -0.03967362
-0.9707725 sacrifice thank -0.03967361
-0.8755004 danglars </s>
-1.644632 danglars is -0.03967362
-1.631298 danglars had -0.03967361
-1.579916 danglars it -0.3407036
-1.67594 danglars are -0.03967362
-1.688431 danglars how -0.03967361
-1.696572 danglars room -0.03967362
-1.708473 danglars carelessly -0.03967361
-1.709681 danglars smiling -0.03967361
-1.709681 danglars signature -0.03967362
-0.9048946 signature the -0.03967361
-0.9693182 signature alone -0.03967361
-0.9448547 executed for -0.03967361
-0.9659437 executed their -0.03967361
-0.8797674 corpse </s>
-0.924088 corpse in -0.03967361
-0.2169672 winding sheet -0.03967361
-1.016274 sheet </s>
-1.109101 sheet was -0.03967361
-1.13031 sheet which -0.03967361
-1.348292 indeed <unk> -0.03967361
-1.474467 indeed and -0.03967361
-1.688431 indeed could -0.03967361
-1.68112 indeed any -0.03967361
-0.9300041 indeed i -0.3407036
-0.9452174 indeed said -0.03967362
-0.9478894 indeed no -0.03967361
-1.685675 indeed only -0.03967361
-0.9508427 joy she -0.03967361
-0.9592723 joy my -0.03967361
-0.9418915 delight it -0.03967361
-0.9669052 delight how -0.03967361
-0.2080924 study </s>
-1.042958 papers and -0.03967361
-1.133123 papers were -0.03967361
-1.142756 papers left -0.03967361
-0.9676276 assassin asked -0.03967361
-0.9712584 assassin benedetto -0.03967361
-1.016274 benedetto </s>
-1.123699 benedetto so -0.03967362
-1.146742 benedetto besides -0.03967361
-0.9543351 sooner had -0.03967361
-0.9700448 sooner probably -0.03967362
-0.669136 reception room -0.03967361
-1.182177 villefort in -0.03967361
-1.257005 villefort be -0.03967361
-1.263149 villefort without -0.03967361
-1.259358 villefort only -0.03967361
-1.218616 twelve the -0.03967361
-1.10975 twelve <unk> -0.03967362
-1.20675 twelve and -0.03967361
-1.224672 twelve to -0.03967361
-1.366654 twelve o'clock -0.03967362
-0.9597455 heavens what -0.03967361
-0.9592723 heavens my -0.03967361
-0.9614055 procureur who -0.03967361
-0.9654638 procureur again -0.03967361
-0.9306792 becoming a -0.03967361
-0.9695603 becoming really -0.03967361
-0.9048946 lifted the -0.03967361
-0.9606933 lifted up -0.03967361
-0.9647449 presented them -0.03967361
-0.9683514 presented himself -0.03967361
-0.8990917 occasion and -0.03967362
-0.9448547 occasion for -0.03967362
-0.9496847 alter as -0.03967361
-0.952469 alter his -0.03967361
-1.141675 rolled down -0.03967361
-1.137378 rolled into -0.03967361
-1.078179 rolled in -0.03967361
-0.9048946 equally the -0.03967361
-0.8486216 equally <unk> -0.03967361
-1.016274 rich </s>
-1.042958 rich and -0.03967361
-1.123699 rich so -0.03967361
-1.12647 funeral is -0.03967362
-0.9741672 funeral <unk> -0.03967361
-1.147107 funeral procession -0.03967361
-0.9614055 procession there -0.03967361
-0.9496847 procession as -0.03967361
-0.8990917 marriage and -0.03967361
-0.9111986 marriage of -0.03967361
-0.9048946 gradually the -0.03967361
-0.8486216 gradually <unk> -0.03967361
-1.281027 debray </s>
-0.4254074 debray i -0.03967362
-1.435921 debray like -0.03967361
-1.446924 debray chateau -0.0396736
-0.8797674 army </s>
-0.9640271 army well -0.03967361
-0.5049492 standing in -0.03967362
-1.239753 standing at -0.03967362
-1.257357 standing there -0.03967362
-0.9048946 force the -0.03967361
-0.9705298 force tears -0.03967361
-0.9602191 brother or -0.03967361
-0.9685929 brother look -0.03967361
-0.09508109 chateau renaud -0.03967361
-1.168367 renaud </s>
-1.20675 renaud and -0.03967361
-1.231699 renaud of -0.03967361
-1.352977 renaud did -0.03967361
-1.340286 renaud when -0.03967361
-0.9517712 beauchamp but -0.03967361
-0.9681101 beauchamp poor -0.03967361
-0.9485298 event you -0.03967361
-0.9681101 event poor -0.03967361
-0.9360249 gentlemen he -0.03967361
-0.9700448 gentlemen every -0.03967362
-1.12647 banker is -0.03967361
-1.091437 banker i -0.03967361
-1.145652 banker danglars -0.03967362
-0.2500776 replied the -0.03967361
-1.272045 replied noirtier -0.03967361
-1.450682 monte <unk> -0.03967362
-0.1097492 monte cristo -0.1365836
-1.366925 cristo </s>
-1.670098 cristo is -0.03967361
-1.449204 cristo the -0.03967361
-1.277633 cristo <unk> -0.03967361
-1.5205 cristo in -0.03967361
-1.72853 cristo must -0.03967361
-1.655758 cristo said -0.03967362
-1.674985 cristo no -0.03967361
-1.729923 cristo five -0.03967361
-1.746986 cristo replaced -0.03967362
-1.741223 cristo placed -0.03967361
-1.746986 cristo folding -0.03967362
-0.6512686 morrel </s>
-1.188931 morrel <unk> -0.03967361
-1.392467 morrel with -0.03967361
-1.43924 morrel yes -0.03967361
-1.447651 morrel suffered -0.03967361
-1.051061 seeking the -0.03967361
-1.135955 seeking any -0.03967361
-1.146379 seeking debray -0.03967361
-1.231699 smile of -0.03967361
-1.350642 smile well -0.03967361
-1.316503 smile as -0.03967361
-1.364845 smile began -0.03967361
-1.36847 smile gradually -0.03967362
-0.9693182 harm towards -0.03967361
-0.9710154 harm pardon -0.03967361
-0.9418915 honor that -0.03967361
-0.9333439 honor i -0.03967361
-0.9741672 morcerf <unk> -0.03967361
-1.042958 morcerf and -0.03967362
-1.095301 morcerf he -0.03967361
-0.2113332 persons of -0.3407036
-1.059914 example of -0.03967361
-1.131363 example they -0.03967361
-1.143117 example look -0.03967361
-1.055859 daughter </s>
-0.3794087 daughter and -0.03967362
-1.129959 besides what -0.03967361
-1.144563 besides brought -0.03967362
-1.146742 besides besides -0.03967361
-0.2109954 offered to -0.03967361
-0.9448547 eugenie for -0.03967361
-0.9671459 eugenie has -0.03967361
-1.247549 happy </s>
-1.285931 happy and -0.03967361
-1.303854 happy to -0.03967361
-0.6929558 happy life -0.03967361
-1.393002 happy you -0.03967362
-0.9111986 pride of -0.03967361
-0.9649844 pride will -0.03967362
-1.103792 allow that -0.03967361
-1.123699 allow her -0.03967362
-1.12891 allow me -0.03967361
-0.9664242 france these -0.03967361
-0.9671459 france still -0.03967361
-1.168367 baron </s>
-1.346009 baron if -0.5167949
-1.327955 baron said -0.03967361
-1.36847 baron determined -0.03967361
-1.36605 baron danglars -0.03967362
-0.9333439 consoled i -0.03967361
-0.9485298 consoled you -0.03967361
-1.229926 king <unk> -0.03967361
-1.414718 king had -0.03967361
-0.4207297 king of -0.2157649
-1.442106 king himself -0.03967361
-0.9048946 finance the -0.03967361
-0.9642662 finance have -0.03967361
-0.9448547 philosophers for -0.03967361
-0.9678688 philosophers may -0.03967361
-0.9048946 ascertain the -0.03967361
-0.9688346 ascertain whether -0.03967361
-0.8797674 seriously </s>
-0.9678688 seriously yes -0.03967361
-1.053835 fortune <unk> -0.03967361
-1.137899 fortune and -0.03967361
-1.153147 fortune to -0.03967361
-1.261249 fortune their -0.03967361
-1.016274 consolation </s>
-1.095301 consolation he -0.03967361
-1.091437 consolation i -0.03967361
-1.382016 bonds with -0.03967361
-1.319195 bonds in -0.3407036
-1.342558 bonds i -0.03967361
-1.399251 bonds said -0.03967361
-1.434506 bonds how -0.03967361
-1.445231 bonds pay -0.03967362
-0.9642662 pray do -0.03967361
-0.9712584 pray follow -0.03967361
-0.9111986 noise of -0.03967361
-0.9666646 noise came -0.03967361
-0.8755004 alone </s>
-1.430964 alone and -0.03967362
-1.631298 alone had -0.03967361
-1.513477 alone in -0.03967361
-1.700108 alone heard -0.03967361
-1.689585 alone why -0.03967361
-1.648818 alone no -0.03967361
-1.606753 alone you -0.03967361
-1.706066 alone understand -0.03967361
-1.709681 alone amount -0.03967361
-1.113463 added you -0.03967361
-1.142035 added yes -0.03967361
-1.146742 added carelessly -0.03967361
-0.8797674 million </s>
-0.8990917 million and -0.03967361
-0.9111986 governor of -0.03967361
-0.9659437 governor two -0.03967361
-0.9485298 please you -0.03967361
-0.9705298 please pay -0.03967361
-0.9494535 order at -0.03967362
-0.9595088 order from -0.03967361
-1.087607 fund a -0.03967361
-1.042958 fund and -0.03967361
-1.146742 fund deposited -0.03967361
-1.144563 credit really -0.03967361
-1.141315 credit upon -0.03967361
-1.147107 credit opened -0.03967361
-0.2113332 scraps of -0.3407036
-0.8797674 believed </s>
-0.9418915 believed it -0.03967361
-0.6694232 placed the -0.3407036
-1.370285 placed a -0.03967361
-0.6767632 placed in -0.3407036
-1.435449 placed over -0.03967362
-0.9048946 folding the -0.03967361
-0.8486216 folding <unk> -0.03967361
-1.016274 notes </s>
-1.078179 notes in -0.03967361
-1.144926 notes most -0.03967361
-0.8486216 curious <unk> -0.03967361
-0.9333439 curious i -0.03967361
-1.270227 six thousand -0.03967361
-0.517655 six millions -0.03967361
-1.271681 six kings -0.03967361
-1.254409 francs </s>
-1.31649 francs the -0.03967361
-1.386412 francs a -0.03967361
-1.367848 francs in -0.03967361
-1.449589 francs but -0.03967361
-1.394066 francs i -0.03967361
-1.50488 francs oh -0.03967361
-0.9597455 owe this -0.03967361
-0.9590359 owe me -0.03967361
-1.283414 receipt </s>
-1.474084 receipt is -0.03967361
-0.7352795 receipt in -0.03967361
-1.46685 receipt on -0.03967361
-1.510012 receipt believe -0.03967361
-1.50714 receipt than -0.03967362
-0.6704715 charity fund -0.03967362
-0.9695603 perspiration between -0.03967361
-0.9702873 perspiration started -0.03967362
-0.2101098 thomson and -0.3407036
-0.1314312 pardon me -0.03967361
-0.9666646 mere nothing -0.03967361
-0.9698025 mere woman -0.03967361
-0.9517712 signatures but -0.03967361
-0.9602191 signatures or -0.03967361
-0.924088 bankers in -0.03967361
-0.954569 bankers said -0.03967361
-0.9494535 transacting at -0.03967361
-0.9702873 transacting business -0.03967362
-1.141212 laugh </s>
-0.4820174 laugh <unk> -0.03967361
-1.240091 laugh as -0.03967361
-0.9654638 obtain some -0.03967361
-0.9635493 obtain your -0.03967361
-0.9695603 faint indeed -0.03967361
-0.9707725 faint smile -0.03967361
-1.042958 receiver and -0.03967361
-1.146742 receiver general -0.03967361
-1.145652 receiver started -0.03967361
-0.8797674 impertinence </s>
-0.9111986 impertinence of -0.03967361
-0.9707725 charities present -0.03967361
-0.9693182 charities alone -0.03967361
-0.8486216 receive <unk> -0.03967361
-0.9592723 receive my -0.03967361
-0.9111986 amount of -0.03967361
-0.9078251 amount to -0.03967361
-0.8990917 condescension and -0.03967361
-0.9455414 condescension was -0.03967361
-0.9614055 creditor who -0.03967361
-0.954569 creditor said -0.03967361
-0.8486216 unlimited <unk> -0.03967361
-0.9710154 unlimited credit -0.03967361
-0.9048946 visit the -0.03967361
-0.9564442 visit him -0.03967361
-1.103792 month it -0.03967361
-1.108101 month for -0.03967361
-1.145652 month maybe -0.03967361
-0.8797674 magnificent </s>
-0.9712584 magnificent estate -0.03967362
-0.6639543 rothschild one -0.03967361
-0.6328708 lafitte and -0.03967362
-1.087607 leaving a -0.03967361
-1.146379 leaving behind -0.03967361
-1.145289 leaving hard -0.03967361
-0.8486216 de <unk> -0.03967361
-0.9710154 de morcerf -0.03967361
-0.9482992 reason with -0.03967361
-0.9671459 reason because -0.03967362
-0.9698025 spend half -0.03967362
-0.9688346 spend money -0.03967362
-1.053835 mother <unk> -0.03967361
-1.240882 mother her -0.03967362
-1.239077 mother said -0.03967361
-1.249099 mother when -0.03967362
-0.9111986 examination of -0.03967362
-0.9695603 examination take -0.03967361
-1.360485 morrow to -0.03967361
-1.490779 morrow at -0.03967362
-1.555694 morrow why -0.03967361
-1.565132 morrow night -0.03967361
-1.551051 morrow i'm -0.03967361
-1.527677 morrow what -0.03967361
-1.558504 morrow yes -0.03967361
-1.566087 morrow morning -0.03967361
-0.9485298 cost you -0.03967361
-0.9590359 cost me -0.03967362
-1.247549 sir </s>
-1.188931 sir <unk> -0.03967361
-0.6606766 sir and -0.03967362
-1.364536 sir he -0.03967361
-1.425766 sir then -0.03967361
-0.8797674 listen </s>
-0.9597455 listen when -0.03967361
-0.3818209 pleasure of -0.03967361
-1.13066 pleasure said -0.03967362
-0.8797674 affair </s>
-0.9111986 affair of -0.03967361
-0.8486216 seek <unk> -0.03967361
-0.9306792 seek a -0.03967361
-0.9482992 sympathy with -0.03967361
-0.9710154 sympathy o -0.03967361
-0.8486216 double <unk> -0.03967362
-0.9710154 double pleasure -0.0396736
-0.9306792 fifty a -0.03967361
-0.9700448 fifty thousand -0.03967361
-0.3687573 desires <unk> -0.03967362
-1.08729 desires of -0.03967361
-1.141212 cry </s>
-0.4820174 cry <unk> -0.03967362
-1.240091 cry as -0.03967361
-1.364836 rain that -0.03967362
-1.398601 rain had -0.03967361
-1.279871 rain to -0.03967361
-1.439478 rain oh -0.03967361
-1.440193 rain gave -0.03967361
-1.445231 rain filled -0.03967361
-1.301674 wine and -0.03967361
-1.32409 wine to -0.03967361
-1.428188 wine for -0.03967361
-1.443057 wine as -0.03967361
-1.499925 wine has -0.03967361
-1.492598 wine did -0.03967361
-1.50405 wine see -0.03967361
-0.8797674 mass </s>
-0.9048946 mass the -0.03967361
-0.9482992 sky with -0.03967362
-0.9676276 sky last -0.03967361
-1.016274 line </s>
-1.122665 line on -0.03967361
-1.141315 line three -0.03967361
-0.8990917 danced and -0.03967361
-0.9616432 danced about -0.03967361
-0.8797674 yellow </s>
-0.8486216 yellow <unk> -0.03967361
-0.8486216 ancient <unk> -0.03967362
-0.9710154 ancient fence -0.03967361
-1.131363 rising up -0.03967361
-1.138091 rising more -0.03967361
-1.146379 rising crowd -0.03967361
-0.9306792 scattering a -0.03967361
-0.9111986 scattering of -0.03967361
-0.2113332 smell of -0.03967362
-0.7026 tired <unk> -0.03967361
-0.7276234 tired and -0.3407036
-1.377827 tired of -0.03967361
-1.451473 tired for -0.03967361
-1.505592 tired people -0.03967361
-1.137899 laughter and -0.03967361
-1.220563 laughter for -0.03967361
-1.258415 laughter before -0.03967361
-1.264102 laughter three -0.03967361
-1.273495 amory a -0.03967362
-1.340286 amory what -0.03967361
-1.36847 amory considered -0.03967361
-1.362446 amory saw -0.03967361
-1.364845 amory suddenly -0.03967361
-0.9048946 subway the -0.03967362
-0.9597455 subway when -0.03967361
-0.9685929 thrusting themselves -0.03967361
-0.9707725 thrusting open -0.03967361
-1.224672 seat to -0.03967361
-1.341425 seat or -0.03967361
-1.336888 seat no -0.03967361
-1.36847 seat damp -0.03967361
-1.36847 seat absorbing -0.03967362
-0.9555056 hating her -0.03967362
-0.9564442 hating him -0.03967361
-1.016274 disgust </s>
-1.103792 disgust that -0.03967361
-1.145289 disgust probably -0.03967362
-0.9710154 battle field -0.03967361
-0.9676276 battle answered -0.03967361
-0.9418915 rotten it -0.03967361
-0.9654638 rotten now -0.03967362
-0.9741672 dirty <unk> -0.03967361
-1.146742 dirty river -0.03967361
-1.146742 dirty french -0.03967361
-0.3687573 coffee <unk> -0.03967361
-1.08729 coffee of -0.03967361
-0.9111986 danger of -0.03967361
-0.9418915 danger it -0.03967361
-1.136666 secret do -0.03967361
-1.14384 secret things -0.03967361
-1.145289 secret shall -0.03967361
-0.9647449 hate them -0.03967362
-0.9707725 hate amory -0.03967361
-1.140956 horrible never -0.03967361
-1.145652 horrible evil -0.03967361
-1.146742 horrible secret -0.03967362
-0.9543351 henry had -0.03967361
-0.9659437 henry might -0.03967361
-0.8486216 physical <unk> -0.03967361
-0.9712584 physical reactions -0.03967361
-0.8990917 dignified and -0.03967361
-0.9710154 dignified attitude -0.03967362
-0.9111986 problem of -0.03967361
-0.9494535 problem at -0.03967361
-0.9590359 roused by -0.03967362
-0.9649844 roused only -0.03967362
-0.8486216 profound <unk> -0.03967361
-0.9710154 profound reflections -0.03967361
-0.9583275 reactions one -0.03967362
-0.9496847 reactions as -0.03967361
-0.9496847 alike as -0.03967361
-0.9583275 alike no -0.03967361
-1.139163 lose just -0.03967361
-1.123699 lose her -0.03967361
-1.145652 lose next -0.03967361
-1.042958 youth and -0.03967361
-1.115152 youth as -0.03967361
-1.129959 youth when -0.03967362
-0.3818209 calories of -0.3407036
-1.145168 calories gone -0.03967361
-0.8990917 simper and -0.03967361
-0.924088 simper in -0.03967361
-0.8990917 remark and -0.03967361
-0.9654638 remark again -0.03967361
-0.9702873 faces during -0.03967362
-0.9712584 faces simper -0.03967361
-0.9048946 innocent the -0.03967361
-0.9707725 innocent laughter -0.03967361
-0.9306792 state a -0.03967361
-0.9111986 state of -0.03967361
-0.8990917 impressions and -0.03967361
-0.9673867 impressions upon -0.03967362
-0.2168817 seventh street -0.03967361
-0.9418915 losing it -0.03967361
-0.9583275 losing all -0.03967361
-1.103792 eating it -0.03967362
-1.133829 eating then -0.03967361
-1.147471 eating preserved -0.5167949
-0.6625193 repeat her -0.3407036
-0.8486216 appendicitis <unk> -0.03967361
-0.9555056 appendicitis so -0.03967361
-1.168367 beatrice </s>
-1.360654 beatrice go -0.03967361
-1.327955 beatrice said -0.03967361
-1.352977 beatrice only -0.03967361
-1.367864 beatrice eleanor -0.03967361
-0.9543351 uncle had -0.03967361
-0.9671459 uncle has -0.03967361
-0.9543351 surely had -0.03967361
-0.9628335 surely we -0.03967361
-0.2046675 absorbing <unk> -0.3407036
-1.109101 rosalind was -0.03967361
-1.12856 rosalind not -0.03967361
-1.146742 rosalind eleanor -0.03967361
-1.137022 eleanor would -0.03967361
-1.133123 eleanor were -0.03967361
-1.138091 eleanor like -0.03967361
-0.8797674 wilder </s>
-0.8990917 wilder and -0.03967361
-0.9583275 rivers all -0.03967361
-0.9698025 rivers twenty -0.03967361
-0.9741672 jill <unk> -0.03967361
-1.109101 jill was -0.03967361
-1.129959 jill what -0.03967361
-0.9710154 darned uncomfortable -0.03967361
-0.9712584 darned bell -0.03967362
-0.8486216 killed <unk> -0.03967361
-0.9590359 killed by -0.03967362
-0.9690763 clara first -0.03967361
-0.9710154 clara rosalind -0.03967361
-0.8486216 american <unk> -0.03967361
-0.9710154 american eleanor -0.03967362
-0.8486216 brave <unk> -0.03967361
-0.9306792 brave a -0.03967361
-1.129609 princes from -0.03967362
-1.136666 princes are -0.03967362
-1.143478 princes get -0.03967361
-1.057144 princess </s>
-1.454836 princess <unk> -0.03967361
-1.278425 princess and -0.1188548
-2.042825 princess by -0.03967361
-1.896834 princess that -0.03967361
-1.998289 princess had -0.03967361
-1.896834 princess it -0.03967361
-1.924505 princess was -0.03967361
-1.692216 princess to -0.03967361
-1.955975 princess at -0.03967361
-2.169953 princess beyond -0.03967362
-2.009002 princess so -0.03967362
-1.855321 princess he -0.03967361
-2.157562 princess heard -0.03967361
-2.116782 princess after -0.03967361
-1.837422 princess i -0.03967362
-2.105801 princess did -0.03967361
-1.151216 princess said -0.5167949
-2.176284 princess sat -0.03967361
-1.426479 princess looked -0.03967361
-2.163713 princess perhaps -0.03967361
-2.163713 princess returned -0.03967361
-2.151497 princess gave -0.03967361
-2.179484 princess laughing -0.03967362
-2.136693 princess come -0.03967361
-2.163713 princess began -0.03967361
-2.179484 princess apparently -0.03967361
-0.9418915 perfection that -0.03967361
-0.9712584 perfection itself -0.03967361
-1.053835 cannot <unk> -0.03967361
-1.266014 cannot tell -0.03967361
-1.269865 cannot stay -0.03967362
-1.268899 cannot let -0.03967361
-0.9659437 follow their -0.03967361
-0.9673867 follow us -0.03967361
-0.4918183 gravity </s>
-1.167897 gravity and -0.03967361
-1.257357 gravity who -0.03967361
-0.2113332 advantage of -0.03967361
-0.9614055 princesses who -0.03967361
-0.9688346 princesses got -0.03967361
-0.9583275 sometimes one -0.03967361
-0.8486216 sometimes <unk> -0.03967361
-0.8797674 neighbourhood </s>
-0.9614055 neighbourhood there -0.03967361
-0.8486216 hearty <unk> -0.03967361
-0.9707725 hearty laugh -0.03967362
-0.8797674 screaming </s>
-0.9693182 screaming looking -0.03967362
-0.9360249 instant he -0.03967361
-0.9712584 instant shout -0.03967362
-0.8797674 tunic </s>
-0.8990917 tunic and -0.03967361
-0.9555056 caught her -0.03967362
-0.9695603 caught hold -0.03967362
-1.188931 shore <unk> -0.03967361
-0.6606766 shore and -0.03967361
-1.338292 shore in -0.03967361
-1.37776 shore it -0.03967361
-1.384526 shore for -0.03967361
-0.8486216 throat <unk> -0.03967362
-0.9496847 throat as -0.03967361
-0.9306792 bore a -0.03967361
-0.9555056 bore her -0.03967361
-1.142035 naughty man -0.03967362
-0.3930157 naughty naughty -0.2157649
-0.9360249 ascend he -0.03967361
-0.9710154 ascend slowly -0.03967361
-0.8797674 bewitched </s>
-0.9693182 bewitched princess -0.03967361
-0.9616432 lift out -0.03967362
-0.9678688 lift don't -0.03967362
-1.051061 beheld the -0.03967361
-0.9741672 beheld <unk> -0.03967361
-1.123699 beheld her -0.03967362
-0.8797674 weight </s>
-0.9048946 weight the -0.03967361
-0.9671459 rock where -0.03967361
-0.9048946 rock the -0.03967361
-1.042958 shriek and -0.03967361
-1.059914 shriek of -0.03967361
-1.116848 shriek she -0.03967361
-0.9048946 rejoined the -0.03967361
-0.9508427 rejoined she -0.03967361
-1.103792 fell that -0.03967361
-1.139521 fell back -0.03967361
-1.137022 fell before -0.03967361
-0.924088 events in -0.03967361
-0.9496847 events as -0.03967361
-1.252337 swim there -0.03967361
-1.270348 swim together -0.03967362
-1.25983 swim more -0.03967362
-1.239077 swim said -0.03967362
-0.9741672 cries <unk> -0.03967361
-1.059914 cries of -0.03967361
-1.144201 cries along -0.03967361
-0.8797674 balcony </s>
-0.8990917 balcony and -0.03967362
-0.8797674 play </s>
-0.9647449 play them -0.03967361
-1.103792 fear it -0.03967361
-1.11821 fear but -0.03967361
-1.13066 fear or -0.03967361
-0.9685929 swam away -0.03967361
-0.9661838 swam very -0.03967361
-1.078179 safe in -0.03967361
-1.108101 safe for -0.03967361
-1.147107 safe crossing -0.03967361
-0.4137615 chamber </s>
-1.409797 chamber but -0.03967361
-1.416973 chamber so -0.03967361
-1.446924 chamber sprang -0.03967362
-0.9418915 sending it -0.03967361
-0.9614055 sending there -0.03967361
-0.2109954 resolved to -0.03967362
-1.305345 die for -0.03967361
-1.351808 die before -0.03967361
-1.353563 die like -0.03967361
-1.36605 die happy -0.03967361
-1.36847 die sometimes -0.03967362
-0.8990917 leaves and -0.03967361
-0.9418915 leaves that -0.03967361
-1.042958 hole and -0.03967361
-1.11821 hole but -0.03967361
-1.146379 hole wanted -0.03967361
-0.9418915 hoped it -0.03967361
-0.9448547 hoped for -0.03967362
-0.8990917 fruits and -0.03967361
-0.9111986 fruits of -0.03967361
-1.141675 few men -0.03967361
-1.147107 few minutes -0.03967362
-1.147107 few tricks -0.03967361
-0.9306792 contained a -0.03967361
-0.9583275 contained no -0.03967361
-0.2164112 flowed over -0.3407036
-0.9583275 wetted one -0.03967361
-0.9700448 wetted both -0.03967361
-0.9702873 prince's body -0.03967361
-0.9715015 prince's knees -0.3407036
-0.6606132 knees but -0.3407036
-1.051061 shut the -0.03967361
-1.137378 shut them -0.03967361
-1.091437 shut i -0.03967361
-0.9448547 dying for -0.03967361
-0.9698025 dying prince -0.03967361
-1.051061 bear the -0.03967361
-1.103792 bear it -0.03967361
-1.141315 bear us -0.03967361
-0.8990917 afloat and -0.03967361
-0.9659437 afloat i'm -0.03967361
-0.2101098 asleep and -0.3407036
-0.8990917 biscuit and -0.03967361
-0.9690763 biscuit first -0.03967361
-0.2158772 encouraged by -0.03967361
-0.9485298 oblige you -0.03967361
-0.9590359 oblige me -0.03967361
-0.9564442 feed him -0.03967362
-0.9590359 feed me -0.03967361
-0.6629971 fed him -0.03967361
-1.051061 kiss the -0.03967361
-1.138448 kiss now -0.03967362
-1.12891 kiss me -0.03967362
-0.2101098 grew and -0.03967361
-0.9048946 gush the -0.03967361
-0.9659437 gush after -0.03967361
-1.103792 waters that -0.03967361
-1.133123 waters were -0.03967362
-1.145652 waters rose -0.03967361
-1.123699 shone so -0.03967361
-1.144201 shone strange -0.03967361
-1.144563 shone full -0.03967361
-0.9048946 nostrils the -0.03967361
-0.9555056 nostrils her -0.03967361
-0.8797674 lip </s>
-0.9418915 lip it -0.03967361
-0.9482992 pulled with -0.03967361
-0.8990917 pulled and -0.03967361
-0.8990917 leg and -0.03967361
-0.9616432 leg out -0.03967361
-1.104936 rowed </s>
-1.137899 rowed and -0.03967361
-1.258415 rowed before -0.03967362
-1.268899 rowed though -0.03967361
-0.9360249 landing he -0.03967361
-0.9712584 landing stairs -0.03967361
-1.016274 doctors </s>
-1.140956 doctors never -0.03967362
-1.146379 doctors therefore -0.03967361
-0.8486216 highness <unk> -0.03967362
-0.954569 highness said -0.03967362
-1.121976 chamberlain had -0.03967361
-1.132418 chamberlain who -0.03967361
-1.142395 chamberlain went -0.03967361
-0.924088 yourself in -0.03967361
-0.9333439 yourself i -0.03967361
-1.104936 cacambo </s>
-1.137899 cacambo and -0.03967361
-1.252337 cacambo who -0.03967361
-1.270348 cacambo decided -0.03967361
-0.9078251 ship to -0.03967361
-0.9597455 ship this -0.03967361
-0.9078251 candide to -0.03967361
-0.9712584 candide married -0.03967361
-1.078179 philosopher in -0.03967362
-1.146015 philosopher pangloss -0.03967362
-1.146379 philosopher martin -0.03967361
-1.563777 pangloss is -0.03967361
-1.382209 pangloss the -0.03967361
-1.231387 pangloss <unk> -0.03967361
-1.365021 pangloss and -0.03967361
-1.504315 pangloss that -0.03967361
-1.517792 pangloss was -0.03967361
-1.391064 pangloss to -0.03967361
-1.515233 pangloss for -0.03967361
-1.615212 pangloss hold -0.03967361
-1.218616 martin the -0.03967361
-1.259111 martin in -0.03967361
-1.357685 martin without -0.03967361
-1.367864 martin seems -0.03967361
-1.36847 martin especially -0.03967361
-1.137899 garden and -0.03967361
-1.1591 garden of -0.03967361
-1.24956 garden which -0.03967361
-1.227523 garden you -0.03967361
-0.9048946 sale the -0.03967361
-0.9078251 sale to -0.03967361
-0.3754455 constantinople </s>
-1.075183 constantinople and -0.03967361
-0.8797674 impaled </s>
-0.9448547 impaled for -0.03967361
-0.8486216 sublime <unk> -0.03967361
-0.9418915 sublime that -0.03967361
-0.8486216 suffered <unk> -0.03967361
-0.961881 suffered an -0.03967361
-0.9418915 asserted that -0.03967361
-0.9418915 asserted it -0.03967361
-1.334638 dervish is -0.03967361
-1.344284 dervish who -0.03967361
-1.279384 dervish i -0.03967361
-1.362446 dervish whether -0.03967361
-1.367864 dervish shut -0.03967361
-1.051061 amongst the -0.03967361
-1.141315 amongst us -0.03967361
-1.146742 amongst ourselves -0.03967361
-0.9485298 beg you -0.03967361
-0.9590359 beg me -0.03967361
-0.8797674 worlds </s>
-0.9048946 worlds the -0.03967361
-0.8797674 soul </s>
-0.9111986 soul of -0.03967361
-1.121976 mufti had -0.03967362
-1.091437 mufti i -0.03967361
-1.144201 mufti nor -0.03967361
-0.9494535 strangled at -0.03967361
-0.9710154 strangled mufti -0.03967361
-0.9645055 estate would -0.03967361
-0.954569 estate said -0.03967361
-0.9333439 turk i -0.03967361
-0.954569 turk said -0.03967361
-1.214989 cultivate it -0.03967361
-1.258886 cultivate them -0.03967362
-1.268899 cultivate having -0.03967361
-1.263625 cultivate our -0.03967361
-1.016274 sons </s>
-0.9741672 sons <unk> -0.03967361
-1.042958 sons and -0.03967361
-0.9482992 citrons with -0.03967362
-0.8990917 citrons and -0.5167949
-0.2169886 pistachio nuts -0.3407036
-0.8797674 nuts </s>
-0.8990917 nuts and -0.03967361
-0.9482992 pierced with -0.03967361
-0.9590359 pierced me -0.03967361
-0.9659437 honest man -0.03967361
-0.9712584 honest turk -0.03967362
-0.8486216 inquisition <unk> -0.03967361
-0.9621189 inquisition if -0.03967361
-0.6658752 america if -0.5167949
-0.6360047 stabbed the -0.5167949
-0.6645537 sheep from -0.5167949
-0.6705931 el dorado -0.5167949
-0.6589522 dorado you -0.5167949
-0.6704715 preserved citrons -0.5167949
-0.6655144 wizard who -0.03967361
-1.258886 unto them -0.03967361
-1.247718 unto me -0.03967361
-1.248178 unto my -0.03967362
-1.271802 unto virgilius -0.03967362
-1.214989 show that -0.03967361
-1.153147 show to -0.03967361
-1.227523 show you -0.03967361
-1.266974 show robin -0.03967361
-0.7101281 nottingham </s>
-1.218421 nottingham <unk> -0.03967361
-1.4027 nottingham a -0.03967361
-1.441516 nottingham was -0.03967361
-1.514355 nottingham fair -0.03967362
-1.514355 nottingham apprentice -0.03967361
-0.1320057 mistress fitzooth -0.03967361
-1.314495 fitzooth </s>
-0.7026 fitzooth <unk> -0.03967361
-0.7533361 fitzooth had -0.3407036
-1.3708 fitzooth to -0.03967361
-1.508573 fitzooth saw -0.03967362
-1.016274 tent </s>
-1.05517 tent to -0.03967362
-1.143478 tent robin -0.03967361
-0.9306792 forthwith a -0.03967361
-0.9583275 forthwith all -0.03967361
-1.016274 stroller </s>
-1.042958 stroller and -0.03967361
-1.145652 stroller presently -0.03967361
-1.134537 nay we -0.03967361
-1.147107 nay nay -0.03967361
-1.147107 nay lording -0.03967361
-0.8797674 rioting </s>
-0.9705298 rioting cried -0.03967361
-0.924088 purse in -0.03967361
-0.9595088 purse from -0.03967361
-0.9702873 george gamewell -0.03967361
-0.9698025 george montfichet -0.03967362
-1.247549 gamewell </s>
-0.6356532 gamewell <unk> -0.03967361
-1.37776 gamewell that -0.03967361
-1.303854 gamewell to -0.03967361
-1.447651 gamewell lad -0.03967362
-1.016274 apprentice </s>
-1.113126 apprentice with -0.03967362
-1.144563 apprentice set -0.03967361
-1.458821 robin </s>
-1.549357 robin the -0.03967361
-1.115757 robin with -0.03967361
-1.052926 robin and -0.03967362
-1.715429 robin that -0.03967361
-1.734898 robin was -0.03967361
-1.560873 robin to -0.03967361
-1.876337 robin thought -0.03967361
-1.886804 robin felt -0.03967361
-1.897529 robin carefully -0.03967362
-1.885042 robin entered -0.03967361
-1.886804 robin suddenly -0.03967361
-1.897529 robin opening -0.03967362
-1.883287 robin alone -0.03967361
-1.893924 robin fitzooth -0.03967361
-0.9360249 lives he -0.03967362
-0.9702873 lives next -0.03967361
-0.2080924 shout </s>
-0.5759059 montfichet </s>
-1.293085 montfichet <unk> -0.03967361
-1.495557 montfichet a -0.03967361
-1.621564 montfichet called -0.03967361
-1.601742 montfichet will -0.03967361
-1.610715 montfichet answered -0.03967361
-1.619877 montfichet gamewell -0.03967361
-0.9482992 burden with -0.03967361
-0.9078251 burden to -0.03967361
-0.9741672 squire's <unk> -0.03967361
-1.147107 squire's few -0.03967362
-1.147107 squire's cheeks -0.03967362
-0.9676276 lording asked -0.03967361
-0.9676276 lording answered -0.03967361
-1.238627 stuteley had -0.03967361
-1.22186 stuteley was -0.03967361
-1.252337 stuteley who -0.03967361
-1.269381 stuteley shall -0.03967361
-0.6360047 won the -0.03967361
-1.14384 sheriff's house -0.03967361
-1.141675 sheriff's men -0.03967361
-1.146742 sheriff's daughter -0.03967362
-0.9111986 sheriff of -0.03967361
-0.9690763 sheriff child -0.03967361
-0.8486216 esquire <unk> -0.03967361
-0.9659437 esquire after -0.03967361
-0.3754455 cheeks </s>
-1.075183 cheeks and -0.03967361
-0.9543351 lad had -0.03967361
-0.952469 lad his -0.03967361
-0.2148965 converse with -0.3407036
-0.8797674 tricks </s>
-0.9597455 tricks when -0.03967361
-0.8486216 e <unk> -0.03967361
-0.9712584 e e -0.03967362
-0.9741672 hut <unk> -0.03967361
-1.042958 hut and -0.03967361
-1.078179 hut in -0.03967361
-1.238065 warrenton with -0.03967361
-0.5133783 warrenton had -0.03967361
-1.271681 warrenton spoke -0.03967361
-0.2101098 ladder and -0.03967361
-0.8486216 save <unk> -0.03967361
-0.9590359 save me -0.03967361
-0.952469 sooth his -0.03967361
-0.9659437 sooth i'm -0.03967361
-0.6570617 geoffrey for -0.03967361
-0.9741672 d'avrigny <unk> -0.03967361
-1.122321 d'avrigny said -0.03967361
-1.146015 d'avrigny rushed -0.03967361
-0.8797674 rave </s>
-0.9702873 rave sir -0.03967361
-1.104936 noirtier </s>
-1.22186 noirtier was -0.03967361
-1.266014 noirtier looked -0.03967361
-1.268417 noirtier whose -0.03967361
-0.8486216 singing <unk> -0.03967361
-0.9710154 singing received -0.03967361
-0.9688346 eternal day -0.03967361
-0.9712584 eternal peace -0.03967362
-0.9078251 default to -0.03967361
-0.9702873 default short -0.03967361
-0.8486216 weeping <unk> -0.03967361
-0.8990917 weeping and -0.03967362
-0.8486216 onward <unk> -0.03967361
-0.9681101 onward go -0.03967361
-0.9587997 virgilius not -0.03967361
-0.9671459 virgilius has -0.03967361
-0.8797674 weep </s>
-0.9688346 weep yet -0.03967361
\3-grams:
-1.012807 <s> chapter one
-1.02069 <s> chapter two
-1.026193 <s> chapter seven
-0.8303261 <s> one of
-1.686644 <s> one could
-1.27771 <s> one day
-1.502941 <s> one two
-1.701685 <s> one o
-0.2312481 <s> missus rachel
-1.063095 <s> missus alexander
-1.186863 <s> missus savareen
-1.656549 <s> missus griffin
-1.049495 <s> is jesus
-0.7255187 <s> just <unk>
-1.013037 <s> where a
-1.270417 <s> where they
-2.51065 <s> the road
-0.5506861 <s> the <unk>
-1.186172 <s> the old
-2.747994 <s> the school
-2.607137 <s> the hours
-2.339465 <s> the people
-2.743778 <s> the orchard
-2.413724 <s> the day
-2.560705 <s> the good
-2.598045 <s> the woman
-2.613306 <s> the big
-2.707573 <s> the mind
-2.067469 <s> the only
-2.552526 <s> the two
-2.344454 <s> the five
-2.604085 <s> the head
-2.415691 <s> the first
-2.363256 <s> the second
-1.628598 <s> the air
-2.743778 <s> the bit
-1.480794 <s> the prince
-2.302585 <s> the others
-2.607137 <s> the gentleman
-2.508205 <s> the search
-2.747994 <s> the myth
-2.727313 <s> the silence
-2.743778 <s> the courtiers
-2.307166 <s> the same
-2.248018 <s> the squire
-2.254768 <s> the district
-2.619564 <s> the underbrush
-2.735468 <s> the dull
-2.619564 <s> the panamanian
-2.743778 <s> the judge
-2.747994 <s> the charities
-2.51065 <s> the wine
-1.783426 <s> the princess
-2.747994 <s> the lad
-1.266881 <s> <unk> the
-0.9331353 <s> <unk> <unk>
-1.105603 <s> <unk> a
-1.8326 <s> <unk> with
-1.11653 <s> <unk> and
-1.520027 <s> <unk> by
-1.664609 <s> <unk> in
-1.614975 <s> <unk> of
-2.304939 <s> <unk> be
-2.329179 <s> <unk> an
-2.326722 <s> <unk> through
-2.28207 <s> <unk> not
-1.953822 <s> <unk> from
-2.661717 <s> <unk> because
-2.120497 <s> <unk> him
-2.555812 <s> <unk> woman
-2.479285 <s> <unk> what
-2.544019 <s> <unk> such
-1.579083 <s> <unk> said
-2.679891 <s> <unk> got
-2.611166 <s> <unk> enough
-2.498062 <s> <unk> then
-2.374088 <s> <unk> your
-2.704433 <s> <unk> lips
-2.430235 <s> <unk> my
-2.666832 <s> <unk> i've
-2.687918 <s> <unk> does
-2.549875 <s> <unk> things
-2.604428 <s> <unk> hand
-2.693354 <s> <unk> several
-2.698858 <s> <unk> truth
-2.690628 <s> <unk> else
-2.62966 <s> <unk> board
-2.707248 <s> <unk> occupied
-2.698858 <s> <unk> man's
-2.679891 <s> <unk> robin
-0.4309677 <s> a <unk>
-1.909595 <s> a great
-1.971338 <s> a strange
-2.045386 <s> a child
-2.14621 <s> a personage
-1.97832 <s> a number
-2.147507 <s> a golden
-1.913366 <s> a myth
-2.14621 <s> a game
-2.048477 <s> a montfichet
-0.8280596 <s> with <unk>
-1.425759 <s> with an
-1.357331 <s> with this
-1.694568 <s> and one
-2.323224 <s> and missus
-2.684008 <s> and where
-0.8647362 <s> and the
-1.052103 <s> and <unk>
-1.371024 <s> and a
-1.575142 <s> and that
-2.499213 <s> and away
-2.114453 <s> and was
-2.168989 <s> and her
-2.28629 <s> and this
-1.632135 <s> and she
-2.006147 <s> and if
-1.428488 <s> and who
-2.359385 <s> and always
-2.725766 <s> and white
-2.082225 <s> and his
-1.765993 <s> and he
-2.654096 <s> and now
-2.463173 <s> and here
-2.649986 <s> and more
-2.720923 <s> and since
-2.28629 <s> and what
-1.293492 <s> and i
-2.70671 <s> and such
-2.28629 <s> and when
-1.67331 <s> and they
-1.375755 <s> and then
-2.063808 <s> and you
-2.654096 <s> and some
-2.750827 <s> and although
-2.766588 <s> and developed
-2.745698 <s> and saying
-2.76127 <s> and demand
-2.513913 <s> and mine
-2.76127 <s> and deposited
-2.76127 <s> and merely
-2.766588 <s> and glancing
-2.766588 <s> and presented
-2.735618 <s> and monte
-2.766588 <s> and danger
-2.766588 <s> and henry
-2.766588 <s> and gush
-2.532235 <s> and shone
-0.695119 <s> by <unk>
-1.005182 <s> by his
-1.598725 <s> that is
-0.6835445 <s> that <unk>
-1.723277 <s> that had
-1.827228 <s> that if
-1.944031 <s> that would
-2.099374 <s> that might
-1.268932 <s> that i
-1.584292 <s> that you
-2.087312 <s> that your
-2.083758 <s> that we
-1.959705 <s> that money
-1.229687 <s> had it
-1.25486 <s> had got
-0.5024349 <s> in the
-1.07271 <s> in a
-1.457834 <s> in this
-1.66607 <s> in fact
-1.719455 <s> in short
-1.940028 <s> in rear
-1.782424 <s> in itself
-0.9659939 <s> of course
-1.022241 <s> old enough
-0.6104228 <s> it is
-1.565344 <s> it <unk>
-1.598222 <s> it had
-0.6313565 <s> it was
-2.357752 <s> it made
-2.177146 <s> it won't
-2.367371 <s> it has
-1.929866 <s> it isn't
-1.243872 <s> it will
-2.036788 <s> it seemed
-2.175356 <s> it does
-2.180748 <s> it seems
-1.934457 <s> it touched
-2.180748 <s> it wasn't
-2.18256 <s> it sounded
-0.3593475 <s> was <unk>
-1.395274 <s> was so
-0.5980533 <s> to the
-1.57608 <s> to a
-1.730271 <s> to this
-1.679759 <s> to think
-1.649385 <s> to say
-1.041785 <s> be not
-0.7998543 <s> an idol
-1.00349 <s> those pretty
-2.065114 <s> but missus
-0.8383213 <s> but the
-1.370883 <s> but <unk>
-2.261543 <s> but with
-2.042131 <s> but by
-1.389563 <s> but in
-2.426301 <s> but old
-2.242605 <s> but was
-2.428665 <s> but found
-1.323956 <s> but she
-1.332418 <s> but there
-2.362815 <s> but who
-2.423951 <s> but can
-1.552383 <s> but as
-2.450538 <s> but whom
-1.174628 <s> but he
-2.438251 <s> but take
-0.8030364 <s> but i
-2.067171 <s> but did
-2.348788 <s> but when
-2.445581 <s> but i'd
-1.875304 <s> but then
-2.433432 <s> but first
-2.375211 <s> but we
-1.303247 <s> well if
-1.310615 <s> well marilla
-0.8107845 <s> for the
-1.812019 <s> for not
-1.421215 <s> for her
-1.787386 <s> for she
-1.340146 <s> for he
-1.804628 <s> for him
-1.815011 <s> for what
-1.6945 <s> for some
-2.062099 <s> for once
-2.070128 <s> for groom
-2.060775 <s> for indeed
-2.068779 <s> for example
-1.010262 <s> not <unk>
-1.348443 <s> not only
-1.426367 <s> not having
-1.12886 <s> could he
-1.303348 <s> could they
-0.641455 <s> probably not
-0.6969624 <s> at the
-1.69178 <s> at this
-1.860124 <s> at best
-0.7065142 <s> at last
-1.438935 <s> at least
-1.601375 <s> at length
-1.049815 <s> her face
-0.9173072 <s> everything and
-0.4364119 <s> from the
-1.512615 <s> from a
-1.112823 <s> from his
-1.768946 <s> from off
-1.777144 <s> from twelve
-0.8657888 <s> helped run
-1.05455 <s> yet the
-1.503485 <s> yet that
-1.568202 <s> yet there
-1.485262 <s> yet he
-1.591234 <s> yet something
-1.562425 <s> yet what
-1.345021 <s> all that
-1.224767 <s> all of
-1.504988 <s> all waters
-1.348924 <s> this is
-0.3581123 <s> this <unk>
-1.490595 <s> this was
-1.791134 <s> this every
-0.3780213 <s> she was
-1.565266 <s> she could
-1.963203 <s> she has
-1.316241 <s> she said
-1.972655 <s> she sent
-1.974022 <s> she promised
-1.512259 <s> if the
-1.70093 <s> if a
-1.007202 <s> if it
-1.998348 <s> if for
-2.087045 <s> if peter
-2.08794 <s> if he'd
-1.260057 <s> if i
-1.765001 <s> if it's
-0.3872053 <s> if you
-1.453834 <s> if we
-0.8403531 <s> or <unk>
-1.265188 <s> or a
-1.583785 <s> or in
-1.667584 <s> or at
-1.723368 <s> or would
-1.747265 <s> or heaven
-0.8382659 <s> would not
-1.259797 <s> never that
-1.297658 <s> never any
-0.8416295 <s> rest and
-0.8802178 <s> until <unk>
-0.3742182 <s> there is
-1.645529 <s> there <unk>
-0.5469473 <s> there was
-1.02276 <s> there were
-0.6979394 <s> are you
-1.22738 <s> who had
-0.3373201 <s> who was
-1.525073 <s> who were
-0.881784 <s> can be
-0.5434526 <s> own <unk>
-2.108536 <s> as avonlea
-1.278691 <s> as <unk>
-0.7022708 <s> as if
-2.087761 <s> as any
-1.483638 <s> as i
-1.772243 <s> as though
-1.496844 <s> as you
-0.713386 <s> as soon
-2.111822 <s> as belong
-0.8175427 <s> husband the
-0.6310975 <s> his <unk>
-1.878299 <s> his sharp
-1.699633 <s> his wife
-0.7454195 <s> his eyes
-1.780481 <s> his banker
-0.8108271 <s> anybody who
-1.639735 <s> so in
-1.687674 <s> so for
-1.540107 <s> so he
-0.9544361 <s> so matthew
-0.8424059 <s> so i
-1.977957 <s> so young
-1.985465 <s> so low
-1.984384 <s> so perfectly
-1.214284 <s> he is
-0.6695855 <s> he <unk>
-1.149351 <s> he had
-0.7910342 <s> he was
-1.933713 <s> he found
-1.419554 <s> he would
-2.341281 <s> he never
-2.510937 <s> he who
-2.199032 <s> he asked
-2.200862 <s> he must
-1.998745 <s> he made
-2.089212 <s> he has
-2.330027 <s> he did
-1.539385 <s> he thought
-2.355444 <s> he felt
-2.203621 <s> he gave
-2.59088 <s> he hung
-1.489806 <s> he turned
-2.586402 <s> he stood
-2.097082 <s> he began
-2.588635 <s> he glanced
-2.012191 <s> he spoke
-2.595404 <s> he emerged
-2.595404 <s> he resolved
-0.5365634 <s> peter <unk>
-1.066508 <s> peter had
-1.025664 <s> before them
-1.045307 <s> which whatever
-1.444964 <s> now <unk>
-0.9218902 <s> now and
-1.579408 <s> now to
-1.734536 <s> now be
-1.677975 <s> now for
-0.6747308 <s> now i
-1.287307 <s> matthew had
-1.301523 <s> matthew went
-1.572621 <s> matthew barely
-1.572621 <s> matthew enjoyed
-1.053291 <s> why this
-1.237406 <s> why he
-0.8069735 <s> asked the
-1.086028 <s> asked morrel
-1.028172 <s> here again
-0.5764404 <s> three <unk>
-1.319321 <s> have i
-1.486799 <s> have your
-1.492757 <s> have these
-1.014621 <s> go do
-0.2013188 <s> might have
-0.8601851 <s> nothing further
-1.024018 <s> good friday
-0.8160717 <s> guess there's
-1.006145 <s> must i
-0.9212496 <s> taking advantage
-0.8551441 <s> i'll <unk>
-1.069791 <s> after this
-1.295102 <s> after expressing
-0.7270513 <s> marilla and
-0.7735312 <s> finally the
-0.6906883 <s> take it
-1.222415 <s> take your
-1.035651 <s> more dignified
-1.031777 <s> made profound
-0.5931667 <s> since the
-0.2222905 <s> that's why
-0.8227578 <s> what is
-1.817929 <s> what on
-1.875195 <s> what business
-1.22468 <s> what he
-1.845179 <s> what then
-1.852267 <s> what do
-1.849596 <s> what your
-1.107694 <s> i <unk>
-1.743969 <s> i had
-1.425317 <s> i could
-1.450594 <s> i never
-1.818762 <s> i can
-1.953571 <s> i asked
-1.304065 <s> i must
-2.316222 <s> i wouldn't
-2.160555 <s> i won't
-1.924468 <s> i said
-1.961859 <s> i suppose
-1.302107 <s> i do
-2.286957 <s> i only
-2.507049 <s> i like
-1.819967 <s> i saw
-1.71131 <s> i will
-1.427594 <s> i think
-0.8907145 <s> i don't
-2.163207 <s> i can't
-2.317485 <s> i pity
-1.450954 <s> i am
-1.534993 <s> i want
-1.766853 <s> i shall
-2.316222 <s> i whispered
-2.050967 <s> i wish
-2.554578 <s> i slept
-2.556767 <s> i content
-0.6939335 <s> won't you
-0.9537341 <s> set about
-0.1824213 <s> barely <unk>
-0.8213215 <s> did he
-0.3307273 <s> such a
-1.057342 <s> it's so
-1.408632 <s> it's worse
-1.409149 <s> it's natural
-0.7106114 <s> said the
-1.413699 <s> said marilla
-1.511248 <s> said morrel
-1.118595 <s> when <unk>
-1.036029 <s> when we
-1.479126 <s> when bobby
-0.8861073 <s> no <unk>
-2.031376 <s> no with
-0.8021189 <s> no i
-0.8289431 <s> no said
-2.080466 <s> no no
-1.114059 <s> no matter
-2.149771 <s> no likely
-2.14274 <s> no prince
-2.149771 <s> no decidedly
-2.151191 <s> no thanks
-2.149771 <s> no hurry
-0.6057976 <s> wonder what
-0.8808259 <s> they <unk>
-0.9908667 <s> they had
-1.562097 <s> they are
-0.7864226 <s> they were
-2.076678 <s> they won't
-1.997282 <s> they said
-2.080718 <s> they seem
-2.035778 <s> they then
-1.749142 <s> they may
-1.749142 <s> they don't
-2.07534 <s> they told
-2.080718 <s> they moved
-0.3660476 <s> look at
-1.21743 <s> nor even
-1.216128 <s> nor how
-0.8968021 <s> then the
-1.47557 <s> then back
-1.483194 <s> then taking
-0.7347887 <s> they're <unk>
-1.019391 <s> very well
-0.1766204 <s> do you
-1.012526 <s> whence she
-1.010093 <s> whence you
-0.5345537 <s> you are
-1.599176 <s> you must
-1.809008 <s> you did
-1.73209 <s> you see
-1.931659 <s> you therefore
-1.933246 <s> you naughty
-1.000507 <s> give not
-0.9727639 <s> looking about
-0.8595785 <s> came a
-0.6073575 <s> isn't that
-1.028373 <s> some apprehension
-0.9451844 <s> only a
-1.314567 <s> only don't
-1.163824 <s> how the
-1.63792 <s> how are
-1.60517 <s> how so
-1.630627 <s> how then
-1.660565 <s> how many
-1.659597 <s> how else
-1.039399 <s> your presence
-0.9721194 <s> between her
-1.536426 <s> oh there
-1.558496 <s> oh work
-1.470041 <s> oh he
-1.562632 <s> oh dear
-1.112863 <s> oh you
-0.9371544 <s> thin woman
-1.215916 <s> two and
-1.103059 <s> two three
-1.01091 <s> like as
-1.176834 <s> thought the
-0.7327728 <s> thought <unk>
-0.9448602 <s> maybe they
-0.3436837 <s> five millions
-0.8943819 <s> forced into
-1.055938 <s> yes but
-1.042206 <s> yes he
-0.8637075 <s> yes i
-0.9388868 <s> certainly it
-0.9596683 <s> fact is
-0.6753754 <s> there's never
-0.3389961 <s> grown up
-0.4296398 <s> may be
-0.723982 <s> right <unk>
-0.6066019 <s> we <unk>
-1.730308 <s> we will
-1.744374 <s> we took
-1.749673 <s> we fill
-1.485326 <s> we need
-1.462036 <s> my but
-1.197454 <s> my father
-1.19771 <s> my heart
-0.970782 <s> young fitzooth
-0.5177529 <s> will he
-0.6742245 <s> will you
-1.830306 <s> will whispered
-1.829702 <s> will cried
-0.9621968 <s> having besides
-0.8392243 <s> don't you
-1.093089 <s> don't ask
-0.8052733 <s> i've never
-0.8054751 <s> i've been
-0.8207891 <s> gave me
-0.3513586 <s> family <unk>
-0.9610396 <s> stay count
-0.9182941 <s> none i've
-0.9613998 <s> really they
-1.012299 <s> poor douglas
-0.6969822 <s> somehow the
-0.6547102 <s> while the
-1.194302 <s> while it
-1.020579 <s> again matthew
-0.9171174 <s> feeling very
-0.7329111 <s> whether the
-0.698637 <s> tied to
-0.921052 <s> horse sense
-0.7113743 <s> hotel a
-0.6533979 <s> answered the
-1.021613 <s> answered she
-0.790753 <s> she's a
-0.7347887 <s> sister <unk>
-0.8923766 <s> presently he
-0.4882224 <s> come to
-0.9410415 <s> master <unk>
-1.062767 <s> master said
-1.098206 <s> also a
-1.133752 <s> also there
-1.020793 <s> our feet
-1.364059 <s> let me
-0.2081687 <s> let us
-1.199555 <s> love is
-1.110009 <s> love and
-0.8981149 <s> wonderful parents
-0.3191339 <s> want to
-0.9755027 <s> shall you
-0.6648168 <s> rather i
-0.9413219 <s> most of
-0.7735312 <s> blue the
-0.8659193 <s> later mister
-0.7258812 <s> religion is
-0.8165375 <s> forget apollo
-0.9778249 <s> count your
-0.505234 <s> science was
-0.4200525 <s> less <unk>
-1.001227 <s> money born
-0.320231 <s> upon the
-0.9218411 <s> silence you
-0.8660499 <s> self effort
-0.1821018 <s> these <unk>
-0.7284102 <s> moreover if
-0.957502 <s> ye are
-0.9620391 <s> ye keep
-0.8593549 <s> birth an
-0.8879593 <s> heaven a
-0.6420004 <s> dead or
-0.8065552 <s> shame on
-0.7263858 <s> bone one
-0.774865 <s> human <unk>
-0.7113743 <s> bower a
-0.8540722 <s> friends said
-0.8156063 <s> lapierre gave
-0.5922783 <s> squire harrington
-0.7332564 <s> perry professed
-0.9856059 <s> still he
-1.653069 <s> bobby went
-1.653764 <s> bobby looked
-1.660078 <s> bobby forced
-1.660078 <s> bobby walked
-1.662204 <s> bobby handed
-0.4646527 <s> graham <unk>
-1.535811 <s> graham on
-1.566991 <s> graham interrupted
-0.2920042 <s> dull <unk>
-0.3304244 <s> repeated the
-0.9854444 <s> robinson <unk>
-1.142831 <s> robinson entered
-0.8815949 <s> spoke the
-0.6345039 <s> suddenly he
-1.102204 <s> pay him
-0.6370529 <s> pay me
-0.7253771 <s> compelled him
-0.857473 <s> therefore my
-0.8170038 <s> you'll easily
-0.6642711 <s> acquired <unk>
-0.404341 <s> thou <unk>
-0.799166 <s> ay and
-0.8417903 <s> ay me
-0.3372063 <s> ah you
-0.8168483 <s> o tis
-1.081801 <s> tis late
-1.08203 <s> tis fine
-1.253797 <s> cried one
-1.183036 <s> cried the
-0.5407748 <s> cried he
-0.8856972 <s> till she
-0.9783446 <s> danglars signature
-0.7323596 <s> becoming really
-0.6642711 <s> equally <unk>
-0.7143108 <s> gentlemen he
-0.2215168 <s> replied the
-0.9213155 <s> morrel suffered
-0.7310817 <s> eugenie has
-0.8506077 <s> king <unk>
-0.7332564 <s> pray follow
-0.8163821 <s> leaving hard
-0.7271439 <s> listen when
-0.7329999 <s> thrusting open
-0.7242451 <s> uncle had
-0.7287908 <s> surely we
-0.6642711 <s> brave <unk>
-0.7777731 <s> cries of
-0.8655713 <s> cacambo decided
-0.8511641 <s> pangloss <unk>
-0.7267647 <s> beg me
-0.8461877 <s> nottingham <unk>
-0.1187424 <s> mistress fitzooth
-0.7263858 <s> forthwith all
-0.9562144 <s> nay we
-0.96378 <s> nay nay
-0.7324876 <s> george montfichet
-1.086811 <s> robin and
-1.544327 <s> robin was
-1.616537 <s> robin carefully
-1.611521 <s> robin entered
-0.719132 <s> robin fitzooth
-0.9621002 <s> montfichet called
-0.8475162 <s> stuteley was
-0.8660499 <s> warrenton spoke
-0.7267647 <s> save me
-0.8997519 <s> d'avrigny <unk>
-1.008919 <s> d'avrigny said
-1.025439 <s> d'avrigny rushed
-1.006951 <s> noirtier was
-1.030965 <s> noirtier looked
-1.042978 chapter one missus
-1.024961 chapter two matthew
-0.6969822 chapter seven the
-0.2600956 one missus rachel
-1.049942 one is rather
-1.334644 one <unk> the
-0.7755165 one <unk> to
-1.849418 one <unk> an
-1.708197 one <unk> at
-1.799849 one <unk> out
-1.902297 one <unk> people
-1.849418 one <unk> were
-1.040668 one and no
-1.00272 one had ever
-0.6060648 one in the
-1.351454 one in hand
-0.3990515 one of the
-0.9096632 one of <unk>
-0.759018 one of those
-1.028458 one of them
-0.8341057 one but i
-1.032236 one could have
-1.490318 one on me
-1.506498 one on rothschild
-1.506498 one on lafitte
-0.8474181 one from <unk>
-0.959007 one there for
-0.4739573 one who is
-0.874567 one who <unk>
-1.608072 one who saw
-1.020525 one can say
-1.045795 one so very
-0.8401956 one afternoon in
-0.7700684 one which <unk>
-1.401995 one day in
-1.373318 one day of
-1.42953 one day he
-1.499648 one day before
-0.7360139 one home with
-1.03089 one must allow
-0.7735312 one step the
-1.055737 one i miss
-0.8195926 one when she
-1.003942 one side </s>
-1.088719 one side with
-0.9727639 one looking out
-0.9898864 one isn't leaning
-0.167675 one kind of
-0.9375648 one thin brown
-1.103059 one two three
-1.302703 one two seven
-0.8626679 one broke into
-0.7952333 one may <unk>
-0.9945991 one thing after
-0.8085516 one hand </s>
-0.9708264 one short bat
-0.8166929 one lovely evening
-1.26714 one way or
-1.00888 one way he
-0.3194515 one hundred and
-0.5602441 one hundred thousand
-0.8171593 one fault interrupted
-0.9212496 one either rejoined
-0.9368964 one else had
-0.7296803 one bone before
-0.7331282 one theory promised
-0.3262514 one glance </s>
-0.8972133 one virtue it
-0.6825953 one measure </s>
-0.8137501 one o two
-0.7331282 one delighted shriek
-0.799166 one leg and
-0.8436053 one leg out
-1.650715 missus rachel </s>
-0.9496929 missus rachel lynde
-0.7810123 missus rachel <unk>
-1.301645 missus rachel in
-1.08983 missus rachel was
-1.747186 missus rachel to
-1.445615 missus rachel lynde's
-2.018864 missus rachel could
-1.989173 missus rachel up
-2.036789 missus rachel found
-1.354391 missus rachel would
-2.049163 missus rachel knew
-2.011609 missus rachel before
-1.851042 missus rachel i
-2.042932 missus rachel set
-2.050735 missus rachel stepped
-1.983741 missus rachel when
-2.044481 missus rachel felt
-0.9578998 missus <unk> <unk>
-1.322442 missus <unk> all
-0.08589193 missus alexander spencer
-1.353952 missus spencer to
-1.476719 missus spencer what
-0.7514125 missus spencer said
-1.494746 missus spencer came
-1.505023 missus spencer although
-1.490326 missus spencer will
-1.051305 missus savareen <unk>
-1.207561 missus savareen as
-1.242988 missus savareen sat
-0.549156 missus griffin however
-1.193396 rachel lynde is
-1.214626 rachel lynde lived
-1.174926 rachel lynde was
-1.2054 rachel lynde did
-1.075781 rachel <unk> <unk>
-1.578728 rachel <unk> as
-1.754551 rachel <unk> putting
-1.752501 rachel <unk> herself
-1.742757 rachel <unk> loved
-0.8933077 rachel in a
-1.326494 rachel in spite
-1.431315 rachel was sitting
-1.473822 rachel was getting
-1.431315 rachel was almost
-0.7629004 rachel to the
-1.033198 rachel lynde's door
-1.033966 rachel lynde's husband
-0.7046773 rachel could not
-1.029192 rachel up she
-0.9175551 rachel found <unk>
-0.1981225 rachel would have
-0.8755068 rachel knew that
-0.818947 rachel before she
-1.006533 rachel marilla said
-0.8947681 rachel i was
-0.9537341 rachel set out
-0.8591835 rachel stepped out
-0.8195926 rachel when she
-0.9559136 rachel felt that
-0.9966158 rachel i've had
-1.016714 lynde is surprised
-0.8622793 lynde lived just
-0.5842025 lynde a <unk>
-1.0475 lynde was one
-0.4735278 lynde did not
-0.6622561 is one of
-0.9577169 is surprised missus
-0.9577169 is surprised matthew
-0.3859229 is the <unk>
-2.074372 is the window
-2.086693 is the more
-1.906609 is the only
-2.142948 is the news
-2.042175 is the most
-2.22083 is the science
-2.223221 is the price
-2.182868 is the key
-2.223221 is the creditor
-1.273123 is <unk> </s>
-0.7105023 is <unk> the
-1.200603 is <unk> <unk>
-1.375435 is <unk> and
-1.688656 is <unk> that
-1.426707 is <unk> to
-1.758752 is <unk> for
-1.765537 is <unk> he
-1.951442 is <unk> which
-2.034701 is <unk> no
-2.113084 is <unk> maybe
-0.4631524 is a <unk>
-1.674492 is a good
-2.174527 is a wonder
-2.086911 is a real
-2.084818 is a fine
-2.001795 is a way
-2.177102 is a worse
-1.081846 is a god
-1.945551 is a myth
-2.174527 is a receipt
-1.022921 is with greater
-1.3728 is that a
-0.9521138 is that he
-1.523124 is that building
-0.6323558 is in the
-1.520707 is in man
-1.112894 is in his
-1.006287 is of any
-1.252837 is it that
-1.349598 is it thy
-0.8614947 is to be
-1.052615 is for thee
-1.307327 is not the
-1.692077 is not an
-1.479015 is not only
-1.590915 is not true
-1.717534 is not mine
-0.8136716 is even more
-0.9384872 is at least
-1.334763 is this </s>
-1.284479 is this fellow
-1.503608 is this unanimous
-1.051204 is she gone
-1.033728 is never free
-1.020737 is there <unk>
-1.284129 is there a
-0.8452654 is always <unk>
-1.225775 is always on
-1.019014 is as good
-0.6980984 is over in
-1.306277 is his banker
-1.348183 is his receipt
-1.500802 is so little
-1.5066 is so stupid
-1.507049 is so curious
-1.405437 is he </s>
-1.471412 is he a
-1.430548 is he not
-0.4260785 is because i
-0.6361104 is nothing to
-0.4130615 is worthy of
-0.5727737 is more <unk>
-1.101308 is more of
-0.9786779 is made and
-0.9692938 is what i
-1.015087 is i wish
-1.244121 is no such
-1.246433 is no evidence
-0.9775241 is enough said
-0.3949475 is being <unk>
-0.261824 is very kind
-0.955062 is getting up
-0.9995593 is only in
-0.9901195 is how i
-1.320542 is your business
-1.320542 is your name
-1.250864 is too good
-0.7872544 is too much
-0.2880959 is hard to
-1.025961 is like nor
-0.9983293 is right close
-0.7095801 is my <unk>
-1.337319 is my esquire
-1.039492 is will stuteley
-0.723982 is another <unk>
-0.9703834 is really wonderful
-0.9072392 is possible the
-0.9469532 is come </s>
-0.5640213 is also <unk>
-0.6642711 is extremely <unk>
-0.8197282 is worse to
-0.4774842 is rather <unk>
-0.7965978 is himself </s>
-0.9639194 is jesus a
-0.7529432 is money </s>
-0.7890483 is impossible to
-0.7077313 is injured in
-0.9899734 is still a
-1.272824 is still time
-1.011391 is bobby i
-0.7755056 is natural to
-0.3207932 is perfectly <unk>
-0.7312093 is receiving us
-0.7193222 is indeed said
-0.7216153 is transacting at
-0.6825953 is magnificent </s>
-0.8165375 is horrible evil
-0.6642711 is weeping <unk>
-0.2600956 surprised missus rachel
-1.04965 surprised at nothing
-0.6398532 surprised matthew cuthbert
-1.020617 lived just where
-0.7360438 lived where the
-1.012204 lived a very
-0.8922063 lived was a
-0.7360438 just where the
-1.053093 just the beauty
-1.157915 just <unk> the
-1.518223 just <unk> that's
-1.525945 just <unk> afraid
-1.056223 just a certain
-0.6060648 just in the
-1.323655 just in time
-0.6613509 just time to
-1.022715 just people too
-0.9780782 just done pardon
-0.98347 just as the
-1.164281 just as a
-0.7153609 just tell you
-1.053691 just his scruples
-0.4610885 just went to
-0.8131331 just step over
-0.8447933 just what he
-0.9524127 just then </s>
-1.076192 just then she
-0.6386398 just left </s>
-0.6126988 just give me
-1.175113 just love it
-1.21952 just love pretty
-0.6857985 just want the
-0.9473888 just lost his
-0.3401357 just asking myself
-0.8590121 just swim there
-1.523698 where the avonlea
-0.3620066 where the <unk>
-0.6638563 where a <unk>
-1.332871 where a man's
-1.033351 where and what
-1.053691 where that green
-0.80446 where it is
-1.018074 where was matthew
-0.4368975 where an <unk>
-1.0085 where an orphan
-0.968988 where even in
-0.9069845 where there were
-0.4488116 where he <unk>
-1.436407 where he would
-1.563535 where he might
-0.949794 where he's gone
-0.609602 where wild <unk>
-0.7007666 where they had
-0.264258 where you beauty
-0.8662662 where these people
-0.7326156 where careless tired
-0.6098602 where thou art
-0.8005243 where jill was
-1.19773 the one in
-1.102652 the one day
-1.056421 the the oh
-1.198545 the avonlea main
-0.7448634 the avonlea <unk>
-0.2922438 the main road
-1.25858 the main facts
-1.242602 the road to
-1.337757 the road from
-1.358898 the road part
-1.356019 the road whether
-1.323625 the <unk> </s>
-1.918823 the <unk> is
-3.437301 the <unk> lived
-2.958544 the <unk> where
-1.612299 the <unk> the
-0.6649727 the <unk> <unk>
-1.966364 the <unk> a
-2.967139 the <unk> little
-3.454731 the <unk> fringed
-2.123361 the <unk> with
-1.232981 the <unk> and
-3.437301 the <unk> ladies
-2.118325 the <unk> by
-1.853889 the <unk> that
-2.246514 the <unk> had
-1.668128 the <unk> in
-0.6842507 the <unk> of
-2.354981 the <unk> place
-2.078007 the <unk> it
-2.003781 the <unk> was
-1.645031 the <unk> to
-2.280275 the <unk> through
-2.327681 the <unk> but
-2.660009 the <unk> not
-3.412401 the <unk> door
-2.101838 the <unk> at
-2.147677 the <unk> on
-3.454731 the <unk> school
-3.428841 the <unk> hours
-2.653053 the <unk> she
-2.318346 the <unk> if
-2.496258 the <unk> or
-2.564075 the <unk> out
-2.794684 the <unk> are
-3.257439 the <unk> creatures
-3.388851 the <unk> work
-3.445929 the <unk> circle
-2.382995 the <unk> as
-2.281518 the <unk> were
-2.414139 the <unk> man
-2.370303 the <unk> his
-3.437301 the <unk> pass
-2.249275 the <unk> so
-2.250552 the <unk> he
-2.928409 the <unk> before
-2.228098 the <unk> which
-2.939126 the <unk> here
-3.071586 the <unk> make
-3.428841 the <unk> taking
-3.032881 the <unk> after
-3.0262 the <unk> made
-3.338411 the <unk> last
-2.953143 the <unk> what
-2.372691 the <unk> i
-2.263401 the <unk> said
-3.057109 the <unk> men
-2.311898 the <unk> when
-3.454731 the <unk> edge
-3.420543 the <unk> wonder
-3.412401 the <unk> company
-2.888002 the <unk> they
-2.985111 the <unk> then
-3.445929 the <unk> whence
-2.135996 the <unk> you
-3.209385 the <unk> give
-2.126545 the <unk> behind
-3.230089 the <unk> name
-2.907522 the <unk> between
-3.420543 the <unk> almost
-2.430647 the <unk> earth
-3.428841 the <unk> fact
-3.437301 the <unk> broke
-3.20436 the <unk> first
-2.381327 the <unk> we
-2.40288 the <unk> took
-3.07901 the <unk> thing
-3.345268 the <unk> don't
-3.194481 the <unk> myself
-3.075282 the <unk> gave
-3.251829 the <unk> loved
-3.437301 the <unk> somewhat
-3.240823 the <unk> hung
-3.437301 the <unk> notice
-3.445929 the <unk> office
-3.071586 the <unk> room
-3.07901 the <unk> eyes
-3.454731 the <unk> observer
-3.428841 the <unk> feet
-2.915156 the <unk> against
-3.437301 the <unk> kept
-2.40288 the <unk> black
-3.454731 the <unk> astir
-3.071586 the <unk> light
-2.432333 the <unk> product
-3.246291 the <unk> board
-3.454731 the <unk> sensorium
-3.454731 the <unk> price
-3.240823 the <unk> cold
-3.454731 the <unk> wall
-3.437301 the <unk> condition
-3.445929 the <unk> arrived
-3.454731 the <unk> longer
-3.437301 the <unk> within
-3.454731 the <unk> swamp
-3.246291 the <unk> neck
-3.454731 the <unk> newspapers
-2.988137 the <unk> bobby
-3.454731 the <unk> telephoned
-3.445929 the <unk> court
-3.437301 the <unk> easy
-3.454731 the <unk> expressed
-3.454731 the <unk> staircase
-3.454731 the <unk> worry
-3.454731 the <unk> roofs
-3.454731 the <unk> weaving
-3.428841 the <unk> sad
-3.102073 the <unk> doth
-3.454731 the <unk> sin
-3.445929 the <unk> written
-3.454731 the <unk> study
-3.454731 the <unk> procureur
-3.454731 the <unk> offered
-3.454731 the <unk> smell
-3.454731 the <unk> lift
-3.445929 the <unk> bear
-3.246291 the <unk> cacambo
-3.251829 the <unk> apprentice
-3.454731 the <unk> esquire
-3.454731 the <unk> onward
-0.4323842 the little <unk>
-1.806659 the little child
-1.540971 the little boat
-0.8006986 the little stroller
-0.4248782 the hollow and
-1.398066 the hollow by
-1.320804 the hollow of
-1.204139 the ladies asked
-1.20833 the ladies waiting
-1.207183 the ladies whose
-0.8475162 the brook was
-1.026045 the back yard
-1.034444 the woods of
-1.064726 the woods he
-1.094029 the woods when
-1.058889 the old <unk>
-2.173954 the old cuthbert
-0.5447617 the old man
-0.8801103 the old woman
-1.044706 the old room
-2.160938 the old question
-1.68265 the old nurse
-1.315125 the old man's
-2.175157 the old courtyard
-1.315791 the old cemetery
-0.9297136 the place where
-1.064879 the place of
-0.8984684 the place to
-0.9402498 the course of
-1.219655 the time the
-1.148071 the time <unk>
-1.057001 the time of
-1.595106 the time it
-1.605492 the time was
-1.616807 the time at
-0.7874456 the well i
-0.8785827 the door </s>
-1.079555 the door <unk>
-1.597754 the door in
-0.6435652 the door of
-1.684081 the door so
-1.629286 the door he
-1.704479 the door then
-0.8727597 the window </s>
-1.334357 the window and
-1.362221 the window of
-1.43791 the window it
-1.457851 the window at
-1.518116 the window warm
-1.508283 the window i've
-0.7258812 the school is
-0.7332564 the church aid
-0.7777731 the society of
-0.6773804 the hours of
-0.6945323 the hours passed
-0.9626911 the kitchen door
-0.9441686 the kitchen at
-1.040771 the rest </s>
-1.082837 the rest of
-1.166044 the rest paying
-0.9404518 the people <unk>
-1.445301 the people of
-1.533034 the people for
-1.230825 the people were
-1.221112 the people said
-1.855717 the other avonlea
-1.751504 the other with
-1.568497 the other and
-1.766879 the other but
-1.762726 the other she
-1.853164 the other night
-1.859574 the other side
-1.850626 the other thing
-1.858284 the other orphans
-1.010721 the other hand
-1.860868 the other easily
-0.7324876 the steep red
-0.6462043 the red roads
-0.5473948 the hill </s>
-1.08226 the hill field
-0.8065552 the orchard on
-1.200362 the house the
-1.192874 the house and
-0.9632659 the house of
-1.25367 the house was
-1.7277 the house at
-1.728609 the house as
-1.262916 the house his
-1.751982 the house so
-1.677167 the house he
-1.780772 the house then
-1.799652 the house graham
-0.8968422 the bloom white
-1.286485 the man with
-0.8752263 the man was
-0.8978152 the late fall
-0.6825953 the barn </s>
-0.8328754 the afternoon of
-1.188719 the sun and
-1.234212 the sun in
-1.275095 the sun was
-1.312862 the sun would
-1.320231 the sun went
-1.324713 the sun rose
-1.066614 the evening a
-1.109258 the evening before
-1.270704 the next afternoon
-1.26839 the next thing
-0.7750348 the next morning
-0.8923587 the best <unk>
-0.5478701 the best of
-1.510639 the best houses
-1.510639 the best age
-1.510639 the best philosopher
-1.076942 the buggy </s>
-1.104992 the buggy and
-1.117858 the buggy to
-1.195622 the buggy not
-0.1187528 the sorrel mare
-0.8416295 the mare and
-0.7755056 the distance to
-1.398163 the whole little
-1.404132 the whole family
-1.404734 the whole truth
-1.406543 the whole neighborhood
-1.406543 the whole soul
-1.036272 the day <unk>
-1.517212 the day with
-1.526984 the day but
-1.520445 the day at
-1.136368 the day i
-0.7298075 the strangers into
-0.7777731 the collar of
-1.286716 the good yes
-1.292702 the good supreme
-0.6763868 the green light
-1.237571 the worthy man
-1.242277 the worthy woman
-1.243165 the worthy gentleman
-1.214064 the woman at
-0.9298409 the woman hating
-0.4026671 the year </s>
-1.117257 the year around
-0.6175346 the more <unk>
-1.505107 the more to
-1.612886 the more so
-1.647207 the more strange
-1.351591 the more important
-0.9659532 the big <unk>
-1.08043 the big eyes
-0.6973076 the long <unk>
-1.364954 the long lane
-1.365425 the long platform
-0.471391 the lane </s>
-1.028997 the lane into
-0.537966 the father </s>
-0.774865 the silent <unk>
-1.242072 the son <unk>
-0.26075 the son of
-0.3910021 the last <unk>
-1.459152 the last time
-0.9640717 the night </s>
-1.172564 the night the
-0.8105866 the night of
-1.689637 the night there
-1.657545 the night his
-1.726194 the night dropped
-1.727148 the night wore
-0.794682 the mind <unk>
-0.9896371 the far corner
-0.9621968 the living met
-0.8345262 the deep <unk>
-0.9272258 the men and
-1.456563 the men was
-1.466828 the men at
-1.522843 the men began
-0.03996437 the edge of
-0.6459944 the wild rose
-0.8852238 the trees had
-1.100726 the company in
-1.129452 the company for
-0.9935374 the look seemed
-0.1059134 the side of
-0.2556712 the stone and
-1.333014 the stone princess
-0.7850687 the opinion </s>
-0.8297737 the opinion that
-1.042432 the yard of
-1.115398 the yard give
-1.092213 the body and
-1.169302 the body but
-1.024878 the very outside
-1.10069 the ground and
-1.169877 the ground was
-1.203002 the ground without
-0.7959816 the left </s>
-1.558475 the left or
-1.584401 the left orchard
-1.557358 the left what
-1.577919 the left hand
-0.8222394 the appearance of
-0.9521619 the east one
-0.929617 the east i
-0.8088385 the west one
-0.7347887 the closed <unk>
-0.2190764 the mystery </s>
-0.7347887 the real <unk>
-0.1494703 the fine country
-0.7282834 the dishes were
-0.9136765 the only one
-0.9466423 the only <unk>
-1.977109 the only living
-1.974204 the only thing
-1.974204 the only things
-1.057643 the only way
-1.971319 the only light
-1.981503 the only answer
-1.984457 the only person
-1.982978 the only evidence
-1.987432 the only color
-0.9204924 the expected company
-0.2494043 the name of
-0.7986513 the lips </s>
-0.208776 the sight of
-1.012641 the oh heavens
-0.938181 the bad coffee
-1.298264 the two men
-1.302703 the two doctors
-0.3353462 the mouth of
-0.9051016 the mouth was
-0.6093368 the river </s>
-0.9934374 the boy also
-1.384801 the asylum was
-1.442511 the asylum people
-1.435348 the asylum over
-1.354817 the asylum i
-1.436641 the asylum some
-1.293242 the train with
-1.295284 the train at
-1.267152 the train i
-0.7950341 the train tonight
-0.7332564 the kangaroo gait
-0.3726473 the five thirty
-1.620022 the five scraps
-1.619726 the five notes
-0.4981908 the fun of
-0.8171593 the usual spring
-0.5006122 the spring </s>
-0.5166674 the spring equinox
-0.6790752 the girl said
-1.305303 the world </s>
-1.34923 the world and
-1.378098 the world of
-1.466862 the world was
-1.441125 the world he
-0.9428055 the world what
-1.503052 the world no
-1.538792 the world millions
-0.9508244 the earth doctor
-1.10183 the head and
-1.199539 the head any
-0.7759414 the fact of
-1.113322 the fact to
-0.8350915 the states at
-0.8256294 the states he
-0.6184061 the first <unk>
-0.9732807 the first of
-1.456263 the first tis
-1.457258 the first ship
-0.8840414 the right <unk>
-1.374375 the right sort
-1.369057 the right hand
-0.8893198 the street the
-0.5250652 the least <unk>
-0.7323596 the risk there's
-0.9120552 the matter which
-0.8222394 the years of
-0.5455231 the use to
-0.2382787 the young man
-1.499276 the young lady
-0.8171593 the proper entrance
-0.7304441 the mail man
-1.105662 the station house
-1.107176 the station saying
-1.107783 the station master
-0.7332564 the amazing meeting
-0.5812682 the news of
-1.133075 the news it
-1.137216 the news was
-0.811748 the end we
-1.027284 the week in
-1.074425 the week before
-0.894977 the paper how
-0.8988498 the wife of
-1.174104 the island with
-1.164306 the island it
-1.207183 the island took
-0.6935328 the fire and
-1.21433 the fire she
-1.216666 the fire his
-1.351739 the thing is
-1.34669 the thing had
-0.9690872 the thing was
-1.002561 the child </s>
-0.9691251 the child <unk>
-1.539619 the child mind
-1.538162 the child put
-1.54698 the child responded
-1.259173 the case with
-1.192279 the case of
-1.247283 the case it
-1.301175 the case against
-0.33144 the tone of
-0.8156063 the people's money
-0.7005358 the wells of
-1.237892 the new house
-1.238419 the new morning
-0.3513586 the family <unk>
-0.5702854 the second <unk>
-1.316218 the second was
-1.354369 the second time
-1.350102 the second will
-0.8841846 the poor child
-1.407056 the poor prince
-1.406149 the poor princess
-1.025187 the latter part
-1.024685 the latter felt
-1.025942 the latter personage
-0.8222394 the influence of
-0.7188279 the air <unk>
-0.9522153 the air and
-0.757865 the air was
-1.473009 the air i
-1.54906 the air became
-0.931871 the breath of
-0.8596979 the pity then
-0.4385861 the eight miles
-0.9097706 the bit had
-0.8475162 the wood was
-0.8942333 the drive after
-0.8162269 the iron bed
-0.9208014 the women he
-1.121754 the prince </s>
-1.401183 the prince the
-0.7322554 the prince <unk>
-1.713323 the prince and
-1.824702 the prince in
-1.920635 the prince it
-1.942655 the prince was
-1.749781 the prince to
-1.380281 the prince but
-2.085051 the prince could
-2.105102 the prince went
-1.887076 the prince he
-2.083096 the prince now
-1.872421 the prince i
-1.404534 the prince very
-2.107159 the prince looked
-2.109226 the prince oh
-2.111302 the prince saw
-2.103055 the prince yes
-2.11971 the prince felt
-2.107159 the prince put
-2.130453 the prince ventured
-2.121837 the prince appeared
-2.132634 the prince encouraged
-0.9708929 the full moon
-0.8171593 the soft soil
-1.100209 the horse is
-1.103505 the horse which
-0.8655713 the small bright
-0.7322316 the platform towards
-0.7128401 the shingles i
-0.8501021 the extreme end
-0.85027 the extreme impertinence
-0.5648552 the waiting room
-0.1824213 the stationmaster <unk>
-1.127396 the room for
-1.11833 the room he
-1.511732 the room than
-1.512872 the room alone
-0.8222394 the outside of
-0.8852238 the orphans had
-0.9572871 the situation well
-0.9629086 the situation answer
-0.9760956 the better light
-0.7296803 the unfortunate matthew
-0.814633 the walk </s>
-0.898415 the hat extending
-0.8168483 the thick crowd
-1.286866 the face and
-0.416719 the face of
-0.7960131 the lights <unk>
-0.9465605 the others </s>
-0.4780128 the others <unk>
-1.545636 the others after
-1.546156 the others very
-1.556674 the others showed
-1.557207 the others pray
-0.719498 the chin was
-0.807911 the forehead of
-0.8323438 the forehead was
-0.7329999 the broad daylight
-0.9913396 the ordeal a
-0.9709169 the ordeal of
-0.7619956 the handle <unk>
-0.807911 the handle of
-0.4186053 the tree </s>
-0.2622128 the heavy <unk>
-1.343041 the heavy mourning
-1.31568 the way of
-1.101773 the way they
-1.407331 the way then
-0.3207932 the exact <unk>
-0.9277158 the love of
-0.731337 the worst i've
-0.786383 the imagination in
-0.8171593 the interesting consequence
-0.8962818 the talking themselves
-0.7005358 the soil of
-0.8932528 the beautiful the
-1.255435 the bank </s>
-1.47372 the bank where
-1.413228 the bank was
-1.430125 the bank but
-1.44837 the bank all
-1.45104 the bank my
-1.482269 the bank shall
-1.485882 the bank please
-0.3927113 the most <unk>
-1.542223 the most three
-1.547417 the most beautiful
-1.550037 the most delightful
-1.550037 the most impossible
-0.9929374 the already black
-0.6831771 the boat <unk>
-1.265304 the boat with
-1.26944 the boat she
-1.303212 the boat neither
-0.8162269 the roads red
-0.7735312 the true the
-1.011421 the gentleman <unk>
-0.4180313 the gentleman who
-0.4962805 the black <unk>
-1.328547 the black mare
-1.328915 the black clothed
-0.7925133 the city i
-1.209738 the moment of
-1.293781 the moment up
-1.276507 the moment she
-0.7128401 the worship i
-0.471391 the priest </s>
-1.015894 the priest with
-0.9148645 the light of
-1.241646 the light they
-0.8653974 the divine apollo
-0.7906066 the presence of
-0.7329999 the various lights
-0.7005358 the meaning of
-0.1881954 the anniversary of
-0.2221093 the birthday of
-1.097413 the search </s>
-1.126864 the search and
-1.200735 the search was
-0.805481 the universe to
-0.8344434 the universe you
-0.7777731 the touch of
-0.8522772 the golden <unk>
-0.961388 the golden light
-0.7005358 the music of
-1.235994 the truth came
-1.223523 the truth my
-1.238039 the truth don't
-0.9984786 the open and
-1.082374 the open page
-0.1881954 the discussion of
-1.427746 the count had
-0.9097057 the count of
-1.460354 the count has
-1.467946 the count above
-1.471148 the count alas
-0.3735393 the courage to
-0.9572871 the courage or
-0.7005358 the industry of
-0.8171593 the searching party
-0.8222394 the myth of
-0.7308265 the knowledge graham
-0.7005358 the mythus of
-0.8696388 the science of
-0.7175146 the realization that
-0.7347887 the restless <unk>
-0.7281567 the space about
-0.6936914 the fairies and
-0.5119215 the moon </s>
-0.5282085 the moon rose
-0.9443771 the firm as
-0.9633441 the firm ground
-0.9197973 the hands of
-0.5121989 the evidence </s>
-1.366743 the evidence under
-1.356236 the evidence bobby
-0.85027 the christian church
-0.85027 the christian easter
-0.9877128 the money on
-0.8190189 the evil <unk>
-0.7619956 the infant <unk>
-0.8485942 the infant jesus
-0.8717833 the position of
-0.7005358 the object of
-0.7005358 the origin of
-0.6642711 the following <unk>
-0.2158696 the numerous <unk>
-0.8940694 the silence of
-0.8134415 the sword now
-0.7332564 the hereafter brevity
-0.807911 the government of
-0.805481 the government to
-0.8131331 the courtiers did
-0.8005243 the promise was
-1.169619 the same <unk>
-0.7068639 the same to
-1.37065 the same which
-1.388667 the same day
-1.392662 the same hour
-1.393667 the same spot
-0.9854444 the words <unk>
-1.138897 the words came
-0.6326147 the car <unk>
-1.205205 the car a
-1.226634 the car was
-1.263431 the car stopped
-0.6379101 the lady who
-1.117982 the lady wholly
-0.8128249 the balance would
-0.8717833 the foot of
-1.536406 the water </s>
-1.622499 the water the
-1.157514 the water <unk>
-0.9198438 the water and
-1.777765 the water that
-1.841511 the water had
-1.925407 the water away
-1.777765 the water it
-1.196367 the water was
-1.633384 the water to
-1.897047 the water well
-1.847915 the water so
-1.873152 the water which
-1.936341 the water rose
-1.810833 the water you
-1.228624 the water closed
-1.942715 the water grew
-0.8475162 the picture was
-0.8171593 the useful product
-1.078194 the dead and
-1.123151 the dead he
-0.698637 the color to
-0.6825953 the sensorium </s>
-0.7777731 the cause of
-0.1881954 the price of
-0.163262 the sarah <unk>
-0.7280299 the bower there
-0.8652236 the general father
-0.7777731 the heat of
-0.7005358 the inside of
-0.7986513 the crowd </s>
-0.6642711 the intellect <unk>
-0.7228656 the wall but
-0.6825953 the match </s>
-0.7850687 the fourth </s>
-0.807911 the fourth of
-0.1626929 the condition of
-0.7005358 the neighborhood of
-1.084849 the country and
-0.5812682 the country of
-1.165419 the country round
-0.9590091 the missing man
-0.9631263 the missing man's
-0.8171593 the lord chamberlain
-1.337825 the squire </s>
-0.8903909 the squire <unk>
-1.376658 the squire and
-1.478215 the squire was
-1.394805 the squire to
-1.539556 the squire helped
-1.540789 the squire losing
-1.181347 the story the
-1.300701 the story won't
-1.290866 the story will
-1.300227 the story told
-1.082635 the man's <unk>
-1.293193 the man's game
-1.293659 the man's personal
-0.8997519 the previous <unk>
-1.02569 the previous afternoon
-1.025439 the previous evening
-0.807911 the interior of
-0.8429445 the interior they
-1.200735 the coat was
-1.243403 the coat worn
-1.242988 the coat pocket
-0.7331282 the party proceeded
-0.8522772 the damp <unk>
-0.9633441 the damp fresh
-0.8985086 the swamp and
-0.9542901 the swamp they
-0.0839825 the rear of
-0.9536506 the saddle which
-0.9631263 the saddle however
-0.1881954 the disappearance of
-0.8165375 the wet street
-0.1881954 the traces of
-0.2462854 the care of
-0.9596735 the local <unk>
-1.108695 the local coroner
-1.108391 the local lawyer
-0.9344232 the top <unk>
-0.4795726 the top of
-0.9300639 the days when
-0.7077313 the bar in
-0.9498995 the doctor left
-1.015949 the still air
-0.7981352 the corner that
-1.384461 the district were
-0.7367835 the district doctor
-0.3289227 the district attorney
-0.9037945 the courtyard the
-0.9095299 the courtyard of
-0.7991283 the bed <unk>
-1.323707 the bed those
-1.328731 the bed pale
-1.321115 the lake and
-0.7676786 the lake to
-1.424071 the lake for
-1.448418 the lake on
-1.438629 the lake she
-1.403111 the lake he
-1.470519 the lake your
-0.7005358 the movement of
-0.8166929 the chief fact
-0.6936914 the landscape and
-0.8385097 the underbrush had
-0.8350915 the underbrush at
-1.032853 the grave <unk>
-1.142155 the grave in
-1.181356 the grave as
-1.160284 the grave he
-0.2920042 the dull <unk>
-1.260028 the court a
-1.200467 the court and
-1.318089 the court from
-1.270505 the court he
-1.320561 the court they
-0.7321037 the uncommunicative eyes
-0.6969822 the minister the
-0.1881954 the entrance of
-0.7326156 the front door
-0.2340292 the direction of
-0.8218387 the courthouse a
-0.8494313 the courthouse probably
-0.8385097 the panamanian had
-0.805481 the panamanian to
-0.5609774 the cedars </s>
-1.239895 the cedars again
-1.2462 the cedars above
-1.247539 the cedars silas
-1.054655 the present <unk>
-0.6515007 the present in
-1.197988 the present if
-0.6642711 the mournful <unk>
-0.4258426 the sum of
-0.8222394 the difficulty of
-0.8135957 the judge could
-0.9501975 the hold she
-0.7280299 the lawyer who
-1.100185 the hall </s>
-1.241463 the hall last
-1.228034 the hall when
-1.247288 the hall holding
-1.246033 the hall rawlins
-0.2221093 the opening of
-0.8522772 the staircase <unk>
-0.963562 the staircase groaned
-0.7327437 the flesh around
-0.7175146 the impression it
-0.7005358 the measure of
-0.8494313 the law won't
-0.85027 the law watched
-0.7005358 the indifference of
-0.8350915 the thicket at
-0.8499342 the thicket less
-0.7005358 the labour of
-0.2221093 the nature of
-0.7332564 the smoke shroud
-1.097413 the forest </s>
-1.126864 the forest and
-1.236811 the forest because
-0.7332564 the dismal sky
-1.083153 the death of
-1.16608 the death chamber
-0.5058786 the power of
-1.20321 the power to
-1.29133 the power sublime
-0.7327437 the accusation against
-0.4110283 the fresh <unk>
-0.7850687 the speaker </s>
-0.8497665 the speaker deep
-0.6642711 the definite <unk>
-0.8522772 the mourning <unk>
-0.9095299 the mourning of
-1.116636 the sad business
-1.117878 the sad event
-0.7850687 the creeps </s>
-0.8480927 the creeps too
-0.6936914 the shape and
-0.7305716 the ghosts back
-0.728664 the idea bobby
-0.8168483 the opposite shore
-0.8166929 the chair arm
-0.3572175 the arm </s>
-0.996626 the stairs </s>
-1.087892 the stairs on
-1.107479 the stairs talking
-0.8218387 the clergyman a
-0.85027 the clergyman shook
-0.7326156 the entire company
-0.7191254 the need for
-0.8168483 the cousin standing
-0.1881954 the chest of
-0.240114 the beauty of
-0.7315924 the crystal can
-0.3207932 the kings <unk>
-0.6936914 the sin and
-0.807911 the key of
-0.8256294 the key he
-0.7347887 the written <unk>
-0.807911 the third of
-0.8494313 the third appeared
-0.7209915 the touches with
-0.7777731 the point of
-0.7223651 the sacrifice she
-0.7850687 the corpse </s>
-0.8171462 the corpse in
-0.1930665 the winding sheet
-0.8099082 the sheet which
-0.8477587 the assassin asked
-0.85027 the assassin benedetto
-0.1928632 the reception room
-0.7301894 the procureur again
-0.799166 the occasion and
-0.8318608 the occasion for
-0.7696089 the rich and
-0.7005358 the marriage of
-0.7850687 the army </s>
-0.8452619 the army well
-0.7211162 the event you
-0.7925133 the banker i
-0.7777731 the example of
-0.7005358 the pride of
-0.2656816 the baron if
-1.383404 the baron determined
-1.192292 the king had
-0.4253714 the king of
-1.207056 the king himself
-0.7942808 the consolation he
-0.2475409 the bonds in
-0.807911 the noise of
-0.8470915 the noise came
-0.807911 the governor of
-0.8465917 the governor two
-0.7216153 the order at
-0.8170038 the fund deposited
-0.786383 the notes in
-0.4938008 the six millions
-1.033966 the six kings
-0.9264472 the receipt on
-0.1930665 the charity fund
-0.7327437 the perspiration started
-0.9516553 the receiver and
-1.025942 the receiver general
-1.025187 the receiver started
-0.7329999 the charities present
-0.7005358 the amount of
-0.7280299 the creditor who
-0.774865 the mother <unk>
-0.807911 the examination of
-0.8490963 the examination take
-0.33144 the pleasure of
-0.7331282 the double pleasure
-0.4110283 the cry <unk>
-1.113428 the rain to
-1.206039 the rain gave
-1.208714 the rain filled
-1.140405 the wine to
-1.236811 the wine has
-1.233146 the wine did
-0.7209915 the sky with
-0.2158696 the ancient <unk>
-0.1881954 the smell of
-0.847016 the laughter for
-0.8033658 the subway the
-0.8422846 the subway when
-0.731337 the battle answered
-0.33144 the calories of
-0.6936914 the simper and
-0.7332564 the faces simper
-0.7332564 the darned bell
-0.6642711 the american <unk>
-0.8156063 the princes get
-1.050659 the princess </s>
-1.059257 the princess <unk>
-0.7937722 the princess and
-2.044419 the princess had
-1.971204 the princess it
-1.138499 the princess was
-2.014463 the princess at
-2.156707 the princess beyond
-2.051866 the princess so
-2.149123 the princess heard
-2.123577 the princess after
-1.926206 the princess i
-2.116546 the princess did
-2.160549 the princess sat
-1.581184 the princess looked
-2.152898 the princess perhaps
-2.152898 the princess returned
-1.41561 the princess gave
-2.162483 the princess laughing
-2.136162 the princess come
-2.152898 the princess began
-2.162483 the princess apparently
-0.1881954 the advantage of
-0.7280299 the princesses who
-0.7280299 the neighbourhood there
-1.179593 the shore <unk>
-0.7661161 the shore and
-0.5227837 the shore for
-0.6642711 the throat <unk>
-0.7322316 the bewitched princess
-0.847425 the rock where
-0.8033658 the rock the
-0.9611599 the balcony </s>
-0.3573416 the balcony and
-0.9516553 the hole and
-1.006025 the hole but
-1.02569 the hole wanted
-0.7005358 the fruits of
-1.02569 the prince's body
-0.3691578 the prince's knees
-0.7324876 the dying prince
-0.9553581 the waters were
-0.9629086 the waters rose
-0.8256294 the landing he
-0.85027 the landing stairs
-0.8808607 the doctors </s>
-0.9600888 the doctors never
-0.9549306 the chamberlain who
-0.9609546 the chamberlain went
-0.9631263 the philosopher pangloss
-0.9633441 the philosopher martin
-1.019811 the garden and
-1.034444 the garden of
-1.094323 the garden which
-0.6642711 the sublime <unk>
-1.193396 the dervish is
-1.156189 the dervish i
-1.211529 the dervish whether
-1.215015 the dervish shut
-0.6825953 the soul </s>
-0.8062516 the mufti had
-0.7331282 the strangled mufti
-0.7296803 the estate would
-0.7128401 the turk i
-0.7619956 the inquisition <unk>
-0.8439361 the inquisition if
-0.5459781 the wizard who
-0.9384455 the nottingham apprentice
-0.9317618 the tent </s>
-0.9606543 the tent to
-1.023683 the tent robin
-0.7696089 the stroller and
-0.6825953 the rioting </s>
-0.8997519 the squire's <unk>
-1.026193 the squire's few
-1.026193 the squire's cheeks
-0.9618219 the sheriff's house
-0.963562 the sheriff's daughter
-0.807911 the sheriff of
-0.8487615 the sheriff child
-0.7242451 the lad had
-0.4628444 the hut <unk>
-1.076594 the hut and
-1.102366 the hut in
-0.1871365 the ladder and
-0.7319758 the eternal day
-0.2600956 avonlea missus rachel
-0.5100704 avonlea main road
-1.137218 avonlea <unk> of
-1.324728 avonlea <unk> were
-1.312305 avonlea and out
-1.181647 avonlea and he
-1.024878 avonlea people called
-0.8008152 avonlea today <unk>
-0.7282834 avonlea houses were
-0.8166929 avonlea farm instead
-0.7434347 main road <unk>
-1.244829 main road that
-1.29046 main road along
-1.035123 main matthew encountered
-0.8600841 main condition which
-0.7282834 main facts were
-1.342068 road <unk> down
-1.352557 road <unk> along
-1.030851 road and so
-1.054603 road that crossed
-0.704212 road to <unk>
-1.046292 road from lynde's
-0.98324 road along which
-0.2358408 road part of
-0.9730459 road whether you
-1.260321 <unk> one </s>
-1.358813 <unk> one on
-1.269661 <unk> one who
-1.65867 <unk> one so
-1.700296 <unk> one virtue
-0.04101398 <unk> missus rachel
-0.8666994 <unk> lynde a
-0.7612975 <unk> is the
-0.773361 <unk> is <unk>
-1.100443 <unk> is a
-1.613759 <unk> is that
-1.788123 <unk> is to
-1.462708 <unk> is not
-1.788851 <unk> is there
-2.006037 <unk> is made
-2.004938 <unk> is like
-0.8475162 <unk> lived was
-0.8858677 <unk> just then
-1.157078 <unk> where an
-1.510837 <unk> where these
-1.522519 <unk> where careless
-1.520158 <unk> where thou
-0.4419172 <unk> the <unk>
-1.764723 <unk> the old
-2.635105 <unk> the place
-3.015302 <unk> the society
-2.802121 <unk> the hours
-1.829071 <unk> the house
-2.487753 <unk> the sun
-2.802121 <unk> the evening
-1.905754 <unk> the best
-2.4793 <unk> the whole
-3.022553 <unk> the strangers
-2.802121 <unk> the year
-2.66938 <unk> the son
-1.99481 <unk> the company
-2.797741 <unk> the body
-2.66938 <unk> the ground
-3.015302 <unk> the closed
-2.815529 <unk> the mystery
-1.789036 <unk> the only
-3.015302 <unk> the lips
-2.66615 <unk> the mouth
-2.483506 <unk> the world
-2.802121 <unk> the fact
-2.547795 <unk> the first
-3.001154 <unk> the use
-2.811013 <unk> the week
-1.971914 <unk> the fire
-2.820092 <unk> the latter
-3.015302 <unk> the pity
-2.811013 <unk> the ordeal
-2.644187 <unk> the way
-2.797741 <unk> the moment
-3.022553 <unk> the worship
-2.768265 <unk> the light
-3.022553 <unk> the anniversary
-2.66615 <unk> the search
-2.820092 <unk> the christian
-2.820092 <unk> the infant
-3.022553 <unk> the following
-3.015302 <unk> the useful
-3.015302 <unk> the cause
-3.022553 <unk> the match
-2.347532 <unk> the squire
-2.66615 <unk> the man's
-2.815529 <unk> the damp
-1.97387 <unk> the local
-2.353757 <unk> the lake
-3.015302 <unk> the chief
-2.483506 <unk> the court
-2.806544 <unk> the present
-3.00817 <unk> the difficulty
-3.022553 <unk> the labour
-2.815529 <unk> the nature
-2.570429 <unk> the power
-2.820092 <unk> the clergyman
-3.022553 <unk> the entire
-3.015302 <unk> the cousin
-3.015302 <unk> the kings
-2.820092 <unk> the key
-2.820092 <unk> the third
-2.820092 <unk> the corpse
-2.820092 <unk> the army
-3.022553 <unk> the pride
-2.66938 <unk> the rain
-3.00817 <unk> the laughter
-3.022553 <unk> the simper
-3.022553 <unk> the darned
-1.841237 <unk> the princess
-3.001154 <unk> the nottingham
-2.820092 <unk> the sheriff
-3.022553 <unk> the ladder
-0.9709594 <unk> avonlea farm
-0.9690162 <unk> <unk> </s>
-2.854661 <unk> <unk> one
-2.980367 <unk> <unk> missus
-3.50669 <unk> <unk> lynde
-2.746215 <unk> <unk> is
-3.010502 <unk> <unk> where
-1.47452 <unk> <unk> the
-0.8585981 <unk> <unk> <unk>
-2.631164 <unk> <unk> into
-1.406045 <unk> <unk> a
-1.731704 <unk> <unk> with
-1.121328 <unk> <unk> and
-1.80525 <unk> <unk> by
-3.497887 <unk> <unk> brook
-1.671152 <unk> <unk> that
-2.685675 <unk> <unk> had
-2.951979 <unk> <unk> its
-2.949507 <unk> <unk> away
-1.469959 <unk> <unk> in
-0.9730013 <unk> <unk> of
-2.129966 <unk> <unk> it
-1.929487 <unk> <unk> was
-1.5377 <unk> <unk> to
-2.776581 <unk> <unk> an
-1.794753 <unk> <unk> but
-2.905027 <unk> <unk> well
-1.7702 <unk> <unk> for
-2.711968 <unk> <unk> not
-3.232029 <unk> <unk> even
-2.000644 <unk> <unk> at
-2.241132 <unk> <unk> her
-1.817673 <unk> <unk> on
-3.472502 <unk> <unk> passed
-1.860403 <unk> <unk> from
-3.425791 <unk> <unk> yet
-2.324616 <unk> <unk> all
-2.295135 <unk> <unk> this
-2.306297 <unk> <unk> she
-2.749182 <unk> <unk> them
-2.057263 <unk> <unk> or
-2.616034 <unk> <unk> out
-3.025171 <unk> <unk> there
-2.947256 <unk> <unk> who
-2.603537 <unk> <unk> their
-3.48926 <unk> <unk> folks
-2.01737 <unk> <unk> as
-2.333476 <unk> <unk> were
-2.852517 <unk> <unk> over
-2.692441 <unk> <unk> so
-1.773338 <unk> <unk> he
-3.50669 <unk> <unk> store
-1.84926 <unk> <unk> which
-2.688255 <unk> <unk> about
-3.222682 <unk> <unk> three
-3.195788 <unk> <unk> might
-3.497887 <unk> <unk> talk
-3.022 <unk> <unk> must
-3.497887 <unk> <unk> he'd
-3.497887 <unk> <unk> lane
-2.942174 <unk> <unk> off
-2.172065 <unk> <unk> i
-3.162 <unk> <unk> conscience
-2.404122 <unk> <unk> has
-2.45405 <unk> <unk> along
-2.866716 <unk> <unk> when
-3.123545 <unk> <unk> themselves
-2.93996 <unk> <unk> they
-3.472502 <unk> <unk> used
-2.187955 <unk> <unk> you
-3.241583 <unk> <unk> left
-3.178742 <unk> <unk> only
-3.50669 <unk> <unk> stuck
-3.4808 <unk> <unk> mouth
-3.178742 <unk> <unk> will
-3.497887 <unk> <unk> pick
-3.4808 <unk> <unk> sent
-3.4808 <unk> <unk> couldn't
-2.479253 <unk> <unk> seemed
-3.50669 <unk> <unk> painful
-3.456367 <unk> <unk> under
-3.187182 <unk> <unk> again
-3.29825 <unk> <unk> wood
-3.48926 <unk> <unk> outside
-2.480089 <unk> <unk> turned
-3.44081 <unk> <unk> face
-3.472502 <unk> <unk> also
-3.376973 <unk> <unk> our
-3.497887 <unk> <unk> carpet
-3.127241 <unk> <unk> way
-3.448519 <unk> <unk> love
-3.448519 <unk> <unk> want
-2.967115 <unk> <unk> against
-3.472502 <unk> <unk> moment
-3.123545 <unk> <unk> light
-3.497887 <unk> <unk> presence
-3.50669 <unk> <unk> social
-3.357621 <unk> <unk> these
-3.50669 <unk> <unk> caused
-3.497887 <unk> <unk> poverty
-3.50669 <unk> <unk> fight
-3.50669 <unk> <unk> gain
-3.29825 <unk> <unk> birth
-2.485137 <unk> <unk> whereby
-2.461198 <unk> <unk> security
-3.303788 <unk> <unk> brain
-3.303788 <unk> <unk> according
-3.162 <unk> <unk> forth
-3.040096 <unk> <unk> bobby
-3.50669 <unk> <unk> landscape
-3.50669 <unk> <unk> pleasantly
-3.50669 <unk> <unk> crush
-3.50669 <unk> <unk> impression
-3.50669 <unk> <unk> walls
-3.4808 <unk> <unk> path
-3.497887 <unk> <unk> fingers
-3.309397 <unk> <unk> harmony
-3.50669 <unk> <unk> direct
-3.497887 <unk> <unk> gives
-3.48926 <unk> <unk> beauty
-3.50669 <unk> <unk> strong
-3.309397 <unk> <unk> de
-3.48926 <unk> <unk> mother
-3.48926 <unk> <unk> rain
-3.50669 <unk> <unk> mass
-3.497887 <unk> <unk> line
-3.50669 <unk> <unk> impressions
-3.50669 <unk> <unk> pistachio
-3.303788 <unk> <unk> apprentice
-3.456367 <unk> <unk> montfichet
-1.046137 <unk> down </s>
-0.8990151 <unk> down the
-1.496157 <unk> down into
-1.119883 <unk> down she
-1.730944 <unk> into </s>
-0.3829628 <unk> into the
-1.51977 <unk> into it
-0.8137853 <unk> into his
-1.344466 <unk> into your
-1.936295 <unk> into thin
-1.938197 <unk> into vision
-1.936295 <unk> into danglars
-0.377833 <unk> a <unk>
-1.07135 <unk> a little
-2.663537 <unk> a course
-2.660202 <unk> a window
-1.765589 <unk> a man
-2.457769 <unk> a big
-2.663537 <unk> a land
-2.663537 <unk> a stick
-2.656893 <unk> a hair
-2.656893 <unk> a heart
-2.30678 <unk> a strange
-2.439405 <unk> a new
-2.126039 <unk> a bit
-2.45569 <unk> a horse
-2.670283 <unk> a veil
-2.121211 <unk> a hundred
-2.666897 <unk> a city
-2.318719 <unk> a number
-2.670283 <unk> a brilliant
-1.638841 <unk> a married
-2.670283 <unk> a female
-2.670283 <unk> a form
-2.461957 <unk> a shady
-2.663537 <unk> a fallen
-2.670283 <unk> a tough
-2.45569 <unk> a manner
-2.670283 <unk> a public
-2.666897 <unk> a fence
-2.670283 <unk> a ship
-0.8337858 <unk> little <unk>
-1.569355 <unk> little circle
-1.554462 <unk> little man
-1.56149 <unk> little hand
-0.1912772 <unk> fringed with
-2.086806 <unk> with one
-0.6458591 <unk> with the
-0.6258797 <unk> with <unk>
-0.7455715 <unk> with a
-1.848772 <unk> with that
-1.722557 <unk> with her
-1.505047 <unk> with all
-1.310254 <unk> with this
-2.589873 <unk> with their
-1.542568 <unk> with him
-2.262586 <unk> with which
-2.586766 <unk> with now
-2.594575 <unk> with good
-2.617215 <unk> with wild
-2.279797 <unk> with some
-2.273733 <unk> with your
-2.088277 <unk> with me
-2.548283 <unk> with my
-2.623907 <unk> with mud
-2.625596 <unk> with crystal
-2.625596 <unk> with bankers
-1.014243 <unk> and the
-0.43635 <unk> and <unk>
-1.830642 <unk> and a
-2.958431 <unk> and little
-2.480636 <unk> and with
-3.039629 <unk> and ladies
-1.52385 <unk> and that
-2.41931 <unk> and had
-2.70739 <unk> and away
-1.948341 <unk> and it
-1.891806 <unk> and was
-2.149236 <unk> and to
-2.970953 <unk> and through
-2.977352 <unk> and those
-2.454591 <unk> and not
-2.958431 <unk> and even
-2.934421 <unk> and without
-2.725055 <unk> and children
-2.305344 <unk> and she
-1.840344 <unk> and if
-2.87963 <unk> and would
-2.687098 <unk> and never
-2.826407 <unk> and were
-2.066109 <unk> and tell
-2.508046 <unk> and over
-1.562866 <unk> and he
-2.9403 <unk> and because
-2.391558 <unk> and have
-3.032251 <unk> and dressed
-3.024997 <unk> and often
-3.05477 <unk> and unusual
-2.074091 <unk> and silent
-1.872273 <unk> and i
-2.579379 <unk> and no
-1.734632 <unk> and they
-2.539809 <unk> and left
-3.032251 <unk> and laid
-2.890049 <unk> and only
-3.032251 <unk> and gray
-3.05477 <unk> and london
-2.958431 <unk> and don't
-2.703941 <unk> and another
-3.010843 <unk> and under
-3.05477 <unk> and purple
-3.032251 <unk> and orphans
-3.003935 <unk> and want
-2.029669 <unk> and kept
-3.032251 <unk> and wished
-2.725055 <unk> and mine
-3.047133 <unk> and surprise
-3.05477 <unk> and music
-3.039629 <unk> and appear
-3.047133 <unk> and prayers
-3.05477 <unk> and brilliant
-3.017862 <unk> and dead
-3.032251 <unk> and sarah
-3.05477 <unk> and afterwards
-3.05477 <unk> and funds
-3.003935 <unk> and became
-3.032251 <unk> and glanced
-3.039629 <unk> and easy
-2.721465 <unk> and entered
-3.039629 <unk> and pocket
-3.047133 <unk> and changed
-3.039629 <unk> and standing
-3.05477 <unk> and screaming
-3.05477 <unk> and fruits
-2.747249 <unk> and shone
-3.05477 <unk> and forthwith
-3.05477 <unk> and rioting
-0.9132181 <unk> ladies who
-2.320215 <unk> by missus
-0.516931 <unk> by the
-0.5363742 <unk> by <unk>
-0.9009122 <unk> by a
-2.273703 <unk> by her
-2.28786 <unk> by all
-2.295116 <unk> by this
-2.328037 <unk> by their
-2.273703 <unk> by so
-2.344116 <unk> by new
-2.353778 <unk> by water
-2.357986 <unk> by figures
-2.356579 <unk> by leaving
-0.8317879 <unk> brook in
-2.542184 <unk> that missus
-1.436255 <unk> that is
-0.8426504 <unk> that the
-1.261252 <unk> that <unk>
-1.235087 <unk> that it
-2.598085 <unk> that reached
-1.083645 <unk> that she
-2.288458 <unk> that were
-2.309683 <unk> that man
-1.458332 <unk> that his
-0.8603609 <unk> that he
-1.528034 <unk> that marilla
-2.500535 <unk> that what
-1.490007 <unk> that i
-1.593286 <unk> that two
-2.603085 <unk> that can't
-2.605607 <unk> that failed
-2.583421 <unk> that way
-2.333348 <unk> that moment
-2.600578 <unk> that truth
-2.603085 <unk> that makes
-1.59848 <unk> that keeps
-2.333348 <unk> that thou
-2.608144 <unk> that drew
-1.301965 <unk> had the
-1.002125 <unk> had been
-1.996505 <unk> had given
-1.800092 <unk> had made
-1.817849 <unk> had fallen
-2.002766 <unk> had arrived
-1.8195 <unk> had disappeared
-2.004029 <unk> had paused
-2.004029 <unk> had imposed
-2.004029 <unk> had executed
-0.1797366 <unk> its <unk>
-1.608619 <unk> its place
-1.612714 <unk> its restless
-1.114596 <unk> away back
-1.069235 <unk> away in
-1.510899 <unk> away so
-1.552291 <unk> away coming
-1.55016 <unk> away being
-1.096177 <unk> back and
-0.8494896 <unk> back to
-1.148705 <unk> back at
-0.4510939 <unk> in the
-1.10719 <unk> in <unk>
-0.8820162 <unk> in a
-1.985887 <unk> in that
-1.706428 <unk> in its
-2.109619 <unk> in it
-2.51669 <unk> in time
-1.868161 <unk> in this
-1.733383 <unk> in their
-1.07417 <unk> in his
-1.672839 <unk> in which
-2.76809 <unk> in life
-2.787099 <unk> in putting
-2.351305 <unk> in your
-2.534422 <unk> in nova
-2.536842 <unk> in hopeton
-2.780669 <unk> in winter
-2.688964 <unk> in me
-1.262848 <unk> in my
-2.787099 <unk> in summer
-2.761934 <unk> in question
-2.751865 <unk> in our
-2.780669 <unk> in search
-2.534422 <unk> in general
-2.776436 <unk> in every
-2.377402 <unk> in smithtown
-2.377402 <unk> in itself
-2.787099 <unk> in study
-2.784945 <unk> in twelve
-2.260663 <unk> of </s>
-2.718941 <unk> of missus
-0.6677902 <unk> of the
-0.5925593 <unk> of <unk>
-1.25434 <unk> of a
-2.332369 <unk> of that
-1.769798 <unk> of it
-1.782825 <unk> of an
-2.164363 <unk> of well
-1.61194 <unk> of her
-1.867766 <unk> of all
-1.869528 <unk> of this
-2.329513 <unk> of them
-1.908712 <unk> of their
-3.096944 <unk> of white
-1.088632 <unk> of his
-3.122516 <unk> of clothes
-2.681118 <unk> of which
-2.760376 <unk> of life
-1.939515 <unk> of any
-2.764977 <unk> of green
-3.063499 <unk> of last
-3.122516 <unk> of today
-2.570094 <unk> of such
-2.565687 <unk> of men
-3.127816 <unk> of land
-3.112106 <unk> of wild
-3.036749 <unk> of very
-3.127816 <unk> of ground
-3.122516 <unk> of curiosity
-2.555575 <unk> of two
-2.753565 <unk> of five
-2.776696 <unk> of earth
-3.122516 <unk> of winter
-2.098625 <unk> of me
-1.831665 <unk> of my
-2.779079 <unk> of paper
-1.873037 <unk> of breath
-2.769627 <unk> of many
-3.138614 <unk> of miles
-3.138614 <unk> of shingles
-3.133181 <unk> of city
-3.133181 <unk> of homer
-2.069529 <unk> of jesus
-3.127816 <unk> of science
-3.122516 <unk> of evidence
-3.144116 <unk> of herod
-3.133181 <unk> of bat
-2.783883 <unk> of sand
-3.122516 <unk> of water
-3.127816 <unk> of human
-3.138614 <unk> of public
-3.045484 <unk> of graham
-2.783883 <unk> of action
-3.138614 <unk> of blood
-2.771971 <unk> of death
-3.127816 <unk> of fresh
-3.133181 <unk> of kings
-3.133181 <unk> of content
-3.138614 <unk> of travel
-2.781474 <unk> of benedetto
-3.127816 <unk> of king
-3.138614 <unk> of philosophers
-3.138614 <unk> of folding
-3.138614 <unk> of perspiration
-3.133181 <unk> of desires
-3.127816 <unk> of rain
-2.180917 <unk> of wine
-3.112106 <unk> of tired
-3.138614 <unk> of losing
-3.127816 <unk> of gravity
-3.138614 <unk> of events
-3.138614 <unk> of leaves
-3.138614 <unk> of biscuit
-3.138614 <unk> of citrons
-2.771971 <unk> of gamewell
-3.133181 <unk> of noirtier
-3.138614 <unk> of eternal
-0.8862647 <unk> old <unk>
-1.438305 <unk> old wincey
-1.438836 <unk> old fashioned
-1.070342 <unk> place <unk>
-0.9501151 <unk> place in
-1.127944 <unk> place of
-1.502905 <unk> place i
-1.57956 <unk> place gave
-1.091867 <unk> it </s>
-1.019233 <unk> it is
-1.280663 <unk> it with
-0.6663079 <unk> it was
-1.926213 <unk> it to
-1.215101 <unk> it but
-2.111021 <unk> it could
-2.343732 <unk> it probably
-2.092665 <unk> it up
-2.229076 <unk> it as
-2.110129 <unk> it here
-2.120043 <unk> it it's
-2.070963 <unk> it said
-2.349879 <unk> it merely
-2.351429 <unk> it needs
-2.342209 <unk> it montfichet
-0.5027021 <unk> was <unk>
-1.626229 <unk> was in
-2.254519 <unk> was reached
-1.545682 <unk> was not
-2.176056 <unk> was all
-2.218239 <unk> was over
-2.076567 <unk> was heard
-2.061972 <unk> was very
-2.25971 <unk> was demanded
-2.257973 <unk> was hung
-2.261454 <unk> was broken
-2.25971 <unk> was perfectly
-2.076567 <unk> was alone
-2.261454 <unk> was killed
-2.165549 <unk> to </s>
-0.7083173 <unk> to the
-0.7038374 <unk> to <unk>
-1.5475 <unk> to a
-2.377976 <unk> to and
-1.821615 <unk> to that
-2.311993 <unk> to it
-1.338031 <unk> to be
-2.286385 <unk> to her
-2.410203 <unk> to their
-2.421036 <unk> to tell
-1.211235 <unk> to his
-2.957251 <unk> to anybody
-1.790523 <unk> to him
-2.931629 <unk> to going
-2.082894 <unk> to have
-2.139795 <unk> to go
-2.961038 <unk> to happen
-1.803824 <unk> to make
-2.426556 <unk> to know
-2.333949 <unk> to get
-1.776146 <unk> to do
-2.049511 <unk> to give
-2.660526 <unk> to some
-2.54881 <unk> to meet
-1.307246 <unk> to me
-1.793616 <unk> to my
-2.334847 <unk> to think
-1.586303 <unk> to say
-2.09154 <unk> to see
-2.710942 <unk> to nod
-2.545875 <unk> to understand
-2.198011 <unk> to keep
-2.551764 <unk> to escape
-2.702472 <unk> to heaven
-2.953497 <unk> to human
-2.702472 <unk> to leave
-2.900762 <unk> to still
-2.957251 <unk> to bobby's
-1.91475 <unk> to witness
-2.550284 <unk> to reply
-2.961038 <unk> to share
-2.953497 <unk> to thee
-2.961038 <unk> to travel
-2.961038 <unk> to spend
-2.957251 <unk> to bear
-2.957251 <unk> to kiss
-2.706686 <unk> to show
-0.8892237 <unk> be <unk>
-1.12451 <unk> be a
-1.222428 <unk> be in
-1.528538 <unk> be of
-1.646275 <unk> be no
-1.88594 <unk> be enough
-1.667959 <unk> be very
-1.346035 <unk> be able
-0.1415151 <unk> an <unk>
-1.852026 <unk> an eye
-1.852669 <unk> an unattached
-0.2370668 <unk> through the
-1.732968 <unk> through it
-1.786533 <unk> through them
-1.757291 <unk> through his
-1.790625 <unk> through these
-0.8413193 <unk> but the
-1.061593 <unk> but <unk>
-1.968977 <unk> but by
-1.214205 <unk> but it
-1.083026 <unk> but not
-1.955354 <unk> but her
-1.66326 <unk> but she
-1.684296 <unk> but there
-1.494808 <unk> but as
-1.361042 <unk> but he
-2.297833 <unk> but here
-1.77328 <unk> but you
-2.000542 <unk> but how
-2.295871 <unk> but like
-2.339076 <unk> but almost
-2.320031 <unk> but poor
-2.343424 <unk> but master
-2.339076 <unk> but heavy
-2.311827 <unk> but still
-2.334771 <unk> but monte
-0.7961668 <unk> time to
-1.449446 <unk> time whose
-1.443976 <unk> time graham
-0.8264418 <unk> well <unk>
-1.539052 <unk> well of
-1.606326 <unk> well he
-1.697623 <unk> well i'm
-1.714486 <unk> well we're
-1.387681 <unk> well bred
-1.781111 <unk> for </s>
-0.7357935 <unk> for the
-0.7818404 <unk> for <unk>
-0.9586264 <unk> for a
-1.834861 <unk> for and
-2.303639 <unk> for by
-1.972576 <unk> for it
-2.252406 <unk> for but
-2.38437 <unk> for anything
-2.357742 <unk> for their
-1.856213 <unk> for his
-2.340219 <unk> for any
-2.388616 <unk> for between
-2.378079 <unk> for five
-1.520743 <unk> for me
-2.392903 <unk> for several
-2.399415 <unk> for divine
-2.403811 <unk> for knowledge
-2.401607 <unk> for holding
-2.367791 <unk> for still
-2.397233 <unk> for robinson
-2.090309 <unk> for sale
-0.8012295 <unk> not </s>
-1.331501 <unk> not a
-1.721262 <unk> not of
-0.7974856 <unk> not to
-1.858671 <unk> not on
-1.893871 <unk> not before
-1.170656 <unk> even the
-1.099493 <unk> even <unk>
-0.9282006 <unk> could he
-1.147214 <unk> past her
-1.148379 <unk> past him
-0.7408498 <unk> door and
-1.012738 <unk> without knowing
-1.018006 <unk> probably <unk>
-1.165039 <unk> probably hundred
-0.3908164 <unk> at the
-1.247458 <unk> at a
-1.176209 <unk> at all
-2.027412 <unk> at this
-2.284367 <unk> at them
-2.269882 <unk> at about
-1.108773 <unk> at last
-2.261203 <unk> at what
-1.883406 <unk> at your
-2.057928 <unk> at nights
-2.311239 <unk> at each
-2.313657 <unk> at graham's
-1.780742 <unk> at twelve
-1.004881 <unk> her <unk>
-1.415984 <unk> her and
-2.082728 <unk> her dark
-1.025479 <unk> her but
-1.735682 <unk> her for
-2.016286 <unk> her up
-2.013291 <unk> her or
-2.07406 <unk> her work
-2.086244 <unk> her usual
-2.084483 <unk> her mental
-2.088013 <unk> her painful
-2.088013 <unk> her couch
-0.3105788 <unk> on the
-1.288055 <unk> on <unk>
-1.518598 <unk> on a
-1.970063 <unk> on to
-2.171348 <unk> on this
-2.172449 <unk> on which
-2.198558 <unk> on here
-2.218918 <unk> on green
-2.060422 <unk> on i
-1.661157 <unk> on you
-2.200905 <unk> on two
-2.220146 <unk> on women
-2.226338 <unk> on paying
-2.226338 <unk> on board
-2.225093 <unk> on shore
-0.9500051 <unk> passed already
-2.257143 <unk> from missus
-0.5165016 <unk> from the
-1.108074 <unk> from <unk>
-2.287869 <unk> from its
-1.23513 <unk> from an
-1.637416 <unk> from her
-1.861263 <unk> from their
-0.8921834 <unk> from his
-2.204443 <unk> from him
-2.30043 <unk> from clothes
-2.272234 <unk> from nothing
-2.30043 <unk> from year
-1.814825 <unk> from you
-2.250601 <unk> from your
-2.304087 <unk> from adopting
-1.843103 <unk> from my
-2.295002 <unk> from morning
-2.296804 <unk> from thy
-2.302255 <unk> from thee
-2.30043 <unk> from seat
-0.9507614 <unk> children no
-1.862037 <unk> up is
-0.4945706 <unk> up the
-1.397748 <unk> up in
-1.904557 <unk> up through
-1.437614 <unk> up his
-1.90748 <unk> up right
-1.915372 <unk> up proper
-0.6936914 <unk> school and
-0.9885342 <unk> yet with
-0.9543119 <unk> all the
-1.145767 <unk> all <unk>
-1.382896 <unk> all of
-1.345714 <unk> all his
-1.880349 <unk> all seeing
-1.879267 <unk> all feel
-1.634828 <unk> all things
-1.876036 <unk> all became
-1.273439 <unk> this is
-0.842432 <unk> this <unk>
-1.895449 <unk> this had
-1.882294 <unk> this but
-1.511762 <unk> this fellow
-1.288782 <unk> this morning
-1.98702 <unk> this gentleman
-1.988522 <unk> this reward
-1.383867 <unk> this money
-1.98702 <unk> this sad
-1.991541 <unk> this problem
-0.5954307 <unk> hours of
-0.6943258 <unk> she had
-0.6553727 <unk> she was
-1.265088 <unk> she said
-1.456797 <unk> she got
-1.915403 <unk> she thought
-1.923555 <unk> she wants
-0.9143458 <unk> them </s>
-1.431046 <unk> them the
-0.8643693 <unk> them to
-1.86862 <unk> them up
-0.8348297 <unk> them all
-1.874261 <unk> them if
-1.504847 <unk> them you
-1.89959 <unk> them himself
-0.8430944 <unk> if it
-1.238108 <unk> if he
-1.082254 <unk> if i
-1.257511 <unk> if they
-0.745127 <unk> if you
-1.259183 <unk> if we
-1.182687 <unk> anything it
-1.215155 <unk> anything very
-0.5151437 <unk> or the
-0.6914106 <unk> or <unk>
-1.875978 <unk> or of
-1.0734 <unk> or to
-2.056867 <unk> or her
-2.077652 <unk> or what
-2.1251 <unk> or whether
-2.13714 <unk> or priest
-2.129076 <unk> or indeed
-0.7581459 <unk> out the
-1.304688 <unk> out <unk>
-0.9303679 <unk> out for
-1.591934 <unk> out on
-1.601899 <unk> out there
-1.913901 <unk> out so
-1.945284 <unk> out like
-1.958174 <unk> out first
-1.963936 <unk> out ten
-0.3060771 <unk> would be
-1.362111 <unk> would soon
-0.7143281 <unk> never <unk>
-1.311384 <unk> until at
-1.317249 <unk> until his
-1.285718 <unk> until he
-0.8851949 <unk> there is
-1.306345 <unk> there are
-1.182555 <unk> there were
-0.7107787 <unk> are <unk>
-1.753841 <unk> are not
-1.775659 <unk> are would
-1.760992 <unk> are they
-1.782234 <unk> are very
-1.790837 <unk> are put
-0.1160198 <unk> plenty of
-1.535074 <unk> people living
-1.509656 <unk> people when
-1.512072 <unk> people they
-1.538922 <unk> people horrible
-0.4162514 <unk> who <unk>
-1.13047 <unk> who had
-1.612011 <unk> who lives
-0.5355713 <unk> their <unk>
-1.969996 <unk> their little
-1.978585 <unk> their children
-0.8227121 <unk> their own
-1.967875 <unk> their three
-1.985141 <unk> their apartment
-1.027132 <unk> their way
-1.611328 <unk> their efforts
-1.128577 <unk> business by
-1.122564 <unk> business said
-0.84344 <unk> creatures who
-0.8437707 <unk> creatures were
-0.8503618 <unk> folks at
-0.9678339 <unk> work which
-0.7564252 <unk> circle </s>
-1.029127 <unk> as the
-1.702669 <unk> as it
-0.760548 <unk> as she
-1.045895 <unk> as if
-0.7881622 <unk> as he
-2.270929 <unk> as best
-2.26318 <unk> as themselves
-1.853286 <unk> as much
-1.553358 <unk> as you
-2.269813 <unk> as hard
-2.273168 <unk> as turning
-1.452688 <unk> as soon
-2.275419 <unk> as bankers
-1.332886 <unk> were the
-0.337431 <unk> were <unk>
-1.506122 <unk> were not
-1.636021 <unk> were at
-1.932191 <unk> were observed
-1.928415 <unk> were led
-0.8132042 <unk> voices and
-0.5445531 <unk> beyond the
-0.7347887 <unk> orchard <unk>
-1.276271 <unk> house where
-1.28156 <unk> house therefore
-1.364601 <unk> white bloom
-0.9653153 <unk> white collar
-1.36566 <unk> white birches
-0.846263 <unk> bloom the
-0.5098439 <unk> over the
-1.380601 <unk> over and
-0.7307296 <unk> over by
-1.714665 <unk> over all
-0.8752263 <unk> man was
-1.317573 <unk> man alive
-0.5591236 <unk> his <unk>
-2.114474 <unk> his door
-2.375445 <unk> his late
-2.380621 <unk> his turnip
-1.743072 <unk> his mind
-2.375445 <unk> his curiosity
-1.27605 <unk> his head
-1.957487 <unk> his wife
-1.221845 <unk> his hand
-2.35289 <unk> his question
-2.107479 <unk> his way
-2.378025 <unk> his divine
-1.955526 <unk> his answer
-2.380621 <unk> his freedom
-2.378025 <unk> his condition
-2.383232 <unk> his couch
-2.123021 <unk> his fate
-2.383232 <unk> his increased
-2.121585 <unk> his cheeks
-0.8366421 <unk> pass a
-0.5258562 <unk> so <unk>
-0.5936505 <unk> so that
-1.799095 <unk> so she
-0.8863752 <unk> so far
-0.6642711 <unk> june <unk>
-0.5553068 <unk> coming to
-1.18173 <unk> coming through
-0.7207381 <unk> he <unk>
-0.7840559 <unk> he had
-1.071332 <unk> he was
-1.489051 <unk> he could
-2.431977 <unk> he didn't
-1.894239 <unk> he made
-1.22072 <unk> he said
-2.228974 <unk> he felt
-2.09467 <unk> he walked
-1.98879 <unk> he turned
-2.231367 <unk> he hadn't
-1.988104 <unk> he began
-2.441607 <unk> he accepted
-2.233774 <unk> he sprang
-2.431977 <unk> he appeared
-1.907129 <unk> he spoke
-2.441607 <unk> he faced
-2.236195 <unk> he paused
-2.439664 <unk> he changed
-2.439664 <unk> he continued
-1.012811 <unk> because virgilius
-1.096608 <unk> him </s>
-1.595244 <unk> him the
-1.701932 <unk> him into
-1.070648 <unk> him a
-0.818277 <unk> him with
-1.605964 <unk> him of
-1.192585 <unk> him to
-1.665176 <unk> him for
-1.673549 <unk> him at
-1.876491 <unk> him here
-1.206726 <unk> him off
-2.152105 <unk> him then
-2.201933 <unk> him urged
-2.197673 <unk> him pangloss
-0.9153967 <unk> before the
-1.40281 <unk> before and
-1.419922 <unk> before to
-1.068681 <unk> before him
-0.7299348 <unk> store over
-0.9284225 <unk> next he
-1.212758 <unk> which the
-0.7159596 <unk> which <unk>
-2.065473 <unk> which by
-1.425471 <unk> which had
-2.023973 <unk> which at
-1.151092 <unk> which would
-1.234777 <unk> which he
-2.089493 <unk> which have
-0.9172409 <unk> which i
-1.74568 <unk> which they
-2.120911 <unk> which hung
-2.123331 <unk> which finds
-0.8134415 <unk> distance now
-1.403188 <unk> now that
-1.449376 <unk> now why
-1.185134 <unk> now you
-0.6516518 <unk> matthew <unk>
-1.433984 <unk> why couldn't
-1.435547 <unk> why object
-1.417154 <unk> why bobby
-1.041071 <unk> been thinking
-0.8815996 <unk> known as
-0.8436053 <unk> information about
-0.85027 <unk> information concerning
-0.5027094 <unk> about the
-1.821482 <unk> about but
-1.848092 <unk> about my
-1.877356 <unk> about our
-1.564403 <unk> about jesus
-1.893238 <unk> about ready
-1.893238 <unk> about fifty
-0.7294287 <unk> life <unk>
-1.109887 <unk> here <unk>
-1.266773 <unk> here by
-1.564346 <unk> here sat
-1.565758 <unk> here comes
-0.9102648 <unk> half in
-1.265787 <unk> three hundred
-0.9909639 <unk> three times
-1.183681 <unk> day the
-1.273322 <unk> day again
-1.102904 <unk> driving from
-1.109868 <unk> driving over
-0.2313256 <unk> have been
-0.8334146 <unk> go and
-0.7273968 <unk> strangers or
-1.035589 <unk> any traces
-1.0668 <unk> might as
-0.7316633 <unk> might i
-0.8983399 <unk> talk pushing
-1.126864 <unk> dressed and
-1.166035 <unk> dressed in
-1.242159 <unk> dressed stood
-1.254032 <unk> something about
-1.265603 <unk> something he's
-0.921052 <unk> often gives
-1.369496 <unk> make you
-1.409961 <unk> make jesus
-1.407012 <unk> make upon
-0.8484001 <unk> nothing was
-0.7271439 <unk> putting this
-0.5937296 <unk> together <unk>
-1.112317 <unk> together their
-0.9516984 <unk> both sea
-0.9185232 <unk> questions because
-0.8934454 <unk> must <unk>
-0.8665358 <unk> must have
-1.558729 <unk> must needs
-1.558729 <unk> must weep
-0.9204595 <unk> taking part
-0.6441886 <unk> i'll just
-0.09452695 <unk> green gables
-1.387116 <unk> after that
-1.15141 <unk> after which
-1.162835 <unk> after tea
-1.017646 <unk> marilla was
-1.021613 <unk> marilla she
-0.9516984 <unk> he's wandering
-0.4186867 <unk> woman and
-1.416853 <unk> woman i've
-0.7315924 <unk> generally go
-0.8126709 <unk> he'd have
-1.097622 <unk> dress of
-1.178262 <unk> dress because
-0.748865 <unk> more <unk>
-0.3564874 <unk> more than
-0.7777731 <unk> quarter of
-0.4186053 <unk> lane </s>
-0.9225515 <unk> made a
-1.372493 <unk> made in
-1.457278 <unk> made sure
-1.183663 <unk> father as
-1.203652 <unk> father like
-0.6746477 <unk> since the
-1.194032 <unk> since that
-1.021161 <unk> last hour
-0.524852 <unk> off the
-1.499762 <unk> off of
-1.647613 <unk> off their
-1.616837 <unk> off so
-1.661608 <unk> off today
-1.283779 <unk> i'm only
-1.064092 <unk> i'm afloat
-0.8032278 <unk> clean as
-0.3024323 <unk> that's what
-1.372955 <unk> that's better
-1.271774 <unk> what the
-1.358796 <unk> what happened
-1.49762 <unk> what fortune
-1.958488 <unk> i just
-0.6029738 <unk> i <unk>
-1.629883 <unk> i had
-1.757253 <unk> i to
-2.177586 <unk> i there
-1.808139 <unk> i asked
-1.529966 <unk> i must
-1.750597 <unk> i know
-2.220522 <unk> i mean
-1.601037 <unk> i will
-1.52973 <unk> i don't
-2.220522 <unk> i live
-1.363374 <unk> i am
-1.026907 <unk> know where
-0.7005358 <unk> peace of
-1.149013 <unk> conscience by
-1.150686 <unk> conscience or
-1.150351 <unk> conscience which
-0.9017503 <unk> has <unk>
-0.965702 <unk> has been
-0.5990315 <unk> has taken
-1.608471 <unk> has then
-0.9565129 <unk> set them
-0.4750965 <unk> along the
-1.347176 <unk> along here
-1.352726 <unk> along between
-1.028569 <unk> did these
-0.388542 <unk> such a
-1.410092 <unk> such facts
-1.409788 <unk> such reflections
-0.3612627 <unk> it's a
-1.44598 <unk> it's hard
-0.4072296 <unk> said the
-1.841012 <unk> said with
-1.44633 <unk> said danglars
-0.6634041 <unk> said pangloss
-2.018849 <unk> said fitzooth
-1.067859 <unk> deep in
-1.117982 <unk> deep purpose
-0.6975185 <unk> got to
-1.303498 <unk> men of
-1.417501 <unk> men will
-1.430232 <unk> men rushed
-1.26987 <unk> when <unk>
-0.6049965 <unk> when he
-0.9729362 <unk> when i
-1.251935 <unk> when you
-1.173934 <unk> when we
-0.1881954 <unk> edge of
-0.6461911 <unk> wild cherry
-0.2861655 <unk> no <unk>
-1.98583 <unk> no other
-1.442433 <unk> no more
-1.986679 <unk> no better
-1.780991 <unk> no evidence
-1.99267 <unk> no wrong
-0.9354584 <unk> wonder where
-0.7469072 <unk> themselves </s>
-0.77676 <unk> themselves at
-1.342254 <unk> themselves as
-1.017251 <unk> much company
-0.9512744 <unk> company beatrice
-0.9620037 <unk> though somewhat
-0.8738791 <unk> they had
-0.9136635 <unk> they were
-1.614955 <unk> they couldn't
-1.614955 <unk> they walked
-1.206464 <unk> enough but
-1.230895 <unk> enough mister
-0.4124824 <unk> look at
-1.217139 <unk> look she
-0.829483 <unk> nor of
-1.138127 <unk> nor to
-0.8968021 <unk> then the
-1.06838 <unk> then <unk>
-1.47515 <unk> then might
-0.9164325 <unk> used by
-1.194521 <unk> body looked
-1.19862 <unk> body move
-0.6693952 <unk> get a
-0.5017942 <unk> very <unk>
-0.2430795 <unk> ground </s>
-0.1766204 <unk> do you
-0.8175427 <unk> whence the
-1.316675 <unk> you <unk>
-1.653288 <unk> you a
-1.974245 <unk> you for
-1.263051 <unk> you up
-1.649926 <unk> you would
-0.8963657 <unk> you are
-1.28236 <unk> you as
-1.906164 <unk> you were
-2.320248 <unk> you ought
-1.806906 <unk> you have
-2.282028 <unk> you might
-1.217565 <unk> you i
-2.32225 <unk> you meet
-1.935627 <unk> you mean
-1.722621 <unk> you will
-2.320248 <unk> you wanted
-2.31627 <unk> you against
-0.7301285 <unk> left </s>
-1.2596 <unk> left his
-0.731337 <unk> birches down
-1.249355 <unk> give no
-0.9899999 <unk> give full
-1.001941 <unk> looked east
-1.020992 <unk> came across
-0.5974088 <unk> behind the
-1.356083 <unk> behind with
-1.369637 <unk> behind her
-1.371417 <unk> behind him
-0.8861346 <unk> laid so
-0.4958232 <unk> getting a
-0.498699 <unk> isn't it
-0.6936914 <unk> dishes and
-1.158445 <unk> only by
-1.27486 <unk> only it
-0.7332564 <unk> apple preserves
-1.409132 <unk> how is
-0.8868687 <unk> how <unk>
-1.434275 <unk> how can
-0.7666814 <unk> your <unk>
-1.718333 <unk> your little
-1.73208 <unk> your intellect
-1.728107 <unk> your squire
-1.729097 <unk> your arm
-1.73208 <unk> your purse
-1.13621 <unk> name as
-1.149716 <unk> name my
-0.7696089 <unk> existed and
-1.384534 <unk> between the
-0.6354431 <unk> between them
-1.51437 <unk> between hope
-1.505171 <unk> between these
-0.9285733 <unk> perhaps for
-0.774865 <unk> lips <unk>
-0.9466722 <unk> too the
-0.8967674 <unk> curiosity oh
-1.510049 <unk> oh not
-0.5014261 <unk> oh no
-1.533692 <unk> oh thank
-1.126864 <unk> yesterday and
-1.209477 <unk> yesterday she
-1.238039 <unk> yesterday yes
-0.8325052 <unk> thin <unk>
-0.5764058 <unk> hair </s>
-0.8981524 <unk> gray wincey
-0.9370373 <unk> hard it's
-1.025275 <unk> two will
-0.6642711 <unk> stuck <unk>
-0.6791366 <unk> like a
-1.199608 <unk> like and
-0.6258557 <unk> mouth of
-0.8100612 <unk> sense or
-0.8088385 <unk> we're all
-1.137361 <unk> afraid matthew
-1.141844 <unk> afraid question
-1.23398 <unk> thought but
-1.25423 <unk> thought can
-1.150675 <unk> maybe </s>
-0.5407748 <unk> maybe he
-1.255715 <unk> maybe what
-1.212779 <unk> boy had
-1.23754 <unk> boy used
-0.8862806 <unk> orphan but
-0.9762683 <unk> five little
-0.3876658 <unk> five millions
-0.5957179 <unk> almost <unk>
-0.8966179 <unk> forced such
-0.9697196 <unk> voice give
-0.9498995 <unk> returned robin
-1.012299 <unk> yes replied
-0.8039818 <unk> farm she
-0.2158696 <unk> mental <unk>
-0.7591256 <unk> certainly he
-1.134886 <unk> certainly i
-0.8657453 <unk> turning toward
-1.018006 <unk> earth <unk>
-1.165646 <unk> earth fall
-0.9989326 <unk> put about
-0.8416295 <unk> winter and
-0.6753706 <unk> fact of
-0.8439026 <unk> broke a
-0.5807198 <unk> first <unk>
-1.218955 <unk> first at
-1.229815 <unk> right or
-1.241119 <unk> right off
-0.5764058 <unk> street </s>
-0.7363712 <unk> me </s>
-1.077625 <unk> me the
-1.309218 <unk> me <unk>
-2.152091 <unk> me down
-1.513276 <unk> me that
-1.485874 <unk> me in
-0.9420748 <unk> me to
-1.645171 <unk> me but
-1.613316 <unk> me he
-2.145977 <unk> me good
-2.175814 <unk> me rarely
-1.279855 <unk> me i
-2.175814 <unk> me remember
-2.145977 <unk> me graham
-0.9374092 <unk> born at
-0.9946302 <unk> we <unk>
-1.334646 <unk> we had
-1.007046 <unk> we have
-1.584689 <unk> we give
-0.4702133 <unk> my <unk>
-1.347529 <unk> my heart
-1.709021 <unk> my lost
-1.713033 <unk> my daughter
-1.215054 <unk> sleep this
-1.218689 <unk> sleep then
-0.6825953 <unk> help </s>
-0.9160742 <unk> use your
-0.8652236 <unk> station herself
-1.177975 <unk> will ever
-1.320899 <unk> will presently
-0.9244224 <unk> herself on
-0.7696089 <unk> pick and
-1.188377 <unk> us to
-1.287121 <unk> us towards
-0.8940103 <unk> sent out
-0.8160717 <unk> likely boy
-1.086769 <unk> turn of
-1.14415 <unk> turn thy
-0.933979 <unk> took up
-1.344911 <unk> took their
-1.33266 <unk> took my
-0.9384455 <unk> fire hereafter
-0.7321037 <unk> foolish thing
-0.9690872 <unk> thing was
-0.9859201 <unk> thing that's
-1.372545 <unk> thing suddenly
-0.7247944 <unk> don't you
-0.8681753 <unk> strange <unk>
-0.7714586 <unk> child </s>
-0.7986513 <unk> parents </s>
-0.8842423 <unk> couldn't you
-0.2263395 <unk> sake not
-0.397645 <unk> seemed to
-1.211751 <unk> seemed neither
-0.6936914 <unk> deny and
-1.00725 <unk> i've nearly
-1.215256 <unk> myself but
-1.186795 <unk> myself i
-1.139698 <unk> see <unk>
-1.236172 <unk> see in
-1.008143 <unk> gave a
-1.397383 <unk> gave rise
-1.397844 <unk> gave appendicitis
-0.698637 <unk> painful to
-0.5350912 <unk> does not
-0.7282834 <unk> wells were
-0.971048 <unk> really ignorant
-0.8435276 <unk> poor people
-0.3383757 <unk> expect him
-0.9064616 <unk> loved to
-0.9590091 <unk> loved their
-0.8647026 <unk> somewhat strange
-0.7191254 <unk> relief for
-0.2410265 <unk> under the
-0.8197282 <unk> influence to
-1.368577 <unk> things found
-1.37415 <unk> things difficult
-1.374712 <unk> things alas
-0.9410415 <unk> hung <unk>
-1.071062 <unk> hung out
-0.4391686 <unk> many <unk>
-0.7851848 <unk> again </s>
-1.269864 <unk> again but
-0.9673846 <unk> wood to
-1.030965 <unk> wood through
-0.3373437 <unk> laughing at
-0.9380558 <unk> figure </s>
-0.9582466 <unk> figure and
-0.8888786 <unk> except by
-0.3617005 <unk> during the
-0.2276171 <unk> brown <unk>
-0.7128401 <unk> creature i
-0.8599553 <unk> notice when
-0.8099082 <unk> expression which
-0.9209861 <unk> waiting till
-0.7347887 <unk> office <unk>
-0.8109805 <unk> ago about
-0.8149867 <unk> dropped off
-1.263177 <unk> room </s>
-1.078702 <unk> room he
-1.410926 <unk> room do
-0.8590121 <unk> outside who
-0.5064182 <unk> should be
-1.21098 <unk> should pass
-1.273124 <unk> come along
-1.275353 <unk> come true
-0.6954322 <unk> hand <unk>
-1.270126 <unk> hand over
-0.9758917 <unk> better question
-1.520739 <unk> question an
-1.526676 <unk> question well
-1.520739 <unk> question were
-1.527341 <unk> question have
-1.090108 <unk> question what
-0.7986513 <unk> tongue </s>
-1.248473 <unk> than the
-1.169807 <unk> than <unk>
-1.302619 <unk> than it
-1.761619 <unk> than she
-1.006535 <unk> than any
-1.312569 <unk> than you
-1.817809 <unk> than your
-1.342004 <unk> than ever
-1.847696 <unk> than mine
-1.854896 <unk> than theirs
-1.853688 <unk> than pleasure
-0.4364441 <unk> walk up
-1.234508 <unk> turned away
-1.239006 <unk> turned yellow
-0.8148319 <unk> gently down
-0.963051 <unk> towards him
-1.048801 <unk> eyes </s>
-1.01657 <unk> eyes <unk>
-1.377522 <unk> eyes that
-0.4908048 <unk> hat and
-0.4779666 <unk> beneath the
-1.019225 <unk> beneath his
-0.962445 <unk> face his
-0.9372131 <unk> also love
-0.3207932 <unk> large <unk>
-0.8111339 <unk> observer an
-0.3405163 <unk> extraordinary observer
-0.6355657 <unk> our <unk>
-0.8887841 <unk> stood in
-0.8116968 <unk> carpet all
-0.8166929 <unk> clear sweet
-0.9963175 <unk> way <unk>
-1.078702 <unk> way he
-1.422357 <unk> way led
-0.8088385 <unk> you've no
-0.984444 <unk> love hate
-0.4758038 <unk> wonderful <unk>
-0.7328718 <unk> companion stopped
-0.7735312 <unk> stolen the
-0.8108271 <unk> nurse who
-0.8366421 <unk> lie a
-0.3191339 <unk> want to
-0.9382691 <unk> several papers
-0.8261097 <unk> feet </s>
-0.1922683 <unk> against the
-1.380391 <unk> against <unk>
-0.9932279 <unk> against him
-0.6825953 <unk> veil </s>
-0.1050092 <unk> most <unk>
-0.210482 <unk> hundred thousand
-0.9202622 <unk> kept herself
-0.7696089 <unk> watch and
-0.6936914 <unk> gloves and
-0.805481 <unk> intelligence to
-0.8501021 <unk> intelligence realized
-1.079119 <unk> himself </s>
-1.54562 <unk> himself a
-1.451084 <unk> himself and
-1.582852 <unk> himself that
-1.134691 <unk> himself in
-1.656379 <unk> himself if
-1.668519 <unk> himself like
-1.690866 <unk> himself somewhat
-0.7270174 <unk> girls from
-0.1010647 <unk> black <unk>
-0.7232414 <unk> extended his
-0.7209915 <unk> astir with
-0.6600862 <unk> moment </s>
-0.9209861 <unk> each worth
-0.7986513 <unk> guide </s>
-0.7981352 <unk> gods that
-1.319408 <unk> light he
-1.367338 <unk> light which
-1.38779 <unk> light suddenly
-0.7304441 <unk> created man
-0.7710233 <unk> told him
-0.7722219 <unk> told me
-0.3334785 <unk> presence in
-0.7332564 <unk> birthday anniversary
-0.7565031 <unk> jesus the
-0.8981476 <unk> search in
-0.8619343 <unk> person made
-0.9328688 <unk> truth into
-0.1127503 <unk> moral <unk>
-0.1881954 <unk> discussion of
-0.9700497 <unk> count said
-0.6642711 <unk> social <unk>
-0.8023248 <unk> searching with
-0.7280299 <unk> page who
-0.7318479 <unk> calling myself
-0.7777731 <unk> explanation of
-0.1158547 <unk> desire to
-0.5544911 <unk> science </s>
-0.5705904 <unk> science was
-0.4382934 <unk> less than
-0.7331282 <unk> fairies gods
-0.8808607 <unk> beings </s>
-0.9562144 <unk> beings we
-0.8142134 <unk> says nothing
-0.897965 <unk> thus making
-0.4272567 <unk> upon the
-0.3579693 <unk> upon his
-0.6642711 <unk> john <unk>
-0.6642711 <unk> judas <unk>
-0.9504279 <unk> else told
-0.9377407 <unk> silence during
-0.5016792 <unk> these <unk>
-0.805481 <unk> claims to
-0.8454279 <unk> claims have
-0.7263858 <unk> mothers no
-0.1921248 <unk> caused by
-0.9306407 <unk> words if
-0.330898 <unk> effort to
-0.7696089 <unk> poverty and
-0.698637 <unk> animal to
-0.5250652 <unk> car <unk>
-0.8149867 <unk> balance something
-0.6936914 <unk> fight and
-0.6642711 <unk> gain <unk>
-0.9582466 <unk> birth and
-1.03403 <unk> birth observed
-0.5597653 <unk> around his
-0.8170038 <unk> lower preferred
-0.7332564 <unk> figures weaving
-1.03275 <unk> picture taken
-1.024647 <unk> picture then
-0.0839825 <unk> product of
-1.024146 <unk> board an
-1.030456 <unk> board may
-0.8495989 <unk> complaint often
-0.8495989 <unk> complaint against
-0.8489288 <unk> whereby being
-0.8490963 <unk> whereby love
-0.7113743 <unk> blush a
-0.7248736 <unk> sensorium so
-0.7564252 <unk> anger </s>
-0.1881954 <unk> price of
-0.163262 <unk> sarah <unk>
-0.1176016 <unk> security for
-0.9069079 <unk> brain </s>
-0.3730168 <unk> brain the
-1.005143 <unk> cold the
-1.078381 <unk> cold even
-0.6642711 <unk> inside <unk>
-0.7267647 <unk> occupied by
-0.7696089 <unk> thoughts and
-0.7331282 <unk> wall papers
-0.4258426 <unk> condition of
-0.8396921 <unk> fallen </s>
-0.9083929 <unk> round her
-0.08386748 <unk> according to
-0.8070109 <unk> arrived so
-0.9614731 <unk> man's excuse
-1.080654 <unk> manner it
-1.103505 <unk> manner which
-0.9136065 <unk> longer were
-0.7331282 <unk> interview mistress
-0.8640089 <unk> within five
-0.8030772 <unk> swamp at
-0.7735312 <unk> spent the
-0.9055958 <unk> neck <unk>
-1.029187 <unk> neck came
-0.6825953 <unk> character </s>
-0.7347887 <unk> remembered <unk>
-0.8010192 <unk> every <unk>
-1.382603 <unk> every field
-1.38306 <unk> every barn
-0.8758205 <unk> every day
-0.6642711 <unk> proved <unk>
-1.272824 <unk> still upon
-1.279006 <unk> still missing
-1.091352 <unk> forth the
-0.5935878 <unk> forth with
-1.136436 <unk> forth for
-0.7005358 <unk> newspapers of
-0.7270174 <unk> unconsciously from
-1.166458 <unk> bobby </s>
-1.474311 <unk> bobby started
-1.474772 <unk> bobby glanced
-0.8655713 <unk> graham's words
-0.774865 <unk> remained <unk>
-1.03403 <unk> paredes's arrival
-1.033774 <unk> paredes's clear
-0.7347887 <unk> weariness <unk>
-0.9711811 <unk> became purple
-0.7077313 <unk> fellows in
-0.8960205 <unk> across their
-0.7332564 <unk> telephoned katherine
-0.7263858 <unk> katherine one
-0.7175146 <unk> landscape it
-1.600657 <unk> graham asked
-1.04444 <unk> graham answered
-1.610211 <unk> graham persisted
-1.610902 <unk> graham urged
-1.242828 <unk> graham moved
-0.8635718 <unk> dull and
-0.7308265 <unk> buried graham
-1.13955 <unk> robinson still
-1.133384 <unk> robinson bobby
-0.8597757 <unk> court </s>
-0.2158696 <unk> easy <unk>
-0.6642711 <unk> uncommunicative <unk>
-0.8461877 <unk> appeared <unk>
-0.7244964 <unk> pleasantly on
-0.8170038 <unk> bobby's thoughts
-0.6642711 <unk> expressed <unk>
-0.8171593 <unk> remain buried
-0.7777731 <unk> crush of
-0.8648762 <unk> sum yet
-0.4928393 <unk> hold of
-0.846891 <unk> witness he
-0.8005243 <unk> staircase was
-0.7217402 <unk> worry as
-0.7005358 <unk> impression of
-0.7329999 <unk> sound followed
-0.5609854 <unk> led him
-0.6825953 <unk> roofs </s>
-0.7005358 <unk> weaving of
-0.8171593 <unk> melancholy walls
-0.7331282 <unk> walls dirty
-0.2965969 <unk> path </s>
-0.7077313 <unk> justice in
-0.9516984 <unk> death maria
-0.8222394 <unk> fingers of
-0.9763772 <unk> power </s>
-1.081801 <unk> power behind
-0.6969822 <unk> interest the
-0.7232414 <unk> apprehension his
-0.8457602 <unk> harmony into
-0.8350915 <unk> harmony at
-0.9196708 <unk> sad face
-0.8079237 <unk> asking as
-0.6825953 <unk> acquired </s>
-0.7248736 <unk> direct her
-0.6825953 <unk> shape </s>
-0.7735312 <unk> opposite the
-0.8599553 <unk> followed this
-0.7175146 <unk> delay it
-0.7735312 <unk> desk the
-0.8554293 <unk> keeps him
-0.340032 <unk> gives off
-0.774865 <unk> beauty <unk>
-0.9304099 <unk> thou said
-0.6642711 <unk> receiving <unk>
-0.3313061 <unk> doth <unk>
-1.215441 <unk> doth that
-1.244174 <unk> doth prepare
-0.6642711 <unk> strong <unk>
-0.4924518 <unk> tis the
-0.7175146 <unk> sin that
-0.5193612 <unk> cried he
-1.165386 <unk> cried montfichet
-0.7564252 <unk> written </s>
-0.4339263 <unk> thank you
-0.7143108 <unk> delighted he
-1.223946 <unk> indeed and
-0.8654002 <unk> indeed i
-0.8794054 <unk> indeed no
-0.1853896 <unk> study </s>
-0.8317879 <unk> villefort in
-0.7280299 <unk> procureur who
-0.7298075 <unk> presented them
-0.812979 <unk> rolled into
-0.7280299 <unk> procession there
-0.6969822 <unk> gradually the
-0.08589916 <unk> chateau renaud
-0.2215168 <unk> replied the
-0.9221367 <unk> monte <unk>
-0.8927495 <unk> smile well
-0.187903 <unk> offered to
-0.8711073 <unk> happy and
-0.9763772 <unk> baron </s>
-1.08123 <unk> baron danglars
-0.3627921 <unk> king of
-0.7314647 <unk> philosophers may
-0.7925133 <unk> consolation i
-0.9076257 <unk> bonds said
-0.5537435 <unk> placed in
-0.5931159 <unk> receipt in
-0.6825953 <unk> impertinence </s>
-0.7619956 <unk> de <unk>
-0.8501021 <unk> de morcerf
-0.8540722 <unk> mother said
-0.9074342 <unk> rain had
-0.6825953 <unk> mass </s>
-0.8065552 <unk> line on
-0.8132873 <unk> rising more
-0.1881954 <unk> smell of
-0.8633162 <unk> laughter three
-0.7318479 <unk> thrusting themselves
-0.8808607 <unk> disgust </s>
-0.9626911 <unk> disgust probably
-0.3207932 <unk> coffee <unk>
-0.8157614 <unk> secret things
-0.6642711 <unk> physical <unk>
-0.7217402 <unk> alike as
-0.8032278 <unk> youth as
-0.6936914 <unk> remark and
-0.7113743 <unk> state a
-0.6936914 <unk> impressions and
-0.8005243 <unk> rosalind was
-0.7324876 <unk> rivers twenty
-0.7331282 <unk> darned uncomfortable
-0.8487615 <unk> clara first
-0.8501021 <unk> clara rosalind
-0.8096023 <unk> princes from
-0.4186053 <unk> gravity </s>
-0.7314647 <unk> lift don't
-0.7347887 <unk> cries <unk>
-0.4189392 <unk> chamber </s>
-1.193524 <unk> chamber so
-1.209609 <unk> chamber sprang
-0.6936914 <unk> leaves and
-0.7263858 <unk> contained no
-0.1925862 <unk> flowed over
-0.8146772 <unk> bear us
-0.1871365 <unk> asleep and
-0.6825953 <unk> lip </s>
-0.8171462 <unk> yourself in
-0.8237299 <unk> yourself i
-0.9582466 <unk> cacambo and
-1.023645 <unk> cacambo who
-0.7332564 <unk> candide married
-0.8614994 <unk> martin in
-0.7191254 <unk> impaled for
-0.8907175 <unk> dervish who
-0.7564252 <unk> sons </s>
-0.193085 <unk> pistachio nuts
-0.8808607 <unk> apprentice </s>
-0.9622563 <unk> apprentice set
-0.803497 <unk> robin with
-0.4819589 <unk> montfichet </s>
-0.7304441 <unk> esquire after
-0.7619956 <unk> singing <unk>
-0.8501021 <unk> singing received
-0.7315924 <unk> onward go
-0.8626305 down the <unk>
-1.532504 down the platform
-1.53104 down the receipt
-0.8479747 down into a
-1.05636 down a steep
-0.8496898 down and the
-0.5355745 down in the
-0.8895059 down to the
-1.338714 down to town
-1.050697 down but does
-1.014784 down her back
-1.15464 down she would
-1.194449 down she did
-0.6631813 down or <unk>
-0.4264134 down out of
-0.880184 down there and
-0.813503 down as <unk>
-1.031278 down his cheeks
-1.003926 down too tired
-0.9734793 down again and
-0.5924434 into the <unk>
-2.188843 into the ladies
-2.191435 into the woods
-2.187553 into the mouth
-2.190137 into the train
-2.066052 into the air
-2.296098 into the soft
-2.239894 into the boat
-2.190137 into the country
-2.034797 into the lake
-2.297755 into the landscape
-2.24281 into the thicket
-2.188843 into the rain
-1.217713 into the inquisition
-0.8465529 into <unk> </s>
-0.6940223 into a <unk>
-1.200085 into a little
-1.527905 into a passion
-1.097627 into it had
-1.349821 into it sitting
-1.343261 into her head
-1.344645 into her throat
-0.6514933 into this <unk>
-0.5975883 into if you
-0.9772292 into his <unk>
-1.731413 into his house
-0.6315917 into his mind
-1.656415 into his chair
-0.7312405 into your <unk>
-1.475401 into your house
-1.478172 into your head
-0.9377701 into thin air
-0.7095801 into my <unk>
-1.337319 into my charge
-0.5328771 into each <unk>
-0.6642711 into jail <unk>
-0.6642711 into egypt <unk>
-0.8162269 into vision under
-0.9760956 into danglars room
-0.760853 a one <unk>
-1.065763 a <unk> </s>
-0.6803944 a <unk> <unk>
-2.442372 a <unk> into
-2.008044 a <unk> a
-2.79331 a <unk> little
-2.004277 a <unk> with
-1.187674 a <unk> and
-1.78324 a <unk> that
-2.493319 a <unk> had
-1.373364 a <unk> in
-0.8535076 a <unk> of
-2.878688 a <unk> old
-1.683182 a <unk> to
-2.202774 a <unk> but
-2.117948 a <unk> for
-2.215166 a <unk> at
-2.136184 a <unk> from
-2.490721 a <unk> up
-2.677771 a <unk> if
-3.080444 a <unk> never
-2.646291 a <unk> over
-1.84485 a <unk> he
-2.452587 a <unk> which
-3.165542 a <unk> distance
-2.863771 a <unk> why
-2.985061 a <unk> day
-2.969822 a <unk> something
-3.148264 a <unk> often
-2.897292 a <unk> woman
-3.171457 a <unk> quarter
-2.726243 a <unk> off
-3.171457 a <unk> peace
-2.532644 a <unk> said
-3.01309 a <unk> deep
-3.137115 a <unk> though
-2.981201 a <unk> look
-2.808753 a <unk> then
-1.914602 a <unk> you
-2.800856 a <unk> oh
-2.977375 a <unk> thought
-2.996853 a <unk> boy
-3.137115 a <unk> voice
-3.159706 a <unk> mental
-3.153947 a <unk> born
-3.165542 a <unk> likely
-3.171457 a <unk> foolish
-2.88789 a <unk> thing
-3.021442 a <unk> wood
-3.148264 a <unk> brown
-3.165542 a <unk> dropped
-3.165542 a <unk> tongue
-3.165542 a <unk> clear
-3.171457 a <unk> nurse
-2.748154 a <unk> against
-3.165542 a <unk> watch
-2.996853 a <unk> black
-2.881734 a <unk> light
-3.000856 a <unk> told
-3.171457 a <unk> birthday
-3.153947 a <unk> search
-3.171457 a <unk> page
-3.165542 a <unk> explanation
-3.142654 a <unk> silence
-3.165542 a <unk> effort
-3.171457 a <unk> animal
-3.165542 a <unk> balance
-3.021442 a <unk> picture
-2.124135 a <unk> complaint
-3.171457 a <unk> blush
-3.017246 a <unk> manner
-3.021442 a <unk> neck
-2.715689 a <unk> graham
-3.159706 a <unk> sum
-3.165542 a <unk> witness
-3.148264 a <unk> led
-3.171457 a <unk> apprehension
-3.171457 a <unk> delay
-2.894135 a <unk> indeed
-3.171457 a <unk> gradually
-3.021442 a <unk> baron
-3.171457 a <unk> philosophers
-0.5687115 a little <unk>
-2.073261 a little into
-2.116149 a little hollow
-1.787145 a little of
-2.116149 a little odd
-2.071563 a little before
-2.051686 a little about
-2.076678 a little more
-2.1087 a little further
-2.1087 a little boy
-0.8884988 a little girl
-2.1087 a little while
-2.119921 a little bit
-1.604069 a little boat
-2.118031 a little later
-2.103196 a little money
-2.118031 a little pocket
-1.179017 a hollow where
-1.028369 a hollow <unk>
-0.9380558 a brook </s>
-1.028174 a brook could
-0.9297136 a place where
-1.383438 a place for
-1.421703 a place living
-0.7264289 a course </s>
-0.8927495 a quiet well
-0.9730473 a window over
-0.2273384 a sharp eye
-0.2273984 a foreign missionary
-0.8142134 a circle came
-0.7314647 a steep little
-0.9105732 a white collar
-1.237716 a white dress
-0.7080148 a man <unk>
-1.144053 a man and
-1.521841 a man had
-1.900501 a man not
-1.882485 a man on
-1.515106 a man she
-1.92728 a man would
-1.535631 a man who
-1.952147 a man whose
-1.960762 a man lifted
-0.8783633 a buggy was
-0.9619072 a whole orphan
-0.9512744 a half laugh
-0.7619956 a busy <unk>
-0.8485942 a busy day
-1.014888 a day because
-0.8511641 a given <unk>
-1.401051 a pretty road
-0.8278934 a pretty <unk>
-1.392828 a pretty good
-1.399102 a pretty dress
-0.641583 a good <unk>
-1.9106 a good place
-1.901919 a good man
-1.913533 a good home
-0.5457238 a good deal
-1.901919 a good two
-0.9833592 a home boy
-0.8603154 a worthy <unk>
-0.9106331 a woman </s>
-1.261876 a woman of
-0.9872377 a woman hating
-0.5071116 a more <unk>
-0.5757174 a big house
-1.081801 a big hat
-0.9064616 a quarter to
-0.96378 a quarter interest
-0.7232475 a long <unk>
-1.491905 a long time
-1.501468 a long piece
-1.500181 a long sweet
-1.497618 a long black
-0.9710924 a further scattering
-0.9472406 a father a
-1.021499 a last proof
-0.8171593 a clean breast
-0.8310807 a mind to
-0.8008152 a land <unk>
-0.3421844 a wild cherry
-1.342475 a wild forest
-0.9086377 a wonder a
-0.9562998 a look of
-0.5524649 a great <unk>
-0.9694837 a great mind
-1.510127 a great hurry
-1.509105 a great forest
-1.510127 a great funeral
-1.510639 a great shout
-0.8492637 a stray half
-0.8499342 a stray stick
-0.8660934 a stick unattached
-0.9202622 a yard above
-1.193636 a body to
-1.306266 a body can
-1.309154 a body does
-0.3984211 a very <unk>
-1.633903 a very short
-1.633903 a very happy
-1.636476 a very honest
-0.7323596 a neat black
-0.7332564 a cheerful apartment
-0.9633441 a real fine
-0.96378 a real hearty
-0.9410415 a fine <unk>
-1.079803 a fine thing
-0.167675 a kind of
-0.934342 a sight for
-1.088403 a bad <unk>
-1.3026 a bad town
-1.302124 a bad fellow
-1.302124 a bad sign
-0.8461877 a hair <unk>
-0.9369201 a hard little
-0.1127503 a narrow <unk>
-0.2340292 a sense of
-1.082876 a boy from
-1.554083 a boy out
-0.7120192 a boy matthew
-1.578399 a boy i'd
-1.570824 a boy i've
-0.7270174 a kangaroo from
-0.6505371 a voice <unk>
-1.003788 a yes from
-0.2358408 a part of
-1.348425 a girl <unk>
-1.535913 a girl a
-1.519006 a girl in
-1.478907 a girl to
-1.62068 a girl who
-0.5850905 a girl said
-0.966615 a world is
-0.7331282 a flat demand
-0.9443298 a right to
-0.9384455 a street fight
-0.8677413 a born <unk>
-0.7263858 a risk no
-0.8717833 a matter of
-0.9777301 a heart trouble
-0.7009244 a young man
-0.8065552 a pick on
-0.8008152 a week <unk>
-1.201542 a word that
-1.153851 a word to
-1.243937 a word expressing
-0.909379 a turn in
-1.041058 a wife </s>
-1.166775 a wife note
-0.5838223 a fire and
-0.7918343 a thing that's
-1.331193 a strange man
-1.339919 a strange girl
-1.33785 a strange child
-1.171165 a child of
-1.228893 a child at
-1.024435 a single night
-1.023933 a single thing
-1.025942 a single fault
-0.1160198 a sort of
-1.136618 a case over
-1.094276 a case i
-1.079803 a different thing
-1.082374 a different form
-0.9461183 a tone that
-0.3741373 a tone of
-0.1424069 a new <unk>
-0.8393275 a sensation so
-0.8501021 a sensation second
-0.5010215 a mistake he
-0.698637 a relief to
-0.5151208 a breath </s>
-0.8258042 a while </s>
-0.8663351 a while ago
-1.351733 a bit into
-0.426151 a bit of
-1.359979 a bit afraid
-1.361429 a bit sick
-0.8717833 a feeling of
-0.8032278 a personage as
-0.8475162 a figure was
-0.6642711 a fashion <unk>
-1.282225 a prince when
-1.290113 a prince do
-0.9708929 a full soft
-0.1634692 a sign in
-0.9663885 a horse <unk>
-1.116636 a horse should
-0.8648762 a small boy
-0.9724716 a room of
-0.8162269 a situation far
-0.8222394 a tongue of
-0.8156063 a certain way
-1.196752 a short red
-1.198995 a short space
-0.8170038 a thick iron
-0.9734525 a face made
-0.3207932 a large <unk>
-0.7347887 a lovely <unk>
-1.41729 a way down
-1.295153 a way and
-1.369632 a way that
-0.8190189 a live <unk>
-0.774865 a worse <unk>
-0.964132 a bride of
-1.012807 a bride all
-1.023433 a bride myself
-0.9514864 a beautiful piece
-0.7323596 a veil between
-0.959803 a hundred </s>
-1.491905 a hundred more
-1.482342 a hundred when
-0.7905407 a hundred thousand
-1.501683 a hundred times
-0.807911 a lot of
-0.8460926 a lot more
-0.53593 a mercy i
-0.9376234 a thousand already
-0.8171593 a delightful dream
-0.7696089 a flash and
-0.8951604 a gentleman in
-0.7777731 a city of
-1.036842 a moment <unk>
-1.19907 a moment silently
-0.4186053 a priest </s>
-0.7324876 a low voice
-1.003715 a light under
-0.3451843 a god </s>
-0.9107801 a god <unk>
-1.40172 a god and
-1.504411 a god why
-0.7005358 a suggestion of
-0.1348407 a number of
-0.8505297 a person as
-0.8168483 a golden fortune
-0.8897971 a faith is
-0.1127503 a moral <unk>
-0.730062 a subject like
-0.4873357 a myth </s>
-1.216034 a myth is
-1.219557 a myth or
-0.7175146 a friday that
-0.7319758 a mythical jesus
-0.6642711 a unanimous <unk>
-0.5764058 a silence </s>
-0.7331282 a sleeping car
-0.7332564 a wide berth
-0.9206569 a lady sir
-0.7777731 a balance of
-0.8170038 a cash book
-0.6642711 a brilliant <unk>
-0.3334785 a game in
-0.7332564 a department store
-0.9122489 a foot or
-0.8522772 a married <unk>
-0.96378 a married female
-0.7327437 a female head
-0.8551441 a dead <unk>
-0.7005358 a form of
-0.193085 a shady retreat
-0.8655713 a crowd together
-0.898415 a fallen tough
-0.7327437 a tough fall
-0.9278214 a story not
-1.182932 a man's body
-1.183655 a man's coat
-0.9663885 a manner <unk>
-1.117567 a manner morcerf
-0.8650499 a conversation began
-0.8642255 a top last
-0.7332564 a public meeting
-0.7564252 a fence </s>
-0.9271604 a bed of
-0.9500051 a lake along
-0.7324876 a harsh voice
-0.7322316 a mournful face
-0.4258426 a sum of
-0.8448549 a reply that
-0.7619956 a vast <unk>
-0.799166 a vast and
-0.698637 a shroud to
-0.9383866 a forest sometimes
-0.4110283 a fresh <unk>
-0.920065 a sad though
-0.8108271 a cousin who
-0.7332564 a strong lift
-0.7331282 a spot whence
-0.8137501 a point after
-0.8128249 a passion before
-0.7777731 a vision of
-0.8171593 a funeral procession
-0.7273968 a brother or
-1.012399 a smile of
-1.082374 a smile gradually
-0.5648117 a happy life
-0.774865 a fortune <unk>
-0.7850687 a million </s>
-0.799166 a million and
-0.8171593 a credit opened
-0.6642711 a curious <unk>
-0.5931159 a receipt in
-0.8470915 a mere nothing
-0.8492637 a mere woman
-0.7329999 a faint smile
-0.9958121 a month it
-0.9988745 a month for
-1.025187 a month maybe
-1.022112 a cry </s>
-0.4815877 a cry <unk>
-1.088255 a cry as
-0.8168483 a rising crowd
-0.8170038 a dirty river
-0.7005358 a state of
-1.427464 a princess by
-1.390668 a princess that
-1.378446 a princess he
-0.7696089 a shriek and
-1.033262 a swim together
-1.016447 a swim said
-0.8171593 a safe crossing
-0.96378 a few minutes
-0.96378 a few tricks
-0.7321037 a biscuit first
-0.698637 a ship to
-0.6545069 a nottingham </s>
-1.098206 a nottingham a
-1.137806 a montfichet a
-1.183414 a montfichet gamewell
-0.698637 a burden to
-0.1871365 a ladder and
-1.236529 little <unk> </s>
-1.16484 little <unk> <unk>
-1.787277 little <unk> by
-0.9015521 little <unk> of
-2.03269 little <unk> after
-2.047108 little <unk> behind
-2.003113 little <unk> between
-2.088745 little <unk> perhaps
-2.092798 little <unk> cries
-2.093613 little <unk> flowed
-0.4026462 little into the
-0.9623899 little hollow fringed
-0.5810188 little of the
-0.8160717 little society entered
-0.897029 little odd living
-0.8065552 little circle on
-0.4852056 little hill </s>
-1.037238 little man whom
-0.9175712 little before noon
-0.8843058 little about <unk>
-1.033998 little more light
-0.9319926 little further in
-0.9772681 little i saw
-0.8988498 little company of
-0.7721245 little boy from
-1.485512 little girl but
-1.505674 little girl from
-1.514519 little girl we
-1.533434 little girl women
-1.53678 little girl she's
-0.8659193 little french boys
-0.7515098 little child <unk>
-0.7454732 little while ago
-0.5466343 little bit of
-0.6103243 little hand <unk>
-0.1910011 little scope for
-0.6397236 little boat <unk>
-1.114556 little boat for
-0.7312093 little boots three
-0.7282834 little girls were
-0.8385991 little later i
-0.9393055 little money and
-0.5101318 little pocket book
-0.8901623 little bonds i
-0.1881954 little scraps of
-0.8808607 little stroller </s>
-0.9629086 little stroller presently
-1.019056 hollow where wild
-1.058206 hollow <unk> you've
-0.1912772 hollow fringed with
-0.3521958 hollow and <unk>
-1.502959 hollow and up
-0.5620697 hollow by the
-1.016602 hollow of our
-0.6897254 hollow it was
-0.8614947 hollow to be
-0.2194035 fringed with <unk>
-0.797402 with one of
-1.500157 with one thin
-1.496672 with one hand
-0.4539666 with the <unk>
-2.440738 with the father
-1.975953 with the only
-2.447292 with the bad
-2.447292 with the wife
-2.440738 with the breath
-1.775414 with the prince
-2.377723 with the situation
-2.16414 with the others
-2.379603 with the infant
-2.167595 with the same
-2.449498 with the lord
-2.122322 with the squire
-2.256511 with the story
-2.451716 with the lawyer
-2.451716 with the indifference
-2.259358 with the power
-2.379603 with the clergyman
-2.377723 with the philosopher
-1.193267 with <unk> </s>
-0.3825408 with <unk> <unk>
-1.957345 with <unk> a
-1.238848 with <unk> and
-1.810147 with <unk> in
-1.064995 with <unk> of
-1.68745 with <unk> to
-2.31785 with <unk> through
-2.160806 with <unk> on
-2.490899 with <unk> nothing
-2.506309 with <unk> wild
-2.511948 with <unk> fairies
-2.507431 with <unk> around
-2.481184 with <unk> harmony
-0.416789 with a <unk>
-2.281652 with a hollow
-2.273113 with a white
-2.439257 with a half
-2.394535 with a more
-1.990125 with a long
-2.441743 with a father
-2.427034 with a look
-2.066688 with a great
-2.454393 with a flat
-2.286857 with a tone
-2.269744 with a new
-2.434326 with a face
-2.451833 with a lovely
-2.454393 with a suggestion
-2.288606 with a vast
-2.449289 with a fresh
-2.446759 with a sad
-2.454393 with a curious
-2.16626 with a cry
-2.155809 with a princess
-0.5823878 with that <unk>
-1.59558 with that which
-1.73821 with that girl
-1.740735 with that ancient
-1.00456 with its heavy
-1.02387 with old desires
-1.002091 with it that
-0.1520164 with an <unk>
-0.4758038 with dark <unk>
-0.9495457 with her <unk>
-1.525008 with her from
-1.849213 with her whole
-1.848107 with her almost
-1.85255 with her brisk
-1.372116 with her eyes
-1.674244 with her foot
-1.497094 with all her
-1.591899 with all this
-0.3709665 with all my
-1.509037 with this missus
-0.8145688 with this <unk>
-1.705077 with this unusual
-1.394675 with this fellow
-1.705077 with this mythus
-0.7519988 with their own
-0.8614994 with bloom in
-1.049179 with whom he
-0.5738655 with whom we
-0.3423684 with his <unk>
-1.824639 with his two
-1.933897 with his tears
-1.935492 with his direction
-1.936291 with his burden
-0.9262133 with him </s>
-1.368006 with him at
-1.606351 with him there
-1.619107 with him don't
-0.9278651 with which the
-0.9429804 with which he
-0.6728293 with now and
-0.9987757 with matthew to
-0.5764404 with three <unk>
-0.8016621 with good <unk>
-0.5071116 with more <unk>
-0.7715057 with what <unk>
-0.9895122 with i know
-1.012665 with such thoughts
-0.6459944 with wild rose
-0.9971761 with no such
-0.8849331 with wonder and
-0.1697334 with great <unk>
-1.439438 with you a
-0.6332567 with you and
-1.64796 with you any
-1.725707 with you again
-1.300822 with some local
-1.300058 with some difficulty
-1.320155 with your sleep
-1.322091 with your signature
-0.4665844 with two <unk>
-0.987898 with me </s>
-0.9051138 with me the
-1.500281 with me very
-0.6219205 with my <unk>
-0.9212496 with decided step
-0.9979202 with another story
-0.9513275 with many words
-0.6443798 with full <unk>
-0.6642711 with pronounced <unk>
-0.4758038 with wonderful <unk>
-0.5640213 with several <unk>
-0.9180271 with mine and
-0.9415234 with light and
-0.7619956 with greater <unk>
-0.8495989 with greater care
-1.018432 with these precise
-0.8345262 with lady <unk>
-0.6642711 with broken <unk>
-0.7696089 with mud and
-1.032193 with bobby we
-0.7321037 with crystal eyes
-0.7243708 with bankers said
-0.6936914 with condescension and
-0.8097552 with jill what
-0.6642711 with hearty <unk>
-0.7280299 with sending there
-0.797402 and one of
-1.496238 and one must
-1.500595 and one kind
-0.07067988 and missus rachel
-0.8709404 and is the
-1.319667 and is she
-0.7255187 and just <unk>
-1.017387 and where even
-0.4871511 and the <unk>
-1.291007 and the little
-2.039189 and the old
-2.129955 and the other
-2.642999 and the red
-1.312668 and the sorrel
-2.658099 and the mare
-2.348266 and the whole
-2.470098 and the long
-1.57517 and the son
-1.867857 and the prince
-2.661184 and the unfortunate
-2.472096 and the heavy
-2.254442 and the bank
-2.410101 and the moon
-2.56132 and the numerous
-2.478145 and the country
-2.661184 and the disappearance
-2.413587 and the cedars
-2.563786 and the law
-2.661184 and the procureur
-2.661184 and the cry
-2.661184 and the faces
-1.815886 and the princess
-2.408368 and the shore
-2.56132 and the chamberlain
-2.658099 and the mufti
-0.8942333 and main matthew
-1.208595 and <unk> </s>
-1.203567 and <unk> the
-0.841224 and <unk> <unk>
-2.392393 and <unk> into
-1.529191 and <unk> a
-1.236867 and <unk> with
-1.351008 and <unk> and
-1.803038 and <unk> by
-1.532243 and <unk> that
-2.666437 and <unk> its
-1.332413 and <unk> of
-1.775753 and <unk> it
-2.313079 and <unk> was
-1.220853 and <unk> to
-2.491168 and <unk> be
-2.517248 and <unk> through
-1.786927 and <unk> but
-2.173253 and <unk> at
-2.325559 and <unk> her
-2.096246 and <unk> from
-2.438438 and <unk> up
-2.378812 and <unk> out
-2.80415 and <unk> until
-2.579782 and <unk> are
-3.038687 and <unk> plenty
-2.212921 and <unk> as
-2.520207 and <unk> were
-2.895514 and <unk> white
-2.905774 and <unk> coming
-1.75468 and <unk> he
-2.278875 and <unk> him
-2.689128 and <unk> before
-2.443183 and <unk> about
-2.850599 and <unk> might
-2.875693 and <unk> something
-2.798707 and <unk> make
-2.912752 and <unk> together
-2.826632 and <unk> conscience
-2.78802 and <unk> men
-2.596578 and <unk> when
-2.230165 and <unk> you
-3.024811 and <unk> hair
-3.024811 and <unk> street
-1.827553 and <unk> me
-1.959665 and <unk> we
-3.006974 and <unk> strange
-3.038687 and <unk> expect
-2.919843 and <unk> figure
-3.024811 and <unk> during
-2.662467 and <unk> question
-3.038687 and <unk> gently
-3.006974 and <unk> towards
-3.043412 and <unk> gloves
-3.043412 and <unk> discussion
-3.038687 and <unk> searching
-2.923433 and <unk> beings
-2.919843 and <unk> picture
-3.043412 and <unk> character
-1.960024 and <unk> every
-3.011365 and <unk> became
-3.029387 and <unk> across
-3.038687 and <unk> coffee
-2.927052 and <unk> yourself
-0.7349384 and a <unk>
-1.347801 and a little
-1.864196 and a big
-1.690464 and a long
-1.934322 and a full
-1.689874 and a hundred
-1.937433 and a happy
-1.941617 and a biscuit
-1.033332 and little company
-1.077305 and with her
-1.346594 and with broken
-0.8190189 and ladies <unk>
-0.6100669 and by <unk>
-1.514749 and that is
-1.81466 and that on
-1.735514 and that if
-1.564808 and that his
-2.0136 and that together
-1.989375 and that made
-1.520047 and that they
-1.500685 and that you
-2.011234 and that several
-2.018371 and that geoffrey
-0.938203 and had <unk>
-1.226444 and had to
-1.28827 and had already
-0.3068365 and its <unk>
-0.2597673 and away they
-0.7337797 and in the
-1.072046 and in a
-1.742936 and in an
-1.748435 and in some
-0.7181248 and in fact
-0.9659939 and of course
-0.356119 and it was
-1.302899 and it would
-1.120495 and was the
-1.656387 and was always
-1.736996 and was silent
-1.736996 and was able
-1.736325 and was immediately
-0.9414941 and to the
-0.8557429 and to <unk>
-1.312949 and to his
-1.047398 and be still
-0.3879234 and an <unk>
-1.007692 and through mud
-0.9456376 and those of
-0.7490221 and well <unk>
-1.313207 and well done
-0.7830161 and for <unk>
-1.010262 and not <unk>
-1.115204 and not a
-1.218748 and not to
-0.8136716 and even more
-0.3608685 and without <unk>
-0.9494246 and sitting down
-0.5791936 and at the
-1.234228 and at length
-0.4600319 and her <unk>
-1.632106 and her old
-1.637177 and her son
-0.1898436 and keeping a
-1.248246 and on one
-1.336819 and on ever
-0.9665481 and everything over
-1.012227 and children <unk>
-1.16872 and children up
-0.8036609 and up the
-1.307695 and up on
-0.6642711 and foreign <unk>
-1.224434 and yet was
-1.257674 and yet here
-0.4597191 and all the
-1.46996 and all that
-1.50893 and all night
-0.4059799 and this is
-0.9221432 and this <unk>
-0.9636115 and found the
-1.27156 and found himself
-1.05479 and she had
-0.6393297 and she said
-1.801912 and she herself
-1.801337 and she began
-1.804222 and she mentioned
-1.840687 and if that
-0.4665871 and if it
-0.6212109 and if you
-1.887017 and if only
-1.898526 and if faith
-0.4997445 and out of
-1.456722 and out as
-1.486375 and out building
-0.5728681 and would have
-1.306158 and never found
-1.310037 and never makes
-1.665001 and there it
-0.2942846 and there was
-1.656389 and there he
-0.4729324 and who <unk>
-1.130359 and who was
-1.335634 and who can
-1.680691 and who did
-0.6473051 and other <unk>
-1.441373 and other nice
-1.441912 and other invisible
-1.346673 and always had
-1.361742 and always there
-1.336911 and always as
-1.340859 and as it
-1.591007 and as for
-1.437358 and as far
-1.15889 and as soon
-1.043819 and were driving
-0.9508045 and tell the
-0.9942145 and tell me
-0.6143827 and white and
-1.110126 and over <unk>
-1.455209 and over us
-1.217144 and over again
-1.73462 and his best
-1.726962 and his three
-0.6461646 and his wife
-1.427543 and his hand
-1.029947 and went in
-1.054555 and went over
-1.40311 and went presently
-1.329369 and so in
-1.505703 and so run
-1.38199 and so were
-0.8868647 and seeing him
-0.8682017 and bright </s>
-0.8894294 and knew what
-0.9905919 and he <unk>
-0.6694253 and he had
-1.382888 and he could
-2.009158 and he never
-2.130785 and he are
-2.156675 and he set
-2.154256 and he isn't
-2.01876 and he soon
-1.829498 and he turned
-1.828928 and he began
-2.017879 and he became
-2.160328 and he placed
-0.4260785 and because i
-0.8022182 and which he
-1.022829 and now this
-0.6398532 and matthew cuthbert
-1.071658 and why the
-1.38209 and why was
-1.136296 and why do
-0.8931218 and asked him
-0.8902456 and about them
-0.9960792 and here is
-1.277276 and here she
-0.9432973 and half out
-1.008422 and three look
-0.8825001 and driving in
-1.139189 and have a
-1.604808 and have nothing
-1.44955 and have made
-1.601585 and have some
-0.9083908 and dressed he
-0.9198678 and often lost
-0.9612563 and given every
-0.5703178 and home and
-0.7138027 and must <unk>
-0.7272703 and unusual which
-1.021023 and after some
-0.5077446 and find out
-1.41175 and marilla are
-1.407515 and marilla were
-1.41818 and marilla don't
-0.9506393 and he's coming
-0.9771164 and gone half
-0.595294 and take the
-1.035049 and more nearly
-0.9941384 and long iron
-1.287242 and made him
-1.307218 and made inquiries
-0.2437133 and silent as
-0.9891034 and since sitting
-0.964441 and off to
-0.7769075 and i'm so
-0.379805 and what <unk>
-1.508523 and what does
-2.177185 and i tell
-0.9438146 and i have
-2.175984 and i go
-1.475525 and i must
-1.925239 and i won't
-1.700021 and i know
-2.037096 and i used
-1.471716 and i do
-2.168845 and i came
-2.184464 and i seemed
-2.191867 and i enjoyed
-2.190625 and i haven't
-2.189385 and i wanted
-2.040595 and i beheld
-0.4735278 and did not
-0.9440421 and living with
-0.3307273 and such a
-1.276606 and said i'll
-1.339953 and said how
-0.8317879 and stepped in
-1.077139 and when the
-1.030138 and when she
-1.036029 and when we
-1.081801 and land ladies
-1.057053 and land as
-0.5704324 and rose </s>
-1.210753 and rose the
-1.2805 and rose up
-1.233489 and no one
-1.336439 and no mistake
-1.018324 and much reproach
-0.8981792 and they had
-1.603805 and they of
-1.552335 and they went
-1.556091 and they both
-1.553739 and they saw
-1.752335 and they will
-0.3660476 and look at
-1.241548 and then </s>
-1.102334 and then the
-1.568383 and then a
-1.773647 and then of
-1.429286 and then she
-0.5461168 and then they
-1.973428 and then nova
-1.963924 and then myself
-0.9663091 and get in
-0.5017942 and very <unk>
-0.6936914 and neat and
-0.719498 and precise was
-1.038605 and do know
-1.535417 and you can
-1.331501 and you know
-1.700507 and you weren't
-1.534993 and you don't
-1.607151 and you see
-1.807513 and you haven't
-0.3179015 and left the
-1.442774 and left no
-0.1824213 and nodding <unk>
-0.1767932 and looked at
-0.8152964 and west through
-0.9019436 and looking <unk>
-0.8755068 and laid it
-0.9774107 and some of
-1.036251 and only make
-1.022313 and how much
-1.039399 and your sister
-0.9416365 and perhaps this
-0.8709047 and although he
-0.9375648 and thin also
-0.8614994 and gray in
-0.4665844 and two <unk>
-0.7077313 and developed in
-1.388834 and saw but
-1.41633 and saw again
-1.427232 and saw lights
-0.06583646 and instead of
-0.8197282 and turning to
-0.9709169 and french of
-1.026911 and french would
-0.4379034 and broke off
-0.9184905 and saying something
-0.6825953 and london </s>
-1.039123 and we shall
-1.698417 and my children
-1.69923 and my great
-1.698417 and my voice
-1.702497 and my lord
-1.703317 and my uncle
-0.8072671 and sleep <unk>
-0.8588523 and sleep in
-0.8385991 and nights i
-0.9695429 and young enough
-0.7332564 and thirty seventh
-1.039664 and will oblige
-0.8883891 and took <unk>
-0.2315378 and nearly <unk>
-0.8095048 and don't mind
-0.984444 and strange harsh
-0.8766133 and another and
-1.246159 and another flowed
-0.6984746 and i've never
-0.9004971 and see if
-1.177262 and gave to
-0.9663095 and gave her
-0.8168483 and liked within
-1.151045 and poor </s>
-1.232172 and poor it
-0.2410265 and under the
-0.9212496 and sweet play
-0.7323596 and purple while
-0.7798696 and again a
-0.7332564 and stooping forward
-0.9319926 and full in
-0.9517514 and twenty seventh
-0.8039818 and expression she
-0.9072427 and waiting was
-0.8139045 and dropped back
-0.6969822 and charge the
-0.8008152 and orphans <unk>
-0.8222394 and demand of
-0.7564252 and groaned </s>
-0.9840999 and turned up
-0.4908048 and hat and
-0.4244233 and beneath the
-0.7175146 and pronounced that
-0.8773171 and stood to
-0.9059047 and held his
-0.7247415 and imagine things
-1.195933 and let marilla
-0.3677444 and let us
-0.1158547 and belong to
-0.1927524 and partly because
-0.7242451 and bones had
-0.9271158 and want </s>
-0.3353388 and against the
-0.7175146 and imagined that
-0.7347887 and wear <unk>
-1.190696 and kept by
-1.206802 and kept looking
-1.209865 and kept sending
-0.7128401 and boots i
-0.94604 and black in
-0.5455231 and wished to
-1.170823 and mine is
-1.175295 and mine were
-0.7755056 and surprise to
-0.9694556 and light a
-0.6714646 and told him
-0.6825953 and music </s>
-0.1127503 and moral <unk>
-0.7331282 and free expression
-0.2217932 and appear to
-0.7529432 and money </s>
-0.786383 and says in
-0.9034308 and evil at
-0.6825953 and mary </s>
-0.7305716 and hurried back
-0.897965 and thus fixed
-0.7696089 and sword and
-0.7564252 and prayers </s>
-0.7304441 and brilliant man
-0.9212496 and foot ball
-0.7267647 and gain by
-0.7564252 and higher </s>
-0.9049411 and water <unk>
-1.275924 and water brought
-0.8802198 and dead </s>
-0.163262 and sarah <unk>
-0.9431278 and furnished with
-0.9553581 and furnished an
-0.8171593 and heat hot
-0.9240243 and savareen had
-0.7223651 and disturbed she
-0.9107023 and leave no
-0.7331282 and literally warm
-0.8539028 and conversation had
-0.6642711 and afterwards <unk>
-0.8065552 and deposited on
-0.8171593 and saddle furnished
-0.7005358 and character of
-0.8092966 and throw me
-0.7282834 and funds were
-0.8170038 and fence corner
-0.8168483 and merely whispered
-0.9522234 and bobby turned
-1.078097 and lay down
-1.064964 and lay him
-0.7303167 and movement could
-0.9448266 and became a
-0.7777731 and chief of
-0.8911232 and glanced from
-0.8261097 and grave </s>
-0.8933053 and sprang into
-0.728664 and handed bobby
-0.2158696 and easy <unk>
-0.3585886 and entered the
-1.08466 and entered <unk>
-0.7347887 and bobby's <unk>
-0.7216153 and glancing at
-0.8168483 and hurry toward
-0.7005358 and torn of
-0.9435054 and death were
-0.7735312 and slowly the
-0.8943819 and pocket them
-0.8163304 and changed life
-0.4361044 and followed by
-0.6969822 and watched the
-0.9379756 and thy years
-0.9375061 and doth first
-0.847016 and send for
-0.7207698 and indeed no
-0.8629703 and villefort without
-0.7317202 and presented himself
-0.6936914 and marriage and
-0.4286954 and standing in
-0.7315924 and beauchamp poor
-0.09898282 and monte cristo
-0.7301894 and obtain some
-0.7332564 and magnificent estate
-0.6825953 and listen </s>
-0.7113743 and fifty a
-0.7281567 and danced about
-0.6642711 and yellow <unk>
-0.7175146 and danger it
-0.7304441 and henry might
-0.7332564 and physical reactions
-0.6825953 and screaming </s>
-0.8045859 and fear but
-0.6936914 and fruits and
-0.8412967 and wetted one
-0.8494313 and wetted both
-0.1921248 and encouraged by
-0.1871365 and grew and
-0.7304441 and gush after
-0.9620391 and shone strange
-0.9622563 and shone full
-1.010373 and pulled with
-0.3573416 and pulled and
-0.9582466 and rowed and
-1.032495 and rowed though
-0.7986513 and cacambo </s>
-1.082088 and martin seems
-1.082374 and martin especially
-0.05533902 and pistachio nuts
-0.7209915 and pierced with
-0.8496906 and show you
-0.1187424 and mistress fitzooth
-0.7113743 and forthwith a
-0.7328718 and rioting cried
-1.003715 and robin felt
-1.016201 and stuteley had
-1.023645 and stuteley who
-0.7090594 ladies the <unk>
-0.888893 ladies <unk> and
-0.8042751 ladies who had
-0.8497379 ladies asked </s>
-0.5648552 ladies waiting room
-0.472883 ladies whose <unk>
-0.8333645 by missus savareen
-0.4627249 by the <unk>
-2.398762 by the brook
-2.119937 by the time
-2.212483 by the first
-2.269597 by the heavy
-2.331948 by the priest
-2.400758 by the realization
-2.398762 by the restless
-2.335376 by the christian
-2.398762 by the sword
-2.394798 by the sarah
-2.400758 by the intellect
-2.095219 by the squire
-2.394798 by the arm
-2.400758 by the touches
-2.335376 by the noise
-2.333659 by the sheriff's
-1.012678 by <unk> </s>
-2.165399 by <unk> one
-1.497662 by <unk> the
-0.4854792 by <unk> <unk>
-1.484784 by <unk> and
-1.613409 by <unk> of
-2.100454 by <unk> so
-2.00752 by <unk> him
-2.279576 by <unk> information
-2.27592 by <unk> together
-2.303237 by <unk> fire
-2.305181 by <unk> lower
-0.1816917 by a <unk>
-1.86474 by a brook
-1.896288 by a faint
-1.056846 by and movement
-0.8463119 by that <unk>
-0.3879234 by an <unk>
-0.9867572 by her own
-0.727036 by all the
-0.99832 by this time
-0.5793359 by their <unk>
-0.6612606 by his side
-1.67796 by his hair
-0.661383 by his default
-1.049071 by so brave
-0.8861346 by seeing her
-0.9652435 by him at
-0.9981247 by woman higher
-1.012665 by such impossible
-0.7358429 by men and
-0.9982663 by themselves trees
-0.1127503 by narrow <unk>
-0.8689696 by saying to
-0.9051138 by me the
-1.499865 by me after
-1.494076 by me bobby
-0.9981247 by another sword
-0.355695 by new <unk>
-0.5640213 by several <unk>
-0.7564252 by surprise </s>
-0.7253771 by calling him
-0.6936914 by mothers and
-0.774865 by book <unk>
-1.016072 by water covered
-0.8190189 by heaven <unk>
-0.7077313 by figures in
-0.8841287 by savareen to
-0.7564252 by lapierre </s>
-0.9204595 by rawlins started
-0.7960131 by ill <unk>
-0.3334785 by falling in
-0.1871365 by thomson and
-0.790753 by leaving a
-0.6969822 by weight the
-1.027452 brook in its
-0.700253 brook was <unk>
-1.036633 brook could run
-0.2600956 that missus rachel
-0.9853758 that is the
-1.001056 that is a
-1.456429 that is in
-1.848225 that is worthy
-1.843571 that is being
-1.650313 that is your
-1.639762 that is my
-0.5823568 that the <unk>
-2.078043 that the people
-2.23504 that the big
-2.289562 that the expected
-2.228925 that the sight
-2.179775 that the mouth
-2.135626 that the case
-2.296601 that the chin
-2.238131 that the forehead
-2.296601 that the object
-2.296601 that the promise
-2.134403 that the story
-2.021261 that the district
-2.296601 that the sin
-2.29483 that the written
-0.5415279 that <unk> <unk>
-1.770233 that <unk> with
-2.193092 that <unk> place
-2.002911 that <unk> was
-2.157854 that <unk> well
-2.075631 that <unk> so
-1.982696 that <unk> him
-1.158374 that <unk> me
-2.281332 that <unk> deny
-2.280357 that <unk> expression
-2.177382 that <unk> against
-2.221977 that <unk> indeed
-1.263711 that a man
-1.440139 that a bad
-1.496386 that a smile
-0.8496898 that and the
-1.200742 that had the
-1.632798 that had its
-1.354425 that had already
-1.634415 that had lost
-0.5355745 that in the
-0.1998294 that of the
-1.023666 that old wine
-1.390384 that it <unk>
-0.6217836 that it was
-1.768711 that it all
-0.7508246 that it would
-1.786146 that it must
-1.09617 that was the
-1.317436 that was to
-1.573804 that was nothing
-1.640414 that was enough
-0.8895059 that to the
-1.322723 that to escape
-0.3879234 that an <unk>
-0.9112173 that reached him
-0.7830161 that for <unk>
-1.003209 that even yet
-1.008222 that without any
-0.4477372 that on the
-1.188516 that on earth
-0.9688363 that everything went
-0.9414293 that passed from
-0.9820203 that all <unk>
-1.169995 that all her
-0.3439325 that this <unk>
-1.513831 that this horrible
-1.158277 that she <unk>
-0.5219921 that she had
-1.52102 that she could
-1.519615 that she would
-1.261942 that she said
-1.966249 that she couldn't
-1.967821 that she preferred
-1.335882 that if she
-1.011903 that if i
-0.711337 that if you
-0.6173808 that would be
-0.6502757 that would have
-0.9635293 that there had
-1.005257 that were the
-1.330923 that were natural
-0.1876474 that crossed the
-0.8981149 that hill road
-0.2302777 that man was
-0.7123098 that his own
-1.504092 that his mind
-1.807369 that his sleep
-1.810553 that his doubts
-1.810553 that his weariness
-1.137451 that so i
-1.229788 that so much
-1.491163 that so bobby
-1.27779 that he <unk>
-0.6255234 that he had
-0.4536536 that he was
-1.210783 that he could
-2.286732 that he ought
-2.420243 that he meant
-2.172967 that he might
-2.096235 that he has
-2.276769 that he may
-2.103333 that he should
-2.416831 that he wished
-0.4260785 that because i
-1.007439 that which was
-1.489511 that which nothing
-1.490264 that which still
-0.931507 that matthew had
-0.7119325 that day </s>
-1.024037 that might make
-0.989744 that didn't happen
-0.9177053 that together might
-1.023091 that good beyond
-0.6763868 that green light
-1.013623 that after so
-1.056567 that marilla cuthbert
-0.5070988 that marilla was
-1.543551 that marilla must
-0.9154548 that made her
-0.9148281 that i'm going
-1.289867 that i'm dressed
-1.040534 that what we
-1.181382 that i <unk>
-1.598312 that i had
-1.662034 that i can
-2.164586 that i knew
-2.142613 that i now
-0.9369839 that i have
-2.144659 that i might
-1.845887 that i didn't
-1.775013 that i think
-2.025757 that i gave
-1.928753 that i should
-0.9295855 that i am
-1.02269 that has happened
-0.4735278 that did not
-1.006115 that men had
-1.455275 that when for
-0.9601149 that when he
-1.103356 that when you
-0.6482348 that no <unk>
-1.337073 that no prayers
-1.17416 that they <unk>
-0.5615479 that they had
-1.755925 that they who
-1.588198 that they ever
-1.588198 that they don't
-0.9831881 that nor night
-1.003942 that yard </s>
-1.109868 that yard over
-0.8328224 that then i
-1.657983 that you had
-1.415762 that you would
-1.535417 that you can
-1.807513 that you belong
-1.695571 that you want
-1.808308 that you cost
-0.9081303 that some day
-0.6128239 that your <unk>
-0.9348007 that sight was
-0.9819132 that too for
-0.5259764 that two <unk>
-1.300626 that two living
-1.037808 that ever were
-1.285169 that ever bore
-0.945502 that girl and
-1.037701 that we must
-0.6219205 that my <unk>
-0.9204595 that can't fall
-0.5350912 that does not
-0.8581697 that near to
-1.011386 that poor young
-0.3377906 that touched his
-0.9495828 that women gave
-0.9137735 that prince edward
-0.1158547 that failed to
-0.6642711 that brisk <unk>
-0.9970864 that question all
-0.8661805 that tree leaning
-0.9478606 that way </s>
-0.8940694 that several of
-0.9416365 that beautiful what
-0.9354584 that boat because
-0.7777731 that flash of
-0.3710305 that gentleman who
-0.6767369 that mine eye
-1.134895 that moment in
-1.163772 that moment was
-0.9866202 that jesus is
-0.8841287 that truth to
-0.72765 that building up
-0.6825953 that realization </s>
-0.8513768 that money <unk>
-1.250929 that money excuse
-1.012187 that these were
-0.6936914 that interview and
-0.6356225 that bobby <unk>
-1.006951 that remained was
-1.033518 that remained open
-0.6936914 that maria and
-0.8555992 that sum but
-0.6936914 that dismal and
-0.8448549 that makes it
-0.6936914 that weak and
-1.020404 that keeps one
-1.02868 that keeps back
-0.455317 that thou <unk>
-1.108255 that thou in
-0.7270174 that drew from
-0.1881954 that persons of
-0.8971198 that sir he
-0.7850687 that affair </s>
-0.807911 that affair of
-0.7331282 that ancient fence
-0.7301894 that remark again
-0.9107023 that chamber but
-1.003294 that robin alone
-0.4351349 that warrenton had
-0.5401022 that geoffrey for
-1.02082 had just time
-0.6055669 had the <unk>
-1.824236 had the buggy
-1.896198 had the interesting
-1.868586 had the care
-1.893304 had the doctor
-1.896924 had the double
-1.296776 had <unk> </s>
-1.415461 had <unk> the
-1.4023 had <unk> and
-2.045049 had <unk> had
-2.155225 had <unk> away
-1.84943 had <unk> it
-2.00938 had <unk> out
-2.119214 had <unk> over
-1.14546 had <unk> his
-0.8896391 had <unk> him
-2.120065 had <unk> no
-2.216566 had <unk> behind
-2.279999 had <unk> stolen
-2.278865 had <unk> spent
-0.5174437 had a <unk>
-1.727369 had a pretty
-1.517408 had a good
-1.729575 had a bad
-1.881528 had a right
-1.68814 had a bit
-0.3068365 had its <unk>
-0.8933077 had in a
-1.225039 had in my
-0.8501873 had of <unk>
-1.095465 had of his
-1.212122 had it </s>
-0.4397437 had it been
-1.749005 had to pass
-1.514575 had to give
-1.717073 had to nod
-0.6619575 had to wear
-1.041036 had an uncomfortable
-1.019022 had but those
-0.5445531 had reached the
-1.236282 had for his
-1.346362 had for women
-1.670763 had not the
-1.528019 had not a
-0.7771326 had not been
-2.225323 had not any
-2.04589 had not far
-2.267713 had not worn
-0.9558573 had not walked
-2.264754 had not wished
-0.9555679 had not lost
-0.9561469 had not stabbed
-1.008077 had without your
-0.9307681 had her eyes
-0.3975942 had on the
-0.9379226 had passed her
-1.006848 had yet come
-1.234176 had all but
-1.334371 had all been
-0.627875 had found in
-1.050468 had she been
-0.1824213 had knitted <unk>
-1.763391 had never done
-0.7422687 had never been
-1.763391 had never set
-1.766565 had never expected
-1.758152 had never thought
-1.769763 had never rowed
-1.001821 had always suffered
-0.9645448 had done him
-1.053356 had his exclamation
-1.048445 had so often
-1.025025 had he looked
-1.233693 had heard her
-1.235129 had heard him
-1.145197 had asked for
-1.156768 had asked him
-1.159591 had asked my
-0.4808702 had been <unk>
-1.933586 had been a
-1.160412 had been in
-2.177096 had been done
-2.145249 had been made
-2.167485 had been such
-2.184942 had been seen
-2.184942 had been yesterday
-2.163699 had been ever
-1.749896 had been watching
-2.19092 had been carried
-1.284854 had been stolen
-2.186925 had been fixed
-2.19092 had been impaled
-2.19092 had been strangled
-0.8755068 had known that
-0.6910501 had any <unk>
-1.014666 had nothing left
-0.9490719 had given him
-1.023786 had good cause
-0.6945913 had gone to
-0.6669204 had long <unk>
-1.23387 had long been
-1.063439 had made the
-1.113418 had made up
-0.9088363 had taken the
-1.256072 had said </s>
-1.313235 had said that
-1.49801 had said they
-1.066803 had got into
-1.367522 had got as
-1.378714 had got so
-0.8167447 had actually taken
-0.879672 had seen </s>
-0.9433259 had you to
-0.1989139 had left the
-0.4799356 had looked at
-0.7331282 had fairly closed
-0.7134302 had some <unk>
-1.30044 had some chance
-1.050728 had only one
-1.319086 had only paid
-0.9167259 had expected missus
-0.8160717 had existed between
-0.9879734 had too but
-1.195018 had ever <unk>
-1.426071 had ever expected
-1.428184 had ever beheld
-0.3436837 had five millions
-0.8802198 had returned </s>
-0.5271265 had felt <unk>
-0.9913396 had received a
-1.020404 had received no
-0.8889624 had soon <unk>
-0.989744 had once asserted
-0.9199286 had brought in
-0.8717833 had none of
-1.021648 had worn from
-1.030456 had worn ever
-0.1158547 had failed to
-1.397776 had come out
-1.408051 had come upon
-1.413719 had come across
-0.9342344 had walked some
-0.8998348 had let <unk>
-0.7232475 had already <unk>
-1.496342 had already gone
-1.500824 had already worked
-1.499539 had already placed
-1.502113 had already pierced
-0.6702797 had lost her
-0.5619471 had fallen in
-1.061892 had fallen at
-0.7564252 had arrived </s>
-0.899652 had started for
-0.7619956 had ridden <unk>
-0.8421197 had ridden from
-0.9212329 had disappeared in
-0.9532247 had disappeared from
-0.8148319 had apparently been
-0.8636624 had slept little
-0.3004996 had tried to
-0.3173239 had entered the
-0.9518045 had suddenly cleared
-0.8573023 had paid me
-0.6969822 had increased the
-0.7755056 had paused to
-0.1927708 had imposed upon
-0.7314647 had torn off
-0.187903 had spoken to
-0.3377906 had changed his
-0.7304441 had executed their
-0.187903 had offered to
-0.8983399 had amory considered
-0.7191254 had hoped for
-1.234341 its <unk> </s>
-1.345787 its <unk> the
-1.333523 its <unk> and
-0.9470378 its <unk> had
-1.968095 its <unk> away
-2.044154 its <unk> looked
-2.051422 its <unk> walk
-2.030613 its <unk> science
-2.05289 its <unk> shape
-0.739893 its place in
-0.8168483 its earlier course
-0.4391686 its heavy <unk>
-0.8170038 its restless spirit
-0.5764058 its silence </s>
-0.7244964 its match on
-0.7332564 its brevity pointed
-0.6635201 its bed <unk>
-0.8162269 its grasp suddenly
-1.168123 away and i
-1.355471 away and villefort
-1.232473 away back in
-1.289063 away back here
-0.1899837 away in the
-1.056911 away to follow
-0.9385406 away from her
-1.021986 away she went
-0.7512693 away as he
-0.9313857 away so much
-0.4920536 away coming to
-1.243106 away they went
-1.337205 away they swam
-0.8871844 away then he
-0.3949475 away being <unk>
-0.8197282 away somewhat to
-0.5765756 away while the
-0.4908048 away quietly and
-0.8626305 back the <unk>
-1.376821 back the water
-1.532504 back the color
-0.9578998 back <unk> <unk>
-1.345114 back <unk> more
-0.789134 back into his
-0.9895961 back with him
-1.25275 back and to
-1.34966 back and very
-0.5355745 back in the
-0.4738989 back to the
-1.437887 back to his
-1.653737 back to gamewell
-0.855272 back but he
-1.318972 back at that
-1.232864 back at green
-0.9932728 back from smithtown
-0.9536579 back all her
-1.040339 back were two
-0.7006021 back he <unk>
-0.9223364 back here by
-1.04132 back i turned
-0.4055043 back along the
-0.9175092 back yard came
-0.7327689 back then the
-1.046937 back my clothes
-0.7955644 back graham answered
-0.9897438 in just a
-0.6190632 in the <unk>
-1.885765 in the hollow
-2.655666 in the woods
-1.530136 in the old
-2.808961 in the well
-2.201636 in the other
-2.770628 in the evening
-2.956772 in the distance
-2.533965 in the day
-2.778611 in the lane
-2.927427 in the far
-1.925447 in the yard
-2.620689 in the left
-2.557528 in the spring
-1.448505 in the world
-2.629173 in the right
-2.938928 in the street
-2.950742 in the matter
-2.956772 in the end
-2.956772 in the paper
-2.770628 in the fire
-2.555113 in the case
-2.475521 in the second
-2.938928 in the waiting
-2.962886 in the broad
-2.626326 in the way
-2.962886 in the soil
-1.635069 in the boat
-1.926579 in the golden
-2.774601 in the open
-2.962886 in the discussion
-2.93314 in the hands
-2.962886 in the hereafter
-2.555113 in the car
-1.284082 in the water
-2.786743 in the fourth
-2.774601 in the condition
-2.962886 in the neighborhood
-1.927145 in the interior
-2.782658 in the damp
-2.778611 in the top
-2.944795 in the days
-2.869101 in the still
-1.926579 in the courtyard
-1.81806 in the lake
-2.475521 in the court
-2.778611 in the direction
-2.559956 in the cedars
-2.962886 in the mournful
-1.869435 in the hall
-2.646654 in the forest
-2.962886 in the winding
-2.786743 in the reception
-2.786743 in the subway
-2.962886 in the neighbourhood
-2.786743 in the rock
-1.906503 in the garden
-2.962886 in the eternal
-1.190827 in avonlea missus
-0.7731627 in avonlea and
-0.5298581 in <unk> <unk>
-1.859965 in <unk> that
-1.703663 in <unk> in
-1.979871 in <unk> it
-1.579565 in <unk> to
-1.286565 in <unk> but
-1.305377 in <unk> or
-2.426674 in <unk> voices
-2.027336 in <unk> his
-2.317999 in <unk> has
-1.319346 in <unk> said
-2.354347 in <unk> things
-2.295924 in <unk> question
-2.429096 in <unk> procession
-2.427883 in <unk> princes
-0.4738157 in a <unk>
-1.577694 in a little
-2.570117 in a circle
-2.573303 in a buggy
-1.513546 in a wild
-1.221123 in a great
-2.230427 in a body
-2.029195 in a very
-2.573303 in a neat
-2.5576 in a hard
-2.570117 in a narrow
-2.560695 in a street
-2.368872 in a different
-2.372885 in a tone
-2.5576 in a breath
-2.573303 in a fashion
-2.573303 in a situation
-2.221801 in a way
-2.570117 in a delightful
-2.570117 in a flash
-2.573303 in a low
-2.573303 in a sleeping
-2.570117 in a cash
-2.368872 in a manner
-2.563813 in a forest
-2.573303 in a state
-2.372885 in a few
-0.3710693 in with the
-1.319226 in with you
-1.647287 in and out
-1.588917 in and as
-1.743122 in and half
-1.740985 in and gone
-1.702859 in and entered
-1.532423 in that </s>
-1.551766 in that is
-0.47162 in that <unk>
-1.799776 in that affair
-1.881415 in that chamber
-0.3686761 in its <unk>
-1.476493 in its earlier
-1.474825 in its silence
-1.474409 in its bed
-0.8686654 in in his
-1.659158 in it with
-1.466041 in it but
-1.800944 in it even
-1.587132 in it she
-1.807275 in it four
-1.606776 in it bobby
-1.324844 in an asylum
-1.192564 in an instant
-1.004687 in those desires
-0.9990852 in time <unk>
-0.7583416 in time to
-1.019234 in not having
-0.1846988 in at the
-1.242201 in her </s>
-0.9495457 in her <unk>
-1.626901 in her of
-1.849213 in her position
-1.845902 in her bed
-1.850323 in her laugh
-1.850323 in her chamber
-0.5303713 in everything that
-0.605541 in all the
-0.654429 in all <unk>
-1.795533 in all conscience
-1.794939 in all human
-0.9304412 in this <unk>
-1.962245 in this place
-1.972562 in this best
-1.928476 in this they
-0.9563752 in this world
-1.974888 in this matter
-1.976056 in this uncomfortable
-0.9553705 in this way
-0.6877656 in their <unk>
-1.470214 in their turn
-1.472237 in their faces
-0.7698464 in white with
-0.8894294 in bloom this
-1.007503 in man a
-0.4728309 in his <unk>
-2.33664 in his whole
-2.138398 in his life
-2.137287 in his day
-0.9752771 in his mind
-2.280701 in his then
-2.010183 in his voice
-1.755995 in his hand
-1.646101 in his eyes
-2.145124 in his position
-2.014343 in his attention
-1.020011 in his pocket
-0.6273351 in so <unk>
-0.7332564 in early june
-0.9538831 in him <unk>
-1.340799 in him thy
-0.6139804 in which the
-1.501611 in which a
-1.135493 in which he
-1.133833 in which i
-1.527838 in which you
-0.9912408 in life this
-0.6910501 in any <unk>
-0.7248736 in putting her
-0.9778325 in pretty near
-0.978343 in what you
-0.1346139 in such a
-0.9213155 in deep converse
-0.8719051 in when <unk>
-1.047518 in no danger
-0.8418034 in then said
-1.300058 in some lights
-1.300058 in some manner
-1.479843 in your paper
-1.287777 in your hands
-1.289574 in your service
-0.1881954 in spite of
-0.686059 in sight <unk>
-1.164866 in sight being
-0.05533902 in nova scotia
-0.731337 in earnest marilla
-0.4110283 in exclamation <unk>
-0.8171462 in hopeton in
-0.8477587 in hopeton last
-0.8070109 in thinking so
-0.8261097 in winter </s>
-1.367123 in fact the
-1.451879 in fact was
-0.6909792 in fact he
-1.507069 in fact returned
-1.508213 in fact nearly
-0.9269764 in me that
-0.6222178 in my <unk>
-1.935248 in my seeing
-0.9104705 in my life
-1.5479 in my mind
-1.701336 in my name
-1.438898 in my heart
-1.93853 in my breast
-0.9589689 in sleep i
-0.8496906 in years you
-0.8187088 in doing <unk>
-0.7925133 in england i
-0.8162269 in people's having
-0.400977 in new <unk>
-0.5965913 in new york
-0.3513586 in family <unk>
-0.7321037 in summer life
-0.9137735 in prince edward
-0.9492957 in full for
-1.014733 in hand than
-1.002218 in question before
-0.8032278 in spirit as
-1.240213 in short the
-1.13529 in short <unk>
-1.246021 in short to
-1.37321 in short our
-0.9677338 in others so
-1.021002 in our story
-0.3256418 in let us
-0.1094476 in love with
-0.9621243 in bank notes
-0.9628008 in black with
-0.4472576 in answer </s>
-0.9195067 in apollo make
-0.9977158 in jesus mouth
-0.8870427 in search of
-0.7564252 in freedom </s>
-0.728664 in jail bobby
-0.7777731 in quest of
-0.4382934 in less than
-0.7600351 in millions of
-0.8662662 in these people
-0.7327437 in gait each
-0.6642711 in department <unk>
-0.9055958 in general <unk>
-1.003115 in general that
-0.7619956 in vain <unk>
-0.8501021 in vain lapierre
-0.187903 in according to
-0.1881954 in rear of
-0.8152964 in mud put
-0.9711367 in every bar
-0.955972 in bed for
-0.8171593 in walking compelled
-1.1291 in smithtown for
-1.113125 in smithtown i
-1.16535 in smithtown yesterday
-0.2221093 in front of
-1.056952 in itself </s>
-0.3695619 in itself <unk>
-0.7005358 in consequence of
-0.1824213 in supreme <unk>
-0.7309541 in delight how
-0.1853896 in study </s>
-0.8008152 in twelve <unk>
-0.730699 in france these
-0.7564252 in consolation </s>
-0.7327437 in transacting business
-0.9384455 in nottingham fair
-0.8372043 in sooth his
-0.8465917 in sooth i'm
-1.051898 woods with dark
-0.5810188 woods of the
-1.024712 woods he asked
-0.7751533 woods when he
-1.360784 of one who
-1.801429 of one which
-1.612113 of one two
-0.7317148 of one hundred
-1.838202 of one measure
-1.623417 of one leg
-0.2601638 of missus <unk>
-0.5023739 of the <unk>
-2.698606 of the ladies
-1.403015 of the old
-2.265387 of the door
-3.073577 of the church
-2.701988 of the rest
-1.853716 of the other
-1.872044 of the house
-3.050252 of the bloom
-1.957894 of the sun
-2.500423 of the best
-2.596217 of the buggy
-1.973645 of the day
-2.69525 of the worthy
-2.84682 of the lane
-2.310205 of the night
-1.993961 of the men
-2.856403 of the opinion
-2.832832 of the body
-3.057889 of the appearance
-2.851585 of the mystery
-3.065662 of the usual
-2.506874 of the world
-3.057889 of the earth
-2.832832 of the head
-2.675643 of the right
-2.84682 of the week
-2.84682 of the island
-2.48988 of the child
-3.065662 of the people's
-3.042747 of the family
-2.430988 of the air
-3.028115 of the women
-3.057889 of the small
-2.432811 of the others
-3.065662 of the tree
-2.374321 of the bank
-2.425565 of the most
-2.682081 of the black
-2.851585 of the birthday
-2.856403 of the universe
-3.065662 of the searching
-2.593564 of the moon
-2.851585 of the firm
-1.761277 of the evidence
-2.851585 of the numerous
-1.776958 of the water
-3.073577 of the sensorium
-2.856403 of the fourth
-2.851585 of the missing
-2.056473 of the swamp
-2.37592 of the district
-2.685336 of the bed
-2.506874 of the court
-3.073577 of the front
-3.073577 of the impression
-3.073577 of the smoke
-2.856403 of the speaker
-2.705396 of the stairs
-3.065662 of the rich
-3.073577 of the event
-2.84682 of the baron
-3.065662 of the consolation
-3.073577 of the order
-2.84682 of the six
-2.056473 of the ancient
-2.856403 of the subway
-3.073577 of the princesses
-3.073577 of the throat
-2.708831 of the balcony
-2.708831 of the prince's
-3.073577 of the dying
-2.851585 of the garden
-3.073577 of the soul
-3.073577 of the strangled
-1.777241 of the tent
-3.073577 of the rioting
-2.856403 of the sheriff
-2.598887 of the hut
-0.7731627 of avonlea and
-1.198246 of avonlea today
-0.8275723 of <unk> </s>
-1.850292 of <unk> missus
-2.518209 of <unk> is
-1.480644 of <unk> the
-0.600703 of <unk> <unk>
-1.671457 of <unk> a
-1.026807 of <unk> and
-2.041546 of <unk> that
-2.47125 of <unk> had
-1.587333 of <unk> in
-1.783637 of <unk> was
-1.721561 of <unk> to
-2.856486 of <unk> past
-2.359566 of <unk> or
-2.405304 of <unk> their
-1.870545 of <unk> white
-2.476571 of <unk> so
-2.951021 of <unk> june
-2.145822 of <unk> he
-2.938436 of <unk> next
-1.803878 of <unk> which
-2.691485 of <unk> here
-2.745823 of <unk> made
-2.853925 of <unk> father
-2.6592 of <unk> off
-2.607032 of <unk> when
-2.911387 of <unk> too
-2.789768 of <unk> yesterday
-2.941548 of <unk> gray
-2.94784 of <unk> we're
-2.836414 of <unk> five
-2.941548 of <unk> winter
-2.776752 of <unk> things
-2.864258 of <unk> birth
-2.86688 of <unk> power
-2.869518 of <unk> de
-2.944683 of <unk> laughter
-1.880494 of <unk> disgust
-2.951021 of <unk> leaves
-2.94784 of <unk> sons
-2.869518 of <unk> singing
-2.373459 of a one
-0.5342396 of a <unk>
-1.222103 of a little
-1.629425 of a man
-2.319338 of a busy
-2.503396 of a given
-1.983928 of a long
-2.317278 of a real
-2.315227 of a sense
-1.912285 of a boy
-2.313185 of a wife
-2.299159 of a child
-2.315227 of a case
-2.309132 of a short
-2.519467 of a large
-2.516205 of a live
-2.069771 of a god
-2.519467 of a moral
-2.522754 of a subject
-2.073273 of a myth
-2.506563 of a dead
-2.522754 of a lake
-2.319338 of a million
-2.17836 of a cry
-2.519467 of a rising
-2.166577 of a princess
-2.311154 of a nottingham
-2.522754 of a ladder
-1.637791 of that old
-1.634309 of that good
-1.110627 of that i
-1.643825 of that realization
-0.3068365 of its <unk>
-1.005697 of place she
-0.5114909 of it </s>
-1.489739 of it had
-1.694092 of it but
-1.989942 of it if
-2.137619 of it or
-2.142652 of it who
-2.008122 of it it's
-1.967729 of it said
-2.090265 of it you
-2.173048 of it question
-1.876635 of it bobby
-0.2771957 of an <unk>
-1.404099 of an old
-1.289576 of an orphan
-1.198206 of an idol
-1.820503 of an open
-1.002842 of course </s>
-1.470729 of course the
-1.548934 of course a
-1.586191 of course that
-1.596425 of course for
-1.650656 of course this
-1.617646 of course she
-0.9567496 of course he
-1.683453 of course it's
-1.609361 of course you
-1.694293 of course thank
-1.139739 of those <unk>
-1.390729 of those beings
-1.390146 of those melancholy
-0.8978152 of dark brown
-0.779288 of time </s>
-1.314509 of well dressed
-1.154546 of well bred
-1.692882 of her but
-1.610425 of her own
-1.802643 of her he
-1.961982 of her why
-1.978078 of her dress
-1.98107 of her heart
-1.985597 of her attitude
-1.758699 of her foot
-1.985597 of her fingers
-1.985597 of her passion
-0.6780688 of all the
-1.662612 of all this
-1.91869 of all people
-1.685981 of all things
-1.92934 of all possible
-1.916591 of all our
-1.934764 of all loves
-1.923982 of all robin
-1.775083 of this the
-0.2760608 of this <unk>
-1.929369 of this there
-1.96035 of this subject
-1.958007 of this forest
-1.021757 of she asked
-0.8741285 of them </s>
-1.61067 of them of
-0.7891429 of them was
-1.719356 of them as
-1.771316 of them i'm
-1.785959 of them i'd
-1.04206 of or perhaps
-1.110523 of people in
-1.092641 of people to
-1.438367 of people whose
-0.5375675 of their <unk>
-1.048627 of their own
-1.819515 of their beautiful
-1.825476 of their industry
-1.824477 of their quest
-1.82348 of their friends
-1.475165 of their efforts
-0.6201215 of other <unk>
-1.294234 of other folks
-0.7283086 of white <unk>
-2.403372 of his main
-0.5745009 of his <unk>
-1.917469 of his time
-2.394151 of his father
-2.364755 of his last
-2.409631 of his cleared
-2.103457 of his hair
-2.403372 of his mental
-2.103457 of his heart
-2.388111 of his young
-2.109731 of his grandfather
-2.394151 of his breath
-2.09269 of his room
-1.504974 of his eyes
-2.40649 of his ordeal
-2.094212 of his way
-2.105017 of his position
-2.397203 of his round
-2.409631 of his disturbed
-2.106583 of his coat
-2.409631 of his disappearance
-2.409631 of his strength
-2.105017 of his arm
-2.111314 of his tunic
-0.1187736 of turnip seed
-0.8806982 of seeing you
-0.3035393 of him </s>
-1.400956 of him <unk>
-0.8528653 of him and
-1.941193 of him his
-0.8896132 of clothes which
-0.9278651 of which the
-1.063316 of which had
-0.6516518 of matthew <unk>
-1.321554 of about ten
-1.321882 of about eleven
-1.356156 of life not
-1.367918 of life have
-1.383219 of life wetting
-0.8899184 of any <unk>
-1.206151 of any other
-1.760971 of any train
-1.759041 of any use
-1.75712 of any possible
-1.760971 of any whatever
-1.760971 of any mufti
-0.8879593 of taking a
-0.1508247 of green gables
-0.8807553 of year and
-0.8144187 of last <unk>
-1.009556 of mind or
-0.8968422 of today give
-0.8354253 of such <unk>
-0.388542 of such a
-1.407359 of such things
-0.9012941 of men and
-1.079131 of men in
-1.42967 of men around
-0.8981524 of land produced
-0.609602 of wild <unk>
-0.8171593 of bushes bent
-0.9984841 of no use
-1.321241 of being and
-1.41807 of being an
-0.9685008 of being poor
-1.432832 of being discovered
-1.025076 of very thick
-0.9206569 of ground near
-1.324979 of you the
-1.516542 of you put
-1.518987 of you prince
-1.027761 of some use
-0.6128239 of your <unk>
-0.8849691 of curiosity as
-0.9344964 of yesterday came
-0.547727 of two <unk>
-1.447739 of two old
-1.451913 of two voices
-0.1127503 of narrow <unk>
-0.601881 of afraid you
-1.262286 of five thousand
-0.3876658 of five millions
-0.8660934 of making impressions
-0.502783 of fun i
-0.7777731 of boys of
-0.704191 of earth and
-1.166558 of earth falling
-0.8938618 of winter made
-1.044838 of me to
-1.463929 of me for
-1.28029 of me he
-0.7721594 of my <unk>
-1.69923 of my own
-1.695988 of my house
-1.702497 of my second
-1.694376 of my room
-0.8157614 of speaking first
-0.8396921 of news </s>
-1.124972 of paper that
-1.082837 of paper of
-1.124972 of paper it
-0.8405649 of parents he
-0.8659193 of hope everybody
-0.9699408 of really great
-0.9979106 of poor but
-0.8615894 of influence over
-0.4067764 of breath </s>
-0.9067882 of breath <unk>
-1.366751 of breath and
-1.419209 of breath i
-1.166427 of many voices
-1.166949 of many apple
-0.7077313 of summer in
-0.8097552 of miles when
-0.7216153 of shingles at
-0.6463092 of possible worlds
-0.7696089 of spirit and
-0.7755056 of wincey to
-1.665967 of our old
-0.7249224 of our time
-1.676079 of our neighbor
-1.671382 of our hands
-1.674508 of our cash
-0.7347887 of imagination <unk>
-0.8375112 of himself for
-0.9557273 of mine which
-0.8157614 of city life
-0.9793132 of light it
-0.6144402 of god </s>
-0.8171593 of homer concerning
-1.332538 of jesus </s>
-0.4714214 of jesus the
-1.498827 of jesus appear
-0.8396921 of faith </s>
-0.9312473 of truth we
-0.8000753 of searching for
-0.4913483 of science </s>
-0.9384455 of evidence origin
-1.191926 of money a
-1.218193 of money you
-0.8665225 of evil the
-0.5494079 of herod mary
-0.8763262 of rome he
-0.7326156 of numerous dead
-0.9352833 of silence without
-1.281501 of these days
-1.282388 of these touches
-0.7077313 of insanity in
-0.7347887 of poverty <unk>
-0.8172631 of bat ball
-0.7850687 of sand </s>
-0.7619956 of sand <unk>
-1.005405 of water when
-0.8170038 of shame anger
-0.8660934 of human neighbourhood
-0.6913489 of squire <unk>
-0.6936914 of footsteps and
-0.7331282 of public affairs
-0.6642711 of newspapers <unk>
-0.8640089 of graham's hand
-1.020668 of graham only
-0.7606389 of silas <unk>
-0.9286252 of court this
-1.073297 of virtue he
-1.115707 of virtue that's
-0.848427 of action those
-0.8442672 of action bobby
-0.7331282 of indifference chance
-0.6642711 of blood <unk>
-0.6825953 of justice </s>
-1.041058 of death </s>
-1.147047 of death is
-0.7143108 of accusation he
-0.8661805 of fresh flowers
-0.7143108 of salvation he
-0.6642711 of entire <unk>
-0.8808607 of drawers </s>
-0.9590091 of drawers two
-0.3207932 of kings <unk>
-0.7925133 of content i
-0.1871365 of travel and
-0.9640289 of danglars had
-0.9496218 of benedetto so
-0.963562 of benedetto besides
-0.4130128 of debray i
-1.117671 of debray chateau
-0.04667752 of monte cristo
-0.8297737 of honor that
-0.8237299 of honor i
-0.3627921 of king of
-0.8033658 of finance the
-0.8454279 of finance have
-0.7191254 of philosophers for
-0.6642711 of folding <unk>
-0.7323596 of perspiration between
-0.1871365 of thomson and
-0.719498 of condescension was
-0.3207932 of desires <unk>
-0.9190802 of rain oh
-1.049543 of wine and
-1.116013 of wine as
-0.5713414 of tired <unk>
-0.8612449 of laughter before
-0.7175146 of losing it
-0.7981352 of eating it
-0.8259143 of gravity and
-0.7077313 of events in
-0.7175146 of leaves that
-0.6936914 of biscuit and
-0.7209915 of citrons with
-0.1187736 of el dorado
-0.6545069 of nottingham </s>
-1.11535 of nottingham was
-0.2445373 of gamewell </s>
-0.4819589 of montfichet </s>
-0.4351349 of warrenton had
-0.8648762 of noirtier whose
-0.7332564 of eternal peace
-1.587786 old <unk> is
-1.053776 old <unk> <unk>
-1.466398 old <unk> he
-1.646912 old <unk> told
-0.9756879 old cuthbert place
-1.042374 old man </s>
-1.598675 old man the
-1.060008 old man and
-1.375779 old man in
-1.823706 old man made
-1.798348 old man what
-1.693942 old man i
-1.843745 old man seemed
-1.83361 old man answered
-0.937146 old woman </s>
-1.204239 old woman <unk>
-1.397252 old woman was
-1.450073 old woman looked
-0.9870773 old men i
-0.4883949 old enough to
-0.9196708 old family place
-1.052226 old room to
-1.419126 old room those
-1.423749 old room you'll
-0.8207194 old question what
-0.8162269 old wincey dress
-0.7331282 old fashioned carpet
-0.3405163 old carpet bag
-0.9406398 old nurse was
-0.9553581 old nurse were
-0.8619343 old friends made
-0.7332564 old jonathan perry
-1.18113 old man's eyes
-1.183655 old man's conversation
-0.8115944 old courtyard bobby
-0.8297737 old cemetery it
-0.805481 old cemetery to
-0.2965969 old path </s>
-0.3207932 old desires <unk>
-0.9359256 old wine see
-0.9213155 old gamewell lad
-1.016714 cuthbert is surprised
-1.315496 cuthbert and missus
-1.010092 cuthbert and the
-0.9587934 cuthbert had never
-1.225937 cuthbert of all
-1.33443 cuthbert of green
-1.000033 cuthbert place it
-1.051105 cuthbert at half
-0.4264134 cuthbert out of
-0.9435224 cuthbert going and
-0.8195926 cuthbert when she
-0.7175146 cuthbert swept that
-1.189128 place where a
-0.3739408 place where he
-0.9578998 place <unk> <unk>
-1.097138 place <unk> to
-1.047523 place and let
-0.6323558 place in the
-1.009847 place in <unk>
-1.112894 place in his
-0.6600345 place of the
-1.354322 place of silence
-0.6897254 place it was
-1.100388 place to be
-1.447203 place to which
-1.397425 place to morrow
-1.052745 place for silas
-1.340903 place at two
-1.345293 place at eight
-0.9442627 place she would
-1.026272 place i just
-0.9449691 place living at
-0.819449 place gave him
-0.8171593 place ourselves entirely
-0.9962374 it one way
-2.187162 it is one
-0.7784433 it is the
-1.107098 it is <unk>
-1.096843 it is a
-1.91573 it is of
-2.094209 it is for
-1.494838 it is not
-1.328005 it is always
-2.125616 it is as
-1.707799 it is so
-2.258895 it is because
-2.026238 it is i
-2.276095 it is enough
-2.240325 it is only
-1.928438 it is too
-2.280503 it is really
-2.284957 it is possible
-2.294004 it is impossible
-2.294004 it is natural
-2.280503 it is indeed
-2.296296 it is magnificent
-1.517279 it the woman
-1.479404 it the child
-1.532504 it the mythus
-1.224172 it <unk> </s>
-1.425393 it <unk> of
-0.7873556 it <unk> i
-1.899021 it <unk> less
-1.899513 it <unk> remained
-1.899513 it <unk> bobby's
-0.9334192 it into her
-0.6940223 it a <unk>
-1.30108 it a good
-1.466648 it a body
-1.236599 it with that
-1.429514 it with some
-1.516135 it with hearty
-1.611286 it and if
-0.6958866 it and i
-1.611726 it and then
-1.802069 it and we
-1.824452 it and doth
-1.38846 it that of
-1.408696 it that this
-1.452268 it that no
-1.105374 it had <unk>
-1.743967 it had in
-1.48544 it had to
-1.563927 it had not
-0.5783455 it had been
-1.875833 it had long
-1.859949 it had only
-1.878926 it had received
-2.043755 it had suddenly
-0.8093694 it away in
-2.299545 it was just
-1.428432 it was the
-0.7302659 it was <unk>
-0.7791692 it was a
-1.8161 it was that
-1.399041 it was in
-1.946795 it was of
-1.190732 it was to
-2.128955 it was an
-1.17457 it was not
-2.476244 it was this
-2.567655 it was found
-2.273636 it was out
-2.551462 it was because
-2.533303 it was now
-2.15474 it was something
-2.581627 it was pretty
-2.262599 it was when
-2.323948 it was getting
-1.581953 it was some
-2.030083 it was only
-2.165499 it was almost
-2.593137 it was eight
-2.578796 it was rather
-2.596063 it was wet
-2.596063 it was necessary
-0.8895059 it to the
-0.8126238 it to <unk>
-0.6873023 it be <unk>
-1.40263 it but it
-1.638998 it but those
-1.430873 it but there
-1.175246 it but he
-1.132143 it but i
-1.761286 it but they
-0.9211507 it reached lynde's
-1.002909 it for <unk>
-1.533837 it for more
-1.458951 it for some
-1.62876 it for our
-0.7844636 it even to
-1.15933 it could make
-1.140577 it could you
-0.9319797 it probably was
-0.4650415 it sitting on
-1.051778 it at worst
-1.048768 it on purpose
-0.5098292 it from the
-1.322802 it up just
-1.328067 it up mine
-1.330994 it all over
-1.253184 it all seemed
-0.8455454 it she was
-1.060634 it she said
-1.512136 it she looked
-1.325147 it if there
-0.6799874 it if you
-1.03801 it or into
-0.8659924 it out the
-1.163209 it out in
-0.2659977 it would be
-1.451026 it would not
-0.6971362 it would have
-1.941306 it would certainly
-0.6979394 it are you
-0.9094215 it who can
-0.9913703 it as far
-1.07445 it were the
-1.212392 it were not
-1.49111 it were possible
-1.287266 it over but
-1.304972 it over off
-0.4260785 it because i
-0.7700684 it which <unk>
-0.3362114 it plain that
-1.029985 it now having
-1.114891 it been the
-1.313055 it been any
-1.105152 it here was
-1.305852 it here than
-0.8366187 it three months
-0.6467635 it might be
-0.9623321 it something of
-0.2023137 it must be
-0.8512769 it made <unk>
-1.011859 it off your
-1.045763 it what helped
-1.000478 it i could
-0.7448634 it won't <unk>
-0.7994747 it won't you
-0.6973452 it has been
-0.8156698 it it's a
-1.25732 it it's an
-0.2031093 it said the
-0.8791399 it no longer
-0.8084504 it much </s>
-0.9918293 it you can
-1.173485 it came </s>
-1.275701 it came about
-1.450905 it isn't as
-0.5478821 it isn't heavy
-1.479971 it isn't carried
-0.8959086 it although it's
-1.092527 it will <unk>
-0.6235715 it will be
-1.479845 it will not
-1.777908 it will only
-1.795968 it will turn
-1.797647 it will appear
-0.7926015 it seemed <unk>
-0.2217176 it seemed to
-0.6986324 it i've been
-1.166789 it does for
-1.197051 it does really
-0.698637 it comes to
-0.9344232 it seems <unk>
-1.021648 it seems so
-0.150038 it touched his
-1.263939 it touched between
-1.002019 it question do
-0.9344232 it wasn't <unk>
-1.034158 it wasn't appendicitis
-0.4359917 it keep it
-0.9383866 it four months
-0.9623416 it rather difficult
-0.3722947 it worth while
-0.9339658 it already and
-0.9083929 it kept her
-0.6969822 it created the
-0.3207932 it bat <unk>
-0.7326156 it takes several
-0.8559819 it covered his
-1.252585 it still said
-1.276677 it still though
-0.7347887 it merely <unk>
-0.761439 it bobby <unk>
-1.020349 it bobby said
-1.132982 it bobby answered
-0.8566203 it easy for
-0.7755056 it necessary to
-0.6825953 it needs </s>
-0.9375648 it thy business
-0.8489288 it sounded strange
-0.8497665 it sounded dull
-0.09898282 it monte cristo
-0.7299348 it roused only
-0.9599095 it montfichet answered
-0.6622561 was one of
-0.594967 was missus spencer
-1.263851 was just his
-1.292427 was just asking
-2.250088 was the avonlea
-0.4575588 was the <unk>
-1.212333 was the last
-1.177594 was the only
-2.251258 was the name
-2.301235 was the worst
-2.106055 was the most
-2.211762 was the man's
-2.301235 was the measure
-2.257159 was the speaker
-2.253609 was the beauty
-1.431417 was <unk> </s>
-1.297311 was <unk> the
-1.353401 was <unk> <unk>
-2.264385 was <unk> into
-1.235744 was <unk> with
-1.289515 was <unk> and
-1.11899 was <unk> by
-1.238141 was <unk> that
-1.686079 was <unk> of
-0.9355524 was <unk> to
-2.320541 was <unk> not
-2.081594 was <unk> at
-2.315833 was <unk> she
-2.555466 was <unk> until
-2.410253 was <unk> over
-2.105624 was <unk> his
-2.171595 was <unk> him
-2.670649 was <unk> half
-1.59966 was <unk> dressed
-2.672811 was <unk> i'll
-2.471276 was <unk> between
-2.506874 was <unk> oh
-2.6579 was <unk> put
-1.308272 was <unk> than
-2.677167 was <unk> wonderful
-2.392752 was <unk> himself
-2.499542 was <unk> upon
-2.61967 was <unk> cold
-0.2538667 was a <unk>
-1.207266 was a little
-2.391412 was a quiet
-2.156629 was a pretty
-2.395292 was a cheerful
-2.300418 was a fine
-1.281038 was a girl
-2.393995 was a sort
-2.395292 was a unanimous
-2.393995 was a vision
-0.9895961 was with him
-1.056846 was and danced
-0.8462897 was by his
-1.418199 was that </s>
-1.523317 was that was
-1.683066 was that all
-1.012752 was that he
-1.443499 was that they
-1.712887 was that yard
-1.148816 was in <unk>
-1.07271 was in a
-1.938225 was in deep
-1.851652 was in sight
-1.66607 was in fact
-0.8488909 was in love
-1.85461 was in vain
-0.3195081 was of the
-1.520869 was of no
-1.006003 was it she
-0.5248979 was to be
-1.836667 was to this
-1.592237 was to his
-1.716096 was to you
-1.857726 was to bring
-1.94986 was to learn
-0.2895882 was an <unk>
-1.608667 was an odd
-1.123464 was an idol
-0.8711073 was reached and
-0.8416295 was quiet and
-1.035972 was well received
-1.473145 was not the
-1.59631 was not in
-1.47854 was not to
-0.9609534 was not so
-1.860333 was not far
-2.093279 was not deep
-2.085367 was not looking
-1.070631 was not born
-2.024049 was not my
-1.865028 was not true
-2.098096 was not following
-0.6777273 was past <unk>
-1.166558 was past eating
-1.366784 was sitting at
-0.6708065 was sitting on
-0.5354965 was sitting there
-1.070942 was at once
-1.343092 was at hand
-0.3975942 was on the
-0.943572 was up to
-1.322148 was up here
-1.046919 was all gone
-0.6514933 was this <unk>
-1.00788 was found then
-0.1628485 was out of
-1.181572 was there with
-1.054935 was there and
-0.8452654 was always <unk>
-1.249585 was always done
-0.8474598 was as if
-0.9768322 was over </s>
-1.507851 was his only
-1.456111 was his heart
-1.519465 was his reward
-0.8763262 was late he
-0.4732596 was so <unk>
-1.383942 was so much
-1.717877 was so near
-1.717877 was so sweet
-1.313788 was coming in
-0.2848799 was coming to
-1.269259 was he to
-1.351322 was he going
-0.996533 was because he
-1.150202 was heard and
-1.186558 was heard in
-0.8172631 was plain proof
-1.467085 was going a
-0.4046354 was going to
-1.524292 was going out
-1.512673 was going so
-1.029985 was now quite
-0.3400759 was matthew cuthbert
-1.479263 was matthew who
-1.032158 was something that
-1.402637 was something odd
-1.404058 was something terrible
-0.7270081 was nothing to
-1.271553 was nothing more
-0.9539473 was given an
-0.9782012 was pretty interesting
-1.080654 was taking it
-1.099016 was taking him
-0.96008 was gone as
-0.6876997 was sure i
-1.276358 was made with
-0.9532559 was made of
-0.8547502 was silent so
-0.9319869 was taken i
-0.981175 was far from
-0.9577775 was living here
-0.3207932 was actually <unk>
-1.111431 was when they
-1.327757 was when lost
-0.8350915 was built at
-0.8439361 was built if
-1.770821 was no sign
-1.76996 was no doubt
-1.771684 was no moon
-1.226696 was no longer
-1.771684 was no chance
-1.765681 was no princess
-1.018324 was much disappointed
-0.920953 was enough </s>
-1.294301 was very different
-1.295035 was very pointed
-0.8370514 was left to
-0.8778263 was laid for
-1.165509 was getting on
-1.18454 was getting fairly
-1.30044 was some shame
-1.300822 was some disgust
-0.8311475 was only <unk>
-1.037976 was only a
-1.557761 was only an
-1.573791 was only last
-0.167675 was kind of
-0.849767 was how the
-1.258002 was too early
-1.257623 was too soft
-0.945487 was quite out
-1.02707 was like unto
-1.019944 was ever guilty
-0.8655713 was making fun
-1.169827 was almost the
-0.7089082 was almost <unk>
-1.270097 was almost forced
-0.7986513 was demanded </s>
-1.167402 was certainly one
-1.183816 was certainly turning
-0.9987796 was put there
-0.9977001 was first placed
-0.9212496 was saying persons
-0.748439 was born of
-0.7468483 was born to
-1.24904 was born on
-1.335555 was my sight
-1.33626 was my god
-0.6505371 was young <unk>
-0.2315378 was nearly <unk>
-0.7323596 was terrible set
-0.4924518 was near the
-0.8467582 was safely back
-0.8436053 was safely out
-0.8888786 was hung by
-0.9663885 was sweet <unk>
-1.088719 was sweet with
-0.4385861 was eight miles
-0.9358211 was again <unk>
-0.9152817 was twenty in
-0.7077313 was lacking in
-0.8647026 was small white
-0.9480029 was possible now
-0.08386748 was able to
-0.7347887 was certain <unk>
-0.8318608 was harder for
-0.85027 was harder bygones
-0.7849841 was large and
-0.6936914 was broad and
-0.5117867 was glad to
-1.154594 was glad when
-0.187903 was beginning to
-0.9366404 was heavy with
-0.9378357 was rather a
-0.9605923 was already a
-0.9126363 was kept up
-0.6936914 was astir and
-0.7986513 was divine </s>
-0.7191254 was conquered for
-0.320231 was upon the
-0.3387547 was discovered by
-0.6420004 was dead or
-0.1824213 was carefully <unk>
-0.6936914 was broken and
-0.8187088 was quietly <unk>
-0.6642711 was wholly <unk>
-0.7696089 was wet and
-0.6642711 was especially <unk>
-0.7216153 was proved at
-0.8000753 was necessary for
-0.8543263 was ill at
-0.8008152 was immediately <unk>
-0.6969822 was approaching the
-0.3207932 was perfectly <unk>
-0.7755056 was opposite to
-0.7191254 was executed for
-0.4286954 was standing in
-1.144894 was alone in
-1.208605 was alone heard
-0.9179669 was placed over
-0.6825953 was wilder </s>
-0.7347887 was jill <unk>
-0.7267647 was killed by
-0.786383 was safe in
-0.187903 was resolved to
-0.8867675 to one <unk>
-1.244402 to one side
-0.4669842 to the <unk>
-1.628833 to the old
-2.822918 to the course
-2.404988 to the people
-2.177248 to the other
-1.673111 to the house
-2.452055 to the more
-2.809787 to the wild
-2.581777 to the side
-1.746544 to the left
-2.692352 to the east
-2.429429 to the asylum
-2.586908 to the station
-1.764532 to the island
-2.415295 to the child
-1.711188 to the others
-2.316867 to the bank
-2.682593 to the gentleman
-2.579235 to the search
-2.831898 to the bower
-2.827385 to the general
-2.831898 to the wall
-2.692352 to the missing
-2.692352 to the rear
-2.679388 to the care
-2.318255 to the district
-2.429429 to the court
-1.737954 to the cedars
-2.504258 to the hall
-2.692352 to the opening
-2.579235 to the forest
-2.682593 to the sad
-2.831898 to the marriage
-1.779662 to the governor
-2.695655 to the charity
-2.831898 to the amount
-2.695655 to the landing
-2.831898 to the sublime
-2.831898 to the estate
-2.831898 to the turk
-2.589497 to the squire's
-1.107601 to <unk> </s>
-0.9232649 to <unk> the
-1.076133 to <unk> <unk>
-1.662132 to <unk> a
-1.66056 to <unk> with
-1.647814 to <unk> and
-1.665706 to <unk> that
-1.844735 to <unk> in
-1.724398 to <unk> it
-1.164683 to <unk> to
-1.736768 to <unk> at
-2.353869 to <unk> her
-2.284231 to <unk> on
-2.51086 to <unk> all
-1.803427 to <unk> this
-1.56079 to <unk> them
-2.835762 to <unk> anything
-2.346333 to <unk> or
-2.93225 to <unk> beyond
-1.040269 to <unk> his
-2.131617 to <unk> he
-1.533435 to <unk> him
-2.736194 to <unk> now
-2.750558 to <unk> why
-2.861918 to <unk> information
-2.916682 to <unk> life
-2.854128 to <unk> any
-2.820792 to <unk> marilla
-2.838307 to <unk> nor
-1.525525 to <unk> you
-2.577023 to <unk> your
-2.297256 to <unk> me
-2.637204 to <unk> my
-2.945118 to <unk> relief
-2.941865 to <unk> large
-2.843444 to <unk> hundred
-2.564496 to <unk> himself
-2.941865 to <unk> moral
-1.847384 to <unk> upon
-2.922842 to <unk> hold
-2.783036 to <unk> chamber
-2.938636 to <unk> martin
-0.4591916 to a <unk>
-1.574728 to a man
-0.9110048 to a woman
-1.757163 to a girl
-1.937131 to a wife
-1.996994 to a funeral
-0.6771647 to and <unk>
-1.386295 to that </s>
-1.533989 to that of
-1.56297 to that which
-1.409754 to that they
-1.734662 to that gentleman
-1.024074 to old jonathan
-1.420985 to it the
-1.453624 to it a
-1.467983 to it that
-1.641341 to it although
-0.5132994 to be <unk>
-1.328073 to be a
-2.274767 to be had
-1.43821 to be in
-1.812189 to be of
-1.801877 to be to
-2.339975 to be an
-2.203389 to be for
-2.278568 to be on
-2.028253 to be passed
-1.819841 to be found
-2.023983 to be heard
-1.226823 to be sure
-2.422014 to be taken
-1.430336 to be seen
-2.010391 to be very
-2.419366 to be quite
-2.424678 to be afraid
-2.40381 to be put
-2.435501 to be dreaded
-2.435501 to be raised
-2.430056 to be paid
-2.435501 to be consoled
-2.414119 to be alone
-2.435501 to be believed
-0.1520164 to an <unk>
-1.004926 to those high
-1.294613 to her the
-1.535255 to her she
-1.478163 to her own
-1.583554 to her husband
-1.709144 to her yes
-0.9590315 to all and
-1.466344 to this his
-1.377042 to this day
-1.503608 to this amazing
-0.8000753 to sit for
-1.140197 to them for
-1.161439 to them our
-0.98186 to anything even
-1.041286 to or get
-0.3937044 to their <unk>
-1.050089 to their own
-1.596163 to their different
-1.10183 to work and
-1.138711 to work in
-1.39143 to tell in
-1.48951 to tell why
-0.895804 to tell you
-1.493626 to tell whether
-0.7283086 to white <unk>
-0.5756909 to his <unk>
-2.217805 to his name
-2.020867 to his grandfather
-2.223459 to his sister
-2.22536 to his companion
-2.22536 to his social
-2.22536 to his service
-2.020867 to his promise
-2.223459 to his country
-2.223459 to his neck
-2.22536 to his personal
-1.187542 to his bed
-2.221566 to his mother
-0.8091439 to anybody not
-0.8615894 to pass over
-0.8154514 to warm myself
-0.03692688 to bright river
-0.4350353 to him </s>
-1.358201 to him and
-1.528208 to him in
-1.859951 to him homer
-1.859951 to him ah
-0.4766484 to which <unk>
-1.127205 to which he
-1.125738 to which i
-0.9927376 to going home
-0.9429879 to about that
-1.001598 to life discovered
-1.482745 to have to
-1.642762 to have done
-1.015496 to have been
-1.626137 to have any
-1.91106 to have further
-1.639246 to have such
-1.480091 to have seen
-1.917659 to have within
-1.917659 to have slept
-0.8010859 to go </s>
-1.409301 to go <unk>
-1.284836 to go down
-1.720013 to go into
-1.732434 to go through
-1.655641 to go for
-1.706353 to go up
-1.03323 to any place
-1.16224 to talk old
-1.156764 to talk matthew
-1.157786 to talk like
-0.698637 to happen to
-1.646969 to make one
-0.6835344 to make a
-1.22608 to make up
-1.237295 to make sure
-1.679528 to make themselves
-1.669425 to make some
-0.9508509 to both questions
-0.3838339 to green gables
-0.8045859 to tea but
-0.5735102 to find out
-1.079291 to find something
-0.9582466 to town and
-1.021897 to town this
-0.3572175 to year </s>
-0.9386581 to dress for
-0.7083582 to take the
-1.353096 to take breath
-1.347582 to take these
-0.4490642 to night </s>
-1.398419 to night and
-1.519495 to night this
-1.389657 to know </s>
-1.60175 to know if
-1.595338 to know which
-1.593222 to know my
-1.288044 to know whether
-0.8511497 to mind it
-0.9944391 to look forward
-0.8972133 to suppose it
-1.257962 to get <unk>
-0.8408801 to get a
-1.495171 to get her
-1.511339 to get out
-1.537452 to get sick
-0.3949475 to being <unk>
-1.386447 to do </s>
-1.887924 to do just
-0.9172515 to do the
-1.489344 to do that
-1.862948 to do this
-1.513294 to do so
-1.77609 to do he
-1.767014 to do i
-1.866698 to do they
-1.234008 to you </s>
-1.718787 to you that
-1.798867 to you through
-1.796539 to you i've
-1.807513 to you unless
-1.804349 to you shall
-1.696162 to give one
-1.605167 to give a
-1.585275 to give in
-1.640488 to give it
-1.70461 to give up
-1.675735 to give his
-0.9192295 to give him
-1.662373 to give you
-1.210841 to give full
-0.498699 to isn't it
-0.7134302 to some <unk>
-1.30044 to some game
-1.199255 to meet the
-1.234389 to meet a
-0.5176024 to meet him
-0.7700696 to put in
-0.7800281 to put you
-1.097124 to me </s>
-0.9933045 to me the
-1.224897 to me <unk>
-1.956975 to me with
-1.428955 to me that
-1.401553 to me in
-1.96419 to me as
-2.04674 to me have
-1.195534 to me i
-2.06777 to me men
-2.07868 to me nor
-2.052645 to me like
-2.088254 to me ten
-2.086644 to me across
-0.3179622 to feel <unk>
-1.143914 to feel strange
-0.5448436 to my <unk>
-1.81862 to my man
-1.625201 to my name
-1.836421 to my faith
-1.838338 to my content
-1.839299 to my order
-0.9663473 to sleep <unk>
-1.51077 to sleep with
-0.5847307 to sleep in
-1.511312 to sleep you
-1.552238 to sleep again
-0.7228656 to help but
-0.7242451 to mail had
-0.9210499 to herself she
-1.080654 to speak it
-1.090176 to speak at
-1.320441 to ask missus
-1.107328 to ask <unk>
-1.210264 to ask to
-1.302001 to ask her
-0.8146772 to pick us
-0.8487007 to us </s>
-1.27 to us by
-1.151357 to bring up
-1.145354 to bring him
-1.160864 to bring us
-0.4230357 to turn out
-0.698637 to read to
-0.7713367 to think </s>
-1.278363 to think <unk>
-0.4507882 to think of
-1.36084 to think i
-1.613992 to say a
-0.7728767 to say that
-1.710557 to say all
-1.744952 to say never
-1.757714 to say next
-1.743021 to say nothing
-1.746891 to say come
-1.759711 to say unto
-0.9878477 to myself what
-1.657855 to see a
-1.296717 to see that
-1.316547 to see her
-1.806707 to see everything
-1.326285 to see if
-1.317925 to see him
-0.9649555 to see what
-1.721981 to see you
-1.804586 to see jesus
-1.795167 to see graham
-0.8030772 to england at
-0.9944391 to new reflections
-1.358379 to stay in
-1.452749 to stay until
-0.6272494 to stay here
-1.45653 to stay outside
-1.003942 to none </s>
-1.117257 to none alive
-1.150901 to believe he
-1.183171 to believe when
-0.814633 to eight </s>
-1.025327 to again visit
-1.152133 to drive a
-1.210758 to drive through
-1.196739 to drive from
-1.195994 to drive me
-0.187903 to nod to
-0.9855618 to whether some
-0.9508244 to twenty thousand
-0.8501519 to sign that
-0.829261 to notice the
-0.4882224 to come to
-1.169827 to understand the
-1.23737 to understand as
-1.247885 to understand him
-0.847425 to explain why
-0.8501021 to explain she's
-0.4364441 to walk up
-1.030965 to demand five
-1.03403 to demand perfection
-0.9217285 to face the
-0.4438542 to others </s>
-0.7520721 to others <unk>
-1.401615 to others he
-0.7263367 to our <unk>
-1.286348 to our millions
-0.8921825 to imagine that
-1.391393 to imagine i'm
-1.328794 to imagine i
-0.9100968 to imagine things
-0.9336373 to let the
-1.591864 to keep that
-0.6739542 to keep it
-0.5096506 to keep up
-1.153475 to keep this
-1.619516 to keep him
-1.174104 to live with
-1.200739 to live here
-1.20833 to live either
-0.8659193 to lie awake
-0.9607496 to want you
-0.9577169 to marry before
-0.9527992 to marry me
-0.9534376 to wear this
-0.9579321 to wear them
-0.8951604 to fall in
-0.8165375 to flash past
-0.5649132 to each other
-0.9159419 to search for
-0.9037945 to touch the
-0.9504668 to touch him
-0.6969822 to inhale the
-0.6066301 to hear </s>
-1.047559 to hear the
-0.7253771 to deliver him
-0.8622793 to reward their
-0.3583503 to escape the
-1.016074 to escape him
-0.7323596 to egypt does
-0.5042792 to rome with
-0.8099082 to decide which
-0.8108271 to courtiers who
-0.5016792 to these <unk>
-1.116326 to heaven probably
-1.115089 to heaven better
-0.8131331 to lower over
-0.8660934 to human nature
-0.9134102 to savareen it
-0.6936914 to jonathan and
-0.8033658 to fix the
-0.8417903 to fix me
-1.088719 to leave with
-1.11478 to leave new
-1.015101 to still further
-1.036375 to bobby its
-0.9769121 to bed boy
-0.8861346 to lay her
-0.7309541 to learn how
-1.009278 to graham as
-0.7113743 to prepare a
-0.4013942 to stand by
-1.204771 to stand back
-0.84344 to eat there
-0.8497665 to eat tried
-0.8142134 to rise graham
-0.7606389 to glance <unk>
-0.913477 to pay this
-0.8165375 to bobby's questions
-0.111416 to return to
-0.8000753 to remain for
-0.7232414 to support his
-0.2556105 to witness the
-1.208139 to witness those
-1.079842 to reply with
-1.064726 to reply he
-1.105057 to reply oh
-0.8115944 to forgive bobby
-0.7232414 to sound his
-0.7077313 to blame in
-0.7128401 to share i
-0.7291718 to direct your
-0.5325239 to howells in
-0.8591835 to thee no
-0.8554293 to send him
-0.1871365 to travel and
-0.7232414 to alter his
-0.6969822 to force the
-0.09898282 to monte cristo
-0.7942808 to morcerf he
-0.7310817 to france still
-0.8033658 to ascertain the
-0.8485942 to ascertain whether
-0.4110283 to laugh <unk>
-0.7291718 to obtain your
-0.6642711 to receive <unk>
-0.7324876 to spend half
-1.294914 to morrow to
-1.39368 to morrow at
-1.44008 to morrow why
-1.446658 to morrow night
-1.436827 to morrow i'm
-1.420297 to morrow what
-1.442043 to morrow yes
-1.447322 to morrow morning
-0.7113743 to seek a
-0.8146772 to line three
-0.8137501 to lose just
-0.1918482 to repeat her
-0.7304441 to follow their
-0.8887841 to shore in
-0.7298075 to play them
-1.051414 to die for
-1.075269 to die like
-0.7735312 to bear the
-0.7211162 to oblige you
-0.7253771 to feed him
-0.7735312 to kiss the
-0.8972706 to pangloss and
-0.3262514 to constantinople </s>
-0.7211162 to beg you
-1.003115 to show that
-1.031474 to show robin
-0.901191 to gamewell that
-0.6936914 to weeping and
-0.8030772 be surprised at
-0.8188557 be the <unk>
-1.322527 be the best
-0.8733647 be <unk> </s>
-2.267189 be <unk> missus
-1.450691 be <unk> the
-1.774698 be <unk> a
-1.096767 be <unk> and
-1.9581 be <unk> by
-1.257476 be <unk> but
-1.307253 be <unk> well
-1.863163 be <unk> for
-1.937519 be <unk> at
-2.124394 be <unk> up
-2.160605 be <unk> them
-2.043255 be <unk> or
-2.320719 be <unk> until
-1.967542 be <unk> as
-1.960336 be <unk> i
-2.400007 be <unk> count
-2.405732 be <unk> tis
-0.5414309 be a <unk>
-1.876079 be a foreign
-1.5347 be a good
-1.944121 be a risk
-1.8745 be a different
-1.718663 be a bit
-1.817959 be a bride
-0.9371388 be with you
-1.041689 be had but
-0.664491 be in the
-1.014719 be in a
-1.486575 be in that
-1.851802 be in not
-1.85068 be in no
-1.882036 be in jail
-1.882036 be in supreme
-1.241049 be of one
-1.350596 be of some
-0.6897254 be it was
-1.289916 be to get
-1.262823 be to morrow
-0.3879234 be an <unk>
-1.051567 be but ah
-0.6296158 be for the
-0.929012 be not so
-0.5126249 be at the
-0.3975942 be on the
-1.149381 be passed by
-1.157821 be passed over
-1.001856 be all right
-0.7511189 be found in
-1.383733 be found on
-1.413573 be found worthy
-1.138711 be done in
-1.196175 be done about
-1.019629 be called the
-0.5365634 be called <unk>
-1.053691 be his problem
-1.048601 be so kind
-1.239826 be heard from
-1.243108 be heard about
-1.029367 be before long
-1.764953 be here missus
-1.74926 be here this
-1.764953 be here before
-1.758607 be here bobby
-0.5199329 be here eating
-1.035589 be any particular
-0.9109365 be something <unk>
-1.170823 be given if
-1.178262 be given our
-0.5071116 be more <unk>
-1.174164 be sure </s>
-1.210777 be sure the
-0.8325179 be sure i
-0.8542416 be silent on
-0.6672336 be taken with
-0.8883284 be today no
-0.7618483 be far away
-0.8447132 be along </s>
-1.204358 be along for
-1.04635 be said about
-0.6482348 be no <unk>
-1.337391 be no scope
-1.017895 be much different
-0.9450123 be enough of
-1.179197 be seen to
-1.244366 be seen for
-1.262636 be seen on
-1.295035 be very particular
-1.294668 be very easily
-1.003842 be left at
-0.3563818 be looking at
-0.8134415 be expecting some
-0.6843208 be too much
-0.4391686 be quite <unk>
-0.601881 be afraid you
-0.6707061 be put in
-0.7281567 be talked about
-0.8045859 be proper but
-0.7077313 be dreaded in
-0.6945913 be better to
-0.01552763 be able to
-0.7755056 be lovely to
-0.9838726 be most happy
-1.115398 be worth much
-0.4194403 be worth while
-0.9122489 be evil or
-1.014677 be still until
-0.7755056 be raised to
-0.8385991 be paid i
-0.5508268 be present in
-0.6825953 be definite </s>
-0.8325052 be thy <unk>
-0.7128401 be consoled i
-0.9590984 be alone you
-0.6825953 be believed </s>
-0.8000753 be safe for
-0.5807923 an <unk> <unk>
-1.841843 an <unk> a
-1.025029 an <unk> of
-1.93149 an <unk> for
-1.347903 an <unk> as
-2.444181 an <unk> coming
-2.446919 an <unk> deep
-2.445548 an <unk> name
-2.441459 an <unk> boy
-2.401216 an <unk> thing
-2.434729 an <unk> see
-2.449675 an <unk> figure
-2.490346 an <unk> person
-2.491867 an <unk> desire
-2.45106 an <unk> brain
-2.493393 an <unk> interview
-2.369053 an <unk> bobby
-2.493393 an <unk> justice
-2.493393 an <unk> remark
-0.978849 an old man
-1.436719 an old family
-1.437247 an old path
-0.8416295 an eye and
-0.2217932 an aid to
-0.8968422 an odd looking
-0.1219986 an orphan asylum
-1.558465 an orphan girl
-0.9724806 an asylum only
-0.8328754 an exclamation of
-0.847016 an influence for
-0.8165375 an uncomfortable feeling
-0.8659193 an hour ago
-0.3841621 an extraordinary observer
-0.9639254 an extraordinary weight
-0.3207932 an exact <unk>
-0.7317202 an extremely old
-0.8171593 an interesting idea
-0.5609774 an idol </s>
-1.218366 an idol as
-1.196361 an idol i
-1.235633 an idol then
-0.8008152 an open <unk>
-0.814368 an explanation how
-0.330898 an effort to
-0.7217402 an animal as
-0.7304441 an unattached man
-0.3572175 an arm </s>
-0.7331282 an unlimited credit
-0.8256294 an instant he
-0.85027 an instant shout
-1.048707 earlier the coat
-1.055807 earlier <unk> paredes's
-0.9917066 earlier course through
-1.043769 course the young
-1.035218 course a bride
-0.9590761 course that she
-0.7331932 course of <unk>
-1.005953 course through those
-1.023148 course for matthew
-1.047352 course this evidence
-0.7847991 course she <unk>
-1.072174 course he could
-1.243008 course he made
-1.001558 course it's all
-0.8900512 course you are
-0.8657888 course thank heaven
-0.5171382 through the <unk>
-1.956284 through the woods
-0.9086236 through the window
-2.005342 through the west
-1.737665 through the water
-1.981149 through the underbrush
-1.00262 through <unk> from
-1.006003 through it she
-1.004926 through those woods
-0.727036 through all the
-0.9074916 through them and
-1.031437 through his nostrils
-0.9679875 through which a
-0.7384488 through me the
-1.018432 through these careless
-0.8039818 through mud she
-0.7696089 through youth and
-1.055972 those <unk> creatures
-0.8495229 those woods with
-1.045706 those of other
-0.9679716 those who have
-1.02129 those can alone
-1.024843 those other times
-0.6462043 those red roads
-0.6693678 those pretty <unk>
-1.013582 those men bobby
-0.8162269 those stupid half
-0.778263 those poor <unk>
-0.7347887 those beings <unk>
-0.7321037 those high things
-0.7347887 those melancholy <unk>
-0.7696089 those papers and
-0.7326156 those gentlemen every
-0.7906066 those desires of
-1.137218 dark <unk> of
-1.30716 dark <unk> out
-0.9382691 dark hair showed
-0.2276171 dark brown <unk>
-0.1927893 dark clothed men
-0.9962374 but one way
-0.1108609 but missus rachel
-0.3685297 but the <unk>
-1.904513 but the old
-2.231149 but the east
-2.276412 but the dishes
-2.117321 but the asylum
-1.769216 but the prince
-2.228785 but the horse
-2.232335 but the extreme
-2.231149 but the local
-2.056544 but the lake
-1.726097 but the princess
-1.111032 but <unk> <unk>
-1.56574 but <unk> that
-1.910623 but <unk> time
-1.889318 but <unk> here
-1.934892 but <unk> certainly
-1.955344 but <unk> parents
-1.955344 but <unk> fallen
-1.927483 but <unk> still
-0.5842025 but a <unk>
-1.034384 but little girls
-1.051477 but with full
-0.1958219 but by the
-1.351442 but that was
-1.403424 but that so
-1.071665 but that i
-0.6323558 but in the
-1.248302 but in this
-1.52598 but in less
-1.417141 but of one
-0.4244326 but of course
-0.7255187 but old <unk>
-0.1776616 but it was
-1.638883 but it isn't
-0.9617636 but was that
-1.039559 but to return
-1.255333 but those red
-1.257472 but those stupid
-0.6296158 but for the
-1.31606 but not that
-1.291547 but not in
-1.512884 but not stopped
-1.012738 but without fail
-0.5791936 but at the
-1.037396 but at last
-0.2265241 but her <unk>
-1.046434 but from envy
-1.047869 but this freckled
-1.011203 but found nothing
-1.025525 but she <unk>
-0.882498 but she was
-1.359264 but she could
-1.721581 but she became
-1.723884 but she tried
-0.6650024 but if it
-0.7143281 but never <unk>
-0.5557132 but there is
-0.5116939 but there was
-1.514495 but there she
-0.7630518 but who is
-0.9947367 but can he
-1.159082 but as if
-1.79031 but as always
-0.9806507 but as he
-1.793733 but as sure
-1.281654 but as i
-1.207014 but as soon
-0.8940847 but whom are
-1.009055 but his voice
-1.680658 but he is
-1.208995 but he had
-0.5954557 but he was
-0.9516476 but he did
-1.528301 but he said
-2.03304 but he stopped
-2.03304 but he rushed
-0.8981465 but before he
-0.8869898 but which is
-1.011721 but matthew was
-1.296964 but matthew so
-1.027148 but here are
-0.935991 but given it
-0.9208014 but both he
-0.9510097 but i'll feel
-0.606421 but take it
-0.9417722 but more important
-0.9677787 but that's just
-1.917672 but i just
-1.181382 but i <unk>
-1.391259 but i was
-1.066051 but i never
-1.662034 but i can
-1.500096 but i must
-1.749105 but i said
-1.496394 but i do
-1.499864 but i don't
-2.032831 but i pity
-0.9295855 but i am
-2.167818 but i owe
-0.5339467 but did not
-0.7974253 but did you
-1.012616 but it's rotten
-0.8195926 but when she
-1.047518 but no london
-1.047422 but they hoped
-0.9198678 but i'd rather
-0.8968021 but then the
-1.05183 but then i
-1.479789 but then look
-1.063576 but you <unk>
-1.15115 but you are
-1.213513 but you know
-1.251672 but how was
-1.256611 but how you
-0.991052 but like in
-0.951195 but almost immediately
-0.6619779 but certainly he
-0.9973545 but first let
-1.030488 but we all
-0.8867186 but doing his
-1.006607 but i've heard
-0.5350912 but does not
-0.9640596 but poor to
-0.2410265 but under the
-0.8934907 but master will
-0.8915297 but also to
-0.9513275 but heavy tears
-0.4359917 but keep it
-0.803171 but am i
-0.8317879 but later in
-0.163262 but sarah <unk>
-1.009207 but still we
-0.7758356 but ah </s>
-0.09898282 but monte cristo
-0.8188557 time the <unk>
-1.355893 time the living
-0.9578998 time <unk> <unk>
-1.358475 time <unk> melancholy
-1.055378 time and money
-0.5355745 time in the
-1.307268 time of his
-0.5625011 time of life
-1.653129 time of year
-1.05385 time it reached
-0.700253 time was <unk>
-0.9880889 time to the
-1.747275 time to sit
-1.600239 time to get
-1.470329 time to give
-1.74775 time to obtain
-0.3608685 time without <unk>
-1.046535 time at which
-1.048586 time her people
-1.047874 time all winter
-0.7554264 time she had
-0.8189207 time he was
-0.8484001 time nothing was
-0.7799347 time do not
-1.029548 time you like
-0.472883 time whose <unk>
-0.6356225 time bobby <unk>
-0.7102848 time graham said
-0.7735312 time amongst the
-1.331726 reached the buggy
-1.357115 reached the years
-0.6771647 reached and <unk>
-0.4384397 reached lynde's hollow
-0.171373 reached bright river
-1.041079 reached him on
-1.145947 lynde's hollow it
-1.10223 lynde's hollow to
-0.9907442 lynde's door without
-0.8475162 lynde's husband was
-1.052931 quiet <unk> green
-1.055818 quiet and black
-0.6538808 quiet well <unk>
-0.8405649 quiet folks he
-0.9204595 quiet manner maybe
-1.040182 well the world
-1.830602 well <unk> avonlea
-1.78585 well <unk> little
-1.565261 well <unk> for
-1.825732 well <unk> been
-1.828648 well <unk> better
-1.832566 well <unk> youth
-1.041893 well in sooth
-0.9867851 well of all
-0.6873023 well be <unk>
-0.924318 well on my
-0.808273 well if i
-0.9593338 well done she
-1.055504 well he asserted
-0.2392712 well now i
-0.9353125 well dressed people
-1.017551 well marilla i'll
-0.8062516 well he'd had
-0.8861807 well i'm sorry
-1.547048 well i heard
-1.288736 well i must
-1.337695 well i will
-1.647481 well i hope
-1.331951 well said missus
-0.7271496 well said the
-1.393275 well said she
-1.143462 well said he
-0.8097552 well knows what
-0.9896371 well enough what's
-0.8418034 well then said
-0.868797 well although i
-0.8091439 well we're not
-0.8175427 well received the
-0.956929 well say and
-0.9704277 well towards morning
-0.9758102 well imagine something
-0.8479257 well bred little
-0.799166 well bred and
-0.7735312 well what's the
-0.2600956 for missus rachel
-0.6664687 for the <unk>
-2.168312 for the time
-2.514201 for the late
-2.399454 for the last
-2.096608 for the night
-2.519677 for the trees
-2.52244 for the real
-2.52244 for the risk
-2.236265 for the second
-1.444453 for the latter
-2.519677 for the imagination
-2.291696 for the moon
-2.434231 for the government
-1.892885 for the water
-2.290069 for the story
-2.434231 for the panamanian
-1.443759 for the present
-2.503454 for the hold
-2.52244 for the sacrifice
-1.45294 for the occasion
-2.429728 for the six
-2.434231 for the charity
-2.434231 for the examination
-2.431973 for the doctors
-1.299248 for <unk> </s>
-1.416874 for <unk> the
-0.913604 for <unk> <unk>
-1.403845 for <unk> and
-1.728763 for <unk> that
-1.534199 for <unk> of
-1.011195 for <unk> to
-2.061068 for <unk> them
-1.896084 for <unk> as
-2.033493 for <unk> about
-1.907373 for <unk> you
-2.212996 for <unk> thought
-1.16706 for <unk> sake
-0.5229266 for a <unk>
-0.9191182 for a little
-1.618145 for a man
-1.854769 for a long
-1.956262 for a single
-2.008881 for a while
-1.003265 for a moment
-1.336002 for and found
-1.354595 for and against
-1.043826 for by another
-1.347968 for that poor
-1.342115 for that bobby
-0.3068365 for its <unk>
-1.52492 for in prince
-1.415293 for in short
-1.486755 for in sooth
-1.023258 for old gamewell
-1.223599 for it the
-1.350488 for it bat
-1.041036 for an explanation
-1.051277 for but doing
-1.340706 for not even
-1.344391 for not doing
-1.226713 for her </s>
-1.320262 for her the
-0.9415818 for her <unk>
-1.788726 for her presently
-1.791628 for her anger
-1.791628 for her lord
-0.9183496 for this money
-0.6886733 for hours at
-1.141281 for hours after
-0.9190737 for she <unk>
-0.8033799 for she was
-0.9112102 for anything </s>
-0.5451763 for would be
-1.036253 for their rain
-0.8701885 for as soon
-0.50805 for whom we
-0.8569723 for his <unk>
-1.352806 for his own
-1.520447 for his salvation
-1.176349 for he had
-0.4631802 for he was
-1.655386 for he made
-1.707761 for he should
-1.818401 for he sprang
-0.9538831 for him <unk>
-1.339538 for him than
-0.8012922 for which i
-0.898644 for matthew and
-0.7316269 for matthew cuthbert
-0.9612563 for whole great
-1.035589 for any trace
-1.001633 for something or
-1.021013 for good it's
-0.9593968 for home he
-1.015725 for after all
-1.075134 for more </s>
-0.795633 for more than
-1.332432 for what indeed
-1.334596 for what reason
-1.005851 for i <unk>
-1.134438 for i have
-1.525602 for i doubt
-1.040781 for when man
-0.7007666 for they had
-0.7619537 for being poor
-1.439438 for you a
-1.711731 for you by
-0.6220212 for you to
-1.482003 for you will
-0.845594 for supper missus
-0.799166 for supper and
-0.1560658 for some time
-0.9595891 for your own
-0.7437289 for between us
-1.029218 for two nights
-0.942754 for five <unk>
-0.6605056 for me </s>
-1.026074 for me the
-1.432367 for me and
-1.188194 for me to
-1.209238 for me i
-1.849306 for me till
-1.047481 for my fellows
-0.9586207 for once he
-0.5025869 for doing it
-0.778263 for poor <unk>
-0.9513275 for many days
-0.9430894 for women who
-1.017464 for our good
-0.8114408 for imagination then
-0.9379169 for several days
-1.014692 for himself receives
-0.774865 for divine <unk>
-0.8755068 for doubt that
-0.8887841 for apollo in
-0.1876474 for wetting the
-0.6969822 for knowledge the
-0.9964696 for money only
-0.8454297 for evil </s>
-0.790753 for holding a
-0.9375648 for savareen squire
-0.6846515 for still <unk>
-0.3405509 for silas blackburn
-0.8597757 for robinson </s>
-0.8631432 for groom has
-0.4250851 for thee to
-0.8920008 for indeed <unk>
-0.7223651 for joy she
-0.8154514 for example look
-0.4383909 for six millions
-0.7322316 for screaming looking
-0.8033658 for sale the
-0.805481 for sale to
-0.9492695 for robin to
-1.49902 not the only
-1.618224 not the thing
-1.638925 not the courage
-1.62136 not the coat
-1.200573 not <unk> </s>
-1.922772 not <unk> is
-1.315589 not <unk> the
-1.128052 not <unk> <unk>
-1.354157 not <unk> to
-1.896817 not <unk> up
-1.923933 not <unk> them
-1.765979 not <unk> his
-1.767354 not <unk> i
-1.803959 not <unk> me
-1.990929 not <unk> question
-0.7312763 not a <unk>
-1.814151 not a wild
-1.818879 not a stray
-1.757209 not a word
-1.759967 not a single
-1.657927 not a hundred
-1.705652 not a god
-1.003435 not and if
-1.509162 not that then
-1.284467 not that you
-1.523124 not that weak
-0.6323558 not in the
-0.9457817 not in a
-1.518355 not in any
-1.034873 not of two
-1.06727 not to the
-1.248456 not to be
-1.54951 not to give
-1.74813 not to ask
-0.7268338 not to think
-0.4005229 not be here
-1.896958 not be any
-1.918908 not be proper
-1.491253 not be able
-1.918908 not be safe
-0.7998543 not an idol
-1.043946 not but no
-1.05132 not for old
-0.9740806 not even a
-0.3975942 not on the
-1.046292 not from pity
-1.019014 not as good
-1.255118 not tell this
-0.9942145 not tell me
-0.7875118 not so <unk>
-1.234187 not so i
-1.352983 not so much
-1.779173 not so bad
-1.780859 not so earnest
-1.780859 not so foolish
-0.7006021 not he <unk>
-0.7281928 not before the
-1.035123 not matthew dreaded
-1.02608 not asked chateau
-1.126145 not been in
-1.670252 not been so
-0.3666231 not been put
-0.846263 not known the
-0.8845684 not have been
-1.337223 not have proceeded
-1.035225 not any gravity
-0.9895303 not take notice
-1.18731 not sure about
-1.192596 not sure i'm
-0.537966 not father </s>
-0.7978911 not what to
-0.3929474 not know what
-1.474886 not know answered
-0.8511497 not mind it
-1.151701 not far to
-1.205293 not far she
-0.897029 not call living
-0.3307273 not such a
-0.5648117 not deep enough
-0.9516221 not much </s>
-1.281008 not much seat
-0.4250851 not seem to
-1.039226 not then say
-0.9989326 not get any
-0.9896015 not being able
-0.3563818 not looking at
-0.4958232 not getting a
-0.790753 not expecting a
-0.8102407 not only <unk>
-1.346053 not only to
-1.476081 not only rome
-0.9052478 not like beatrice
-0.7868723 not thought to
-0.921052 not saying they're
-0.7129293 not born to
-1.164606 not born until
-0.9148198 not my father
-0.5025869 not doing it
-0.970782 not young master
-1.193483 not mean just
-0.5909406 not mean to
-1.113428 not speak to
-1.192538 not speak or
-1.200739 not speak again
-1.098513 not having the
-1.183173 not having either
-1.014907 not think it
-1.269587 not think there
-0.9977158 not another word
-1.010862 not say that
-0.8711086 not say so
-1.282896 not see my
-1.298118 not see morrel
-1.169302 not really but
-1.198995 not really begin
-0.3383757 not expect him
-0.6814743 not believe in
-0.8448549 not worn it
-0.7986513 not dare </s>
-0.1255513 not walked over
-0.7994775 not exact a
-0.8975904 not stopped during
-0.790753 not marry a
-0.2309121 not true </s>
-0.9213155 not wished harm
-0.4853354 not mine </s>
-0.497788 not faith in
-0.9212496 not either directly
-0.2217932 not appear to
-0.6825953 not following </s>
-0.1524961 not lost all
-0.9132181 not care who
-0.9383866 not robinson sneered
-0.916889 not pay them
-0.8832268 not immediately but
-1.021399 not move my
-1.033006 not move either
-0.7291718 not delay your
-0.8562589 not till the
-0.7319758 not spend money
-0.8165375 not lose next
-0.1157103 not stabbed the
-0.2271784 not weep yet
-1.05777 even the wells
-1.052522 even <unk> such
-1.04546 even a brook
-0.8463119 even that <unk>
-0.5355745 even in the
-0.8895059 even to the
-1.354355 even to being
-1.037504 even be his
-0.209493 even for the
-0.7933114 even yet the
-0.2159998 even if it
-0.7006021 even he <unk>
-0.1833969 even more <unk>
-0.8951632 even thus our
-1.293651 could <unk> to
-1.565261 could <unk> for
-1.81234 could <unk> even
-1.657226 could <unk> him
-1.81328 could <unk> see
-1.81328 could <unk> hand
-1.044793 could a prince
-1.048244 could and rowed
-1.011422 could be done
-1.152195 could not <unk>
-1.693275 could not and
-1.455503 could not be
-1.783896 could not tell
-0.9547233 could not have
-1.983438 could not get
-1.783896 could not see
-1.996831 could not marry
-1.793158 could not move
-0.8978152 could run past
-0.7894439 could from his
-1.003213 could yet be
-1.144038 could tell </s>
-1.255118 could tell what
-1.352875 could he watch
-1.352875 could he witness
-0.7860896 could have <unk>
-1.207092 could make in
-1.268764 could make nothing
-0.9507584 could they have
-0.9556049 could get of
-1.231339 could you have
-1.349627 could you ask
-1.010231 could think what
-1.449499 could see </s>
-0.5522068 could see the
-1.29349 could see that
-1.617026 could see which
-0.4628444 could hardly <unk>
-1.028617 could hardly have
-1.202723 could imagine missus
-1.182185 could imagine you
-0.9827148 could keep his
-0.9078174 could live on
-0.7925133 could confess i
-0.8175427 could picture the
-0.6825953 could learn </s>
-0.6730743 could hold me
-0.7324876 could scarcely believe
-0.8634893 could send down
-0.7217402 could alter as
-0.7981352 could bear it
-0.2235141 run the <unk>
-0.8465529 run <unk> </s>
-0.9465859 run past missus
-0.4264134 run out of
-0.2600956 past missus rachel
-1.005561 past <unk> </s>
-1.268618 past <unk> but
-1.035459 past her as
-0.8100752 past him <unk>
-0.9982151 past three on
-1.001165 past i asked
-0.8114408 past eating then
-1.158093 door <unk> in
-1.322442 door <unk> all
-1.305473 door and so
-1.355179 door and stepped
-1.039897 door in their
-0.6899269 door of the
-1.182329 door of his
-1.528779 door of silas
-1.007056 door to you
-0.3608685 door without <unk>
-0.7512693 door as he
-0.8570609 door so that
-0.9847822 door he found
-1.04092 door then jenkins
-0.7331282 door bell jenkins
-1.048827 without the rest
-1.282164 without <unk> </s>
-0.7793059 without <unk> the
-1.216035 without <unk> <unk>
-1.718579 without <unk> it
-0.8374117 without <unk> for
-1.800337 without <unk> her
-0.5842025 without a <unk>
-1.050871 without her advice
-1.035225 without any advice
-0.3207932 without actually <unk>
-0.4017393 without looking at
-1.21063 without looking round
-1.039601 without your knowing
-0.7271439 without knowing what
-0.7341015 without money <unk>
-0.6825953 without fail </s>
-0.8123631 without seeking any
-1.058206 probably <unk> rosalind
-0.700253 probably was <unk>
-0.704212 probably to <unk>
-1.297249 probably not he
-1.344391 probably not till
-1.041279 probably been killed
-0.8164311 probably thought amory
-0.6166529 probably hundred and
-0.8496863 sitting down she
-1.056258 sitting and waiting
-0.958149 sitting at her
-0.4658262 sitting on the
-1.196016 sitting on a
-1.505864 sitting on wet
-0.9658933 sitting out there
-1.313146 sitting there one
-1.325726 sitting there waiting
-0.760853 at one <unk>
-0.7605131 at missus alexander
-0.6921172 at the <unk>
-2.413856 at the place
-2.230449 at the time
-1.494237 at the door
-1.531952 at the window
-2.528239 at the kitchen
-1.552675 at the edge
-1.552114 at the side
-2.57083 at the very
-2.520344 at the fact
-2.422096 at the right
-2.530903 at the extreme
-2.204137 at the bank
-2.244037 at the most
-2.426276 at the black
-1.561839 at the moment
-2.253808 at the same
-2.627042 at the foot
-1.936945 at the water
-2.528239 at the rear
-2.633762 at the wet
-2.637161 at the bar
-2.204137 at the lake
-1.552675 at the grave
-2.637161 at the entrance
-2.528239 at the opening
-2.637161 at the dismal
-2.436905 at the rain
-2.633762 at the calories
-2.443409 at the hole
-0.888893 at <unk> and
-0.6940223 at a <unk>
-1.263711 at a man
-1.527905 at a point
-1.054603 at that dismal
-1.205918 at her </s>
-1.66565 at her had
-1.718064 at her window
-1.720528 at her kitchen
-1.718064 at her virtue
-1.681543 at all it
-1.768539 at all always
-1.664075 at all he
-1.751297 at all any
-1.766033 at all it's
-1.776997 at all events
-1.108408 at this and
-1.336732 at this moment
-1.01039 at them i
-0.8570085 at people to
-1.316051 at their ease
-1.316051 at their direction
-1.025049 at other people's
-0.9760548 at work new
-0.2228609 at his <unk>
-0.171373 at bright river
-1.387577 at him the
-1.085647 at him <unk>
-1.21587 at him with
-1.233173 at him and
-1.728784 at him she
-1.430104 at him he
-0.8297737 at carmody that
-0.805481 at carmody to
-0.9672508 at best just
-0.8022182 at which he
-1.010661 at about a
-0.9508509 at half past
-1.034861 at any moment
-1.012997 at nothing after
-0.09452695 at green gables
-1.306049 at last a
-1.77919 at last all
-1.755057 at last she
-0.6585522 at last he
-1.783868 at last when
-1.787015 at last they
-1.818105 at last quite
-1.809705 at last upon
-1.015101 at night set
-1.045763 at what hour
-0.3308517 at your <unk>
-1.357291 at your service
-1.028901 at two o'clock
-0.9935704 at first matthew
-1.365421 at me and
-1.44608 at me but
-1.761337 at me well
-1.779972 at me once
-1.779972 at me else
-1.783157 at me send
-1.197661 at least the
-0.6408276 at least <unk>
-1.23673 at least a
-1.289938 at least before
-1.240837 at least i
-1.047299 at my desk
-0.9582466 at nights and
-1.024397 at nights if
-0.7332564 at sixty lacking
-0.7296644 at once </s>
-1.296046 at once <unk>
-1.465277 at once in
-1.425544 at once to
-1.050017 at once but
-1.561736 at once which
-0.9595014 at having men
-0.8166929 at eleven o'clock
-0.8657888 at eight o'clock
-0.9478715 at twenty very
-0.8251283 at hand to
-0.7113743 at worst a
-0.5649132 at each other
-0.7329999 at various times
-0.7564252 at ease </s>
-1.019629 at rome the
-1.07095 at rome by
-0.8676317 at these words
-0.9897512 at length he
-1.008919 at length said
-1.015255 at length they
-1.013299 at bobby he
-0.8660934 at graham's suggestion
-1.016779 at graham what
-0.7128401 at breakfast i
-0.901191 at present it
-0.7217402 at sea as
-1.199255 at twelve the
-1.19145 at twelve and
-0.52107 at twelve o'clock
-0.3684161 at constantinople </s>
-0.9193258 at constantinople and
-0.886292 her the <unk>
-1.561346 her the bank
-1.459446 her the water
-1.622712 her the hole
-0.9617607 her <unk> </s>
-0.6017614 her <unk> <unk>
-1.472107 her <unk> and
-1.921975 her <unk> by
-1.113407 her <unk> was
-2.055313 her <unk> she
-1.987258 her <unk> or
-1.929359 her <unk> as
-2.225871 her <unk> curiosity
-2.18703 her <unk> again
-1.007613 her into a
-1.139389 her into my
-1.353439 her a thousand
-1.354797 her a strong
-0.8556841 her little girl
-0.5560411 her and she
-1.551967 her and as
-1.601638 her and went
-1.032274 her had he
-1.284083 her back were
-1.284744 her back then
-0.9659939 her of course
-0.8913971 her old nurse
-1.054559 her was laid
-0.8790219 her to <unk>
-1.458364 her to go
-1.588108 her to return
-1.652095 her to shore
-0.8978152 her dark hair
-1.420029 her but missus
-1.503034 her but before
-1.512572 her but certainly
-0.7190153 her for the
-1.269828 her for it
-0.5126249 her at the
-0.9783446 her window keeping
-0.4477372 her on the
-0.9725688 her on <unk>
-0.6004149 her from the
-1.250217 her from an
-1.49631 her from being
-0.8986554 her up in
-0.8166929 her kitchen window
-0.8795311 her she had
-1.345813 her she stood
-1.043224 her or caught
-0.890707 her people were
-1.389975 her own son
-1.387586 her own that's
-1.385684 her own room
-0.9543978 her work was
-1.020845 her as quickly
-0.8140689 her house </s>
-1.013503 her husband but
-1.033518 her husband alive
-1.035052 her so as
-1.025025 her he looked
-1.005792 her why she
-0.9575864 her whole might
-0.7962062 her any more
-0.9866168 her might and
-0.5703178 her home and
-0.8511641 her dress <unk>
-0.5071116 her more <unk>
-0.8894294 her son what
-0.8563154 her mind she
-0.7642622 her mouth was
-1.244959 her mouth but
-1.256035 her mouth which
-0.9502692 her almost already
-0.9666859 her yes of
-0.8168483 her usual difficulty
-0.8661805 her mental attitude
-0.8928249 her head </s>
-0.8968422 her advice being
-0.8999709 her heart </s>
-0.7696089 her attitude and
-0.9295453 her word by
-0.997423 her think that
-0.8317879 her parents in
-0.7331282 her painful doubts
-0.7696089 her doubts and
-0.8512826 her except of
-0.7329999 her brisk mental
-0.9198678 her presently that's
-0.6954322 her hand <unk>
-1.179059 her hand and
-1.143043 her eyes to
-1.200399 her eyes on
-1.206809 her eyes which
-1.59276 her eyes looked
-1.600684 her eyes shut
-0.7133346 her face was
-0.8567907 her reward one
-0.9045709 her position she
-0.7331282 her wide awake
-1.003942 her foot </s>
-1.073297 her foot he
-0.8134415 her anger made
-0.8157614 her lord until
-0.6936914 her couch and
-0.8175427 her neck the
-1.005874 her still by
-0.916719 her bed and
-0.9053325 her virtue but
-0.6936914 her flesh and
-0.7223651 her strength she
-0.8485983 her immediately to
-0.8619343 her fingers now
-0.728664 her share bobby
-0.7564252 her passion </s>
-0.7299348 her pride will
-0.8544535 her laugh as
-0.8547502 her mother her
-0.8608577 her gravity who
-0.7217402 her throat as
-0.8256294 her ascend he
-0.8501021 her ascend slowly
-0.8039818 her shriek she
-0.3572175 her chamber </s>
-1.003565 window and then
-1.032238 window of my
-0.9082636 window it had
-0.5126249 window at the
-0.1898436 window keeping a
-0.6642711 window knitting <unk>
-0.5541023 window over the
-0.7696089 window warm and
-0.6986324 window i've been
-0.2644692 keeping a sharp
-0.2478976 sharp eye on
-0.4110283 sharp exclamation <unk>
-1.051147 eye and an
-1.035972 eye well knows
-0.4477372 eye on the
-1.338108 eye on everything
-0.6969933 eye she was
-0.7175146 eye loves it
-1.244402 on one side
-1.334221 on one thing
-2.421275 on the main
-2.421275 on the road
-0.7323884 on the <unk>
-2.552123 on the back
-1.972458 on the old
-2.104915 on the door
-1.465276 on the other
-2.50546 on the hill
-2.609987 on the afternoon
-2.141298 on the night
-2.423389 on the stone
-1.528475 on the left
-1.531455 on the train
-2.274835 on the five
-1.798928 on the prince
-2.616552 on the shingles
-2.609987 on the outside
-2.408798 on the face
-1.493943 on the bank
-2.231483 on the most
-1.50334 on the same
-1.541989 on the previous
-2.616552 on the chair
-2.513212 on the third
-2.613257 on the point
-2.350788 on the shore
-2.42765 on the hole
-2.510613 on the waters
-2.513212 on the landing
-1.290155 on <unk> </s>
-0.4064529 on <unk> <unk>
-1.591286 on <unk> a
-1.833092 on <unk> placed
-0.2157957 on a <unk>
-1.655827 on a friday
-1.038547 on and on
-1.348737 on that day
-1.351053 on that boat
-1.458422 on it here
-1.516971 on it three
-1.471402 on it i
-1.056137 on to white
-0.5303713 on everything that
-0.8300947 on all <unk>
-1.047696 on this point
-0.7319568 on anything that
-1.001598 on always speaking
-0.4506864 on his <unk>
-1.581899 on his coat
-1.644894 on his desk
-1.136639 on him and
-1.379555 on him as
-1.398464 on him now
-1.040601 on which bobby
-0.9065558 on here he
-1.030164 on any well
-0.7225861 on pretty well
-0.6610598 on green and
-0.9320628 on i don't
-1.063576 on you <unk>
-1.278034 on you a
-1.423688 on you for
-1.039601 on your lives
-0.4665844 on two <unk>
-0.7645248 on ever since
-0.8260326 on five little
-0.7374078 on earth and
-1.266634 on earth put
-1.26894 on earth most
-1.041889 on me one
-1.614781 on my word
-1.616795 on my bones
-1.616123 on my vision
-1.45682 on my receipt
-0.731337 on purpose marilla
-0.9470577 on women after
-0.6642711 on easter <unk>
-0.8146772 on paying three
-0.8610728 on board are
-0.7347887 on wet <unk>
-0.4258426 on top of
-0.5448963 on rothschild one
-0.5230948 on lafitte and
-0.7564252 on line </s>
-0.5426194 on shore and
-1.034566 everything a body
-1.055818 everything and indeed
-1.292961 everything that is
-1.351442 everything that was
-1.521592 everything that passed
-0.8619511 everything for a
-0.8930564 everything over and
-0.7894226 everything went <unk>
-0.7140666 everything about the
-0.9931823 everything answered he
-0.9876835 passed by </s>
-0.9406004 passed in this
-0.7813973 passed through </s>
-0.9150733 passed her and
-0.8474181 passed from <unk>
-0.8670857 passed over <unk>
-0.5867516 passed already <unk>
-0.7267647 passed wearily by
-0.7605131 from missus alexander
-2.297239 from the main
-0.7757378 from the <unk>
-2.024235 from the door
-2.186087 from the window
-2.326216 from the man
-1.094119 from the fine
-2.188762 from the asylum
-2.300697 from the station
-2.225526 from the room
-2.102037 from the bank
-2.298965 from the country
-2.366706 from the direction
-1.37681 from the courthouse
-2.29552 from the forest
-2.362684 from the sad
-2.449442 from the idea
-2.447004 from the opposite
-2.370767 from the chest
-2.449442 from the fund
-2.370767 from the rock
-2.243409 from the hut
-1.709584 from <unk> missus
-1.075781 from <unk> <unk>
-1.226865 from <unk> and
-1.573774 from <unk> by
-1.592967 from <unk> on
-1.333389 from a sense
-1.354797 from a department
-1.004983 from its grasp
-0.6763802 from an <unk>
-0.3466845 from an orphan
-1.70622 from an exact
-0.4384397 from lynde's hollow
-1.415094 from her back
-1.348512 from her mouth
-1.512238 from her parents
-0.8721363 from them all
-1.035741 from out my
-1.040024 from who don't
-1.316051 from their courtiers
-1.316051 from their birth
-0.4983894 from his <unk>
-1.665859 from his own
-1.975365 from his fellow
-1.839741 from his room
-1.97755 from his brain
-1.848602 from his chair
-1.97755 from his converse
-1.048489 from him oh
-0.8975904 from clothes sitting
-1.009492 from three great
-0.8144287 from nothing </s>
-0.9636267 from home that
-1.015496 from marilla where
-0.8858281 from year to
-0.6416637 from off the
-0.3949475 from being <unk>
-1.058267 from you </s>
-1.335476 from you one
-0.9602634 from your tongue
-0.4932776 from curiosity to
-0.8187088 from orphan <unk>
-0.1187736 from nova scotia
-0.3345013 from adopting a
-0.9560564 from me he
-0.7095801 from my <unk>
-1.33626 from my window
-0.7320572 from us </s>
-0.8100612 from england or
-0.812517 from ourselves well
-0.8520444 from pity but
-0.9292402 from morning to
-0.6825953 from envy </s>
-1.06939 from smithtown or
-1.074425 from smithtown before
-0.9375648 from thy heart
-0.8517916 from thee for
-0.4360558 from douglas not
-0.8485983 from twelve to
-0.8897971 from seat or
-0.8937464 children <unk> the
-0.6771647 children and <unk>
-0.998201 children of their
-0.9219551 children up </s>
-0.8869898 children which is
-1.047518 children no insanity
-0.4792417 children do you
-0.7282834 children berth an
-0.8614172 children cultivate them
-1.047274 up one bone
-1.049198 up is another
-0.8779222 up just as
-0.2598617 up where you
-0.9578517 up the road
-0.5460659 up the <unk>
-2.050647 up the steep
-2.019418 up the hill
-2.049802 up the collar
-2.020995 up the staircase
-1.993981 up the prince's
-0.9826589 up <unk> with
-0.4026462 up into the
-0.7620425 up with a
-1.077305 up with her
-1.487295 up and up
-1.526705 up and take
-1.523678 up and off
-0.9457817 up in a
-1.112894 up in his
-1.52598 up in years
-1.538027 up to a
-0.6324634 up to his
-1.708306 up to some
-1.749387 up to line
-0.9672317 up an instant
-0.5049358 up through the
-0.7874456 up well i
-0.6296158 up for the
-0.3608685 up without <unk>
-1.253856 up at a
-1.070942 up at once
-0.3975942 up on the
-0.25123 up all his
-0.7554264 up she had
-0.6631813 up or <unk>
-0.7339123 up people <unk>
-0.8569723 up his <unk>
-1.519955 up his end
-1.199013 up his eyes
-1.022063 up here one
-1.024018 up good dollars
-1.041414 up i wonder
-0.8479305 up when the
-0.7777731 up west of
-0.6073575 up isn't that
-0.9960842 up right away
-0.2552207 up my mind
-0.811748 up proper we
-0.8622101 up again to
-0.5590348 up waiting for
-0.6767369 up mine eye
-0.7317202 up directly put
-0.8665225 up started the
-0.9909337 up bobby the
-0.7393127 up graham <unk>
-0.7193222 up indeed said
-0.7223651 up rejoined she
-0.222718 helped to <unk>
-0.4924518 helped run the
-0.7659034 helped themselves to
-0.7489552 school is the
-1.01707 school and was
-1.051778 church at various
-0.7331282 church aid society
-1.354163 aid to life
-1.290745 aid to sleep
-0.7696089 aid society and
-1.056846 society and foreign
-0.8412208 society of a
-0.9676467 society entered into
-0.8129559 foreign <unk> <unk>
-0.7619956 foreign missionary <unk>
-0.8237299 foreign missionary i
-1.207552 yet the prince
-1.313961 yet the most
-1.000158 yet <unk> for
-0.9647262 yet with all
-1.054473 yet that flash
-0.9293492 yet was not
-0.8614947 yet to be
-1.011273 yet be heard
-0.9781979 yet even he
-0.7247796 yet there is
-1.03784 yet he will
-0.913114 yet here was
-0.834935 yet something must
-1.005742 yet what of
-0.9941411 yet it's as
-0.7799347 yet do not
-1.014586 yet come forth
-0.9624382 yet whose crossing
-1.020313 yet graham would
-0.505392 all the <unk>
-1.897862 all the other
-2.121706 all the year
-1.064996 all the more
-2.02745 all the world
-2.159009 all the orphans
-1.998848 all the others
-2.125666 all the universe
-2.162242 all the fairies
-0.4250616 all <unk> and
-1.660685 all <unk> it
-1.411675 all <unk> to
-1.638449 all <unk> for
-0.5842025 all a <unk>
-0.8178829 all and <unk>
-1.477861 all and always
-1.525405 all and robin
-1.005214 all that <unk>
-1.31476 all that remained
-1.326918 all in and
-1.524391 all in white
-1.525715 all in bloom
-0.8361258 all of the
-0.4335247 all of them
-0.6897254 all it was
-1.054559 all was quiet
-1.007692 all through youth
-1.343895 all but given
-1.343895 all but under
-1.502156 all her might
-1.512238 all her reward
-1.513259 all her strength
-1.242888 all this missus
-1.321572 all this my
-1.025076 all people adopting
-1.036253 all their fortune
-1.001821 all always slightly
-0.698637 all ran to
-0.8988281 all white with
-0.7003741 all white and
-0.9249794 all over again
-0.6454299 all his time
-1.73462 all his family
-1.737204 all his drawers
-1.737204 all his reactions
-0.897965 all seeing eye
-1.055392 all he seems
-1.041279 all been fashioned
-0.7140666 all about the
-1.044573 all have our
-0.7962062 all any more
-0.7225861 all pretty well
-0.5426194 all questions and
-0.9734525 all gone now
-0.8087663 all night </s>
-1.277064 all night long
-1.42606 all i could
-0.4288406 all i know
-0.8832268 all conscience but
-1.008077 all it's just
-1.701134 all your folks
-1.701692 all your calories
-0.3769328 all your sheep
-0.8614994 all winter in
-1.238266 all right i'm
-0.9176059 all right said
-0.2802272 all feel <unk>
-0.8681668 all my <unk>
-1.616207 all my might
-0.5264079 all my heart
-0.6165102 all seemed <unk>
-1.200324 all seemed so
-1.137582 all things the
-1.196747 all things that
-0.7798696 all again a
-0.9510627 all women except
-0.9169216 all brown or
-0.6463092 all possible worlds
-0.8805805 all our faults
-0.6936914 all flowers and
-0.6969822 all loves the
-0.5016792 all these <unk>
-0.8660934 all human sympathy
-0.940465 all became in
-0.7331282 all american eleanor
-0.8126709 all princes are
-0.7217402 all events as
-0.7981352 all waters that
-1.002452 all robin thought
-0.1108609 this missus rachel
-1.044098 this is the
-1.067982 this is <unk>
-1.059044 this is a
-0.7373075 this is very
-1.786252 this is how
-1.049068 this the squire's
-1.022688 this <unk> </s>
-0.5040788 this <unk> <unk>
-1.803397 this <unk> that
-1.652239 this <unk> in
-2.260574 this <unk> old
-2.234256 this <unk> place
-1.890403 this <unk> from
-2.262382 this <unk> gave
-2.262382 this <unk> way
-2.328969 this <unk> companion
-2.324767 this <unk> each
-2.297335 this <unk> manner
-2.326863 this <unk> chateau
-1.378102 this and that
-1.428756 this and she
-1.524109 this and much
-0.7493723 this had been
-0.809978 this place <unk>
-1.05843 this was the
-1.338956 this was so
-1.516881 this was how
-0.7688478 this but the
-0.9325531 this time of
-1.281573 this time her
-0.6235813 this there was
-1.009358 this his answer
-0.6783778 this best of
-0.2239825 this day </s>
-0.834935 this something must
-0.8144287 this nothing </s>
-0.7332564 this unusual mystery
-0.3572175 this year </s>
-1.072908 this fellow </s>
-1.029207 this fellow <unk>
-1.10069 this fellow and
-0.7270657 this they were
-0.8332299 this world what
-1.208953 this world there's
-0.8783633 this advice was
-0.899652 this matter for
-0.9551894 this my guide
-0.7331282 this amazing piece
-0.9099311 this island is
-0.9874626 this child with
-0.355695 this new <unk>
-0.8166929 this uncomfortable position
-0.6642711 this freckled <unk>
-0.9838666 this way the
-1.028447 this way they
-0.6067807 this morning </s>
-1.030139 this morning when
-1.509082 this morning oh
-1.514163 this morning carlos
-0.9182286 this gentleman here
-0.9158796 this moment the
-0.9968993 this jesus whose
-0.7128401 this subject i
-0.7145483 this count of
-0.8132042 this reward and
-0.6969822 this mythus the
-0.9196405 this evidence was
-1.386229 this money to
-1.455429 this money for
-0.5504743 this money yes
-0.6642711 this hurried <unk>
-0.7326156 this unanimous silence
-0.8175427 this conversation the
-0.9693661 this every other
-0.7347887 this necessary <unk>
-0.9159419 this forest for
-0.8664902 this path the
-0.9102648 this death in
-0.921052 this sad office
-0.7564252 this point </s>
-0.1930665 this winding sheet
-0.8082284 this funeral is
-0.8126709 this secret do
-0.8170038 this horrible secret
-0.7005358 this problem of
-0.7332564 this honest turk
-0.2235141 found the <unk>
-1.052196 found <unk> time
-1.354797 found a spot
-1.311506 found a princess
-0.7699104 found that he
-1.043433 found in <unk>
-0.9746055 found in a
-1.59642 found in spite
-1.641329 found in these
-1.053512 found it rather
-0.9715534 found without the
-0.3975942 found on the
-0.6969933 found she was
-1.033489 found them again
-0.7050788 found his <unk>
-0.8601851 found nothing further
-0.4130615 found worthy of
-0.7327689 found then the
-1.028169 found some fault
-1.013432 found himself soon
-0.8085516 sit down </s>
-1.055231 sit and look
-1.026189 sit for hours
-0.6600345 hours of the
-0.8501873 hours of <unk>
-1.177411 hours at her
-1.145304 hours at least
-1.100726 hours passed in
-1.166775 hours passed wearily
-0.6911632 hours after the
-0.7408498 kitchen door and
-0.9907656 kitchen at green
-0.9783446 kitchen window knitting
-0.8129559 knitting <unk> <unk>
-0.8496898 knitting and the
-0.7633242 she is <unk>
-1.315589 she <unk> the
-1.609899 she <unk> a
-1.991638 she <unk> away
-1.471437 she <unk> in
-1.354157 she <unk> to
-1.838583 she <unk> her
-1.795746 she <unk> on
-1.866969 she <unk> out
-1.765979 she <unk> his
-1.989515 she <unk> off
-1.803959 she <unk> me
-1.052214 she with condescension
-1.115344 she had <unk>
-1.780551 she had of
-0.8674924 she had not
-2.129692 she had her
-2.234236 she had knitted
-1.100835 she had never
-1.983183 she had heard
-1.094196 she had been
-2.228896 she had known
-2.201475 she had good
-2.234236 she had fairly
-2.22713 she had expected
-1.826515 she had ever
-1.990274 she had received
-2.228896 she had tried
-1.697459 she was </s>
-1.284285 she was the
-0.8542326 she was <unk>
-1.42531 she was a
-1.919996 she was and
-1.172385 she was in
-1.783445 she was of
-1.26895 she was sitting
-2.081036 she was out
-1.754338 she was so
-1.2922 she was going
-2.348238 she was actually
-2.334846 she was young
-2.134419 she was safely
-2.332654 she was already
-2.348238 she was discovered
-2.339264 she was dead
-2.343728 she was quietly
-2.350511 she was wholly
-0.9880745 she to me
-0.9179003 she could <unk>
-1.51777 she could and
-0.5149475 she could not
-1.675943 she could confess
-0.8446449 she without looking
-0.1824213 she knitted <unk>
-0.7321037 she noticed anything
-0.7554586 she would be
-0.6291205 she would never
-0.7917647 she would have
-1.683387 she would look
-1.301038 she never could
-1.306587 she never saw
-0.6969822 she ran the
-1.257855 she went up
-0.9882357 she went over
-0.8886951 she knew not
-1.140335 she asked <unk>
-1.287571 she asked well
-0.7378917 she been in
-1.425596 she might not
-1.434851 she might could
-1.442005 she might lose
-0.7620802 she didn't know
-0.9217285 she gone the
-0.5675151 she concluded that
-1.022415 she concluded to
-0.7258812 she generally is
-0.774865 she wouldn't <unk>
-0.9207036 she made them
-1.01367 she i never
-0.6973452 she has been
-0.3387313 she did not
-1.318242 she did she
-1.578574 she did look
-1.567 she said </s>
-1.629273 she said in
-1.655055 she said it
-2.002444 she said this
-0.5313638 she said she
-1.971781 she said as
-1.989344 she said so
-1.761196 she said i
-0.8647026 she stepped along
-1.572902 she got one
-0.8930729 she got to
-1.582221 she got there
-1.567265 she got him
-1.608353 she got under
-1.607584 she got hold
-0.7248736 she swept her
-0.7301285 she left </s>
-0.6547781 she left the
-1.297129 she sat down
-0.7094215 she sat and
-1.267179 she sat at
-1.29352 she sat now
-0.802621 she looked like
-0.897029 she laid hold
-0.9716836 she thought in
-0.9055958 she demanded <unk>
-1.021897 she demanded when
-1.046756 she my feeling
-0.8815949 she herself the
-0.7755056 she proceeded to
-0.507882 she sent me
-0.8706023 she took it
-1.22944 she took herself
-0.8937876 she couldn't be
-1.016512 she say until
-0.2309121 she died </s>
-0.8570038 she hardly had
-1.01738 she answered quite
-0.7755056 she preferred to
-0.4301288 she wasn't a
-0.7113743 she wore a
-0.9141249 she stood up
-0.9134123 she held out
-0.8485983 she stopped to
-0.9931373 she already felt
-1.161243 she hadn't time
-1.113464 she hadn't i
-0.9571269 she began at
-0.8109805 she holding out
-0.8614994 she lay in
-0.9651678 she became an
-0.7564252 she persisted </s>
-0.8907913 she tried on
-0.187903 she wants to
-0.1158547 she promised to
-0.9432973 she cried no
-0.330898 she continued to
-0.7755056 she mentioned to
-0.7323596 she caught hold
-0.1919219 she fed him
-0.7986513 she rowed </s>
-1.137218 knitted <unk> of
-1.286341 knitted <unk> on
-1.325993 them the more
-1.339712 them the coat
-1.051462 them <unk> more
-1.055676 them a silence
-1.345557 them with several
-1.342459 them with these
-0.2559141 them and he
-0.5810188 them of the
-1.312934 them was made
-1.352053 them was conquered
-1.441117 them to a
-1.619101 them to find
-1.619808 them to touch
-1.620162 them to ascertain
-1.212024 them for in
-1.345852 them for being
-0.9666771 them up at
-1.556589 them all a
-0.5394514 them all and
-1.364318 them all in
-0.808273 them if i
-0.9691857 them or not
-0.8474598 them as if
-0.8802198 them red </s>
-1.022921 them i'm beginning
-1.041603 them i wouldn't
-0.9182013 them when your
-1.045526 them they must
-0.8190189 them i'd <unk>
-1.266618 them you could
-1.120828 them you know
-0.2880959 them hard to
-1.019064 them again then
-1.285963 them our sight
-1.287891 them our labour
-0.6969822 them carry the
-1.008432 them himself well
-0.6969822 them fled the
-0.3004996 them tried to
-0.5880638 them tired and
-0.760853 if one <unk>
-1.393409 if the old
-1.529946 if the boy
-1.478432 if the five
-1.253779 if <unk> from
-1.35864 if <unk> wells
-0.6638563 if a <unk>
-1.354253 if a fortune
-1.045153 if by heaven
-1.031042 if that were
-1.252384 if it is
-0.7570566 if it had
-2.129791 if it be
-1.54672 if it would
-0.8227389 if it were
-1.793989 if it isn't
-1.99876 if it does
-2.160528 if it comes
-2.003028 if it wasn't
-2.158478 if it kept
-0.8619511 if for a
-1.051224 if her flesh
-1.346781 if she noticed
-1.290212 if she took
-0.9635293 if there had
-0.8736342 if he <unk>
-1.010358 if he had
-1.642112 if he himself
-1.647335 if he wishes
-0.896319 if peter ever
-1.035407 if any news
-1.006365 if marilla had
-0.8166929 if he'd run
-0.621267 if i <unk>
-1.406432 if i must
-1.600523 if i did
-1.403529 if i do
-1.40625 if i don't
-0.9906275 if it's so
-1.271391 if it's dirty
-0.9136635 if they were
-1.614415 if they expected
-1.451756 if they ever
-1.616036 if they ventured
-1.15684 if you <unk>
-0.2770028 if you had
-1.881902 if you would
-1.287773 if you were
-2.224216 if you didn't
-2.023989 if you think
-2.02144 if you don't
-2.218577 if you say
-2.374711 if you wished
-0.9622691 if getting boys
-0.803811 if only a
-0.06583646 if instead of
-0.9572283 if there's any
-1.349666 if we are
-1.56573 if we were
-1.356635 if we get
-1.580954 if we may
-0.8151416 if everybody must
-0.9498995 if god thought
-0.7896287 if jesus could
-0.8800503 if faith that
-0.8168483 if ye ask
-0.6825953 if desired </s>
-0.6356225 if bobby <unk>
-0.7090594 noticed the <unk>
-0.9839487 noticed anything odd
-1.346944 anything that has
-1.271061 anything that when
-1.037821 anything in his
-1.225039 anything in my
-0.80446 anything it is
-0.7844636 anything even to
-0.8897971 anything odd or
-1.038637 anything about children
-0.9770241 anything i can
-0.5017942 anything very <unk>
-1.009773 anything you could
-1.039785 odd <unk> all
-0.9731652 odd in her
-1.035522 odd or out
-0.9602698 odd living away
-0.9783241 odd looking personage
-0.9119573 or one hundred
-1.783919 or the other
-2.048299 or the kangaroo
-0.9628717 or the states
-2.048299 or the industry
-2.048299 or the inside
-2.048299 or the minister
-2.010729 or the mourning
-2.011722 or the army
-2.048299 or the american
-0.8005227 or <unk> </s>
-1.345787 or <unk> the
-1.163643 or <unk> <unk>
-1.983541 or <unk> down
-1.333523 or <unk> and
-1.746403 or <unk> but
-2.026442 or <unk> give
-2.02575 or <unk> right
-2.049959 or <unk> bonds
-0.9283503 or into it
-0.3206677 or a <unk>
-1.508962 or a hollow
-1.014863 or in short
-0.7331932 or of <unk>
-0.9414941 or to the
-1.521117 or to any
-1.436185 or to stay
-1.135749 or not </s>
-1.33606 or not matthew
-0.5126249 or at the
-0.7278082 or her <unk>
-0.9560843 or children do
-0.4264134 or out of
-0.5728681 or would have
-1.025049 or other cause
-1.024921 or he must
-1.044902 or which should
-1.012399 or alive of
-1.06939 or alive or
-1.013025 or good when
-0.7715057 or what <unk>
-0.8966553 or conscience until
-0.7751533 or when he
-0.9508754 or they would
-1.005011 or get stuck
-0.9481081 or perhaps because
-1.00456 or too cold
-1.028585 or two above
-0.9800964 or right as
-0.7359902 or will be
-0.811748 or eleven we
-0.7473425 or whether he
-0.6825953 or somebody </s>
-0.8325052 or four <unk>
-0.9677338 or black so
-0.8586696 or priest is
-0.9462192 or else only
-0.4186053 or wrong </s>
-0.7564252 or cash </s>
-0.899652 or heaven for
-0.8977777 or cold water
-0.7986513 or move </s>
-0.9733714 or indeed any
-0.7328718 or force tears
-0.8655278 or six thousand
-0.8983399 or seat absorbing
-0.7248736 or caught her
-1.039936 out one when
-0.6055669 out the <unk>
-1.702876 out the other
-1.759861 out the squire
-1.896924 out the accusation
-1.845845 out the wine
-1.51487 out the princess
-0.3906338 out <unk> <unk>
-1.334184 out <unk> in
-0.6060648 out in the
-0.9495861 out in <unk>
-0.4996277 out of the
-1.239887 out of avonlea
-1.2142 out of <unk>
-1.425978 out of a
-2.299272 out of place
-0.9088526 out of it
-1.998719 out of an
-2.311496 out of turnip
-2.070951 out of being
-2.311496 out of boys
-1.231097 out of breath
-1.010001 out to him
-0.7688478 out but the
-0.8894433 out well </s>
-0.7534324 out for the
-1.513537 out for himself
-1.514288 out for robin
-1.016246 out her hand
-0.4477372 out on the
-1.339832 out on easter
-0.6004149 out from the
-0.9821886 out from his
-1.493518 out from marilla
-1.001856 out all right
-0.7554264 out she had
-1.041993 out there </s>
-1.309442 out there on
-0.5793359 out their <unk>
-0.9079337 out as you
-1.048445 out so i'd
-0.8680668 out why it
-1.038124 out about things
-0.8773171 out together to
-1.026885 out like dull
-0.5139339 out first <unk>
-1.046937 out my mouth
-0.8653974 out ten millions
-0.7326156 out building every
-1.02387 would just swim
-1.055478 would <unk> probably
-1.724608 would be </s>
-2.190988 would be surprised
-1.15036 would be the
-1.208433 would be a
-0.9831022 would be in
-1.993764 would be it
-2.052033 would be but
-1.862017 would be passed
-2.138389 would be before
-1.860148 would be given
-2.185038 would be today
-1.858288 would be along
-2.165773 would be too
-2.173377 would be better
-2.188996 would be lovely
-1.862955 would be worth
-1.63 would not that
-0.3393769 would not be
-1.874695 would not dare
-1.875347 would not spend
-1.463767 would never rest
-1.46315 would never find
-1.449804 would never again
-1.031267 would there but
-0.7006021 would he <unk>
-0.518522 would have <unk>
-0.4272778 would have been
-1.818655 would have seen
-2.168134 would have sent
-2.170033 would have liked
-2.165303 would have told
-1.004127 would make no
-0.8800503 would find it
-0.9793979 would take her
-1.012409 would it's delightful
-0.9906945 would look like
-0.4250851 would seem to
-1.037054 would do why
-1.053052 would you rather
-0.9602698 would certainly make
-0.2564725 would soon be
-1.004279 would say said
-0.9612563 would stay didn't
-0.4110283 would hardly <unk>
-0.4882224 would come to
-0.9272049 would crush a
-0.9468867 would crush his
-0.8030772 would grasp at
-0.7777731 would judge of
-1.14435 never <unk> <unk>
-0.546065 never <unk> with
-1.309312 never <unk> to
-1.054082 never that sir
-0.9030799 never had a
-0.915536 never be able
-0.9470073 never could tell
-1.011388 never found without
-0.8966553 never rest until
-0.972036 never done before
-0.7755056 never anybody to
-0.8914495 never before in
-1.45484 never been one
-1.483313 never been known
-1.48389 never been able
-0.7962062 never any more
-0.8937876 never find any
-0.6825953 never visits </s>
-0.96039 never set eyes
-0.6923255 never did you
-0.9507614 never seen one
-1.010464 never came so
-0.5455231 never expected to
-0.8348101 never saw the
-0.7885142 never thought of
-0.7005358 never dream of
-0.970162 never really expected
-1.023286 never again see
-0.8097552 never forget this
-0.7113743 never deliver a
-0.7175146 never free it
-0.8890622 never trouble my
-0.190762 never dreamed that
-0.8448549 never makes that
-0.8128249 never fell before
-0.8617619 never swim more
-0.7981352 never fear it
-0.8612449 never rowed before
-1.05231 rest and be
-0.5810188 rest of the
-0.9717456 rest until she
-0.8111339 rest paying an
-0.8937464 until <unk> the
-0.8683772 until at last
-0.7554264 until she had
-0.9405908 until man had
-0.7050788 until his <unk>
-0.8189207 until he was
-1.032567 until matthew came
-0.9935374 until long past
-1.230678 until i know
-1.353559 until i warn
-0.7007666 until they had
-0.7855047 until we have
-0.8448549 until daylight it
-1.046966 there one afternoon
-1.182655 there is <unk>
-0.6556272 there is a
-1.652001 there is in
-1.713471 there is so
-2.084129 there is nothing
-1.872221 there is more
-1.065994 there is no
-1.06997 there is still
-2.104684 there is horrible
-0.8366421 there lived a
-1.057647 there the wood
-0.3906338 there <unk> <unk>
-1.500819 there <unk> an
-1.045326 there a sign
-0.7620425 there with a
-1.232578 there with me
-0.4327124 there and you
-1.528357 there and see
-0.2298533 there had been
-0.9659939 there of course
-0.6897254 there it was
-1.046613 there was the
-0.5673798 there was a
-2.055226 there was an
-2.06853 there was something
-0.4964374 there was no
-2.000689 there was only
-1.049502 there be evil
-1.051567 there but am
-1.291089 there for matthew
-1.297652 there for sale
-0.7278082 there her <unk>
-0.3975942 there on the
-1.346296 there she wouldn't
-1.346781 there she caught
-0.5451763 there would be
-1.140378 there are a
-1.323087 there are plenty
-1.604703 there were plenty
-1.59478 there were three
-1.588933 there were more
-1.588289 there were only
-1.055168 there he decided
-0.8418034 there then said
-0.9656387 there isn't a
-0.9718012 there too i
-0.5590348 there waiting for
-0.6846515 there still <unk>
-0.8070109 there shone so
-1.271483 are the only
-1.323205 are the second
-0.5242482 are <unk> to
-1.533809 are <unk> at
-1.54953 are <unk> you
-1.353982 are a worthy
-1.333907 are a lot
-0.8686654 are in his
-0.9898964 are to have
-1.032818 are not for
-1.018275 are at their
-0.802646 are up to
-0.9500511 are yet to
-1.234176 are all but
-1.177233 are all your
-0.8773046 are this is
-1.04022 are would seem
-0.1160198 are plenty of
-1.001821 are always telling
-0.9756064 are done five
-0.2090587 are so <unk>
-0.8983399 are clothes absorbing
-0.5781056 are going to
-0.9050553 are going there
-1.013653 are here you
-0.9160868 are both a
-0.6945913 are gone to
-0.8233321 are they <unk>
-1.025076 are very useful
-1.166255 are you <unk>
-1.654482 are you in
-1.920948 are you driving
-1.887243 are you then
-1.923015 are you speaking
-1.924052 are you telling
-1.924052 are you ready
-1.923015 are you seeking
-1.038792 are your bonds
-0.4932776 are forced to
-0.6707061 are put in
-0.7837212 are right said
-0.992582 are we to
-1.037794 are my all
-0.355695 are new <unk>
-0.3373437 are laughing at
-0.814368 are mister matthew
-0.9213814 are worth dying
-0.8638356 are wrong how
-0.8108271 are deposited there
-0.8356849 are still a
-0.7321037 are bygones isn't
-0.7128401 are scruples i
-0.6825953 are acute </s>
-0.4385335 plenty of people
-1.512029 plenty of sand
-0.8631432 people lived where
-1.019411 people <unk> <unk>
-1.447744 people <unk> her
-1.526431 people <unk> science
-1.041138 people had she
-1.32549 people in avonlea
-1.352876 people in family
-0.7331932 people of <unk>
-1.027277 people to be
-1.355894 people to help
-0.959272 people but there
-1.052615 people for whom
-0.864746 people helped themselves
-1.038325 people are always
-0.6599501 people were <unk>
-1.307351 people were on
-0.8981149 people called rachel
-0.6567851 people living in
-1.199523 people said it
-1.338629 people said now
-0.9171386 people when they
-1.047276 people they stand
-1.004983 people too hot
-0.8164311 people thought amory
-0.3345013 people adopting a
-0.9609191 people whose eyes
-0.8145226 people horrible never
-1.838051 who is even
-1.520545 who is this
-1.477431 who is he
-1.661735 who is too
-1.851042 who is injured
-1.851042 who is receiving
-1.851042 who is weeping
-1.021631 who just left
-1.050669 who the man
-1.427949 who <unk> the
-0.8320053 who <unk> <unk>
-0.9545115 who <unk> with
-0.9022213 who <unk> to
-1.919232 who <unk> out
-1.992023 who <unk> your
-2.060916 who <unk> like
-2.091693 who <unk> appeared
-0.5430074 who had <unk>
-1.380129 who had to
-1.045343 who had been
-1.546512 who had said
-0.422207 who was <unk>
-1.807496 who was it
-1.741282 who was sitting
-1.729807 who was matthew
-1.883124 who was standing
-0.9470073 who could tell
-0.6969933 who she was
-1.039721 who are forced
-0.7786799 who can <unk>
-1.435596 who can attend
-1.435596 who can number
-1.331279 who were john
-1.3295 who were tired
-1.005405 who went out
-0.8189207 who he was
-0.9208327 who have <unk>
-1.337573 who have loved
-0.7267647 who visits me
-1.283569 who has just
-0.7482192 who has <unk>
-0.4735278 who did not
-1.025408 who like myself
-1.014692 who saw them
-0.4296398 who may be
-0.9607098 who we get
-0.9044799 who don't think
-0.8128249 who died before
-0.9762995 who should go
-0.9880019 who turned into
-0.7312093 who receives us
-0.8317879 who worked in
-0.6642711 who wishes <unk>
-0.7267647 who roused by
-0.7242451 who surely had
-0.7327437 who lives next
-1.413456 can <unk> with
-1.469531 can <unk> from
-1.55818 can <unk> their
-1.656673 can <unk> both
-1.056911 can to oblige
-0.791037 can be <unk>
-1.207868 can be found
-0.1824213 can attend <unk>
-1.055168 can he understand
-1.306493 can go the
-1.340168 can go in
-1.427813 can go repeated
-1.055639 can i forget
-1.004222 can get used
-1.476806 can do things
-1.476806 can do better
-1.475529 can do question
-0.938563 can feel invisible
-0.9402327 can say </s>
-0.6093368 can understand </s>
-0.8238941 can imagine that
-1.196581 can imagine what
-0.7175146 can carry it
-0.7228656 can remember but
-0.7271439 can stop when
-0.6969822 can number the
-0.8160717 can decide there's
-0.9777301 can alone understand
-0.8197282 can show to
-0.9578998 attend <unk> <unk>
-1.097138 attend <unk> to
-0.4232834 their <unk> </s>
-1.287123 their <unk> <unk>
-1.45376 their <unk> and
-1.572185 their <unk> of
-2.111606 their <unk> business
-2.130783 their <unk> bloom
-2.104801 their <unk> marilla
-2.092643 their <unk> most
-0.6734497 their little <unk>
-0.9623416 their children berth
-0.6957869 their own </s>
-0.5034007 their own <unk>
-1.630994 their own if
-1.650335 their own used
-1.009492 their three thousand
-0.7331282 their apartment apparently
-0.8600412 their appearance we
-0.5596363 their part in
-0.9320863 their turn they
-0.8008152 their different <unk>
-0.1853896 their shoulders </s>
-0.9377863 their way <unk>
-0.8449604 their way to
-0.6969822 their heads the
-0.842902 their beautiful <unk>
-0.7925133 their gods i
-0.8815949 their search the
-0.6936914 their industry and
-0.8062516 their quest had
-0.8100612 their ease or
-0.8132873 their courtiers like
-0.8656583 their attention squire
-0.8197282 their birth to
-0.8539028 their friends had
-0.8325052 their coat <unk>
-0.7942808 their direction he
-0.799166 their efforts and
-0.805481 their efforts to
-0.8170038 their melancholy office
-0.2965969 their path </s>
-0.8197282 their fortune to
-0.8972133 their rain that
-0.7327437 their faces during
-0.8465529 business <unk> </s>
-0.6100669 business by <unk>
-1.039762 business had you
-1.050468 business she answered
-0.8044763 business i <unk>
-0.8495269 business said danglars
-1.139443 own <unk> </s>
-1.237504 own <unk> the
-1.226865 own <unk> and
-1.529357 own <unk> from
-1.730885 own <unk> conscience
-0.6650024 own if it
-0.774865 own town <unk>
-1.02951 own made much
-0.8975904 own son beyond
-0.9710258 own that's certain
-0.9213485 own used coffee
-0.7322316 own sake princess
-0.7564252 own grandfather </s>
-0.7328718 own fashion except
-0.6421968 own room and
-0.8309904 own eyes </s>
-0.8160717 own affairs took
-0.9094215 creatures who can
-0.5809484 creatures were <unk>
-0.9711367 other avonlea houses
-1.091096 other <unk> <unk>
-1.248714 other <unk> and
-1.786292 other <unk> place
-1.73889 other <unk> were
-1.702673 other <unk> which
-1.80393 other <unk> doth
-0.6845008 other with <unk>
-1.040233 other and pulled
-0.7699104 other that he
-0.7688478 other but the
-1.051818 other she held
-1.01148 other people had
-0.8614172 other folks into
-0.9219159 other man in
-0.9986721 other night she
-0.9132181 other side there
-0.9470577 other name might
-0.9958024 other thing i've
-0.8166929 other people's virtue
-0.8755068 other orphans it
-1.242696 other hand was
-1.2485 other hand as
-0.8157614 other nice things
-0.6936914 other invisible and
-0.8261097 other times </s>
-0.7564252 other cause </s>
-0.8168483 other easily followed
-0.4026462 folks into the
-1.020671 folks at carmody
-1.055392 folks he liked
-0.8208355 folks something that
-1.056846 work and imagined
-0.5355745 work in the
-0.80446 work it is
-1.036669 work was always
-1.045356 work on any
-0.9671741 work work my
-1.045307 work which demanded
-1.050642 work said martin
-1.047299 work my passion
-0.5275073 work new york
-0.8897911 work doctor </s>
-1.276762 always <unk> by
-1.315182 always <unk> up
-1.053009 always had existed
-0.9140694 always on a
-0.6235813 always there was
-0.9109762 always done and
-1.049361 always as now
-0.7997883 always heard that
-0.6642711 always slightly <unk>
-1.003884 always thought brought
-0.9370373 always feel it's
-0.8070109 always speaking her
-0.4230357 always turn out
-0.1921248 always telling me
-0.6969822 always support the
-0.6642711 always suffered <unk>
-1.039228 done with it
-1.044082 done and well
-0.5355745 done in the
-1.044604 done to an
-1.003179 done without her
-1.052309 done she ran
-1.047459 done him good
-0.964473 done before </s>
-1.039492 done about paredes's
-0.3436837 done five millions
-0.1182339 done pardon me
-0.7090594 ran the <unk>
-0.7629004 ran to the
-0.3975942 circle on the
-1.021499 circle came onward
-0.6622561 as one of
-0.6860828 as the <unk>
-1.915096 as the sun
-2.040792 as the full
-1.884905 as the others
-2.010729 as the birthday
-1.909559 as the count
-1.976152 as the grave
-2.011722 as the corpse
-2.010729 as the sheriff's
-0.6505371 as avonlea <unk>
-0.8013107 as <unk> and
-1.48591 as <unk> in
-1.447246 as <unk> of
-1.377034 as <unk> to
-1.72614 as <unk> but
-1.954766 as <unk> would
-1.753784 as <unk> as
-1.989169 as <unk> beings
-0.2157957 as a <unk>
-1.65474 as a part
-0.5355745 as in the
-0.8575313 as it was
-1.562088 as it came
-1.504197 as it seemed
-1.642649 as it takes
-1.06751 as to the
-0.602287 as to <unk>
-1.88904 as to both
-1.576305 as to give
-1.886229 as to whether
-1.891868 as to jonathan
-0.4758038 as dark <unk>
-1.305476 as well be
-1.314183 as well imagine
-0.6296158 as for the
-1.05041 as not young
-0.924318 as on my
-1.048192 as all princes
-1.0087 as she had
-0.9090042 as she was
-1.623954 as she might
-1.764871 as she concluded
-1.170256 as she said
-1.954695 as she stepped
-1.956664 as she swept
-1.954695 as she lay
-1.766779 as she fed
-1.962575 as if one
-0.9760179 as if <unk>
-1.965169 as if by
-0.9013729 as if it
-1.952353 as if her
-1.156222 as if i
-1.350652 as if they
-2.006055 as if getting
-2.008923 as if instead
-1.352552 as if we
-2.010845 as if everybody
-0.7319568 as anything that
-0.5728681 as would have
-0.9991521 as always thought
-0.7521877 as man was
-1.053356 as his son
-1.685707 as he is
-0.7059825 as he had
-1.383378 as he could
-1.705836 as he found
-2.216939 as he noticed
-1.925726 as he might
-2.216939 as he possibly
-1.933061 as he looked
-2.208489 as he once
-1.934543 as he gave
-1.93977 as he walked
-1.847489 as he turned
-2.216939 as he finds
-1.774492 as he spoke
-0.9561404 as best she
-1.005763 as now he
-0.9998019 as any in
-0.6467635 as might be
-0.2499364 as often as
-0.2599461 as good as
-0.9552842 as sure as
-1.318943 as i was
-1.820251 as i pass
-1.288637 as i have
-0.6858057 as i do
-1.821196 as i approached
-1.064189 as far away
-0.3748599 as far as
-0.6247001 as themselves </s>
-1.046121 as much of
-1.376419 as much at
-1.087953 as much as
-1.278321 as though to
-0.3473474 as though he
-1.17416 as they <unk>
-0.5615479 as they had
-1.782232 as they disappeared
-1.782232 as they professed
-1.782232 as they emerged
-1.706117 as you did
-0.7381733 as you do
-1.800433 as you came
-1.712449 as you may
-1.812979 as you please
-0.2880959 as hard to
-1.019661 as ever that
-1.194418 as ever of
-0.8615894 as turning over
-0.08009018 as soon as
-1.507745 as soon after
-0.7855047 as we have
-0.9704163 as think the
-0.9975115 as another excuse
-0.2255618 as quickly as
-1.162275 as possible without
-0.7302504 as possible you
-0.8032278 as clear as
-0.1158547 as belong to
-0.5360551 as apollo </s>
-0.7217402 as mythical as
-1.033694 as bobby did
-0.7347887 as chief <unk>
-0.919277 as rawlins got
-0.902483 as bonds with
-0.7077313 as bankers in
-1.614346 were the one
-0.886292 were the <unk>
-1.605778 were the case
-1.622261 were the stairs
-1.491507 were <unk> the
-0.9882376 were <unk> <unk>
-2.080357 were <unk> into
-1.478479 were <unk> and
-2.252532 were <unk> back
-0.8943698 were <unk> in
-0.7273909 were <unk> to
-2.133004 were <unk> be
-2.328969 were <unk> dishes
-2.327915 were <unk> laughing
-2.327915 were <unk> secret
-2.328969 were <unk> rivers
-2.328969 were <unk> asleep
-0.5842025 were a <unk>
-1.056621 were to search
-1.115204 were not a
-1.471298 were not as
-1.225082 were not so
-1.343971 were at work
-1.285931 were at rome
-0.9307681 were her eyes
-0.3975942 were on the
-0.9522453 were children which
-0.802646 were up to
-1.149987 were all i
-1.339019 were all american
-1.038202 were or will
-0.4264134 were out of
-0.1160198 were plenty of
-0.6273351 were so <unk>
-0.6717366 were coming on
-0.5764404 were three <unk>
-0.9182941 were driving down
-1.002304 were good you
-1.0352 were more dark
-1.053374 were no longer
-1.337391 were no ghosts
-0.9433259 were you to
-1.25457 were left with
-0.9919241 were left to
-0.9520801 were getting him
-1.035462 were only men
-0.9365396 were bad enough
-0.4665844 were two <unk>
-0.2358408 were part of
-0.8104695 were adopting her
-0.3389961 were grown up
-0.9211844 were full of
-0.6387386 were possible you
-1.003355 were than was
-0.4391686 were heavy <unk>
-0.7986513 were worse </s>
-0.9379169 were several feet
-0.9935374 were already short
-0.8163821 were restless doctor
-0.7267647 were observed by
-0.320231 were upon the
-0.7329999 were john peter
-0.6825953 were disappointed </s>
-0.4361044 were drawn by
-0.916889 were led into
-0.7696089 were natural and
-0.8103674 were rising up
-0.5880638 were tired and
-1.271483 tell the only
-1.339947 tell the news
-1.050236 tell <unk> oh
-0.8069851 tell in <unk>
-1.04632 tell this child
-0.4758038 tell peter <unk>
-1.009689 tell why so
-0.9325869 tell what she
-1.055055 tell i took
-1.050642 tell said douglas
-1.521034 tell you plain
-1.515731 tell you something
-1.360924 tell you i
-0.9980524 tell how it
-1.323148 tell me so
-1.328446 tell me which
-0.7540171 tell whether she
-0.9250204 tell robinson so
-0.814633 tell douglas </s>
-0.7090594 voices the <unk>
-1.056846 voices and keeping
-0.9591524 voices but of
-1.040647 voices he raised
-0.8188557 crossed the <unk>
-1.339476 crossed the hollow
-1.033963 steep little hill
-0.9513804 steep red hill
-1.026781 red <unk> or
-1.028665 red that in
-0.9407447 red well now
-0.8978152 red hill beyond
-0.5764058 red hair </s>
-0.957502 red roads are
-0.9624736 red roads began
-0.9040799 hill road and
-0.8572393 hill beyond </s>
-0.8165375 hill field beyond
-0.8188557 beyond the <unk>
-1.357605 beyond the barn
-0.9684835 beyond everything answered
-1.053523 beyond his usual
-1.039933 beyond which there
-1.055149 orchard <unk> house
-1.048532 orchard and nodding
-0.3975942 orchard on the
-0.7360438 house where the
-0.8188557 house the <unk>
-1.339007 house the long
-1.352846 house and home
-1.353428 house and strange
-0.8069851 house in <unk>
-1.354519 house of danglars
-1.355308 house of thomson
-1.168651 house was in
-1.319304 house was built
-1.050993 house at night
-0.7512693 house as he
-1.299723 house his two
-1.347192 house his black
-0.8570609 house so that
-0.7874908 house he had
-1.030639 house here another
-0.7043038 house when i
-1.029046 house then his
-0.5042792 house filled with
-1.021023 house graham made
-0.8405649 house therefore he
-1.338728 white <unk> between
-1.35864 white <unk> station
-0.7620425 white with a
-1.345971 white with bloom
-0.8178829 white and <unk>
-1.528009 white and thin
-1.505092 white and furnished
-0.5355745 white in the
-0.8008152 white bloom <unk>
-0.2328525 white collar and
-0.935991 white dress that
-0.2273584 white cherry trees
-0.7282834 white birches were
-1.03569 bloom the air
-1.044334 bloom <unk> over
-0.5355745 bloom in the
-1.047696 bloom this island
-0.9942887 bloom white cherry
-1.973412 over the hollow
-1.874631 over the time
-1.976152 over the edge
-0.9562968 over the stone
-2.046141 over the eight
-1.968884 over the face
-1.967086 over the way
-2.011722 over the government
-1.86017 over the lake
-1.068024 over <unk> and
-1.27691 over <unk> his
-1.316029 over and over
-1.355764 over and handed
-0.2516558 over by a
-1.054343 over that hill
-0.4194131 over in the
-1.643637 over in its
-1.69333 over in hopeton
-1.689912 over in new
-0.8674515 over it </s>
-0.9700251 over to the
-0.8790219 over to <unk>
-1.650193 over to green
-1.530617 over to get
-0.904683 over but as
-1.020671 over at carmody
-1.046292 over from nova
-0.9467397 over all </s>
-0.6408422 over them </s>
-1.020459 over as often
-0.8235951 over off and
-1.048604 over you an
-0.8706987 over us with
-0.8968782 over again the
-1.062048 over again at
-0.1183687 over america if
-1.057647 man the iron
-1.184373 man <unk> to
-1.475018 man <unk> not
-1.429814 man <unk> on
-0.5842025 man a <unk>
-1.022625 man with whom
-0.83917 man and <unk>
-1.50166 man and his
-1.607444 man and made
-1.336533 man and i
-0.8865848 man had <unk>
-1.34844 man had offered
-1.32549 man in avonlea
-1.037821 man in his
-0.8973704 man was <unk>
-1.438296 man was that
-1.347628 man was not
-1.70892 man was made
-1.806554 man was first
-1.648546 man was born
-0.904683 man but as
-1.043288 man not from
-0.6645641 man could <unk>
-0.8234117 man on <unk>
-1.332951 man she is
-1.346055 man she cried
-1.036858 man would do
-0.7154998 man who <unk>
-1.319929 man who like
-0.8976653 man whom avonlea
-0.7006021 man he <unk>
-1.04127 man which any
-0.9940715 man going wrong
-0.8416295 man alive and
-0.8393948 man good and
-0.7502527 man made a
-0.8875261 man what was
-1.025348 man i and
-0.935991 man brought it
-0.5444389 man seemed <unk>
-0.5754791 man answered the
-0.9609191 man whose child
-0.9382691 man appeared walking
-0.72765 man lifted up
-0.9684835 whom avonlea people
-0.6979394 whom are you
-0.7874908 whom he had
-0.9098479 whom we <unk>
-1.166842 whom we had
-0.8532587 called rachel lynde's
-0.7090594 called the <unk>
-1.358475 called <unk> existed
-1.33794 called <unk> question
-0.9587297 called out for
-1.048466 husband the next
-0.700253 husband was <unk>
-0.9495302 husband but it
-0.8975904 husband alive next
-0.8981149 his main condition
-1.20898 his <unk> </s>
-1.585875 his <unk> is
-0.8739506 his <unk> <unk>
-2.246363 his <unk> into
-1.865429 his <unk> with
-1.131974 his <unk> and
-2.286941 his <unk> had
-1.699023 his <unk> in
-1.649752 his <unk> of
-1.040106 his <unk> to
-2.549609 his <unk> time
-1.494537 his <unk> for
-2.424986 his <unk> if
-2.182223 his <unk> or
-1.497588 his <unk> he
-2.535439 his <unk> now
-2.676635 his <unk> go
-2.566124 his <unk> green
-2.593299 his <unk> i'm
-2.081883 his <unk> i
-2.704015 his <unk> orphan
-2.628538 his <unk> sleep
-2.630703 his <unk> turn
-2.701453 his <unk> except
-2.562399 his <unk> eyes
-2.560549 his <unk> way
-2.567998 his <unk> most
-1.634168 his <unk> intelligence
-2.706591 his <unk> anger
-2.60337 his <unk> still
-2.57367 his <unk> doth
-2.575578 his <unk> chamber
-2.709184 his <unk> lip
-0.7347887 his earlier <unk>
-0.9967403 his time </s>
-0.8163911 his time to
-1.536453 his time do
-1.552435 his time amongst
-0.897965 his quiet manner
-0.823547 his door <unk>
-1.208189 his door as
-0.7329999 his sharp exclamation
-0.6649903 his own <unk>
-1.53678 his own town
-1.537452 his own grandfather
-1.537452 his own fashion
-1.53678 his own affairs
-0.8572491 his house his
-0.8982649 his late turnip
-0.1187736 his turnip seed
-0.6505371 his best <unk>
-0.96039 his whole life
-1.229905 his life is
-1.225028 his life had
-1.010206 his three sons
-0.8225587 his day </s>
-1.275902 his day has
-0.7942808 his collar he
-0.9696183 his father what
-0.8942333 his son after
-1.020653 his last breath
-1.181993 his mind <unk>
-0.829928 his mind a
-1.299308 his mind with
-0.8361795 his mind was
-1.70908 his mind on
-1.654302 his mind he
-0.9182941 his fellow men
-0.7329999 his cleared land
-1.058403 his side in
-1.093103 his side but
-0.926928 his then and
-0.6716241 his only <unk>
-0.9420511 his name or
-0.9969518 his lips he
-1.029187 his lips good
-0.898415 his curiosity conquered
-1.062056 his hair and
-1.141281 his hair yes
-1.301218 his two hands
-1.302405 his two sons
-0.8007035 his voice </s>
-1.272227 his voice was
-1.30617 his voice still
-0.7347887 his usual <unk>
-0.2158696 his mental <unk>
-0.8642255 his exclamation been
-1.289209 his head the
-1.445806 his head whether
-1.449127 his head above
-1.451132 his head toward
-1.451802 his head fell
-0.9760895 his sleep had
-0.7610553 his heart <unk>
-1.2107 his heart wouldn't
-0.6505371 his young <unk>
-0.7777731 his end of
-1.312581 his wife up
-1.331486 his wife having
-1.334548 his wife distinctly
-1.330978 his wife became
-0.7777731 his doubts of
-0.7217402 his duty as
-0.8951604 his family in
-0.7223651 his arrival she
-0.9212329 his grandfather in
-0.9629086 his grandfather each
-0.9296078 his breath to
-0.7332564 his stooping shoulders
-0.8825001 his horse in
-0.8659193 his small farm
-1.250919 his room with
-0.7345237 his room and
-0.7735312 his sister the
-1.149724 his hand </s>
-0.68046 his hand to
-1.591888 his hand he
-1.689872 his hand towards
-1.696065 his hand extended
-1.695286 his hand paredes's
-0.6601833 his question </s>
-1.114324 his eyes <unk>
-1.510927 his eyes and
-1.660489 his eyes was
-1.192617 his eyes to
-1.267461 his eyes were
-1.264769 his eyes which
-1.714619 his eyes when
-1.761476 his eyes showed
-1.744951 his eyes still
-0.8396921 his hat </s>
-0.9484444 his face he
-0.7175146 his chin it
-0.8405649 his ordeal he
-1.278301 his way through
-1.280969 his way round
-0.7209915 his companion with
-0.8666994 his feet a
-0.9784266 his black clothing
-0.8655713 his divine feet
-1.240297 his answer with
-1.236603 his answer was
-1.262168 his answer would
-0.8983399 his tears pushing
-0.7777731 his freedom of
-0.7328718 his social position
-0.8175427 his reward the
-0.7347887 his quest <unk>
-0.9558938 his hands were
-0.7735312 his service the
-0.9663885 his position <unk>
-1.08438 his position for
-0.2529714 his attention </s>
-1.186852 his attention it
-0.9064616 his promise to
-0.9549306 his promise there
-0.7318479 his sleeping room
-0.8171593 his lower lip
-0.3304244 his brain the
-0.8598266 his condition from
-0.8969169 his country home
-0.9196708 his round face
-0.7328718 his couch across
-0.6642711 his disturbed <unk>
-1.049543 his coat and
-1.138897 his coat came
-0.8615894 his neck will
-0.1881954 his disappearance of
-0.799166 his fate and
-0.8482598 his fate hand
-0.6642711 his personal <unk>
-1.084868 his bed </s>
-1.161449 his bed he
-0.8135957 his weariness could
-0.9320424 his clothing he
-0.9521619 his clothing no
-0.790753 his direction a
-0.7329999 his increased self
-0.7232414 his strength his
-0.7328718 his blood run
-0.9416365 his death when
-0.9055958 his fingers <unk>
-1.016693 his fingers on
-0.7331282 his approaching ordeal
-0.7282834 his salvation were
-0.4075004 his pocket with
-0.7523801 his pocket book
-0.8808607 his chair </s>
-0.8985086 his chair and
-0.4026671 his arm </s>
-1.115604 his arm put
-0.7696089 his desk and
-0.7347887 his drawers <unk>
-0.7175146 his scruples that
-0.9513136 his banker is
-0.9629086 his banker danglars
-0.3294785 his daughter and
-0.9373889 his receipt believe
-0.7322316 his charities alone
-0.8578146 his mother when
-0.8485983 his seat to
-0.7216153 his problem at
-0.6642711 his profound <unk>
-0.7217402 his reactions as
-0.7329999 his innocent laughter
-0.7850687 his tunic </s>
-0.799166 his tunic and
-0.8033658 his nostrils the
-0.8393275 his nostrils her
-0.6642711 his highness <unk>
-0.7209915 his burden with
-0.3684161 his cheeks </s>
-0.9193258 his cheeks and
-0.1912772 his converse with
-0.805481 his default to
-0.8495989 his default short
-1.282338 late and there
-1.168123 late and i
-0.1187736 late turnip seed
-0.931232 late he said
-0.8693789 late fall </s>
-0.957634 turnip seed the
-1.009161 turnip seed on
-0.9897512 turnip seed he
-1.048466 seed the next
-0.3975942 seed on the
-1.05528 seed he wouldn't
-1.056699 field and fence
-0.5445531 field beyond the
-0.7874908 field he had
-1.034468 barn and out
-0.8614947 anybody to be
-1.019074 anybody not really
-1.040165 anybody who went
-1.068024 went <unk> and
-1.335114 went <unk> well
-1.179059 went down and
-0.9749908 went down to
-0.6997912 went back to
-0.6060648 went in the
-1.285624 went in with
-1.06751 went to the
-0.9705666 went to <unk>
-1.839572 went to work
-0.7992881 went to bright
-1.888476 went to dress
-1.890735 went to rome
-1.045016 went from home
-1.03912 went up into
-0.4264134 went out of
-0.2395773 went over to
-0.8879593 went presently a
-1.056086 pass a small
-0.4264134 pass out of
-1.015178 pass over that
-1.638925 so the kitchen
-1.588229 so the count
-1.459446 so the water
-1.367273 so the princess
-0.7802025 so <unk> <unk>
-2.03771 so <unk> into
-1.730781 so <unk> a
-1.73769 so <unk> that
-1.579196 so <unk> in
-1.453845 so <unk> to
-1.879314 so <unk> but
-2.227773 so <unk> would
-1.188845 so <unk> as
-2.292192 so <unk> matthew
-2.325683 so <unk> clean
-2.153963 so <unk> when
-2.183687 so <unk> they
-2.286164 so <unk> afraid
-2.284989 so <unk> sleep
-2.326974 so <unk> acquired
-1.034384 so little scope
-0.742561 so that the
-1.550157 so that it
-1.080141 so that he
-1.725178 so that marilla
-1.925551 so that nor
-1.510039 so that you
-1.923859 so that robin
-0.6060648 so in the
-1.353411 so in quest
-0.9842148 so to give
-0.9758858 so but that
-0.7190153 so for the
-1.085816 so for he
-0.4924518 so run the
-1.335296 so all through
-1.337774 so all questions
-1.288514 so she asked
-1.290212 so she took
-0.8725643 so as to
-0.6599501 so were <unk>
-1.308364 so were her
-1.441857 so he gave
-1.525779 so he tied
-1.525779 so he swam
-0.710253 so because of
-1.027343 so before why
-0.898644 so matthew and
-1.144062 so matthew went
-1.017758 so go tell
-0.9165303 so often made
-0.7315924 so rarely went
-0.9517514 so i'll stop
-0.6950625 so i'm not
-1.667652 so i would
-1.565491 so i did
-1.738258 so i gave
-1.213645 so i am
-1.816392 so i return
-1.817517 so i remain
-1.021999 so has doctor
-1.307332 so far the
-0.880818 so far <unk>
-0.9549786 so far as
-1.426166 so far may
-0.9506211 so said missus
-1.236137 so much <unk>
-1.082761 so much of
-1.50654 so much time
-1.517258 so much imposed
-0.9194738 so i'd better
-0.9586958 so great a
-1.02409 so very red
-0.7332564 so slightly developed
-0.8864995 so kind i
-0.9291768 so perhaps was
-0.9349044 so bad where
-1.105613 so thin that
-1.094276 so thin i
-0.7113743 so earnest a
-0.7925133 so stupid i
-0.6954943 so soon as
-1.039479 so we sent
-0.959582 so young so
-0.6642711 so foolish <unk>
-0.9756158 so strange an
-0.898415 so near perfection
-0.8879593 so sweet a
-0.1662876 so many <unk>
-0.9483185 so glad i'm
-0.8800503 so wonderful that
-0.9468479 so beautiful could
-0.7310817 so ashamed because
-0.7143108 so low he
-1.036543 so bobby since
-0.8146772 so perfectly like
-0.7110023 so indeed i
-0.8070109 so rich so
-0.2215168 so replied the
-0.7128401 so curious i
-0.7175146 so rotten it
-0.7113743 so brave a
-1.017195 seeing and my
-1.051224 seeing her wide
-0.8825028 seeing eye she
-1.04965 seeing him standing
-1.047913 seeing you they
-1.055752 afternoon in early
-0.8412208 afternoon of a
-0.9491099 early so he
-0.6969822 early june the
-1.040418 june the sun
-1.010879 june <unk> but
-1.048388 sun and furnished
-0.5355745 sun in the
-1.021035 sun was coming
-0.5451763 sun would be
-0.8354044 sun went down
-0.4853354 sun rose </s>
-1.033876 coming in at
-0.4503242 coming to <unk>
-1.546978 coming to her
-1.65345 coming to herself
-0.5049358 coming through the
-0.9098282 coming for me
-0.1548031 coming on the
-0.6980984 coming over in
-1.056405 warm and bright
-0.6470388 warm themselves at
-0.7800872 warm myself at
-1.241926 bright river <unk>
-1.414057 bright river it
-0.7263385 bright river to
-1.454637 bright river there
-1.47538 bright river we're
-1.475912 bright river hotel
-0.7699104 knew that he
-1.043456 knew not what
-1.02302 knew she hadn't
-0.7978911 knew what to
-0.7930983 knew me </s>
-1.485663 he is </s>
-0.4884153 he is <unk>
-1.117038 he is a
-1.727001 he is my
-1.906484 he is himself
-1.915404 he is perfectly
-1.205769 he <unk> </s>
-0.7801446 he <unk> the
-0.9373214 he <unk> <unk>
-1.441943 he <unk> with
-1.883532 he <unk> that
-1.707755 he <unk> in
-2.024915 he <unk> it
-1.572865 he <unk> to
-2.324077 he <unk> be
-2.344305 he <unk> through
-2.058619 he <unk> at
-2.189749 he <unk> her
-2.125793 he <unk> on
-2.093373 he <unk> as
-2.395322 he <unk> over
-1.508825 he <unk> his
-2.476142 he <unk> here
-2.550138 he <unk> green
-2.682483 he <unk> generally
-2.521353 he <unk> made
-2.483714 he <unk> what
-2.56272 he <unk> do
-1.515427 he <unk> you
-2.586801 he <unk> us
-1.56988 he <unk> himself
-2.680115 he <unk> remembered
-2.67776 he <unk> graham's
-2.441966 he <unk> graham
-2.680115 he <unk> opposite
-2.550138 he <unk> indeed
-0.5842025 he a <unk>
-0.6643086 he with a
-0.8496898 he and the
-1.881668 he had </s>
-1.440527 he had the
-1.008798 he had <unk>
-1.476354 he had a
-2.393736 he had an
-1.994151 he had for
-1.335927 he had not
-2.45144 he had without
-2.494663 he had passed
-1.343882 he had never
-2.47561 he had always
-1.914914 he had asked
-1.111194 he had been
-2.414825 he had any
-2.448511 he had nothing
-1.870298 he had said
-2.497922 he had seen
-2.46944 he had looked
-2.46944 he had five
-2.488219 he had once
-2.497922 he had none
-1.560354 he had worn
-2.504513 he had failed
-1.281955 he had come
-2.497922 he had walked
-2.488219 he had let
-1.684105 he had already
-2.124745 he had fallen
-2.494663 he had started
-2.12892 he had ridden
-2.501205 he had slept
-2.507846 he had torn
-1.56111 he had spoken
-2.507846 he had hoped
-1.799232 he was </s>
-1.165907 he was the
-0.8047264 he was <unk>
-1.087171 he was a
-1.721944 he was in
-1.467715 he was an
-1.127606 he was not
-1.544911 he was past
-1.859733 he was so
-2.110412 he was coming
-1.246679 he was going
-2.276904 he was taking
-2.538411 he was taken
-2.51548 he was much
-1.974803 he was only
-2.261076 he was too
-2.483205 he was like
-2.518281 he was put
-2.112615 he was born
-2.2834 he was safely
-2.485805 he was again
-2.535477 he was twenty
-2.553383 he was lacking
-2.276904 he was glad
-2.553383 he was approaching
-2.268918 he was alone
-2.553383 he was resolved
-1.027277 he to be
-1.355316 he to pangloss
-1.008256 he but at
-0.9208215 he reached bright
-0.2602767 he for i
-1.065378 he not <unk>
-1.330799 he not be
-1.710442 he not asked
-1.590322 he not mean
-1.590915 he not speak
-0.5656364 he could not
-2.059775 he could think
-0.8109083 he could see
-1.123735 he could hardly
-2.067371 he could live
-2.068467 he could picture
-2.067371 he could send
-2.069566 he could alter
-2.068467 he could bear
-1.126977 he found a
-1.535986 he found that
-0.7882928 he found in
-1.535986 he found it
-1.565505 he found his
-1.603655 he found some
-0.6969822 he noticed the
-0.5859219 he would be
-0.4277537 he would have
-1.872831 he would take
-1.876031 he would hardly
-1.615161 he would crush
-1.310904 he never visits
-1.310904 he never dreamed
-1.031606 he are up
-1.042007 he who wishes
-0.7790945 he can do
-0.1876474 he crossed the
-0.8888786 he knew me
-0.3401225 he ought to
-1.079689 he ought because
-0.698637 he meant to
-0.7744649 he going there
-1.402909 he asked with
-1.381143 he asked he
-1.44316 he asked maybe
-0.3221275 he might have
-1.470926 he might cultivate
-0.989744 he didn't miss
-1.001064 he must <unk>
-0.3579958 he must have
-0.8650499 he wouldn't dress
-1.286788 he made the
-1.046736 he made a
-1.635618 he made an
-0.6505475 he made no
-1.353559 he i blush
-1.27659 he i cannot
-1.180644 he has an
-1.522898 he has three
-1.528403 he has given
-1.531181 he has fear
-0.9616901 he set fire
-0.1086293 he did not
-1.473306 he said </s>
-1.494669 he said missus
-1.28063 he said <unk>
-1.729179 he said with
-1.62136 he said and
-1.57205 he said that
-1.542883 he said in
-1.941037 he said was
-2.00866 he said if
-1.694834 he said i
-2.014888 he said your
-2.045195 he said rawlins
-0.8659193 he stepped aside
-0.9115617 he got <unk>
-0.7303167 he possibly could
-0.8791399 he no longer
-0.9858956 he then i
-1.324918 he then lifted
-0.279825 he looked at
-1.386736 he looked he
-0.9556059 he came back
-0.9193309 he came to
-0.956334 he came upon
-0.9805818 he isn't so
-0.9825155 he too was
-0.9527714 he saw that
-0.9628167 he saw her
-1.513793 he saw something
-1.493451 he saw what
-0.908864 he thought <unk>
-0.4271243 he thought he
-1.127124 he felt the
-1.177491 he felt for
-1.239439 he put on
-1.256817 he put both
-1.196342 he soon found
-0.8090952 he soon came
-0.4379034 he broke off
-0.8368612 he may have
-1.27179 he may hear
-0.9599675 he we come
-0.9670559 he once was
-0.9482294 he brought her
-0.9087507 he will <unk>
-0.8538525 he will be
-0.9150984 he decided what
-1.132854 he took and
-1.213084 he took no
-0.4758038 he couldn't <unk>
-0.3921403 he gave her
-1.435856 he gave way
-0.9151634 he can't be
-0.9431391 he does i
-0.7347887 he liked <unk>
-0.4250851 he seems to
-0.8977777 he hung fire
-0.8162269 he met women
-0.7232414 he tied his
-1.030012 he answered if
-1.233691 he answered i
-0.3253421 he should be
-1.447648 he should never
-1.453853 he should fail
-0.9342911 he understand you
-1.074189 he walked <unk>
-1.236519 he walked back
-0.7243979 he walked over
-1.472784 he turned about
-1.498897 he turned almost
-1.495917 he turned towards
-1.490017 he turned upon
-1.487826 he turned graham
-0.7232414 he extending his
-0.9211507 he stood aside
-0.9083929 he held her
-0.8855879 he stopped on
-1.000306 he hadn't <unk>
-1.166775 he hadn't dreamed
-0.7735312 he watch the
-0.9587641 he began a
-0.3650699 he began to
-1.410683 he began but
-1.013852 he himself hadn't
-0.9105737 he wished her
-0.7263858 he accepted all
-0.7324876 he pressed mine
-0.8955357 he tears down
-0.961425 he lost sight
-0.8837705 he trouble his
-0.7263858 he occupied one
-0.7175146 he finds it
-0.7308265 he learned nothing
-0.8088385 he remembered one
-0.8907175 he lay there
-0.8619343 he slept again
-0.4445545 he became <unk>
-1.19922 he became ashamed
-0.9468867 he raised his
-0.9611712 he raised himself
-0.8967674 he glanced away
-0.814471 he repeated them
-0.6936914 he softly and
-1.055435 he sprang with
-1.068557 he sprang from
-0.9384455 he appeared moreover
-1.295046 he spoke with
-1.222846 he spoke of
-1.29739 he spoke at
-1.328063 he spoke are
-1.342945 he spoke seriously
-0.9696313 he entered another
-0.728664 he faced bobby
-0.187903 he wants to
-0.8892458 he rushed from
-0.4244233 he witness the
-0.8366421 he fixed a
-0.728664 he wishes bobby
-0.8522772 he paused <unk>
-0.8985086 he paused and
-0.7270174 he emerged from
-0.3377906 he changed his
-0.7328718 he scarcely glanced
-0.340032 he gives off
-0.7317202 he reproach himself
-0.330898 he continued to
-1.002674 he added you
-1.022683 he added yes
-1.025942 he added carelessly
-0.5486836 he placed the
-0.6642711 he double <unk>
-0.7248736 he bore her
-0.7981352 he fell that
-0.7318479 he swam away
-0.187903 he resolved to
-0.812979 he shut them
-0.7175146 he asserted it
-0.4023689 ought to be
-1.407439 ought to have
-0.8391114 ought because she
-0.9909238 ought i to
-1.047865 because the thing
-1.414672 because of an
-1.374556 because of their
-1.182329 because of his
-0.9082636 because it had
-0.8795311 because she had
-0.8033799 because she was
-1.055168 because he couldn't
-1.502343 because i had
-0.7868732 because i didn't
-1.594316 because i know
-1.807085 because i believe
-1.806614 because i love
-1.883901 because i smile
-0.8632042 because when you
-0.850867 because they had
-1.269431 because they would
-0.8885065 because they were
-0.7310817 because virgilius has
-0.7090594 heard the <unk>
-0.8129559 heard <unk> <unk>
-1.055539 heard a voice
-1.024515 heard and all
-1.244625 heard that a
-1.349765 heard that prince
-0.968805 heard in that
-0.9978924 heard of a
-1.314869 heard of such
-1.051048 heard her shriek
-1.04065 heard from who
-1.04836 heard him tell
-0.7140666 heard about the
-0.9901319 heard nothing i
-0.8803645 heard last week
-0.9838346 heard while monte
-0.8159166 heard cries along
-0.594967 him missus spencer
-1.477462 him the people
-1.376821 him the water
-1.532138 him the example
-1.285571 him <unk> </s>
-0.6928276 him <unk> <unk>
-0.7764838 him <unk> with
-1.731511 him <unk> you
-1.899858 him <unk> lie
-0.2456328 him into the
-1.315481 him into my
-0.915871 him a <unk>
-0.6382787 him a good
-0.6540496 him a god
-0.6765768 him with <unk>
-0.6640739 him with a
-1.924354 him with its
-0.7928656 him with his
-1.927805 him with wonderful
-1.163665 him and the
-1.43512 him and he
-1.722757 him and why
-1.726225 him and said
-1.821106 him and held
-1.775648 him and kept
-0.1958219 him by the
-0.6997912 him back to
-0.6323558 him in the
-1.009847 him in <unk>
-1.31721 him in her
-0.6899269 him of the
-1.280591 him of it
-1.301529 him of course
-1.054978 him was proved
-1.113587 him to the
-0.5272904 him to <unk>
-1.310346 him to be
-1.788657 him to make
-1.753791 him to keep
-1.980753 him to eat
-2.04203 him to glance
-2.04203 him to remain
-1.040804 him an arm
-1.428964 him for not
-1.418598 him for she
-1.430201 him for what
-0.6038617 him at the
-1.152558 him at once
-1.514865 him at breakfast
-0.3975942 him on the
-1.046292 him from england
-1.039631 him up again
-1.023595 him she fed
-0.9150207 him if the
-0.6235813 him there was
-0.9586639 him as <unk>
-1.08947 him as i
-1.01225 him tell peter
-1.025667 him over from
-1.053691 him his charities
-0.8506347 him he <unk>
-1.229482 him he said
-1.479111 him he may
-0.7727403 him now and
-1.296803 him now matthew
-1.170399 him here </s>
-1.092128 him here i
-1.022398 him good while
-1.267121 him off there
-1.274058 him off i'm
-0.535758 him that's what
-1.076929 him i was
-1.252107 him i think
-0.7402397 him nor what
-0.8090188 him then </s>
-1.027965 him some wine
-0.8328081 him oh you
-0.5968844 him like a
-0.7645248 him ever since
-0.7304887 him will you
-1.025735 him don't make
-0.8148715 him than <unk>
-0.9380558 him awake </s>
-1.020404 him awake all
-0.7735312 him homer the
-0.7113743 him inhale a
-0.330898 him courage to
-0.8849691 him quietly as
-0.728664 him urged bobby
-0.9383866 him thy fair
-0.3372063 him ah you
-0.8608577 him standing there
-0.9392759 him pangloss was
-1.075376 peter <unk> the
-1.35864 peter <unk> john
-1.002594 peter had asked
-1.017264 peter ever went
-0.6936914 peter judas and
-1.011157 evening rachel marilla
-1.05636 evening a reply
-1.056405 evening and savareen
-0.8914495 evening before in
-1.025309 evening after wandering
-0.498699 evening isn't it
-1.606212 before the spring
-1.656254 before the various
-1.637522 before the lady
-1.459446 before the water
-0.888893 before <unk> and
-1.051002 before and about
-0.9495861 before in <unk>
-1.037821 before in his
-0.80446 before it is
-0.704212 before to <unk>
-0.930267 before she had
-1.256756 before she could
-1.436996 before she died
-1.037605 before them fled
-1.349507 before his arrival
-1.348183 before his death
-1.072174 before he could
-1.35088 before he got
-1.255578 before him the
-1.12273 before him with
-0.9772204 before him to
-0.8680668 before why it
-0.9856041 before long they
-1.019978 before last since
-1.015087 before i wish
-0.8479305 before when the
-0.9507584 before they have
-1.031139 before you go
-0.9169216 before either man
-0.8190189 before round <unk>
-0.8422846 before noon when
-0.8454279 before noon do
-1.019701 store over at
-0.7322316 store crowded along
-0.7699104 carmody that he
-1.039745 carmody to bring
-0.704212 meant to <unk>
-0.9371544 meant four hundred
-0.9413577 next door to
-0.9190737 next she <unk>
-1.238657 next she might
-0.4186053 next afternoon </s>
-1.024294 next he came
-0.6320667 next thing to
-1.049869 next morning <unk>
-1.219782 next morning soon
-1.021023 best just people
-1.137218 best <unk> of
-1.354025 best <unk> clara
-1.347877 best of all
-1.182329 best of his
-1.527603 best of possible
-0.9447424 best she could
-0.7077313 best houses in
-0.7043038 best when i
-0.6825953 best age </s>
-0.786383 best philosopher in
-1.054645 clothes and i've
-0.4650415 clothes sitting on
-1.035545 clothes are here
-0.8054747 clothes which was
-0.1824213 clothes absorbing <unk>
-0.9707081 which is <unk>
-1.627119 which is hard
-1.627682 which is also
-1.62881 which is worse
-0.9187404 which the <unk>
-1.778503 which the little
-1.805325 which the day
-1.80739 which the young
-1.866884 which the noise
-1.839079 which the receiver
-1.474013 which the princess
-1.340799 which <unk> the
-1.611362 which <unk> a
-0.868793 which <unk> that
-1.48591 which <unk> in
-1.971352 which <unk> have
-1.979248 which <unk> us
-2.007804 which <unk> impertinence
-2.007804 which <unk> alike
-0.6638563 which a <unk>
-1.160918 which a man
-0.919363 which by a
-1.603667 which had so
-0.9484327 which had been
-1.549004 which had disappeared
-1.637668 which had apparently
-0.8686654 which in his
-0.6600345 which of the
-1.277381 which of them
-1.465332 which was </s>
-1.812906 which was plain
-1.722347 which was taking
-1.809718 which was possible
-1.724952 which was harder
-1.810513 which was placed
-1.014604 which time she
-1.018275 which at their
-0.727036 which all the
-0.6969933 which she was
-0.6650024 which if it
-0.6502757 which would have
-1.18707 which would crush
-0.7247796 which there is
-0.3996493 which he had
-1.240306 which he was
-1.377696 which he could
-1.823426 which he bore
-0.9976109 which have such
-1.035043 which any lady
-1.016173 which nothing doth
-1.794969 which i call
-1.37266 which i do
-1.515102 which i saw
-1.878032 which i once
-1.880629 which i paid
-1.881281 which i promised
-1.880629 which i cultivate
-0.9746214 which has the
-1.330421 which they made
-1.333799 which they thought
-1.308023 which you didn't
-1.349904 which you figure
-1.000796 which looked green
-0.8622793 which demanded their
-0.9418251 which certainly was
-0.3526918 which seemed to
-0.8814191 which hung at
-0.9782626 which should throw
-0.7319758 which finds its
-0.8158131 which whatever may
-1.015949 which still doth
-0.943179 which bobby had
-0.3947574 which became <unk>
-0.8972535 which moved themselves
-0.9209861 which led thee
-1.206486 plain that his
-1.002882 plain that i
-0.7175146 plain proof that
-0.7699104 proof that he
-0.5810188 proof of the
-0.5842025 going a <unk>
-1.037693 going and why
-1.06751 going to the
-1.839572 going to work
-1.842602 going to find
-1.720693 going to get
-0.8034778 going to live
-1.842095 going to leave
-1.04374 going up rejoined
-0.4264134 going out of
-1.041993 going there </s>
-1.323435 going there too
-1.043625 going so we
-0.9657571 going home for
-0.7960131 going wrong <unk>
-0.5426194 going sir and
-0.8496898 buggy and the
-1.019874 buggy was something
-0.9987761 buggy to go
-1.049556 buggy not another
-1.156764 sorrel mare missus
-1.000044 sorrel mare <unk>
-1.150351 sorrel mare which
-0.2600956 mare missus rachel
-0.8129559 mare <unk> <unk>
-1.056846 mare and saddle
-0.7700684 mare which <unk>
-0.870855 mare hadn't </s>
-0.704212 distance to <unk>
-1.0281 distance now where
-1.000156 now where was
-1.050073 now <unk> must
-1.729869 now and by
-0.3720322 now and then
-1.741239 now and again
-0.9634932 now that they
-1.056331 now to bed
-1.049826 now be silent
-1.048741 now for your
-1.046148 now this new
-0.6936914 now knitting and
-1.060998 now if he
-0.6799874 now if you
-0.6235813 now there was
-1.052853 now his hands
-0.7006021 now he <unk>
-0.8508149 now matthew was
-1.022402 now why can't
-1.563697 now i think
-1.690605 now i love
-0.6616101 now i dunno
-1.604589 now i cannot
-0.8621838 now said he
-0.2588881 now you can
-0.9513275 now quite late
-0.7521108 now saw that
-0.6220767 now having <unk>
-0.9494936 now hold as
-1.050091 matthew is getting
-1.158043 matthew <unk> <unk>
-1.691204 matthew <unk> his
-1.883534 matthew <unk> father
-0.8032517 matthew <unk> off
-1.866295 matthew <unk> it's
-1.89706 matthew <unk> getting
-0.2821111 matthew and marilla
-1.469153 matthew and i
-1.345932 matthew had gone
-1.347045 matthew had taken
-1.537393 matthew cuthbert is
-0.9464639 matthew cuthbert and
-1.529027 matthew cuthbert had
-0.7878116 matthew cuthbert of
-1.515843 matthew cuthbert at
-1.54925 matthew cuthbert out
-1.571164 matthew cuthbert going
-1.225749 matthew was not
-1.519315 matthew was left
-1.524226 matthew was terrible
-1.056911 matthew to tea
-0.801165 matthew who was
-0.1720272 matthew went to
-1.049071 matthew so rarely
-0.8610594 matthew why a
-0.9294302 matthew dressed up
-0.1824213 matthew barely <unk>
-1.019809 matthew came home
-0.7263858 matthew dreaded all
-0.6969822 matthew enjoyed the
-0.6969822 matthew encountered the
-0.786383 matthew groaned in
-0.8783633 matthew however was
-0.7981352 matthew says that
-0.8188557 why the <unk>
-1.339476 why the worthy
-0.933447 why <unk> of
-1.190138 why a good
-1.313729 why a bride
-0.9460835 why it is
-0.794116 why it was
-1.018187 why was he
-0.746052 why this <unk>
-1.336062 why this count
-1.052186 why she wasn't
-1.04782 why so strange
-1.011969 why he should
-0.9812798 why take one
-0.7769075 why i'm so
-0.880279 why what a
-0.6923255 why did you
-0.8632042 why when you
-0.1766204 why do you
-0.9531199 why will not
-0.8918617 why couldn't they
-0.8255036 why i've come
-0.9143842 why can't we
-0.698637 why object to
-0.8799988 why bobby asked
-0.594967 asked missus spencer
-1.681818 asked the little
-1.576503 asked the old
-0.6342393 asked the prince
-1.685139 asked the count
-0.9079474 asked <unk> to
-0.6643086 asked with a
-1.054938 asked and must
-0.9407447 asked well now
-1.340785 asked for would
-1.345343 asked for money
-1.232389 asked her a
-1.116737 asked her to
-0.7006021 asked he <unk>
-1.159448 asked him of
-1.332543 asked him if
-0.9772681 asked i saw
-0.9511685 asked maybe rawlins
-1.246574 asked my advice
-1.24457 asked my eyes
-0.6826871 asked again </s>
-0.8958713 asked quietly why
-0.6969822 asked wearily the
-0.8689696 asked rawlins to
-0.08589916 asked chateau renaud
-0.6066301 asked morrel </s>
-1.114369 asked morrel yes
-1.040999 been one there
-1.331495 been the case
-1.339712 been the king
-1.236529 been <unk> </s>
-0.797715 been <unk> <unk>
-1.634843 been <unk> with
-1.337409 been <unk> and
-1.787277 been <unk> by
-1.387828 been <unk> to
-1.763716 been <unk> but
-1.722797 been <unk> from
-1.920615 been <unk> she
-1.915667 been <unk> so
-1.05595 been a mistake
-0.4543691 been in the
-1.072046 been in a
-1.529367 been in and
-1.575879 been in it
-1.81866 been in bed
-0.9742641 been done without
-0.6273351 been so <unk>
-0.8485983 been known to
-1.01884 been here said
-0.8631528 been any other
-0.4130615 been worthy of
-0.5071116 been more <unk>
-1.020387 been made so
-0.3307273 been such a
-0.8511641 been seen <unk>
-1.025273 been very unfortunate
-0.7284102 been cheerful if
-0.950375 been quite right
-0.9383866 been yesterday worry
-1.006506 been ever so
-0.6642711 been considered <unk>
-1.456068 been put </s>
-0.2773105 been put into
-0.8109805 been thinking about
-0.7267647 been encountered by
-0.8197611 been answered </s>
-0.08386748 been able to
-0.4779666 been watching the
-1.022396 been watching him
-0.7281567 been fashioned out
-0.7314647 been carried off
-0.7755056 been nice to
-0.961388 been stolen away
-0.963562 been stolen earlier
-0.9504279 been beautiful once
-0.7267647 been replaced by
-0.9480555 been dead these
-0.8622793 been daylight two
-0.4361044 been drawn by
-0.7986513 been fixed </s>
-0.3401357 been asking myself
-0.6642711 been weak <unk>
-0.8045859 been mentioned but
-0.6642711 been killed <unk>
-0.6825953 been bewitched </s>
-0.6825953 been impaled </s>
-0.7216153 been strangled at
-1.05285 known the name
-0.8578688 known that the
-0.9731652 known in her
-0.704212 known to <unk>
-0.8311159 known as the
-1.038124 information about anything
-0.1876474 information concerning the
-0.9243923 about the <unk>
-1.828374 about the best
-1.850117 about the room
-1.885218 about the man's
-1.859353 about the cedars
-1.859353 about the hall
-1.857026 about the shore
-1.859353 about the hut
-1.005561 about <unk> </s>
-1.068024 about <unk> and
-1.045593 about a quarter
-0.7782042 about and <unk>
-1.316029 about and over
-1.177215 about that you
-1.350795 about that sum
-1.153585 about it </s>
-1.328035 about it and
-1.420781 about it for
-1.562813 about it still
-1.305581 about to night
-1.355509 about to sign
-1.046233 about but if
-0.8008152 about quiet <unk>
-1.052226 about for many
-1.13146 about her </s>
-1.348512 about her mouth
-1.511728 about her except
-0.9995076 about on one
-0.8972706 about children and
-1.047869 about this hurried
-0.9089402 about them </s>
-0.4137432 about them to
-0.7235152 about anything in
-1.048876 about him nor
-0.8393948 about good and
-0.9835605 about what is
-1.042667 about when told
-0.8391852 about me i
-1.046032 about my work
-0.8581563 about ten or
-0.7347887 about eleven <unk>
-0.9893869 about things if
-0.7540171 about whether she
-0.6458371 about twenty four
-1.01975 about our princess
-1.21744 about jesus but
-1.233668 about jesus we
-0.7735312 about paying the
-0.774865 about paredes's <unk>
-0.7326156 about ready doctor
-0.7326156 about fifty thousand
-1.034173 whole little society
-0.935139 whole life and
-1.02504 whole might till
-0.984444 whole great big
-0.5101318 whole orphan asylum
-0.9212496 whole family died
-0.9302368 whole truth about
-0.719498 whole neighborhood was
-0.7005358 whole soul of
-0.9594312 life is in
-1.075376 life <unk> the
-1.158093 life <unk> in
-1.046948 life and yet
-0.8446931 life that i
-1.052868 life had amory
-0.855272 life but he
-0.9726439 life not that
-1.011276 life without money
-1.047869 life this winding
-0.7592062 life have been
-0.8576201 life answered she
-1.004514 life himself from
-0.1876474 life wetting the
-0.3387547 life discovered by
-0.911506 here one day
-0.7605131 here missus alexander
-0.9206237 here is the
-0.9340975 here is a
-1.393224 here is his
-1.047385 here the poor
-1.137218 here <unk> of
-1.353046 here <unk> probably
-1.027942 here and have
-1.005182 here by his
-1.330508 here by themselves
-1.073038 here was a
-1.281732 here was matthew
-0.8341057 here but i
-0.8834024 here this morning
-0.9962297 here she sat
-1.041757 here if bobby
-1.033965 here are your
-0.8079959 here he <unk>
-1.324097 here he raised
-0.9175712 here before noon
-0.7232901 here now </s>
-0.9065558 here here he
-1.133256 here i do
-1.044575 here i am
-1.015588 here said debray
-0.9917078 here you don't
-0.9358088 here sat marilla
-0.9981247 here another surprise
-1.006287 here i've always
-0.7310817 here comes our
-1.0194 here again we
-0.8629343 here than in
-0.698637 here distinctly to
-0.6356225 here bobby <unk>
-0.1442195 here eating preserved
-0.9833025 half <unk> a
-0.9775347 half in and
-1.04092 half an hour
-0.9487922 half past three
-0.4264134 half out of
-1.007543 half his time
-0.8158131 half grown little
-0.814633 half laugh </s>
-1.114064 three <unk> </s>
-1.498522 three <unk> at
-1.657329 three <unk> laid
-1.657987 three <unk> ago
-1.044604 three to an
-0.3975942 three on the
-1.042448 three or four
-0.9944391 three look alike
-0.45223 three great <unk>
-1.14415 three four hours
-1.141187 three four five
-0.8985086 three months and
-0.96378 three months sooner
-0.7787363 three hundred yards
-0.8749182 three thousand <unk>
-1.034922 three times a
-0.9984786 three times and
-0.8660934 three board bills
-0.6642711 three unlimited <unk>
-0.7347887 three sons <unk>
-0.9463864 busy <unk> in
-0.7909407 busy day <unk>
-1.052972 day the words
-0.9578998 day <unk> <unk>
-1.353372 day <unk> driving
-0.7400538 day with the
-0.5355745 day in the
-1.056617 day of summer
-0.9591132 day it will
-0.8363943 day but <unk>
-0.9993918 day even be
-0.5126249 day at the
-0.8570609 day so that
-1.05472 day he lost
-0.7225206 day because they
-0.9412278 day before <unk>
-0.5071116 day more <unk>
-1.353365 day i guess
-1.190485 day i shall
-1.020276 day has come
-1.05087 day said beauchamp
-0.6826871 day again </s>
-0.9845441 driving down a
-0.7657377 driving in a
-1.007129 driving at </s>
-0.9932728 driving from smithtown
-0.5541023 driving over the
-0.9888997 driving oh it
-0.6771647 alive and <unk>
-1.048132 alive that my
-0.9659939 alive of course
-1.034189 alive or which
-0.6457585 alive next morning
-1.022647 have just done
-1.05777 have the advantage
-1.308518 have <unk> the
-1.848898 have <unk> into
-1.596083 have <unk> a
-1.59345 have <unk> with
-1.959737 have <unk> its
-1.346435 have <unk> to
-1.811167 have <unk> or
-1.931654 have <unk> no
-1.927298 have <unk> your
-1.921774 have <unk> himself
-1.769281 have a white
-1.685803 have a great
-1.774615 have a vast
-1.823564 have a cousin
-0.7406963 have a swim
-0.9030799 have had a
-1.24695 have to go
-1.322366 have to talk
-0.9949994 have time in
-0.5445531 have reached the
-1.281235 have not been
-1.344391 have not known
-1.175453 have done with
-1.114601 have done to
-0.8926109 have asked her
-1.437813 have been the
-0.848036 have been <unk>
-1.022109 have been in
-2.006947 have been here
-2.046639 have been worthy
-2.005144 have been more
-2.0124 have been very
-2.052617 have been cheerful
-2.040741 have been quite
-2.052617 have been considered
-1.60367 have been put
-2.052617 have been encountered
-2.050615 have been nice
-2.040741 have been beautiful
-2.052617 have been bewitched
-1.038637 have about twenty
-0.2205187 have any <unk>
-0.6865055 have something to
-0.6361104 have nothing to
-0.9258826 have given a
-0.9694174 have gone up
-0.8396921 have concluded </s>
-1.294226 have made out
-1.29072 have made me
-0.6443798 have further <unk>
-0.8645291 have happened since
-1.347602 have i any
-1.351051 have i much
-0.7941863 have such <unk>
-1.271856 have such credit
-1.038332 have said for
-1.164412 have seen and
-1.238991 have seen that
-1.238991 have seen it
-1.443143 have you no
-1.519395 have you many
-1.521034 have you mentioned
-1.028373 have some breakfast
-1.037239 have only twenty
-1.034367 have your will
-0.9506922 have quite lost
-0.7175146 have talked it
-0.9516087 have brought my
-0.8132873 have proceeded more
-0.5071956 have sent her
-0.723982 have another <unk>
-0.7755056 have liked to
-0.7735312 have loved the
-0.7696089 have met and
-0.1158547 have failed to
-0.8805805 have our faults
-0.7271439 have imagined this
-0.2010148 have already <unk>
-0.7925133 have realized i
-0.946503 have told you
-0.8967674 have filled those
-1.018271 have these prayers
-0.7564252 have produced </s>
-0.1811665 have fallen in
-0.8641822 have within themselves
-0.7564252 have spent </s>
-0.8660934 have slept pleasantly
-0.9372131 have appeared rather
-0.7960131 have drawn <unk>
-0.2920042 have moved <unk>
-0.8933953 have led a
-0.8165375 have written during
-0.786383 have rolled in
-0.5253139 have won the
-1.048707 go the king
-1.058289 go <unk> strangers
-1.265039 go down there
-1.2485 go down as
-0.4026462 go into the
-0.7782042 go and <unk>
-1.300014 go and have
-0.9775347 go in and
-0.6232458 go to the
-1.795546 go to town
-0.7299077 go to sleep
-1.794839 go to heaven
-0.9985538 go through all
-1.023512 go for more
-0.6972132 go up the
-1.041393 go out together
-1.012055 go tell robinson
-0.9727126 go home said
-0.4792417 go do you
-0.9978574 go myself within
-0.3304244 go repeated the
-0.8168483 go leaving behind
-0.789134 strangers into his
-0.9332061 strangers or to
-0.9667311 any one <unk>
-1.235747 any one who
-1.608666 any one can
-1.612615 any one else
-1.091096 any <unk> <unk>
-1.504167 any <unk> with
-1.248714 any <unk> and
-1.611627 any <unk> at
-1.62525 any <unk> i
-1.818965 any <unk> power
-1.055662 any in england
-0.7550563 any place where
-1.012922 any time you
-0.6538808 any well <unk>
-0.6473051 any other <unk>
-1.430221 any other man
-1.439763 any other name
-1.572367 any more questions
-1.561112 any more did
-1.572886 any more orphans
-1.568241 any more question
-0.9708929 any further explanation
-0.7326156 any particular company
-0.8802198 any train </s>
-0.8897971 any advice or
-0.9954739 any right don't
-0.5455231 any use to
-0.4942232 any news of
-0.8924533 any mistake about
-0.9580299 any breath she
-0.9518045 any possible theory
-0.8537028 any room for
-0.6600862 any moment </s>
-1.001611 any light upon
-0.9190146 any lady may
-0.7005358 any trace of
-0.3262514 any whatever </s>
-0.1881954 any traces of
-0.7331282 any harm pardon
-0.7331282 any battle field
-0.4186053 any gravity </s>
-0.8159166 any mufti nor
-1.056552 might and main
-0.5058806 might be <unk>
-1.162477 might be a
-1.595028 might be called
-1.348792 might be able
-1.051437 might not lose
-0.9471456 might could make
-0.2638492 might as well
-1.059198 might have <unk>
-1.467029 might have to
-1.620223 might have done
-1.010072 might have been
-1.871335 might have given
-1.876143 might have concluded
-1.464469 might have seen
-1.876143 might have moved
-1.011748 might make men
-0.6599459 might i not
-1.744772 might i wasn't
-1.744772 might i throw
-1.744772 might i rise
-0.7329999 might possibly lie
-0.9081303 might some day
-0.4932776 might return to
-0.8848236 might till at
-0.8070109 might lose her
-0.8448549 might cultivate it
-0.7872983 talk old man
-0.5975883 talk if you
-1.034718 talk matthew dressed
-0.8883908 talk like that
-0.6936914 talk pushing and
-1.035668 dressed <unk> this
-1.056405 dressed and instead
-1.055124 dressed in black
-0.9659575 dressed up with
-0.8673126 dressed people in
-0.9847822 dressed he found
-0.5588345 dressed stood at
-1.010092 collar and the
-1.354887 collar and driving
-0.9068645 collar of his
-0.7006021 collar he <unk>
-0.888893 something <unk> and
-1.323317 something that for
-1.350022 something that didn't
-1.051461 something in what
-0.5810188 something of the
-1.312949 something to his
-1.505085 something to eat
-1.504542 something to show
-0.8614994 something odd in
-1.043224 something or somebody
-0.9646465 something white in
-0.8855328 something about her
-0.6745707 something must be
-0.8018862 something must have
-0.9424661 something he's up
-0.698637 something terrible to
-0.8573023 something wanted by
-0.3722947 something worth while
-0.9659939 didn't of course
-1.044751 didn't have time
-0.8912708 didn't talk if
-0.7327437 didn't happen often
-1.200712 didn't know and
-1.10953 didn't know whether
-1.037364 didn't do marilla
-0.8022626 didn't think <unk>
-0.1912956 didn't warn you
-0.8401745 didn't come for
-0.3513586 didn't fall <unk>
-0.8689696 didn't care to
-0.7329999 didn't miss graham's
-1.031364 happen to others
-0.9157486 happen often missus
-0.2600956 often missus rachel
-0.2530408 often as she
-0.8512769 often made <unk>
-0.9526465 often lost by
-0.7191254 often mistaken for
-0.8127223 often gives up
-1.046658 make one short
-0.8188557 make the <unk>
-1.357605 make the roads
-1.530616 make a clean
-0.4403727 make a sensation
-1.055662 make in mud
-1.20191 make up my
-1.327736 make up indeed
-0.9110822 make them the
-0.9247896 make him a
-1.035043 make any mistake
-0.9743103 make nothing of
-1.163185 make sure that
-0.7797356 make sure of
-1.020962 make men walk
-0.8763841 make no more
-0.9982663 make themselves useful
-0.9923149 make you think
-1.028373 make some sacrifice
-0.9800964 make jesus as
-1.013797 make upon their
-0.9561988 nothing of it
-0.8075489 nothing was <unk>
-1.317 nothing was heard
-0.8790219 nothing to <unk>
-1.514768 nothing to her
-1.476787 nothing to do
-1.652477 nothing to forgive
-0.8805181 nothing ought i
-1.061113 nothing about <unk>
-1.306722 nothing about this
-0.8900625 nothing after this
-0.6909178 nothing more than
-1.113322 nothing further to
-1.191379 nothing further could
-0.9772681 nothing i saw
-0.849384 nothing said monte
-1.017948 nothing left except
-0.9930374 nothing new last
-0.9451734 nothing else any
-0.2802272 nothing doth <unk>
-1.013812 putting her into
-0.9152042 putting this and
-1.324728 together <unk> an
-1.358145 together <unk> forced
-0.9647262 together with all
-0.7629004 together to the
-1.036253 together their coat
-0.5882314 together might have
-0.8465529 given <unk> </s>
-1.024066 given a pretty
-1.029374 given it up
-0.3879234 given an <unk>
-1.045497 given if god
-1.049909 given him courage
-0.7384488 given me the
-0.6355657 given our <unk>
-0.9616601 given every one
-0.6220767 pretty road <unk>
-0.9578998 pretty <unk> <unk>
-1.222432 pretty <unk> that
-0.9351592 pretty well said
-1.312882 pretty well towards
-0.8416295 pretty clothes and
-1.023786 pretty good guess
-0.9199286 pretty dress in
-0.897216 pretty near everything
-0.7755056 pretty interesting to
-0.6825953 pretty tricks </s>
-1.114064 good <unk> </s>
-1.053776 good <unk> <unk>
-1.196023 good <unk> and
-1.543291 good <unk> was
-1.310192 good and this
-1.354595 good and evil
-0.7339103 good place to
-1.164281 good as a
-1.343422 good as another
-0.9136389 good beyond which
-1.036172 good man going
-0.9208544 good evening rachel
-0.8032278 good guess as
-0.5703178 good home and
-1.054209 good deal and
-1.087111 good deal in
-1.07007 good deal of
-1.148622 good deal further
-0.7065832 good it's a
-1.034131 good when his
-0.9231229 good you know
-1.028901 good two hours
-0.8679567 good fun to
-1.009565 good yes our
-0.7340823 good while he
-0.9844821 good morning creditor
-0.6642711 good friday <unk>
-0.7755056 good cause to
-0.8000753 good dollars for
-0.1824213 good supreme <unk>
-0.7271439 good heavens what
-0.7332564 good e e
-0.8725643 guess as to
-0.7016273 guess that's why
-0.9583993 guess there's some
-1.049068 both the prince's
-0.9161905 both a little
-0.7050788 both his <unk>
-1.020735 both he and
-0.9080092 both questions but
-0.8551441 both returned <unk>
-0.9705605 both began feeling
-0.6936914 both sea and
-0.7782042 questions and <unk>
-1.310192 questions and what
-1.01674 questions but matthew
-0.5126249 questions at the
-0.8381185 questions she said
-0.710253 questions because of
-1.00427 rarely went from
-1.075855 home with his
-1.340816 home with matthew
-0.8178829 home and <unk>
-1.405801 home and you
-1.502622 home and let
-0.9704943 home that it
-0.704212 home to <unk>
-0.9029015 home an old
-1.026678 home for supper
-0.7874908 home he had
-0.5970297 home said the
-0.9768488 home boy but
-1.269485 must <unk> to
-1.667463 must <unk> be
-1.731307 must <unk> have
-1.598097 must <unk> me
-1.729331 must <unk> every
-0.8892237 must be <unk>
-1.12451 must be a
-1.222428 must be in
-1.677495 must be done
-1.88041 must be something
-1.680259 must be seen
-1.887054 must be looking
-1.894936 must be expecting
-0.8341057 must but i
-0.7696089 must sit and
-0.1824213 must attend <unk>
-1.185062 must have a
-1.758978 must have asked
-0.9941972 must have been
-1.772093 must have happened
-1.772093 must have realized
-1.769249 must have led
-1.018128 must go home
-1.055444 must i leave
-1.034872 must we do
-0.8530117 must think it
-0.8449835 must say i
-0.8140589 must confess these
-0.8097552 must decide what
-0.7295531 must literally have
-1.037721 must bobby sprang
-0.6642711 must needs <unk>
-0.7981352 must allow that
-0.7253771 must visit him
-0.7267647 must feed me
-0.8631432 must cultivate our
-0.6825953 must weep </s>
-0.8054747 unusual which was
-0.7281567 unusual mystery about
-1.004405 taking a girl
-1.0298 taking it out
-0.735191 taking him </s>
-0.5596363 taking part in
-0.9461542 taking heart i
-0.1881954 taking advantage of
-1.288281 i'll just tell
-1.292427 i'll just step
-0.8937464 i'll <unk> the
-1.034673 i'll be with
-0.9115617 i'll tell <unk>
-1.03845 i'll do nor
-0.2802272 i'll feel <unk>
-0.7128401 i'll stop i
-0.7090594 step the <unk>
-0.8181543 step over to
-1.355764 green and neat
-1.355764 green and yellow
-1.039723 green in some
-1.49254 green gables down
-0.8302026 green gables was
-1.448367 green gables she
-1.489928 green gables good
-1.48798 green gables after
-1.48798 green gables i'm
-1.488628 green gables very
-1.502476 green gables somehow
-1.236569 green light is
-1.186558 green light in
-1.007965 gables down or
-1.073038 gables was a
-1.319304 gables was built
-0.8381185 gables she said
-1.023323 gables good evening
-0.8964177 gables after tea
-0.8861807 gables i'm sorry
-1.023893 gables very green
-0.7323596 gables somehow there's
-0.886292 after the <unk>
-1.606212 after the spring
-1.655767 after the thick
-1.367273 after the princess
-1.035982 after <unk> up
-1.053041 after that question
-0.9082636 after it had
-1.04454 after all again
-1.333391 after this something
-1.33173 after this nothing
-0.9889245 after his own
-1.006106 after so many
-0.3696776 after him </s>
-1.511868 after him like
-1.282638 after which in
-1.219511 after which they
-0.9577169 after tea missus
-0.8985086 after tea and
-0.9915061 after what happened
-1.027761 after some trouble
-0.8655713 after ten o'clock
-0.753232 after another and
-0.7332564 after expressing acute
-0.8175427 after daylight the
-0.7281567 after wandering about
-0.6969822 after gush the
-0.2600956 tea missus rachel
-1.056552 tea and find
-0.7688478 tea but the
-1.054187 find it necessary
-1.091413 find out from
-1.317001 find out about
-0.7931758 find any one
-0.6865055 find something to
-1.01887 marilla where he's
-1.470936 marilla and missus
-1.517687 marilla and matthew
-1.528009 marilla and nearly
-0.9957152 marilla had said
-0.8359201 marilla cuthbert and
-1.307225 marilla cuthbert when
-1.328731 marilla cuthbert swept
-1.155089 marilla was a
-1.443402 marilla was at
-1.523403 marilla was making
-1.346781 marilla she knitted
-1.29149 marilla she demanded
-1.039321 marilla are both
-0.8474598 marilla as if
-1.044187 marilla were grown
-0.5931028 marilla must be
-0.6441886 marilla i'll just
-0.8780043 marilla said <unk>
-0.9155536 marilla i'd have
-0.9445747 marilla do that
-0.8097953 marilla don't know
-0.5842025 he's a <unk>
-0.9030799 he's had a
-0.884359 he's up and
-0.6717366 he's coming on
-0.916719 he's gone and
-0.6936914 he's sixty and
-0.7755056 he's likely to
-0.7327437 he's wandering around
-1.018284 gone the other
-1.037693 gone and why
-1.32201 gone to bright
-1.355894 gone to seek
-0.9758858 gone but that
-0.802646 gone up to
-1.020845 gone as quickly
-0.7232901 gone now </s>
-0.9435054 gone half an
-0.9388442 gone home to
-1.053755 worthy <unk> will
-1.346327 worthy of him
-1.394043 worthy of any
-1.52819 worthy of faith
-0.7833118 worthy man and
-0.9981247 worthy woman finally
-0.3710305 worthy gentleman who
-1.007701 woman <unk> it
-0.6845008 woman with <unk>
-0.7782042 woman and <unk>
-1.354887 woman and knew
-1.056518 woman of narrow
-0.700253 woman was <unk>
-0.5126249 woman at the
-0.8168483 woman finally concluded
-0.9983544 woman looked after
-1.005646 woman i've ever
-0.897216 woman however beautiful
-0.8170038 woman higher preferred
-0.8393275 woman hating her
-0.8399829 woman hating him
-0.7090594 finally the <unk>
-0.5126249 finally at the
-0.8763262 finally concluded he
-1.309804 concluded that man
-0.8989143 concluded that he
-0.9987761 concluded to go
-0.7006021 concluded he <unk>
-0.9343015 generally is </s>
-0.5864985 generally go to
-0.9833025 town <unk> a
-1.04494 town and made
-0.99832 town this time
-0.8166929 town unless you're
-0.9607011 year and he
-1.056621 year to year
-0.8345262 year around <unk>
-0.7930983 visits me </s>
-0.9889434 he'd had it
-0.8924533 he'd run out
-1.046 he'd have gone
-1.00262 wouldn't <unk> from
-0.9673291 wouldn't be a
-1.033113 wouldn't be in
-0.9528828 wouldn't dress up
-1.047361 wouldn't you when
-1.02748 dress <unk> her
-0.9620159 dress that is
-0.986267 dress in my
-0.7331932 dress of <unk>
-0.6296158 dress for the
-0.884359 dress up and
-0.727036 dress all the
-1.00757 dress because when
-0.7696089 dress smiling and
-0.9039374 take one </s>
-1.494343 take the buggy
-1.478432 take the five
-1.518342 take the evidence
-0.8583037 take place at
-1.163528 take it <unk>
-1.3906 take it to
-1.517625 take it off
-1.049463 take her home
-1.036976 take your place
-0.5151208 take breath </s>
-0.4258426 take notice of
-0.998726 take these that
-0.8897903 more <unk> </s>
-1.511956 more <unk> and
-1.900221 more <unk> you
-0.4282217 more <unk> than
-2.081729 more <unk> paredes's
-2.0963 more <unk> interest
-0.9978924 more of a
-1.277935 more of that
-1.055848 more to look
-0.898415 more dark clothed
-1.046417 more so because
-0.8223596 more about it
-0.9073704 more questions she
-0.8213215 more did he
-0.5970297 more said the
-0.2273584 more cherry trees
-0.2315378 more nearly <unk>
-0.9823907 more strange since
-0.8983399 more orphans concealed
-0.9963023 more question is
-1.713913 more than one
-0.5104542 more than a
-1.645346 more than i
-1.37411 more than ever
-1.747919 more than once
-0.7626471 more light </s>
-0.7619956 more important <unk>
-0.8485942 more important than
-0.6356225 more bobby <unk>
-0.8689696 more virtue to
-0.8591835 more difficulty about
-0.8968422 more immediately towards
-0.6936914 more danced and
-0.7331282 more dignified attitude
-1.058206 big <unk> orchard
-1.214934 big house in
-1.281205 big house filled
-0.8806744 big eyes were
-0.890386 big hat all
-0.8412208 quarter of a
-1.056718 quarter to eight
-0.7299348 quarter interest did
-1.048346 sure the long
-1.052003 sure that these
-0.8501873 sure of <unk>
-1.224766 sure of him
-0.7512693 sure as he
-1.036419 sure about good
-0.6950625 sure i'm not
-1.249968 sure i could
-1.168912 sure i will
-1.019411 long <unk> <unk>
-1.33992 long <unk> a
-1.53356 long <unk> followed
-1.026218 long time without
-0.5957179 long past <unk>
-1.039997 long he soon
-1.040862 long been daylight
-0.8630568 long lane made
-1.046984 long they laid
-0.8171593 long piece haven't
-0.9208544 long sweet cold
-0.8166929 long iron gray
-0.719498 long platform was
-0.4234858 long black <unk>
-0.4026462 lane into the
-0.9076328 lane made it
-1.322527 made the best
-1.349046 made the thicket
-1.219914 made <unk> a
-1.35798 made <unk> happy
-0.7099292 made a <unk>
-1.369379 made a good
-1.608858 made a sign
-1.65015 made a safe
-1.047181 made with what
-0.6771647 made and <unk>
-0.7657377 made in a
-0.6899269 made of the
-1.52819 made of dark
-1.499654 made of debray
-1.244031 made it a
-1.350488 made it plain
-1.041036 made an effort
-1.336063 made her more
-1.341536 made her think
-1.294319 made up for
-1.20191 made up my
-1.316305 made them red
-1.318274 made them carry
-0.7452137 made out the
-1.036253 made their appearance
-1.053691 made his blood
-0.9992114 made so all
-1.049909 made him inhale
-0.6783778 made sure of
-1.335173 made no further
-1.336756 made no self
-0.6247001 made themselves </s>
-1.017895 made much later
-1.047876 made me go
-0.7216153 made inquiries at
-0.7331282 made profound reflections
-1.011063 deal and you
-1.028294 deal in smithtown
-1.056418 deal of influence
-0.9655398 deal further matthew
-1.075376 further <unk> the
-0.9578998 further <unk> <unk>
-0.5355745 further in the
-1.056718 further to reward
-1.0319 further could be
-1.01484 further or he
-0.6516518 further matthew <unk>
-0.7696089 further explanation and
-0.7281567 further inquiries about
-0.7005358 further scattering of
-1.000158 father <unk> for
-1.05636 father a brother
-0.7657377 father in a
-0.5810188 father of the
-0.813503 father as <unk>
-0.9877243 father what would
-0.6532357 father has <unk>
-1.025961 father like everything
-0.8937464 silent <unk> the
-1.045247 silent on your
-0.98347 silent as the
-1.330027 silent as his
-0.8989553 silent so the
-0.8937464 son <unk> the
-0.8974213 son of <unk>
-1.065825 son of a
-1.52819 son of god
-0.9084889 son beyond his
-0.7906231 son after him
-1.045922 son what example
-0.5355745 happened in the
-0.9871519 happened since last
-0.5560033 happened last night
-0.9083908 happened yesterday he
-1.532504 since the least
-1.519763 since the law
-1.517987 since the death
-1.03601 since that affair
-0.9591132 since it will
-0.9032372 since sitting and
-0.9791483 since he had
-1.029047 since he was
-1.439409 since he came
-1.043284 since which time
-0.5560033 since last night
-1.032737 since you wish
-1.037879 since we thought
-0.8170038 since everybody knows
-1.019411 last <unk> <unk>
-1.233895 last <unk> of
-1.424591 last <unk> you
-0.6638563 last a <unk>
-1.354797 last a harsh
-1.003786 last time he
-1.031302 last all was
-0.9232624 last she got
-0.9791483 last he had
-1.154045 last he could
-1.525118 last he slept
-0.7005358 last proof of
-0.9815243 last since which
-1.480889 last night to
-1.649731 last night yet
-0.7097934 last night i
-1.652787 last night perhaps
-1.642931 last night graham
-0.9171386 last when they
-0.9532226 last they heard
-0.4391686 last quite <unk>
-0.8008152 last winter <unk>
-1.058407 last week she
-1.038016 last week i
-0.656783 last breath <unk>
-0.8132042 last hour and
-0.320231 last upon the
-0.8188557 night the <unk>
-1.207552 night the prince
-1.024515 night and all
-0.6600345 night of the
-1.349037 night of your
-0.704212 night to <unk>
-1.007304 night yet it's
-1.047696 night this funeral
-1.022101 night she left
-0.8714866 night there </s>
-1.053523 night his quest
-0.9650681 night long he
-1.076929 night i was
-1.299279 night i heard
-0.935991 night set it
-0.9835682 night nor sleep
-1.011167 night you see
-0.9510627 night perhaps sent
-0.786383 night dropped in
-0.7244964 night wore on
-1.025309 night graham smiled
-1.708895 off the ground
-1.709445 off the train
-1.705606 off the face
-1.751371 off the heat
-1.706699 off the bed
-0.5842025 off a <unk>
-1.320074 off and on
-1.35372 off and young
-0.5620697 off by the
-1.056617 off of bushes
-0.7629004 off to the
-0.9461409 off for you
-1.051105 off at having
-1.008177 off there of
-0.5793359 off their <unk>
-1.031437 off his tunic
-0.6273351 off so <unk>
-1.022777 off i'm clean
-0.868797 off today i
-0.3563818 off looking at
-0.9595891 off your hands
-0.898415 off sarah makes
-0.8070109 off heat so
-0.33144 off calories of
-0.5637577 i'm not sure
-1.638816 i'm not expecting
-1.637327 i'm not saying
-0.750402 i'm so <unk>
-1.393947 i'm so thin
-1.505703 i'm so glad
-0.1139178 i'm going to
-0.8325052 i'm dressed <unk>
-0.7347887 i'm clean <unk>
-0.261824 i'm very glad
-0.6716241 i'm only <unk>
-0.9470577 i'm quite well
-0.9479366 i'm sorry for
-0.3779685 i'm sorry i
-1.162533 i'm glad because
-1.166167 i'm glad you're
-0.187903 i'm beginning to
-0.7696089 i'm nice and
-0.7317202 i'm guilty say
-0.8261097 i'm beatrice </s>
-0.799166 i'm afloat and
-0.8465917 i'm afloat i'm
-1.052931 clean <unk> that's
-0.8725643 clean as to
-0.7005358 clean breast of
-0.9676796 that's just the
-0.9413901 that's all i
-1.099634 that's why a
-1.424214 that's why i'm
-1.427788 that's why i've
-1.469408 that's what </s>
-1.512019 that's what and
-1.328372 that's what she
-1.652276 that's what so
-1.45259 that's what you
-0.9744672 that's better nothing
-0.7564252 that's certain </s>
-0.8168483 that's what's called
-0.9119573 what one hundred
-0.9206237 what is the
-1.408932 what is your
-1.512568 what is transacting
-0.8188557 what the <unk>
-1.357605 what the crystal
-1.170389 what <unk> </s>
-1.541519 what <unk> that
-1.630585 what <unk> it
-1.716966 what <unk> or
-1.880754 what <unk> body
-1.8438 what <unk> upon
-1.897043 what <unk> thou
-0.396078 what a <unk>
-1.652844 what a world
-1.652844 what a dirty
-0.8940614 what with his
-0.9525195 what and i
-0.7331932 what of <unk>
-0.5009196 what was the
-1.417359 what was that
-1.532024 what was his
-0.4514258 what to do
-0.7327587 what to think
-1.715082 what to say
-0.6645641 what could <unk>
-0.9648176 what on earth
-0.4250851 what helped to
-1.255773 what she would
-1.364801 what she might
-1.060634 what she said
-0.6173808 what would be
-1.288931 what would he
-0.2216768 what are you
-0.9240243 what business had
-0.8137369 what his <unk>
-1.265867 what his answer
-1.038247 what so said
-1.504113 what he is
-0.9705443 what he <unk>
-0.6173645 what he said
-1.555347 what he spoke
-0.6998035 what asked the
-0.6467635 what might be
-0.9464025 what i'll do
-0.9207036 what made them
-1.030202 what happened last
-1.033262 what happened yesterday
-1.055873 what i have
-1.190485 what i shall
-0.8855078 what has taken
-0.9088863 what did that
-1.039072 what then must
-0.4792417 what do you
-1.234511 what you don't
-1.306267 what you say
-1.039197 what your friends
-1.037347 what we asked
-0.7359902 what will be
-0.897216 what you're getting
-0.1160198 what sort of
-0.9691895 what does make
-0.355695 what new <unk>
-0.8878888 what mistake had
-0.8648762 what hour does
-0.9091613 what held him
-0.9746704 what indeed could
-0.8103674 what example they
-0.8622793 what fortune their
-0.7310817 what reason because
-1.463998 i just went
-0.4347292 i just love
-1.128064 i <unk> the
-1.256768 i <unk> with
-1.615732 i <unk> in
-1.147864 i <unk> to
-2.160722 i <unk> not
-2.430578 i <unk> without
-2.140005 i <unk> this
-2.40005 i <unk> anything
-2.101318 i <unk> out
-2.093216 i <unk> their
-2.407452 i <unk> business
-1.966914 i <unk> his
-2.449898 i <unk> he's
-2.170202 i <unk> said
-1.312477 i <unk> you
-2.23246 i <unk> your
-2.456533 i <unk> turning
-2.016268 i <unk> me
-1.358761 i <unk> my
-2.438524 i <unk> poor
-2.453203 i <unk> waiting
-1.017195 i and my
-1.313253 i had a
-1.38531 i had to
-1.461272 i had not
-1.851357 i had on
-1.907321 i had yet
-1.744048 i had made
-1.904295 i had too
-1.91139 i had felt
-1.983125 i was just
-0.9297293 i was <unk>
-1.334183 i was a
-2.045221 i was with
-1.528365 i was in
-2.08525 i was on
-1.961197 i was there
-2.197402 i was late
-1.872091 i was coming
-2.195468 i was sure
-2.189715 i was living
-2.197402 i was kind
-2.195468 i was saying
-2.201298 i was certain
-2.203258 i was beginning
-2.172902 i was upon
-1.505173 i to make
-1.615582 i to put
-1.618748 i to none
-1.650193 i to want
-1.333099 i not then
-1.282109 i not say
-0.9129103 i could <unk>
-0.973514 i could not
-1.73049 i could get
-0.693334 i could see
-1.737546 i could learn
-0.8170391 i found the
-0.6794809 i would have
-1.478325 i would it's
-1.478668 i would say
-0.9197415 i never <unk>
-1.676863 i never did
-1.696444 i never really
-1.703887 i never deliver
-1.700682 i never trouble
-1.702816 i never fell
-1.040831 i there isn't
-1.53644 i can to
-1.095893 i can do
-0.7905726 i can imagine
-1.722019 i can carry
-1.722019 i can remember
-1.722019 i can stop
-1.00093 i always feel
-0.7153609 i tell you
-0.7986513 i pass </s>
-0.8825028 i knew she
-0.3004996 i ought to
-1.162847 i heard <unk>
-0.9701863 i heard of
-1.381201 i heard nothing
-1.029814 i now hold
-1.596752 i asked missus
-1.235002 i asked her
-1.239519 i asked my
-1.599343 i asked again
-1.612537 i asked rawlins
-0.9884292 i have a
-1.194246 i have not
-2.096282 i have about
-2.142085 i have something
-2.120343 i have only
-2.168906 i have talked
-2.155288 i have brought
-2.166934 i have met
-1.203563 i have already
-2.163018 i have filled
-1.80738 i have fallen
-2.166934 i have spent
-2.159136 i have appeared
-2.164972 i have drawn
-2.166934 i have written
-1.017943 i go myself
-1.033954 i any right
-0.6467635 i might be
-1.507272 i didn't have
-1.527432 i didn't talk
-0.9991461 i didn't know
-1.521576 i didn't think
-1.52817 i didn't warn
-1.525227 i didn't fall
-0.8474848 i make up
-0.8160717 i guess that's
-0.7264016 i must <unk>
-0.7926638 i must be
-1.82036 i must but
-1.899998 i must attend
-0.9511177 i must have
-1.886357 i must go
-1.890509 i must think
-1.887391 i must say
-1.898933 i must confess
-1.898933 i must decide
-1.899998 i must visit
-0.2449614 i wouldn't be
-1.310024 i won't know
-1.310412 i won't believe
-1.312743 i won't blame
-1.706455 i know is
-0.7108108 i know the
-1.36894 i know who
-1.720781 i know about
-1.175766 i know what
-1.744051 i know another
-0.6373734 i did <unk>
-0.4356413 i did not
-1.677848 i did feel
-1.063041 i call on
-1.082088 i call attention
-1.461425 i said in
-0.6497431 i said to
-1.703768 i said no
-1.722982 i said give
-1.119878 i wonder at
-0.6899316 i wonder what
-1.01768 i much curiosity
-1.304016 i suppose a
-1.355922 i suppose not
-0.6659921 i suppose i
-1.379406 i suppose they're
-1.336633 i suppose you
-0.101318 i used to
-1.572339 i do </s>
-2.02181 i do one
-1.861453 i do to
-0.3189692 i do not
-2.044615 i do would
-2.062071 i do think
-2.068684 i do hope
-2.06395 i do love
-0.6547781 i left the
-1.279437 i left new
-0.7722028 i came back
-1.319465 i only wish
-1.319844 i only envy
-1.01002 i like you
-1.258936 i ever had
-1.281377 i ever saw
-1.145997 i saw the
-1.549191 i saw a
-1.56544 i saw he
-1.631635 i saw him
-1.65985 i saw matthew
-1.667635 i saw nothing
-1.605143 i saw you
-1.004391 i thought maybe
-0.6218243 i felt <unk>
-1.292737 i felt as
-1.302356 i felt so
-0.933351 i may <unk>
-1.270087 i may keep
-0.9893168 i once worked
-0.6693072 i mean </s>
-1.821319 i will she
-1.535336 i will go
-1.897622 i will make
-1.538243 i will take
-1.754836 i will i
-1.902094 i will set
-0.9459929 i will do
-1.893196 i will answered
-1.893196 i will come
-0.7077313 i read in
-0.9866566 i took upon
-1.016853 i think of
-1.046251 i think so
-0.644808 i think i
-1.655311 i think yes
-1.662199 i think you're
-0.9416218 i don't <unk>
-0.5927262 i don't know
-1.255651 i don't mind
-1.959089 i don't ever
-1.479236 i don't think
-1.973346 i don't deny
-1.967178 i don't believe
-1.481231 i don't understand
-1.972312 i don't dare
-1.966159 i don't want
-1.969225 i don't care
-0.3526918 i seemed to
-1.198863 i gave in
-1.259094 i gave another
-1.029207 i can't <unk>
-1.20833 i can't imagine
-1.208714 i can't return
-0.8448549 i hope it
-0.1912956 i warn you
-0.7836498 i believe in
-1.177356 i believe so
-1.018421 i pity him
-1.010093 i pity you
-0.726891 i enjoyed my
-1.009219 i answered no
-0.8156063 i haven't got
-0.5271877 i should be
-1.324525 i should say
-1.328915 i should reason
-1.020901 i dare not
-1.030965 i dare say
-0.8197282 i wanted to
-0.4301288 i wasn't a
-1.200868 i turned with
-1.218929 i turned my
-0.9927876 i keep myself
-1.220701 i love driving
-1.185524 i love you
-0.8616689 i live and
-0.8959086 i talking too
-0.8495229 i lie with
-1.597392 i am the
-0.7278201 i am <unk>
-1.692034 i am a
-1.832268 i am an
-1.816728 i am not
-1.800591 i am so
-1.871738 i am going
-1.180507 i am said
-1.882534 i am sorry
-1.878454 i am glad
-1.882534 i am determined
-1.882534 i am entirely
-1.88117 i am merely
-1.88117 i am rich
-1.88117 i am seeking
-1.875755 i am tired
-0.1308899 i want to
-0.1917745 i dunno said
-0.8047734 i shall be
-1.562979 i shall not
-1.589784 i shall never
-1.596953 i shall work
-1.580406 i shall have
-1.574265 i shall then
-1.600177 i shall presently
-1.601798 i shall die
-0.940395 i hadn't one
-0.1158547 i ventured to
-1.105465 i wished from
-1.104208 i wished no
-0.7175146 i accepted it
-0.6969822 i approached the
-1.022415 i whispered to
-1.081344 i whispered taken
-0.8964685 i doubt whether
-0.9540658 i told my
-0.7981352 i forget it
-0.5496374 i wish to
-0.521896 i wish i
-1.330724 i wish our
-0.7191254 i blush for
-0.8137501 i arrived just
-0.9196708 i leave alone
-0.790753 i spent a
-0.8149867 i throw off
-0.8617619 i slept like
-0.7217402 i telephoned as
-0.8134415 i rise again
-0.6825953 i faced </s>
-0.7301894 i miss here
-0.8554293 i paid him
-0.1158547 i promised to
-0.8187088 i return <unk>
-0.786383 i remain in
-0.9120552 i excuse you
-0.8154514 i content myself
-0.897216 i smile began
-0.7271439 i owe this
-0.6642711 i seek <unk>
-0.7298075 i hate them
-0.9894669 i cannot <unk>
-1.146956 i cannot tell
-1.149624 i cannot stay
-1.148956 i cannot let
-0.9037945 i beheld the
-0.8522772 i beheld <unk>
-0.8975904 i die happy
-0.8650499 i cultivate having
-0.6825953 i rave </s>
-1.075376 won't <unk> the
-1.288866 won't <unk> me
-0.9991863 won't tell said
-0.8073215 won't know a
-1.349904 won't you sit
-1.34687 won't you tell
-0.9001897 won't returned the
-0.9468351 won't believe it
-0.6730743 won't hold me
-0.7329999 won't blame carlos
-0.969212 know is that
-0.9973204 know where it
-1.590317 know the asylum
-1.655767 know the exact
-1.656254 know the traces
-1.639393 know the assassin
-0.3206677 know a <unk>
-1.48982 know a single
-1.040677 know and for
-0.8989143 know that he
-1.177215 know that you
-0.8791476 know her </s>
-1.029751 know them or
-0.6650024 know if it
-0.9769624 know anything about
-1.303806 know who she
-1.28726 know who he
-0.8869898 know which is
-0.8223596 know about it
-0.9516984 know he's sixty
-1.062944 know what to
-1.153635 know what he
-1.760823 know what i'll
-1.75101 know what has
-1.762481 know what you're
-1.756707 know what new
-1.008077 know it's after
-0.7259357 know how <unk>
-0.9259671 know perhaps it
-0.6219205 know my <unk>
-0.9981247 know another case
-0.9155536 know none are
-1.216552 know whether this
-1.229966 know whether i'd
-0.5754791 know answered the
-0.9590371 know count that
-1.055626 peace of mind
-0.9578998 mind <unk> <unk>
-1.249401 mind <unk> for
-0.6638563 mind a <unk>
-1.354253 mind a conversation
-1.075855 mind with his
-1.344108 mind with such
-1.047667 mind and sleep
-1.013411 mind that if
-1.338839 mind it one
-1.347823 mind it much
-0.8075489 mind was <unk>
-1.350395 mind was far
-1.285781 mind to it
-1.352056 mind to these
-1.047775 mind on anything
-1.346539 mind she proceeded
-1.346539 mind she continued
-1.04303 mind or conscience
-1.055392 mind he repeated
-0.8858652 mind i'm glad
-0.8791399 mind no longer
-1.039575 mind me said
-0.448969 mind most <unk>
-1.017463 mind bobby that
-1.045596 conscience by calling
-1.049685 conscience but little
-1.04303 conscience or cash
-0.7427809 conscience until i
-1.033965 conscience which she
-1.022647 has just lost
-1.044602 has the power
-0.519796 has <unk> the
-1.51008 has <unk> from
-1.594573 has <unk> this
-1.045593 has a quarter
-0.4368975 has an <unk>
-1.325067 has an unlimited
-0.9304134 has been in
-1.594223 has been replaced
-1.590515 has been dead
-1.593479 has been mentioned
-1.010385 has three unlimited
-0.9513967 has given me
-0.8317879 has happened in
-1.101681 has taken <unk>
-1.282312 has taken matthew
-1.293762 has taken note
-1.039995 has then brought
-1.015859 has left us
-0.9025414 has brought the
-0.4882224 has come to
-0.4686351 has doctor groom
-0.8366421 has worked a
-0.7295531 has departed do
-0.8100612 has fear or
-0.7090594 taken the <unk>
-0.933447 taken <unk> of
-0.859191 taken with the
-0.7620425 taken with a
-1.045448 taken by surprise
-0.8583037 taken place at
-0.6398532 taken matthew cuthbert
-1.055737 taken i rave
-0.7005358 taken note of
-1.05777 today the mail
-1.051707 today <unk> after
-1.054569 today i thought
-0.5711598 today no <unk>
-0.9823457 today give he
-1.046597 set it on
-0.9537576 set on it
-1.037082 set up an
-0.9472407 set them <unk>
-1.031461 set out she
-0.8214538 set before him
-1.027996 set about on
-0.8915297 set fire to
-0.8765385 set eyes on
-0.7090594 far the <unk>
-1.097138 far <unk> to
-1.336839 far <unk> graham
-1.235233 far away as
-1.254166 far away then
-0.9987761 far to go
-0.5098292 far from the
-0.7554264 far she had
-1.049008 far as the
-0.9240639 far as he
-1.429256 far as possible
-0.7281928 far before the
-0.4296398 far may be
-0.7777731 far corner of
-1.222432 barely <unk> that
-1.253779 barely <unk> from
-0.9011335 along the <unk>
-1.75016 along the deep
-1.729325 along the horse
-1.747145 along the already
-1.689382 along the shore
-0.6845008 along with <unk>
-0.9283353 along for her
-1.047352 along this path
-1.038201 along which all
-0.844292 along here <unk>
-0.6857088 along between <unk>
-0.8069851 houses in <unk>
-1.032384 houses were so
-1.314585 did <unk> this
-1.357156 did <unk> isn't
-0.9161905 did a little
-1.275027 did that and
-1.351053 did that tree
-0.8650793 did not <unk>
-2.10705 did not mind
-2.120618 did not call
-2.120618 did not seem
-1.876629 did not mean
-1.0722 did not speak
-1.869807 did not think
-2.122344 did not expect
-2.122344 did not exact
-2.120618 did not appear
-2.117186 did not care
-2.118899 did not pay
-1.051224 did her share
-0.9190737 did she <unk>
-1.343883 did she say
-1.430548 did he not
-1.472328 did he then
-1.525779 did he reproach
-0.8233321 did they <unk>
-0.3660476 did look at
-1.541245 did you not
-1.624325 did you any
-1.3052 did you know
-1.727149 did you get
-1.733798 did you receive
-0.9621968 did certainly bring
-0.2802272 did feel <unk>
-0.8973421 did see him
-0.8654717 did these two
-0.8633162 did stand upon
-0.8959086 did beatrice go
-0.9971254 call it a
-0.9593873 call on him
-0.6567851 call living in
-1.050128 call you before
-0.4186053 call attention </s>
-0.933447 living <unk> of
-0.7400538 living with the
-0.8337169 living away back
-0.9495861 living in <unk>
-1.324321 living in such
-0.9338432 living at all
-1.016438 living here but
-0.7735312 living met the
-0.7077313 living creature in
-1.019411 such <unk> <unk>
-1.525945 such <unk> should
-1.533807 such <unk> car
-0.5774074 such a <unk>
-1.869801 such a place
-1.817989 such a bad
-2.019884 such a yes
-2.025584 such a thing
-2.034864 such a figure
-1.949325 such a horse
-1.872213 such a way
-2.032526 such a faith
-0.9761748 such things you
-0.8405649 such person he
-0.3207932 such impossible <unk>
-0.8112874 such thoughts if
-0.7314647 such facts even
-0.8045859 such reflections but
-0.2158696 such easy <unk>
-0.8160717 such credit really
-0.7255187 it's just <unk>
-0.7099292 it's a <unk>
-1.537289 it's a bad
-1.474068 it's a boy
-1.651226 it's a mercy
-1.041151 it's an extremely
-0.727036 it's all the
-1.051741 it's as clear
-0.716215 it's so <unk>
-1.193065 it's so far
-1.02495 it's after ten
-0.6975185 it's got to
-1.046866 it's no wonder
-0.2880959 it's hard to
-1.047481 it's my duty
-0.8643556 it's worse than
-0.8128249 it's difficult matthew
-0.8097552 it's delightful when
-0.8157614 it's natural enough
-0.7301894 it's rotten now
-0.8170038 it's dirty french
-0.1232719 said missus rachel
-0.9778505 said missus spencer
-2.308923 said the little
-2.351576 said the young
-2.398878 said the station
-2.384119 said the poor
-0.5276835 said the prince
-2.316499 said the count
-2.258002 said the district
-2.491958 said the banker
-2.400034 said the receiver
-0.5814316 said the princess
-2.442929 said the chamberlain
-1.401148 said the dervish
-1.157225 said <unk> </s>
-1.504167 said <unk> with
-1.713041 said <unk> this
-1.62525 said <unk> i
-1.799805 said <unk> such
-1.811871 said <unk> come
-0.7620425 said with a
-1.233057 said with this
-1.280119 said and my
-1.355764 said and obtain
-1.094122 said that the
-1.512517 said that matthew
-1.408696 said that when
-0.1403616 said in a
-1.337061 said it </s>
-0.2363283 said it was
-1.031346 said was my
-1.26703 said to him
-1.268919 said to my
-1.048099 said but more
-1.035972 said well he'd
-0.7830161 said for <unk>
-0.8699802 said not a
-0.8121401 said even if
-0.9432848 said this was
-0.8922493 said she was
-1.786445 said she without
-1.64954 said she never
-1.795201 said she didn't
-1.655911 said she hadn't
-1.797931 said she holding
-1.045838 said if ye
-0.9324254 said as she
-1.036418 said so but
-0.9148997 said he <unk>
-1.899549 said he with
-1.70238 said he to
-1.91145 said he but
-1.795725 said he for
-1.765385 said he i
-1.981094 said he broke
-1.951001 said he we
-1.982986 said he extending
-0.9083497 said now you
-1.287026 said matthew </s>
-0.4275758 said matthew <unk>
-1.586921 said matthew why
-0.7140666 said about the
-1.157523 said i'll be
-1.163223 said i'll tell
-0.9674309 said marilla </s>
-1.254515 said marilla as
-0.9461059 said i <unk>
-1.135124 said i must
-1.047518 said no flat
-0.9508754 said they would
-0.9733969 said you and
-0.6126988 said give me
-1.024995 said how am
-1.038792 said your receipt
-0.7925133 said gently i
-0.8676317 said these words
-0.8190189 said rawlins <unk>
-0.4360558 said douglas not
-0.9910153 said danglars </s>
-0.8127016 said danglars it
-1.59604 said danglars are
-1.60311 said danglars how
-1.614267 said danglars carelessly
-0.8260278 said danglars smiling
-1.026155 said villefort be
-1.027416 said villefort only
-0.4130128 said debray i
-1.112932 said debray like
-0.04082928 said chateau renaud
-0.7228656 said beauchamp but
-0.01120753 said monte cristo
-0.8345262 said morrel <unk>
-0.698637 said candide to
-1.372831 said pangloss is
-1.33689 said pangloss that
-1.263196 said pangloss to
-1.343635 said pangloss for
-1.402333 said pangloss hold
-0.894977 said martin without
-0.5713414 said fitzooth <unk>
-0.7327437 said george gamewell
-0.5250652 said gamewell <unk>
-0.8736061 said montfichet <unk>
-1.051461 stepped in when
-0.4264134 stepped out of
-0.4055043 stepped along the
-0.3207932 stepped aside <unk>
-0.8129559 deep <unk> <unk>
-1.055303 deep in sleep
-1.140975 deep enough and
-0.5510772 deep enough to
-0.7077313 deep purpose in
-0.1912772 deep converse with
-0.9977478 got one leg
-0.8129559 got <unk> <unk>
-0.4534116 got into the
-1.137173 got into her
-0.6638563 got a <unk>
-1.354525 got a tongue
-0.9414941 got to the
-1.100388 got to be
-1.458529 got to drive
-0.3975942 got on the
-0.9960183 got all my
-1.033345 got there her
-0.9913703 got as far
-1.006247 got so thin
-0.9722141 got him into
-0.7962062 got any more
-0.8285862 got me to
-0.2410265 got under the
-0.924486 got lost in
-0.4928393 got hold of
-1.028884 possibly could from
-0.8660934 possibly lie concealed
-1.012297 fellow <unk> at
-1.052601 fellow and do
-1.017474 fellow men without
-0.7043038 fellow when i
-0.7925133 fellow thinking i
-1.030884 men <unk> their
-1.080125 men and the
-0.8178829 men and <unk>
-1.502622 men and children
-1.013416 men had for
-0.6060648 men in the
-0.9495861 men in <unk>
-0.5810188 men of the
-1.05414 men was given
-1.012592 men without actually
-0.5126249 men at the
-1.04206 men or else
-1.042007 men who surely
-1.028172 men here here
-1.041791 men i beheld
-1.037953 men will always
-1.022711 men see them
-0.8661805 men walk unconsciously
-0.688636 men began a
-0.8752373 men around the
-0.8799988 men bobby asked
-0.8888786 men rushed by
-0.6969822 men opened the
-0.7305716 men drew back
-0.9578998 actually <unk> <unk>
-1.309072 actually <unk> into
-0.9598855 actually taken place
-0.2315694 when one <unk>
-0.8333645 when missus savareen
-1.634267 when the new
-1.395966 when the prince
-1.605778 when the car
-1.367273 when the princess
-1.019411 when <unk> <unk>
-1.416541 when <unk> by
-1.184373 when <unk> to
-0.5842025 when a <unk>
-0.2202942 when it was
-0.8619511 when for a
-0.9915464 when at length
-1.045173 when all these
-0.9989619 when found she
-0.882498 when she was
-1.598244 when she went
-1.423471 when she did
-1.305536 when she got
-1.50823 when she sat
-0.7521877 when man was
-1.053691 when his highness
-1.525756 when he is
-0.905116 when he <unk>
-1.877394 when he reached
-1.643107 when he has
-1.646153 when he saw
-1.875169 when he does
-1.879631 when he met
-1.144006 when i <unk>
-0.7669698 when i was
-1.9328 when i make
-1.847648 when i left
-1.840317 when i only
-1.573094 when i saw
-1.286658 when i am
-0.9842977 when they had
-0.3673272 when they were
-1.198376 when you are
-1.634622 when you went
-1.564449 when you hear
-1.637833 when you entered
-0.3308517 when your <unk>
-1.494319 when your mind
-0.9700736 when voice returned
-1.446576 when we are
-0.6558513 when we got
-1.680351 when we saw
-1.4517 when we come
-0.9974308 when my eyes
-0.9724901 when morning is
-0.9197973 when told of
-0.6702797 when lost her
-0.943179 when bobby had
-1.012751 when graham had
-0.6098602 when thou art
-0.6969822 when equally the
-0.5126249 built at the
-0.8927124 built if they
-0.1627251 edge of the
-1.493405 edge of his
-1.03569 cleared the air
-0.8416295 cleared land and
-0.9826589 land <unk> with
-1.018405 land and there
-0.8665225 land ladies the
-0.8701885 land as soon
-0.7347887 land produced <unk>
-1.222432 wild <unk> that
-1.353535 wild <unk> hung
-1.054075 wild it covered
-0.2560899 wild rose bushes
-0.4366895 wild cherry trees
-0.4034497 wild cherry tree
-0.9218411 wild forest but
-1.044483 rose the moon
-0.2637727 rose and rose
-0.884359 rose up and
-0.9551443 rose bushes out
-0.9609546 rose bushes it's
-0.7331282 rose likewise higher
-0.4264134 bushes out of
-1.001558 bushes it's no
-0.6936914 bushes bent and
-1.316099 no one had
-1.332731 no one may
-1.472881 no <unk> and
-1.648779 no <unk> in
-1.920011 no <unk> it
-1.098109 no <unk> to
-1.878531 no <unk> for
-1.999438 no <unk> on
-2.343822 no <unk> children
-2.042557 no <unk> or
-1.885933 no <unk> he
-2.309368 no <unk> since
-2.245925 no <unk> has
-0.5910025 no <unk> no
-2.306282 no <unk> left
-2.35058 no <unk> mothers
-0.6643086 no with a
-1.040101 no and is
-1.018121 no not much
-0.5474961 no other <unk>
-1.237152 no more </s>
-1.275701 no more of
-0.8732194 no more than
-1.650297 no more virtue
-1.650918 no more difficulty
-0.9710924 no further inquiries
-1.022057 no i'm quite
-1.288637 no i have
-1.699845 no i won't
-1.588173 no i said
-0.657488 no i am
-1.756092 no i wished
-0.7941863 no such <unk>
-1.271635 no such person
-0.7373835 no said the
-1.1453 no said danglars
-1.574981 no said villefort
-1.574602 no said chateau
-1.145018 no said monte
-1.046866 no no apollo
-0.9335365 no wonder matthew
-1.046838 no they hadn't
-0.774865 no stone <unk>
-1.053332 no you won't
-0.698637 no flat to
-0.7327437 no london street
-1.194389 no matter who
-1.1918 no matter what
-1.195874 no matter then
-1.089884 no use for
-1.117205 no use talking
-0.8166929 no likely path
-0.8942333 no mistake matthew
-1.028545 no prince however
-0.8328754 no sign of
-0.4258426 no notice of
-0.8883284 no orphans no
-0.9618526 no better but
-0.8088385 no decidedly no
-0.986982 no keep my
-0.1910011 no scope for
-0.8981524 no doubt whatever
-0.9118617 no apollo is
-0.1158547 no desire to
-0.8385991 no moon i
-0.2036131 no evidence that
-0.4110283 no self <unk>
-0.7263858 no insanity no
-0.4186053 no wrong </s>
-0.8131331 no prayers will
-0.7329999 no trace behind
-1.086951 no longer <unk>
-1.269186 no longer on
-1.286257 no longer any
-1.300698 no longer believed
-1.296925 no longer princess
-0.8050396 no weariness his
-0.7128401 no thanks i
-0.4250851 no ill to
-0.7755056 no chance to
-0.8115944 no hurry bobby
-0.7077313 no ghosts in
-0.7242451 no sooner had
-0.9152608 no sir then
-0.7005358 no danger of
-0.9753357 no princess to
-1.019799 wonder where jill
-0.5842025 wonder a <unk>
-1.017195 wonder and my
-1.048646 wonder at missus
-0.7697095 wonder matthew and
-0.9010627 wonder what <unk>
-1.326611 wonder what will
-1.03569 themselves the air
-1.053039 themselves and did
-0.8126238 themselves to <unk>
-1.261721 themselves to you
-1.497609 themselves at one
-0.6038617 themselves at the
-1.284717 themselves at her
-0.9357481 themselves as they
-0.8008152 themselves trees <unk>
-0.6250644 themselves some <unk>
-0.9691012 themselves towards us
-0.7755056 themselves useful to
-1.057215 trees <unk> much
-0.6771647 trees and <unk>
-1.003225 trees had got
-0.5355745 trees in the
-0.9361839 trees all in
-1.016723 much <unk> as
-1.055482 much in nottingham
-1.275406 much of an
-1.335371 much of earth
-0.9763953 much time and
-0.9283353 much for her
-1.051778 much at sea
-1.019586 much people are
-0.8740075 much as he
-1.097117 much as you
-1.025541 much did they
-0.9504279 much company though
-0.4932776 much curiosity to
-0.8892458 much different from
-0.7248736 much freckled her
-0.8561094 much later is
-0.7244964 much bent on
-0.7077313 much disappointed in
-0.1927708 much imposed upon
-0.7304441 much reproach after
-0.8983399 much seat damp
-0.8686654 company in his
-1.055923 company of really
-1.046817 company for which
-0.7046773 company could not
-0.9620037 company though dear
-0.6969822 company crowded the
-0.8854058 company beatrice said
-1.058123 though <unk> smile
-1.048386 though to ascertain
-0.7554264 though she had
-1.029047 though he was
-1.524787 though he knew
-1.508266 though he no
-0.8732288 though i am
-0.7043038 though when i
-0.8659193 though dear knows
-0.774865 though somewhat <unk>
-0.8112874 dear knows if
-0.95724 dear yes and
-0.9821822 dear count oh
-0.7191254 dear eugenie for
-1.0346 knows well enough
-0.8927124 knows if they
-1.030878 knows what with
-1.022647 they just want
-1.091096 they <unk> <unk>
-1.795718 they <unk> back
-1.59364 they <unk> it
-1.690739 they <unk> their
-1.787177 they <unk> oh
-1.832566 they <unk> gods
-1.319866 they had the
-1.031957 they had <unk>
-1.682246 they had of
-2.096455 they had reached
-1.832784 they had all
-1.532169 they had never
-1.873895 they had heard
-1.011007 they had been
-1.870161 they had left
-1.85915 they had some
-2.093336 they had soon
-1.536027 they had already
-2.091785 they had entered
-0.5355745 they in the
-0.7331932 they of <unk>
-1.06088 they would not
-0.6794809 they would have
-1.481421 they would stay
-1.201572 they are the
-1.293972 they are going
-1.477434 they are gone
-0.6267522 they who <unk>
-0.4104554 they were <unk>
-1.96751 they were up
-1.672014 they were all
-1.972163 they were out
-2.015158 they were coming
-1.997446 they were good
-1.69735 they were left
-2.001181 they were upon
-2.021663 they were disappointed
-0.9253845 they went <unk>
-0.519681 they went to
-1.260724 they heard the
-1.30906 they heard a
-1.390352 they heard cries
-1.373325 they have the
-1.467983 they have had
-0.9359328 they have been
-1.164692 they both returned
-1.164692 they both began
-1.031047 they must literally
-1.029858 they made themselves
-0.6505371 they won't <unk>
-1.045003 they said not
-0.7960131 they seem <unk>
-0.8427424 they then <unk>
-1.288038 they came close
-0.9026459 they came upon
-0.8861346 they laid her
-0.9112173 they expected him
-1.037808 they ever were
-1.284789 they ever existed
-1.281604 they saw other
-1.285207 they saw heads
-0.7868723 they thought to
-0.7014604 they soon came
-0.4838723 they may be
-1.269359 they may look
-0.9594855 they will take
-1.296191 they don't always
-1.286212 they don't they
-0.4758038 they couldn't <unk>
-0.9978195 they gave all
-0.9382691 they walked slowly
-0.9326135 they hadn't at
-0.1158547 they ventured to
-0.6724173 they told me
-0.7942808 they disappeared he
-0.9112817 they leave me
-0.7331282 they professed produced
-0.3947574 they became <unk>
-0.8653974 they stand around
-0.8975904 they tried everything
-0.2920042 they moved <unk>
-0.7328718 they emerged glanced
-0.1929741 they shook hands
-0.7077313 they departed in
-0.7305716 they swam very
-0.7175146 they hoped it
-1.051583 enough and bobby
-0.9859609 enough in all
-1.015698 enough of them
-0.4854863 enough to <unk>
-0.5273076 enough to be
-0.9867438 enough but then
-1.011969 enough he should
-1.05087 enough said george
-0.3398592 enough mister graham
-0.786383 enough what's in
-1.054985 i'd <unk> look
-1.033728 i'd never dream
-1.035234 i'd have said
-1.013988 i'd ever have
-0.9767078 i'd better keep
-0.9616177 i'd rather believe
-1.056846 look and listen
-0.7331932 look of <unk>
-0.9098282 look for me
-0.7038385 look at the
-1.794473 look at people
-1.408979 look at him
-0.699098 look at me
-1.77674 look at my
-0.6969933 look she was
-0.9982629 look like i
-0.3526918 look seemed to
-0.698637 look forward to
-0.7263858 look alike no
-1.02233 side with great
-0.7657377 side in a
-0.2151122 side of the
-1.298922 side of a
-0.855272 side but he
-1.004506 side there the
-0.5824927 great <unk> </s>
-1.150686 great <unk> <unk>
-1.388631 great <unk> of
-1.754897 great <unk> weariness
-1.054857 great a light
-0.509641 great big house
-1.019711 great mind she
-1.280143 great mind most
-0.7564252 great hurry </s>
-0.9342926 great forest these
-0.7347887 great funeral <unk>
-0.1853896 great shout </s>
-0.842902 stray half <unk>
-0.8647026 stray stick nor
-1.05248 stick to or
-0.8197282 stick stick to
-0.9843297 stick nor stone
-0.6825953 stick unattached </s>
-0.8501873 nor of <unk>
-1.26034 nor of any
-0.704212 nor to <unk>
-1.004489 nor even thus
-0.9741198 nor have i
-1.014889 nor night nor
-1.215384 nor what his
-1.334286 nor what sort
-0.9909238 nor i to
-0.8475162 nor stone was
-1.023876 nor how he's
-0.9872404 nor sleep can
-0.9079474 stone <unk> to
-1.531855 stone and stooping
-0.4404527 stone and wetted
-0.9445297 stone was to
-0.7764509 stone princess </s>
-1.034813 seen one but
-1.058289 seen <unk> unconsciously
-0.6771647 seen and <unk>
-0.8578688 seen that the
-1.030013 seen it if
-0.8614947 seen to be
-1.049256 seen for missus
-0.9925596 seen on that
-1.016147 opinion that marilla
-1.035636 swept that yard
-1.049639 swept her house
-0.5810188 yard of the
-1.019839 yard over as
-0.6126988 yard give me
-0.8595785 yard came a
-0.927048 yard above his
-1.055149 seem <unk> enough
-1.231347 seem to have
-1.353971 seem to mind
-0.8474598 seem as if
-0.9113173 then the <unk>
-1.67257 then the night
-1.770576 then the men
-1.829251 then the picture
-1.829977 then the party
-1.829251 then the princes
-1.149039 then <unk> and
-1.456761 then <unk> their
-1.532572 then <unk> monte
-1.274398 then a hundred
-1.33313 then a smile
-1.309139 then and not
-1.282338 then and there
-0.9976529 then back i
-0.5810188 then of the
-0.9591132 then it will
-1.049177 then be far
-0.5126249 then at the
-1.37054 then she did
-0.4300644 then she sat
-1.035372 then would there
-1.033374 then are we
-0.9156326 then his eyes
-1.370628 then he made
-1.481196 then he became
-1.525779 then he double
-0.6398827 then might i
-1.025578 then must we
-0.9204595 then taking heart
-0.5514092 then i suppose
-1.607747 then i may
-1.651116 then i ventured
-0.402269 then said the
-1.446354 then said she
-1.204545 then said monte
-1.455106 then they both
-1.449905 then they came
-1.451756 then they may
-1.6128 then they became
-0.3660476 then look at
-0.8890622 then although my
-0.1187736 then nova scotia
-0.8945677 then we can
-0.9419634 then brought you
-0.9960842 then another light
-1.013471 then say now
-0.9978574 then myself covered
-0.7191254 then pressed for
-0.8160717 then jenkins entered
-0.6969822 then lifted the
-1.045593 suppose a foreign
-1.051046 suppose it are
-1.051095 suppose not robinson
-1.181801 suppose i had
-1.135124 suppose i must
-0.8165375 suppose they're used
-0.8900512 suppose you are
-1.052604 they're <unk> themselves
-1.037772 they're not but
-0.2337043 they're used to
-1.045596 used by mothers
-0.8936129 used to <unk>
-1.591832 used to it
-1.743494 used to anything
-1.633967 used to imagine
-1.7468 used to lie
-0.3207932 used coffee <unk>
-0.8496898 body and the
-0.7629004 body to the
-0.9936681 body but in
-1.020907 body can get
-1.025417 body might possibly
-0.9182013 body when your
-0.7270657 body they were
-0.802621 body looked like
-0.9362082 body does in
-0.8650499 body move under
-1.046966 get one broke
-1.058289 get <unk> help
-1.200085 get a little
-1.388874 get a boy
-1.527095 get a born
-1.135173 get away </s>
-1.174502 get away to
-1.033876 get in at
-1.037462 get of you
-1.050987 get but i'll
-1.048761 get her little
-1.040484 get up graham
-1.031934 get out but
-1.03468 get any breath
-0.2337043 get used to
-0.7244964 get stuck on
-0.7331282 get sick watching
-1.226865 being <unk> and
-1.330514 being <unk> of
-1.529357 being <unk> from
-1.578728 being <unk> as
-1.726239 being <unk> it's
-1.004405 being a girl
-1.056405 being and leave
-0.3879234 being an <unk>
-0.9736564 being asked and
-1.267885 being poor question
-1.271524 being poor poverty
-0.08386748 being able to
-0.8122092 being discovered from
-1.991249 very <unk> just
-1.117886 very <unk> <unk>
-1.577236 very <unk> with
-1.287766 very <unk> and
-1.700646 very <unk> but
-1.98207 very <unk> dress
-1.988422 very <unk> did
-1.991958 very <unk> very
-2.007133 very <unk> dervish
-0.7965481 very well said
-0.9291517 very red that
-0.6610598 very green and
-0.8542771 very much as
-0.07579515 very kind of
-0.6825953 very particular </s>
-0.8702217 very afraid </s>
-0.8261097 very different </s>
-0.8622793 very outside two
-0.7271439 very unfortunate this
-0.7564252 very gently </s>
-0.9664165 very short very
-0.8170038 very thick decidedly
-0.6936914 very pointed and
-0.5117867 very glad to
-1.166688 very glad you've
-0.786383 very useful in
-0.4908048 very quietly and
-0.8171593 very easily consoled
-0.5648117 very happy life
-0.7323596 very faint indeed
-0.7304441 very honest man
-1.056846 neat and precise
-0.9774436 neat black dress
-0.9617636 precise was that
-0.9177053 precise bonds how
-1.056405 ground and seeing
-1.036268 ground was too
-0.3608685 ground without <unk>
-0.9823288 ground until we
-0.4924518 ground near the
-1.038423 do one is
-0.8858677 do just then
-1.35687 do the talking
-1.315515 do the same
-0.6643086 do with a
-1.178948 do that she
-1.271276 do that which
-0.9489892 do it and
-1.006891 do to keep
-1.193588 do not <unk>
-2.028805 do not take
-0.9758507 do not know
-1.827795 do not think
-1.825289 do not see
-1.829474 do not really
-2.030139 do not believe
-2.032817 do not either
-0.999711 do not weep
-1.007076 do yet even
-0.9152042 do this and
-0.9545135 do anything i
-1.028626 do would you
-1.165689 do so </s>
-1.083314 do so the
-0.8916361 do he could
-1.021395 do why take
-1.017723 do marilla i'd
-0.9321361 do i must
-0.8992328 do know that
-0.983055 do said pangloss
-1.046984 do they tried
-0.9790277 do nor have
-0.9944771 do get one
-1.410831 do you <unk>
-1.151169 do you not
-0.6979597 do you know
-0.8907915 do you mean
-1.864733 do you think
-2.073994 do you want
-2.23861 do you doubt
-1.172912 do you hear
-2.0792 do you wish
-2.242407 do you fill
-1.003863 do think she
-0.8448549 do hope that
-0.9900813 do things we
-0.9642273 do better said
-1.001622 do question be
-0.9245167 do love to
-0.6650024 cheerful if it
-0.6825953 cheerful apartment </s>
-0.814368 apartment apparently without
-0.7090594 whence the <unk>
-1.019057 whence she to
-0.8916361 whence he could
-1.052633 whence you got
-1.04712 you one step
-0.4263487 you the prince
-1.515803 you the king
-0.8419154 you <unk> </s>
-1.38718 you <unk> the
-1.787796 you <unk> but
-1.748783 you <unk> from
-2.026871 you <unk> there
-1.743916 you <unk> he
-1.844886 you <unk> me
-1.004371 you <unk> cried
-2.074107 you <unk> yourself
-0.8068392 you a <unk>
-0.6114611 you a little
-1.422865 you a man
-1.706746 you a few
-1.634431 you and your
-1.63778 you and will
-1.652021 you and belong
-1.652021 you and cacambo
-0.5620697 you by the
-0.8446931 you that i
-1.844227 you had a
-0.09853074 you had not
-2.054088 you had asked
-1.195211 you in that
-1.353589 you in earnest
-0.9036198 you to <unk>
-1.688766 you to tell
-1.732787 you to talk
-1.656049 you to stay
-1.732787 you to stand
-1.824922 you to blame
-1.033113 you be in
-1.341902 you be present
-1.04092 you an influence
-0.9990659 you through me
-0.7190153 you for the
-1.34764 you for six
-1.289626 you not </s>
-1.517117 you not tell
-1.629057 you not father
-1.519628 you not know
-0.9893124 you could not
-0.4370769 you could imagine
-0.5612691 you up where
-0.9707938 you up the
-1.599815 you up bobby
-0.8148319 you sit down
-0.8842295 you if he
-1.864932 you would just
-0.8713921 you would be
-0.3746364 you would not
-1.610198 you would never
-1.875496 you would find
-1.42492 you are the
-0.9199289 you are <unk>
-1.482636 you are a
-1.933158 you are this
-1.578352 you are going
-1.993811 you are right
-1.930265 you are my
-2.007373 you are laughing
-2.007373 you are mister
-2.003943 you are worth
-2.005654 you are wrong
-1.98066 you are still
-2.009098 you are acute
-1.040024 you who may
-0.3743438 you can go
-1.188012 you can do
-1.655956 you can understand
-1.043589 you as to
-1.08947 you as i
-0.3944924 you were <unk>
-1.493056 you were to
-1.43271 you were at
-1.01225 you tell douglas
-0.4610885 you went to
-1.055504 you he wants
-0.3004996 you ought to
-1.014248 you before you
-0.9627029 you best when
-0.3362114 you plain that
-0.5116914 you going to
-0.9034308 you driving at
-1.602871 you have just
-1.446394 you have any
-1.617279 you have imagined
-1.616614 you have rolled
-0.2009628 you go to
-1.308936 you any time
-1.314434 you any harm
-0.8880823 you might as
-0.9366825 you something </s>
-1.220412 you didn't do
-1.22553 you didn't come
-0.7319678 you must be
-1.632802 you must sit
-0.8807064 you must have
-1.611342 you must bobby
-1.633431 you must feed
-0.5201196 you i was
-1.504315 you i did
-1.356074 you i don't
-0.9700736 you won't returned
-0.8522657 you know the
-1.1534 you know a
-1.364315 you know that
-1.799718 you know her
-1.841838 you know them
-1.866332 you know he's
-1.858013 you know it's
-1.852167 you know how
-1.869947 you know none
-1.866332 you know count
-1.265909 you did a
-1.303089 you did see
-1.012543 you such easy
-0.849384 you said monte
-0.8227327 you got a
-0.823211 you when we
-0.6482348 you no <unk>
-1.336122 you no sir
-1.047422 you they shook
-1.041074 you then pressed
-0.8152086 you get away
-1.319294 you do yet
-1.319294 you do get
-0.8560931 you came in
-1.02715 you some pretty
-1.275503 you like said
-1.29873 you like falling
-0.9317618 you weren't </s>
-1.024936 you weren't coming
-1.024685 you weren't though
-0.8855879 you meet on
-0.9345725 you yes </s>
-1.260051 you yes bobby
-0.6819145 you put me
-0.7564252 you stupid </s>
-1.269359 you may make
-1.269117 you may see
-0.8407495 you mean </s>
-0.6377203 you mean to
-1.431138 you mean you've
-1.43069 you mean carlos
-1.429797 you mean sir
-1.012377 you will <unk>
-0.9349565 you will you
-1.66827 you will bring
-1.66827 you will forgive
-1.666089 you will excuse
-0.8171593 you speaking seriously
-0.9464287 you ask more
-0.9215519 you think of
-0.9498428 you think so
-1.505747 you think i'm
-1.46831 you think you
-0.4913838 you don't know
-1.138812 you don't mind
-1.304367 you don't ask
-1.281481 you say rachel
-0.8711086 you say so
-0.6984746 you i've never
-1.439846 you see where
-1.382582 you see he
-1.377804 you see i
-0.4391686 you many <unk>
-0.8622101 you again to
-0.8405649 you figure he
-1.013442 you prince said
-0.8152964 you haven't looked
-0.8405649 you wanted he
-0.1158547 you belong to
-0.7891283 you want the
-1.167729 you want a
-0.7925133 you unless i
-0.9485289 you against your
-0.9628244 you shall i
-0.6648168 you rather i
-0.1921248 you telling me
-0.5455231 you wished to
-0.8981524 you doubt homer
-0.6329565 you hear </s>
-1.204581 you hear because
-1.203633 you hear these
-1.092907 you wish it
-0.4082134 you wish to
-0.726891 you fill my
-0.8454297 you care </s>
-0.8171593 you jenkins thanks
-0.9500556 you entered i
-0.8631432 you therefore still
-0.8092966 you forgive me
-0.6825953 you ready </s>
-0.2452948 you beauty asked
-0.8097552 you mentioned this
-0.8168483 you seeking debray
-0.8092966 you allow me
-0.7211162 you please you
-0.726891 you receive my
-0.7267647 you cost me
-0.3405163 you naughty naughty
-0.8092966 you kiss me
-0.8146772 you amongst us
-0.7327437 you rave sir
-1.066511 cherry trees and
-1.100397 cherry trees in
-1.148012 cherry trees all
-0.471391 cherry tree </s>
-1.023896 cherry tree all
-0.4255021 left the <unk>
-1.746257 left the house
-1.81734 left the asylum
-1.830802 left the room
-1.66393 left the water
-0.7400538 left with the
-1.303013 left to their
-1.25818 left to do
-1.051441 left at bright
-1.041479 left or right
-0.7696089 left orchard and
-1.052351 left his face
-0.880279 left what a
-1.047355 left no stone
-1.018589 left us good
-0.5275073 left new york
-0.8837705 left except his
-0.9866703 left hand i
-0.5313903 left others <unk>
-1.068024 nodding <unk> and
-1.35864 nodding <unk> birches
-0.9792737 birches down in
-1.043452 birches were several
-1.012088 sat down again
-0.7782042 sat and <unk>
-1.335722 sat and looked
-0.9338432 sat at all
-1.043053 sat up waiting
-1.031018 sat now knitting
-0.7563363 sat marilla cuthbert
-0.933447 slightly <unk> of
-0.7304441 slightly developed might
-1.047274 give one delighted
-1.05636 give a wide
-0.9775347 give in and
-1.052726 give it something
-0.929012 give not so
-1.034549 give up one
-1.053188 give his seat
-0.7006021 give he <unk>
-1.123458 give him a
-1.332295 give him an
-1.018142 give off calories
-0.5711598 give no <unk>
-1.052354 give you such
-0.5468928 give me a
-0.5634506 give me your
-0.7372255 give full <unk>
-1.101844 give full and
-0.8465529 appearance <unk> </s>
-1.014616 appearance of an
-0.5809484 appearance were <unk>
-0.9619001 appearance we mean
-0.888893 looked <unk> and
-0.7707854 looked at the
-0.7537911 looked at him
-0.7660448 looked at me
-1.869247 looked at sixty
-1.866099 looked at twenty
-1.042195 looked up isn't
-0.8916361 looked he could
-0.9432094 looked green in
-0.6911632 looked after the
-0.9355918 looked wild it
-0.7696089 looked east and
-0.6791366 looked like a
-1.290849 looked like now
-0.951195 looked almost sad
-1.016341 looked upon morrel
-0.9039374 east one </s>
-1.056699 east and west
-1.055737 east i faced
-1.046042 west one looking
-0.5810188 west of the
-0.5049358 west through the
-1.012297 looking <unk> at
-0.6276205 looking at her
-1.387975 looking at him
-1.450561 looking at me
-1.721809 looking at graham
-0.9630541 looking out on
-0.5541023 looking over the
-1.03101 looking about me
-0.8023248 looking personage with
-0.8454297 looking round </s>
-0.9826589 came <unk> with
-0.6638563 came a <unk>
-1.352896 came a further
-1.043782 came back <unk>
-1.421661 came back my
-1.435942 came back graham
-0.9495861 came in <unk>
-1.318487 came in in
-1.403171 came to him
-1.504542 came to demand
-1.519709 came to bobby
-0.8989553 came so the
-1.037953 came about whether
-1.002234 came three or
-0.7360139 came home with
-0.6416637 came off the
-0.9983293 came another scattering
-0.7321037 came close enough
-0.5015103 came upon the
-1.381659 came upon <unk>
-0.5491063 came upon a
-0.3001021 came across the
-0.8651368 came drawn along
-0.6642711 came onward <unk>
-0.8188557 behind the <unk>
-1.346173 behind the light
-1.0499 behind with two
-1.032407 behind her was
-1.030089 behind them they
-1.053188 behind his quiet
-0.8100752 behind him <unk>
-0.9542985 behind themselves the
-1.053063 laid it away
-1.026678 laid for supper
-1.007066 laid her on
-0.8570609 laid so that
-0.961184 laid hold first
-0.2600956 supper missus rachel
-1.054645 supper and asked
-0.9826589 fairly <unk> with
-0.7735312 fairly closed the
-1.022939 closed the door
-1.058206 closed <unk> desk
-1.276432 closed over it
-1.30153 closed over them
-1.200085 getting a little
-1.524272 getting a home
-1.389463 getting a girl
-1.048106 getting on pretty
-0.8986554 getting up in
-1.04362 getting him from
-0.6642711 getting fairly <unk>
-0.8096023 getting boys from
-0.8008152 getting you're <unk>
-1.03915 mystery about quiet
-0.933447 real <unk> of
-0.8977777 real fine evening
-0.7329999 real hearty laugh
-0.8465529 fine <unk> </s>
-0.9461409 fine for you
-0.9194738 fine evening isn't
-0.6320667 fine thing to
-0.1115468 fine country of
-1.056223 isn't a pick
-1.50842 isn't that an
-1.403424 isn't that so
-1.520829 isn't that beautiful
-0.5365613 isn't it and
-1.437006 isn't it but
-1.588821 isn't it won't
-0.8474598 isn't as if
-0.6273351 isn't so <unk>
-1.089878 isn't heavy and
-1.16305 isn't heavy i've
-0.7077313 isn't carried in
-0.7244964 isn't leaning on
-1.004405 expecting a girl
-0.9913095 expecting to see
-0.9013762 expecting some one
-1.333923 some one home
-1.334221 some one isn't
-1.210974 some <unk> </s>
-0.5675394 some <unk> <unk>
-1.673592 some <unk> about
-1.742221 some <unk> myself
-1.016602 some of our
-1.428406 some time all
-1.443976 some time nothing
-1.436344 some time bobby
-0.8862413 some people said
-0.7564252 some distance </s>
-1.277012 some day even
-1.0033 some day i
-0.9783856 some pretty tricks
-0.8008152 some gray <unk>
-0.8887841 some use in
-0.5010215 some mistake he
-0.4231026 some lights and
-0.786383 some fault in
-0.3334785 some game in
-0.7981352 some shame that
-0.8962818 some trouble found
-0.8901623 some manner i
-0.8657453 some local fellow
-0.728537 some breakfast then
-0.7986513 some difficulty </s>
-0.7777731 some chance of
-0.7331282 some apprehension keeps
-0.7329999 some sacrifice thank
-0.9159419 some wine for
-0.7981352 some disgust that
-1.018405 dishes and there
-0.5809484 dishes were <unk>
-1.235747 only one who
-1.531683 only one i
-1.615458 only one fault
-1.616028 only one theory
-0.861611 only just in
-1.25991 only <unk> the
-1.393765 only <unk> in
-1.754671 only <unk> are
-1.833058 only <unk> apple
-1.833058 only <unk> creature
-1.833058 only <unk> physical
-0.7099292 only a <unk>
-1.325955 only a man
-1.650688 only a mythical
-1.649077 only a foot
-1.32937 only by men
-1.333367 only by narrow
-1.055752 only in france
-0.6897254 only it was
-1.030908 only to know
-0.7998543 only an idol
-0.7847991 only she <unk>
-0.9501766 only as a
-1.053691 only his profound
-0.7378917 only been in
-1.009389 only make them
-0.8803645 only last week
-0.9659933 only i shall
-0.9623899 only living creature
-1.011436 only men or
-0.6320667 only thing to
-1.025575 only don't say
-0.9613966 only things i
-0.9259671 only women it
-0.8551441 only twenty <unk>
-0.8449604 only way to
-1.230788 only way i
-0.7626471 only light </s>
-0.9072392 only answer the
-0.8317879 only person in
-0.3622096 only wish to
-0.6969822 only envy the
-0.5995317 only evidence that
-0.5042792 only rome with
-0.7287908 only color we
-0.8650499 only paid hundred
-0.8948282 only return again
-0.7211162 only cost you
-0.6936914 only wilder and
-0.888893 apple <unk> and
-0.6936914 apple preserves and
-1.040668 preserves and one
-1.012073 preserves us from
-0.559114 kind of <unk>
-0.6573406 kind of you
-1.749745 kind of afraid
-0.8044763 kind i <unk>
-0.2600956 expected missus rachel
-0.8126238 expected to <unk>
-1.027277 expected to be
-0.7862498 expected him to
-1.025726 expected i would
-0.9468479 expected company could
-0.870855 particular company </s>
-0.9998048 how is it
-1.207552 how the prince
-1.357605 how the smell
-1.074806 how <unk> </s>
-1.38256 how <unk> he
-1.532819 how <unk> hard
-0.9481191 how a man
-1.032041 how it came
-1.018187 how was he
-0.9232624 how she got
-0.9548623 how are all
-0.9925805 how can i
-1.027043 how were you
-0.8989553 how so the
-0.7874908 how he had
-0.9514864 how he's likely
-0.6909178 how more than
-0.8044763 how i <unk>
-0.6923255 how did you
-1.01277 how much did
-1.03662 how then are
-0.4792417 how do you
-1.052913 how you going
-0.9514864 how many self
-0.803171 how am i
-0.9395692 how else is
-0.9057776 how happy you
-0.6969822 how innocent the
-1.195137 your <unk> </s>
-1.894837 your <unk> is
-1.123448 your <unk> <unk>
-1.296016 your <unk> and
-1.461349 your <unk> in
-1.987064 your <unk> would
-2.017667 your <unk> come
-2.05222 your <unk> buried
-2.048969 your <unk> death
-2.050592 your <unk> gravity
-1.034384 your little boots
-0.972365 your place and
-0.9210499 your business she
-1.258053 your own sake
-1.254882 your own eyes
-0.8636624 your folks something
-0.825832 your house and
-1.008042 your mind no
-0.9605332 your body when
-0.9516984 your name lording
-0.9593338 your head she
-0.9895837 your sleep walking
-1.038124 your will child
-0.5883656 your word of
-0.8261097 your paper </s>
-0.8111339 your sister were
-0.8727732 your better <unk>
-1.033262 your tongue none
-1.030202 your tongue answered
-0.3401357 your bag oh
-0.786383 your watch in
-0.7175146 your knowing it
-0.3334785 your presence in
-0.7755056 your freedom to
-1.159346 your hands at
-1.182291 your hands alone
-0.9585779 your service here
-0.9596565 your service graham
-0.6825953 your intellect </s>
-0.8657453 your friends call
-0.9828462 your squire robin
-0.9087769 your arm with
-0.8082284 your cousin is
-0.7322316 your signature alone
-0.9206569 your bonds pay
-0.9283379 your receipt is
-0.7273968 your signatures or
-0.8163304 your calories gone
-0.7243708 your highness said
-0.1182546 your sheep from
-0.7270174 your purse from
-0.7143108 your lives he
-0.6600345 name of the
-1.26034 name of any
-0.6631813 name or <unk>
-0.9029714 name as i
-0.6467635 name might be
-0.9529993 name i will
-0.9148198 name my father
-0.6601833 name question </s>
-0.731337 name lording asked
-1.038679 existed and always
-0.9816706 existed between marilla
-0.7090594 between the <unk>
-0.2388878 between <unk> <unk>
-0.7278082 between her <unk>
-0.7328489 between them </s>
-1.317288 between them tried
-1.031118 between his lips
-0.8820374 between him and
-0.7563363 between marilla cuthbert
-0.8487007 between us </s>
-1.276292 between us we
-0.8132042 between hope and
-1.017787 between these four
-1.346322 spite of or
-1.095465 spite of his
-0.9269064 perhaps it would
-0.8367965 perhaps was the
-0.8619511 perhaps for a
-0.9432848 perhaps this was
-0.7847991 perhaps she <unk>
-0.710253 perhaps because of
-0.507882 perhaps sent me
-0.4244233 perhaps watching the
-0.8129559 lips <unk> <unk>
-1.055392 lips he shut
-1.022629 lips good morning
-1.097138 sight <unk> to
-1.318345 sight <unk> not
-1.019492 sight and as
-1.349043 sight of this
-1.182329 sight of his
-1.520904 sight of matthew
-0.700253 sight was <unk>
-0.9461409 sight for you
-0.9656387 sight being a
-0.9760902 too the prince
-0.700253 too was <unk>
-1.018081 too but how
-0.9005899 too for he
-0.7248736 too early so
-1.023323 too good fun
-0.9964637 too i said
-1.366721 too much for
-1.415918 too much people
-1.424049 too much bent
-0.7696089 too soft and
-0.192217 too hot or
-0.8974032 too cold tired
-0.8897911 too suddenly </s>
-0.4250851 too ill to
-0.8573023 too makes me
-0.9223504 too tired for
-1.321297 curiosity to take
-1.262823 curiosity to morrow
-0.9357481 curiosity as they
-0.8382613 curiosity oh no
-0.6969822 curiosity conquered the
-1.045727 oh a mere
-1.033972 oh it seems
-1.029835 oh well then
-1.018121 oh not much
-0.9682111 oh there are
-0.9765036 oh work work
-1.055168 oh he tears
-0.6398827 oh might i
-0.8839767 oh i'm very
-1.005851 oh i <unk>
-1.325777 oh i can
-1.449369 oh i can't
-1.4925 oh no i'm
-1.162701 oh no i
-1.46014 oh no you
-0.8636624 oh dear yes
-1.305767 oh you may
-1.35018 oh you rave
-1.024323 oh how happy
-0.8657888 oh thank god
-0.726891 oh heavens my
-1.074806 quite <unk> </s>
-1.419984 quite <unk> as
-1.532326 quite <unk> really
-1.035628 quite well although
-0.4264134 quite out of
-0.4908048 quite late and
-0.958285 quite right in
-0.9591178 quite lost our
-1.052309 although she generally
-0.9847822 although he found
-0.9607935 although i had
-1.012409 although it's difficult
-1.046937 although my foot
-1.01242 bad where there
-1.053258 bad <unk> yesterday
-0.8659193 bad town unless
-0.921052 bad fellow thinking
-0.9547592 bad enough in
-0.4286954 bad sign in
-0.7906066 bad coffee of
-1.054207 yesterday and how
-0.8381185 yesterday she said
-0.7006021 yesterday he <unk>
-0.7722028 yesterday came back
-0.7098154 yesterday yes i
-0.7242451 yesterday worry had
-1.015684 thin <unk> i
-0.7699104 thin that he
-0.9789207 thin woman with
-0.8732288 thin i am
-0.9520801 thin air no
-0.9202622 thin brown hand
-0.9361594 thin also much
-0.8465529 hair <unk> </s>
-1.056846 hair and pierced
-1.054603 hair that touched
-0.8134415 hair showed some
-1.011203 hair yes keep
-1.035386 showed that thou
-1.047355 showed no weariness
-1.027761 showed some gray
-0.888893 gray <unk> and
-0.6771647 gray and <unk>
-1.055572 gray in others
-0.9169475 gray hair that
-0.8039818 gray wincey she
-0.6734497 hard little <unk>
-0.5650724 hard to believe
-1.605223 hard to understand
-1.520459 hard to keep
-1.010547 hard it's got
-0.2276171 hard brown <unk>
-1.300029 two <unk> the
-1.117886 two <unk> <unk>
-1.579772 two <unk> a
-1.287766 two <unk> and
-1.409405 two <unk> of
-1.824489 two <unk> which
-1.959033 two <unk> themselves
-2.007133 two <unk> fellows
-2.007133 two <unk> presented
-1.054499 two and three
-1.021023 two old men
-0.6047606 two hours at
-0.8520444 two voices but
-0.6398532 two matthew cuthbert
-0.2605076 two three four
-0.8622401 two living <unk>
-1.0214 two men drew
-0.06583646 two instead of
-0.8520444 two nights but
-0.7304887 two will you
-0.4117487 two above the
-0.8668169 two hundred </s>
-0.9108351 two hundred yards
-0.9290917 two hands in
-0.8454297 two o'clock </s>
-1.22375 two days is
-0.6935328 two days and
-1.234771 two days will
-0.7331282 two seven rosalind
-0.8168483 two doctors therefore
-0.7696089 two sons and
-1.04081 stuck <unk> through
-0.8234117 stuck on <unk>
-1.33603 like the one
-1.339947 like the rest
-1.058289 like <unk> figures
-0.4873922 like a <unk>
-1.774615 like a busy
-1.770461 like a woman
-1.770461 like a prince
-1.823564 like a top
-0.6771647 like and <unk>
-1.172126 like that </s>
-1.346944 like that because
-0.3068365 like its <unk>
-1.055752 like in gait
-0.9640972 like everything about
-1.022171 like other people
-1.046482 like as not
-0.9871135 like going up
-0.915946 like now if
-0.9320628 like i don't
-0.5970297 like said the
-0.7402397 like nor what
-0.971923 like you will
-0.9945679 like myself has
-0.984044 like most quiet
-0.2920042 like dull <unk>
-0.3334785 like falling in
-1.074988 like beatrice only
-1.082088 like beatrice eleanor
-0.857473 like unto my
-1.149039 narrow <unk> and
-1.233895 narrow <unk> of
-1.528401 narrow <unk> could
-1.053952 mouth that sight
-0.6899269 mouth of the
-1.349043 mouth of this
-1.528779 mouth of imagination
-1.318279 mouth was sweet
-1.351776 mouth was large
-0.7688478 mouth but the
-1.040334 mouth which if
-0.9463864 ever <unk> in
-0.8989143 ever that he
-1.351311 ever that maria
-1.001559 ever had in
-0.5355745 ever in the
-1.032238 ever of my
-1.329145 ever were children
-1.315181 ever were or
-0.4610885 ever went to
-1.049071 ever so slightly
-0.8614994 ever known in
-1.045464 ever have another
-0.3731345 ever since he
-1.396564 ever since we
-0.5455231 ever expected to
-0.7564252 ever existed </s>
-1.009483 ever saw no
-0.7890483 ever expect to
-0.3191339 ever want to
-0.6825953 ever guilty </s>
-0.8070109 ever allow her
-0.7113743 ever bore a
-0.8070109 ever beheld her
-1.055752 developed in department
-0.5882314 developed might have
-0.933447 considered <unk> of
-0.8435276 considered poor people
-0.5842025 sense a <unk>
-0.8501873 sense of <unk>
-1.355111 sense of shame
-0.6631813 sense or <unk>
-1.050581 we're not getting
-1.047396 we're all pretty
-0.4958232 we're getting a
-1.030721 afraid and it
-1.026705 afraid of being
-1.034718 afraid matthew however
-0.2625361 afraid you weren't
-0.6601833 afraid question </s>
-0.9465496 weren't coming for
-0.9532136 weren't though when
-0.8188557 saw the <unk>
-1.348086 saw the lady
-1.05595 saw a gentleman
-1.094122 saw that the
-1.322303 saw that his
-0.9521138 saw that he
-1.043946 saw but one
-1.489955 saw her at
-0.4395463 saw her ascend
-0.6408422 saw them </s>
-0.5474961 saw other <unk>
-0.8189207 saw he was
-0.9533856 saw him in
-0.6516518 saw matthew <unk>
-1.008829 saw something white
-1.016341 saw nothing ought
-0.8447933 saw what he
-0.8763841 saw no more
-0.8398785 saw you <unk>
-0.6716241 saw only <unk>
-0.7683966 saw again the
-0.8661805 saw lights glancing
-0.6642711 saw heads <unk>
-0.9760902 thought the prince
-1.531587 thought <unk> get
-1.515606 thought <unk> how
-1.433331 thought <unk> me
-1.055572 thought in exclamation
-1.095465 thought of his
-1.224766 thought of him
-0.985361 thought it for
-0.8126238 thought to <unk>
-1.355509 thought to send
-1.049541 thought but i've
-0.6484622 thought can <unk>
-0.9662507 thought he was
-1.294379 thought he must
-0.4608092 thought maybe he
-0.9507614 thought brought no
-1.068834 thought amory what
-1.080658 thought amory suddenly
-1.333191 maybe he is
-1.029047 maybe he was
-1.521498 maybe he can
-1.037552 maybe what one
-0.7270657 maybe they were
-0.9129787 maybe two hundred
-0.9171174 maybe rawlins back
-0.8465529 river <unk> </s>
-0.6897254 river it was
-0.2631039 river to meet
-0.6235813 river there was
-0.8162269 river we're getting
-0.6936914 river hotel and
-1.052161 boy had brought
-1.042812 boy of about
-0.8341057 boy but i
-0.2539856 boy from an
-0.4264134 boy out of
-1.298941 boy matthew is
-1.313293 boy matthew groaned
-0.9179014 boy i'd never
-0.2337043 boy used to
-0.8255036 boy i've come
-0.5640213 boy also <unk>
-0.6642711 boy injured <unk>
-0.8909019 boy rushed out
-0.9463864 orphan <unk> in
-0.8363943 orphan but <unk>
-0.6762189 orphan asylum and
-1.412029 orphan asylum in
-1.511953 orphan asylum well
-1.506847 orphan asylum if
-1.52565 orphan asylum child
-0.7660587 orphan girl </s>
-1.248566 asylum and that
-1.181647 asylum and he
-1.041719 asylum in nova
-0.8367965 asylum was the
-0.9882276 asylum well the
-0.9815216 asylum if she
-1.009382 asylum people but
-0.6980984 asylum over in
-1.027731 asylum i felt
-1.025323 asylum some people
-1.034085 asylum only just
-1.002244 asylum child did
-1.131926 nova scotia is
-1.054209 nova scotia and
-1.114921 nova scotia for
-1.138071 nova scotia were
-1.049644 scotia is right
-1.055964 scotia and he's
-0.9098282 scotia for me
-1.043636 scotia were part
-0.9347986 train with that
-0.9908314 train at <unk>
-0.9633248 train would soon
-1.027731 train i felt
-0.6973452 train has been
-0.7850687 train tonight </s>
-0.8439361 train tonight if
-1.044133 tonight if marilla
-1.05777 meet the uncommunicative
-1.05636 meet a kangaroo
-1.022921 meet with greater
-0.3975942 meet on the
-1.335028 meet him missus
-1.046081 meet him with
-0.8474181 kangaroo from <unk>
-0.6642711 kangaroo gait <unk>
-1.007701 five <unk> it
-1.310553 five little bonds
-1.312146 five little scraps
-0.849384 five said monte
-0.1376952 five thirty train
-0.933188 five thousand or
-1.419532 five millions and
-1.488403 five millions in
-1.442814 five millions to
-1.626468 five millions without
-1.566489 five millions at
-1.061018 five millions on
-1.600327 five millions from
-1.627338 five millions why
-1.621284 five millions here
-0.3730168 five minutes the
-0.9639254 five minutes afterwards
-0.1881954 five scraps of
-0.8162269 five notes most
-0.7090594 making the <unk>
-0.4981908 making fun of
-0.4296398 making may be
-0.7312093 making impressions upon
-1.239232 fun of her
-1.355111 fun of eating
-0.704212 fun to <unk>
-1.323761 fun i ever
-1.276266 fun i wish
-1.05777 almost the tone
-1.005561 almost <unk> </s>
-1.075376 almost <unk> the
-0.7755056 almost expecting to
-0.4932776 almost forced to
-0.9175292 almost already </s>
-0.8957221 almost immediately even
-0.8901623 almost sad i
-0.789134 forced into his
-1.355894 forced to suppose
-1.3389 forced to marry
-0.3307273 forced such a
-0.959324 forced himself to
-1.054993 earnest a mind
-0.8576201 earnest marilla she
-1.035668 demanded <unk> this
-1.036439 demanded their attention
-1.042667 demanded when voice
-1.005561 voice <unk> </s>
-1.218805 voice <unk> with
-1.038145 voice was harder
-0.8839767 voice i'm very
-0.6126988 voice give me
-0.7480842 voice came to
-0.621137 voice returned to
-0.6846515 voice still <unk>
-0.9760902 returned the prince
-0.9079474 returned <unk> to
-0.8922063 returned was a
-1.28074 returned to her
-1.199303 returned to his
-0.8197611 returned marilla </s>
-0.803497 returned robin with
-1.003435 yes and if
-0.9659939 yes of course
-1.340496 yes but without
-1.343611 yes but that's
-0.8894433 yes well </s>
-0.6296158 yes for the
-1.04079 yes from out
-0.2642641 yes he answered
-1.231965 yes i have
-0.4219128 yes i will
-0.8495269 yes said danglars
-0.9989393 yes come at
-1.02142 yes our religion
-0.4359917 yes keep it
-0.8135385 yes bobby said
-0.8661805 yes replied noirtier
-1.019492 boys and as
-0.5810188 boys of the
-1.04615 boys from orphan
-0.2589639 part in it
-0.7056817 part of the
-0.9231158 part of <unk>
-1.422825 part of him
-1.597305 part of which
-0.8465529 usual <unk> </s>
-0.8159166 usual spring work
-0.8317879 usual difficulty in
-0.9630185 spring work on
-0.8367158 spring equinox but
-0.8352536 spring equinox as
-0.6969933 farm she was
-0.06583646 farm instead of
-1.505649 instead of one
-0.7154165 instead of the
-1.616304 instead of being
-1.648951 instead of two
-1.677982 instead of me
-1.05777 felt the touch
-1.074806 felt <unk> </s>
-1.019411 felt <unk> <unk>
-1.470488 felt <unk> up
-0.9590761 felt that she
-0.9887871 felt for and
-1.051048 felt her doubts
-0.8474598 felt as if
-1.031118 felt his fingers
-1.049071 felt so ashamed
-0.8999709 felt better </s>
-1.006027 received the old
-0.5842025 received a <unk>
-0.5711598 received no <unk>
-1.018444 received they in
-1.074806 mental <unk> </s>
-1.343242 mental <unk> that
-1.473958 mental <unk> she
-0.7755056 mental attitude to
-1.005561 exclamation <unk> </s>
-0.9578998 exclamation <unk> <unk>
-0.7331932 exclamation of <unk>
-1.040862 exclamation been drawn
-0.5337205 alexander spencer was
-1.369305 alexander spencer for
-1.417202 alexander spencer today
-1.155074 spencer was to
-1.307903 spencer was up
-1.056815 spencer to pick
-1.052486 spencer for doing
-1.04227 spencer what made
-0.846263 spencer today the
-0.2569543 spencer said it
-1.019135 spencer came off
-0.8825028 spencer although she
-0.7771977 spencer will <unk>
-1.05556 girl <unk> past
-1.034046 girl a strange
-1.046948 girl and gave
-0.968805 girl in that
-1.039745 girl to bring
-0.8485888 girl an orphan
-1.044802 girl but this
-0.5098292 girl from the
-0.801165 girl who was
-0.7271496 girl said the
-1.408015 girl said matthew
-1.504466 girl said marilla
-1.508682 girl said debray
-1.038589 girl we heard
-0.9435054 girl women were
-0.8165375 girl she's sitting
-0.5355745 hopeton in the
-1.020992 hopeton last winter
-1.353982 adopting a whole
-1.256535 adopting a boy
-0.9801163 adopting her from
-0.9788386 world is this
-0.9525195 world and i
-1.035534 world of men
-1.037339 world was certainly
-1.055504 world he occupied
-0.9010627 world what <unk>
-1.065961 world what was
-1.047029 world no orphans
-0.6769497 world there's risks
-0.7600351 world millions of
-0.6622561 certainly one of
-0.9591132 certainly it will
-0.9293492 certainly was not
-1.133682 certainly he said
-1.351544 certainly he brought
-0.8301441 certainly make a
-1.055347 certainly i excuse
-0.774865 certainly turning <unk>
-0.8944191 certainly bring back
-1.049911 turning <unk> down
-0.7629004 turning to the
-0.6980984 turning over in
-0.436606 turning toward him
-1.00262 earth <unk> from
-0.7782042 earth and <unk>
-1.338245 earth and water
-1.003238 earth put such
-0.448969 earth most <unk>
-0.3513586 earth fall <unk>
-0.8677413 earth doctor <unk>
-0.7606389 earth falling <unk>
-0.2456328 put into the
-1.481927 put into if
-0.6323558 put in the
-1.009847 put in <unk>
-1.523863 put in jesus
-0.9219187 put on his
-1.033833 put out her
-0.8570196 put there <unk>
-1.031514 put about when
-0.9352598 put both his
-0.3307273 put such a
-1.436549 put you in
-0.4354824 put you up
-0.4148519 put me in
-1.505379 put me up
-1.056421 head the look
-1.056699 head and chief
-1.023365 head she demanded
-1.031514 head about what
-0.7931758 head any one
-0.7329111 head whether the
-0.4117487 head above the
-0.4291249 head toward the
-0.8896132 head trouble which
-0.8139045 head fell back
-0.5355745 advice in the
-1.050807 advice was well
-0.8363943 advice but <unk>
-0.6631813 advice or <unk>
-0.9877542 advice being asked
-0.9911899 thinking so for
-0.8223596 thinking about it
-0.8044763 thinking i <unk>
-1.054575 winter <unk> three
-0.8496898 winter and the
-1.002231 winter in fact
-1.018178 winter made his
-1.045645 fact is bobby
-0.9649535 fact the princess
-1.095465 fact of his
-1.334994 fact of death
-0.700253 fact was <unk>
-1.056911 fact to support
-0.2354052 fact he had
-0.9489765 fact returned marilla
-0.5639858 fact nearly all
-1.310471 there's never anybody
-1.132964 there's never been
-0.6910501 there's any <unk>
-0.9727505 there's something in
-1.01567 there's nothing else
-0.9984841 there's no use
-1.027761 there's some mistake
-0.1892935 there's risks in
-0.9514864 stupid half grown
-0.8808113 stupid i have
-1.034173 grown little french
-1.325097 grown up people
-1.31438 grown up when
-1.056418 french of rome
-1.039097 french would make
-0.7696089 french boys and
-0.7263858 french rivers all
-1.030884 soon <unk> their
-0.791037 soon be <unk>
-1.269331 soon be along
-0.8314972 soon found a
-1.201105 soon as the
-1.945137 soon as on
-1.452113 soon as she
-1.047037 soon as he
-0.871253 soon as they
-1.3829 soon as you
-1.790309 soon as ever
-1.991331 soon as think
-1.995412 soon as rawlins
-0.7959453 soon after the
-1.294434 soon after daylight
-0.2332974 soon came upon
-1.016743 soon upon firm
-0.8582456 broke into your
-1.034697 broke a word
-1.221114 broke off a
-1.279241 broke off looking
-1.050769 states at first
-1.05528 states he can't
-0.5319941 first <unk> of
-1.61877 first <unk> no
-1.643878 first <unk> maybe
-1.241049 first of one
-1.331991 first of these
-1.041221 first for as
-0.5126249 first at the
-0.6516518 first matthew <unk>
-0.5970297 first said the
-0.3256418 first let us
-0.6825953 first begin </s>
-0.8187088 first tis <unk>
-0.5537435 first placed in
-0.7271439 first ship this
-1.020276 flat to that
-0.847016 flat demand for
-1.218805 may <unk> with
-1.330277 may <unk> your
-0.8840089 may be <unk>
-1.115583 may be a
-1.794197 may be all
-1.511688 may be found
-1.649632 may be called
-1.780015 may be said
-1.840758 may be thy
-1.034087 may well say
-0.3764432 may have been
-1.417603 may have made
-0.8529207 may make sure
-0.9779095 may look for
-0.8657453 may stick stick
-0.7282119 may see what
-0.7742635 may keep this
-0.9129918 may hear me
-0.8981524 may thus speak
-1.158093 right <unk> in
-1.249401 right <unk> for
-0.7944442 right away and
-1.055662 right in thinking
-1.048196 right to demand
-1.042836 right or wrong
-0.9079337 right as you
-0.8235951 right off and
-0.6950625 right i'm not
-1.165009 right said missus
-1.219488 right said pangloss
-1.024462 right don't graham
-0.1160198 right sort of
-0.698637 right close to
-0.6103243 right hand <unk>
-1.056524 saying to each
-0.6865055 saying something to
-0.7270657 saying they were
-0.8091439 saying they're not
-0.7318479 saying brother look
-0.1881954 saying persons of
-0.8461877 london street <unk>
-0.7090594 street the <unk>
-1.000158 street <unk> for
-1.032859 street or one
-1.027098 street then at
-0.6825953 street fight </s>
-0.9445686 me one on
-0.3939745 me the <unk>
-1.951352 me the night
-2.100967 me the stationmaster
-2.070203 me the truth
-2.12814 me the sum
-1.042226 me the creeps
-2.128983 me the pleasure
-1.139443 me <unk> </s>
-1.472004 me <unk> that
-1.615155 me <unk> was
-1.557782 me <unk> but
-1.694945 me <unk> than
-1.009085 me down out
-0.396078 me a <unk>
-1.648809 me a room
-1.652844 me a credit
-1.02233 me with great
-0.8178829 me and <unk>
-1.466784 me and with
-1.290148 me and he
-0.6100669 me by <unk>
-1.135253 me that the
-1.110627 me that i
-1.498308 me that when
-1.640295 me that does
-1.011705 me back but
-0.6451737 me in </s>
-0.7430334 me in the
-1.071515 me in a
-1.741363 me in those
-0.6897254 me it was
-0.4882465 me to the
-1.857726 me to talk
-1.815784 me to night
-1.70857 me to do
-1.895556 me to put
-1.94986 me to receive
-0.9165534 me through <unk>
-1.268193 me but as
-0.3958695 me but i
-1.002294 me well in
-0.7830161 me for <unk>
-0.9883343 me at your
-1.04374 me up directly
-0.7630518 me who is
-0.9913703 me as though
-1.044709 me so before
-1.229482 me he said
-1.406541 me he saw
-1.481196 me he took
-0.9579219 me which of
-0.7232901 me now </s>
-0.9425192 me have you
-0.5864985 me go to
-1.024018 me good e
-0.6825953 me rarely </s>
-1.016779 me after what
-1.246049 me i have
-1.600022 me i did
-1.58526 me i said
-1.37266 me i do
-1.515102 me i saw
-1.795504 me i dare
-1.881933 me i accepted
-0.5970297 me said the
-1.016173 me men here
-0.9545135 me nor i
-0.8328224 me then i
-1.024681 me very quietly
-1.020743 me only as
-1.320928 me your word
-1.322091 me your bag
-1.025961 me like going
-0.1386964 me five millions
-0.9212496 me saying brother
-0.9842236 me once did
-0.7304887 me will you
-0.774865 me ten <unk>
-1.013471 me say here
-1.005006 me question don't
-0.7981352 me unless it
-0.7310817 me remember where
-0.7849841 me aside and
-0.9842725 me count pardon
-0.9184377 me else i
-0.8135385 me bobby said
-0.3001021 me across the
-0.7102848 me graham said
-0.2383981 me excuse me
-0.8197282 me send to
-0.4932776 me till to
-0.6801169 me alone </s>
-0.8189092 me princess said
-0.8465529 born <unk> </s>
-1.277935 born of that
-1.35275 born of poor
-1.027277 born to be
-1.338529 born to live
-0.9384872 born at least
-0.9925596 born on that
-0.9850683 born until man
-1.048105 least the black
-1.321519 least <unk> be
-1.358475 least <unk> keeps
-1.054312 least a last
-0.9072394 least before his
-0.9320628 least i don't
-0.9986297 risk no matter
-0.6769497 risk there's risks
-1.056617 matter of indifference
-0.9787092 matter for in
-1.037065 matter who we
-0.9770193 matter which you
-1.045603 matter what mistake
-1.040611 matter then although
-0.594967 we missus spencer
-1.237504 we <unk> the
-1.521134 we <unk> for
-1.636235 we <unk> out
-1.632779 we <unk> their
-1.754551 we <unk> extended
-1.071533 we had the
-1.089636 we had a
-1.056815 we to decide
-0.6873023 we be <unk>
-1.04375 we all have
-1.227101 we are to
-1.171979 we are all
-0.7786799 we can <unk>
-1.433613 we can feel
-1.4351 we can decide
-1.043268 we were getting
-1.001821 we heard last
-0.8867783 we asked for
-1.027774 we have <unk>
-1.700668 we have reached
-1.699057 we have quite
-1.518003 we have fallen
-1.704721 we have won
-0.8334146 we go and
-1.030733 we must cultivate
-0.9987284 we got into
-1.248012 we got on
-0.7684223 we get a
-1.229984 we get but
-1.028922 we do said
-1.007685 we give off
-0.7584122 we saw her
-0.6407806 we thought <unk>
-0.8805181 we meet with
-1.01236 we may thus
-0.5909406 we mean to
-1.198695 we mean debray
-0.9586313 we will go
-0.6329108 we decided that
-0.622452 we decided to
-0.5071956 we sent her
-0.7486999 we took it
-0.9052033 we don't understand
-0.7799185 we see the
-0.17884 we come to
-0.6323694 we shall be
-0.8145226 we ease our
-0.1158547 we desire to
-0.6969822 we fill the
-0.2263395 we need not
-1.413456 feel <unk> with
-1.32183 feel <unk> in
-1.634238 feel <unk> why
-1.647554 feel <unk> body
-1.002368 feel it's my
-0.9567605 feel strange it
-0.7331282 feel invisible blue
-1.299248 my <unk> </s>
-0.7339798 my <unk> <unk>
-1.71937 my <unk> with
-1.403845 my <unk> and
-1.011195 my <unk> to
-2.072782 my <unk> an
-1.889732 my <unk> i
-2.194134 my <unk> yesterday
-2.253282 my <unk> sense
-2.186843 my <unk> room
-2.254336 my <unk> guide
-2.254336 my <unk> receiving
-2.223684 my <unk> baron
-0.8341057 my but i
-0.6801169 my window </s>
-0.9619072 my children cultivate
-0.727036 my all the
-1.000298 my own made
-0.9509968 my work it
-1.009177 my house when
-0.7833118 my man and
-0.8416295 my seeing and
-0.8929347 my clothes are
-1.205336 my life that
-1.246439 my life answered
-0.6398827 my might i
-0.6492106 my father </s>
-1.182715 my father <unk>
-1.311767 my father in
-1.393788 my father has
-1.129557 my mind with
-1.354803 my mind and
-1.447086 my mind that
-1.085839 my mind to
-0.8650499 my dear count
-0.7446495 my great mind
-1.113464 my name i
-1.162619 my name question
-0.9032372 my sight and
-0.9323599 my mouth that
-0.9943054 my boy injured
-0.6505371 my voice <unk>
-0.9693773 my head about
-1.027284 my advice in
-1.059493 my advice but
-0.8321887 my heart <unk>
-1.289922 my heart and
-1.411808 my heart said
-1.452595 my heart responded
-1.450766 my heart doth
-0.5883656 my word of
-0.698637 my duty to
-0.9212496 my second age
-0.8382962 my poor child
-1.267556 my poor poor
-0.9002168 my feeling was
-1.014025 my room now
-0.7243708 my charge said
-1.013975 my hand don't
-1.285887 my eyes can
-1.289423 my eyes filled
-0.924255 my face to
-0.6825953 my bones </s>
-1.094029 my guide what
-1.102949 my guide how
-1.106267 my guide took
-0.6825953 my breast </s>
-0.6026045 my god <unk>
-0.9426738 my answer is
-0.497788 my faith in
-0.4819589 my hands </s>
-0.9621968 my lost youth
-0.9161393 my foot did
-0.8171593 my lord sheriff's
-0.7295531 my funds are
-0.7005358 my fellows of
-0.8152964 my desk see
-0.7696089 my content and
-0.8094494 my passion my
-0.7347887 my vision <unk>
-0.726891 my joy my
-0.7175146 my delight it
-0.7758356 my daughter </s>
-0.7270174 my order from
-1.040121 my receipt </s>
-1.142408 my receipt than
-0.7228656 my signatures but
-0.7310817 my uncle has
-0.6642711 my esquire <unk>
-1.276762 sleep <unk> by
-1.271188 sleep <unk> at
-1.052109 sleep with jill
-1.052161 sleep had done
-0.782156 sleep in the
-0.3782371 sleep in a
-1.047696 sleep this necessary
-0.6484622 sleep can <unk>
-1.055542 sleep i lie
-0.8427424 sleep then <unk>
-0.9734325 sleep you must
-1.021592 sleep again just
-0.8148319 sleep walking last
-1.056258 nights and imagine
-0.9867438 nights but then
-0.8934335 nights if we
-0.8808113 nights i have
-1.031293 talked it over
-0.9220973 talked about to
-0.7331932 years of <unk>
-0.9231229 years you know
-0.9651459 years full well
-0.9607011 sixty and he
-0.7113743 sixty lacking a
-1.015359 once <unk> by
-1.055393 once in answer
-1.01158 once was his
-1.056911 once to feed
-1.279777 once but did
-1.341909 once but it's
-0.8189207 once he was
-0.8012922 once which i
-0.9607935 once i had
-0.8213215 once did he
-0.8650499 once worked he's
-0.7175146 once asserted that
-1.158093 heart <unk> in
-1.291418 heart <unk> him
-1.055964 heart and told
-0.8496906 heart wouldn't you
-1.055152 heart i told
-0.5970297 heart said the
-0.6969822 heart responded the
-0.8983399 heart trouble caused
-0.9379756 heart thy beauty
-0.2802272 heart doth <unk>
-0.9591524 help but of
-1.055482 use in doing
-1.298767 use to which
-1.261721 use to you
-0.9005899 use for he
-1.039399 use your freedom
-0.8512826 use talking of
-1.055149 doing <unk> right
-0.5842025 doing a <unk>
-1.198625 doing it but
-1.330675 doing it at
-1.053691 doing his duty
-1.000133 young one and
-0.9578998 young <unk> <unk>
-1.348813 young <unk> chamber
-0.4781058 young man </s>
-1.561596 young man but
-1.381985 young man who
-1.048914 young so rich
-0.4883949 young enough to
-0.897216 young master though
-0.5624975 young lady who
-0.6049106 young fitzooth had
-0.8341057 proper but i
-0.9619001 proper we mean
-0.1881954 proper entrance of
-1.014384 mean just what
-0.8557429 mean to <unk>
-1.341996 mean to give
-1.39552 mean to keep
-0.8166929 mean you've decided
-0.8636624 mean carlos may
-0.8693789 mean debray </s>
-0.8572393 mean sir </s>
-1.042103 mail had his
-1.036349 mail man brought
-1.05777 brought the ghosts
-1.01667 brought back all
-0.7657377 brought in a
-1.048816 brought it from
-0.9205234 brought her to
-1.006106 brought so many
-0.5711598 brought no <unk>
-1.053892 brought you amongst
-0.9982398 brought my receipt
-0.8293241 station house the
-0.9126363 station saying they
-0.9326658 station herself missus
-0.8981524 station master carelessly
-1.260546 thirty train would
-1.264723 thirty train has
-0.775759 thirty train tonight
-0.1929926 thirty seventh street
-1.053776 will <unk> <unk>
-1.533235 will <unk> him
-1.517929 will <unk> you
-1.528792 will <unk> me
-0.8446931 will that i
-0.8840089 will be <unk>
-1.115583 will be a
-1.498889 will be to
-1.505619 will be here
-1.821147 will be more
-1.61728 will be no
-1.845802 will be talked
-1.1374 will not be
-1.344391 will not faith
-1.052186 will she persisted
-1.033499 will never forget
-0.6267522 will who <unk>
-1.001821 will always support
-0.9819324 will tell i
-0.1558732 will he not
-0.6666161 will go to
-1.271744 will go out
-0.814845 will make the
-0.6772153 will take the
-0.6906883 will take it
-0.9320628 will i don't
-0.9562985 will set before
-1.286454 will do it
-1.319591 will do anything
-1.726724 will you be
-1.62399 will you not
-1.267782 will you are
-1.869716 will you jenkins
-1.869716 will you forgive
-1.869716 will you allow
-1.869716 will you kiss
-1.038427 will only cost
-1.282511 will ever want
-1.284789 will ever allow
-0.846263 will bring the
-0.4230357 will turn out
-0.9997102 will child if
-0.879672 will stay </s>
-0.5754791 will answered the
-0.9208544 will presently whispered
-1.012839 will come myself
-0.5095797 will whispered robin
-0.8656583 will appear rather
-0.8146772 will forgive us
-0.2383981 will excuse me
-0.4608092 will cried he
-0.7267647 will oblige me
-0.8652236 will stuteley shall
-0.2600956 herself missus rachel
-1.044602 herself the spring
-1.016723 herself <unk> as
-1.009925 herself away somewhat
-1.047665 herself on always
-0.7847991 herself she <unk>
-0.8573023 herself unto me
-1.049463 speaking her mind
-0.9794177 speaking first for
-0.6825953 speaking seriously </s>
-0.7657377 proceeded in a
-1.048196 proceeded to speak
-0.6909178 proceeded more than
-1.035087 speak a cry
-1.051605 speak it now
-0.9712303 speak to his
-0.5126249 speak at the
-1.04303 speak or move
-0.7683966 speak again the
-1.053336 having the courage
-1.068024 having <unk> and
-1.299152 having <unk> her
-0.9082601 having children of
-1.048604 having said these
-1.018778 having men see
-0.9208544 having either wife
-0.7332564 having mistaken somebody
-0.8160717 having besides brought
-1.056699 attitude and expression
-1.035392 attitude to this
-1.022411 attitude might some
-0.33144 amazing piece of
-0.7077313 amazing meeting in
-0.8501873 piece of <unk>
-1.355111 piece of news
-0.811748 piece haven't we
-0.1998294 news of the
-0.9269064 news it would
-0.700253 news was <unk>
-0.9561988 end of it
-0.9617512 end we decided
-1.198059 decided that it
-1.308399 decided that would
-1.322188 decided to ask
-1.322366 decided to stand
-0.7564252 decided step </s>
-0.7978911 decided what to
-0.594967 ask missus spencer
-1.052604 ask <unk> make
-0.8614947 ask to be
-1.045789 ask her any
-0.7235152 ask anything in
-0.5426194 ask questions and
-1.030263 ask more bobby
-1.048023 ask me question
-0.6771647 pick and <unk>
-0.924318 pick on my
-1.014017 pick us out
-0.966009 us is he
-1.03654 us <unk> so
-0.5842025 us a <unk>
-0.7874827 us with <unk>
-1.345349 us with mine
-1.027497 us by that
-1.018303 us place ourselves
-0.8614947 us to be
-0.6873023 us be <unk>
-1.044168 us from three
-0.9219551 us up </s>
-1.035263 us out one
-0.7630518 us who is
-0.9628008 us work said
-0.6273351 us so <unk>
-0.8599425 us have a
-1.024018 us good heavens
-0.8755068 us call it
-0.7855047 us we have
-0.7282119 us see what
-1.016885 us again my
-0.7022836 us towards those
-0.7986513 us carlos </s>
-1.01544 week <unk> his
-1.011361 week in which
-0.6969933 week she was
-1.02768 week before last
-1.055737 week i read
-0.8431508 sent her <unk>
-1.343607 sent her word
-0.8594869 sent out <unk>
-0.8570807 sent me the
-0.9798816 sent me to
-0.6100669 word by <unk>
-0.9883338 word that was
-0.2644979 word of honor
-0.9712303 word to his
-0.9126498 word did she
-0.6969822 word expressing the
-1.053215 bring the priest
-0.7728768 bring back the
-1.016568 bring up i
-1.04656 bring him over
-0.9857255 bring us a
-1.056524 likely to turn
-0.9402498 likely boy of
-0.8973658 likely path yet
-1.040975 ten <unk> were
-1.04303 ten or eleven
-0.783846 ten millions on
-0.899652 ten o'clock for
-0.9463864 eleven <unk> in
-0.9617512 eleven we decided
-0.9034308 eleven o'clock at
-0.8947681 age i was
-1.040763 turn in such
-0.5810188 turn of the
-1.476374 turn out well
-1.468535 turn out all
-1.480679 turn out why
-0.9969917 turn they saw
-0.9383866 turn thy footsteps
-0.5355745 read in the
-1.04668 read to our
-0.8446931 paper that i
-0.9872924 paper of this
-1.032684 paper it must
-0.9876442 paper how a
-0.5810188 wife of the
-1.043568 wife up west
-1.04206 wife or children
-0.9623899 wife having mistaken
-0.6642711 wife note <unk>
-0.7331282 wife distinctly remembered
-0.3947574 wife became <unk>
-0.7489552 island is the
-0.9647262 island with all
-0.9953738 island it isn't
-0.8367965 island was the
-0.8900512 island you are
-0.9567846 island took a
-1.000158 took <unk> for
-1.004163 took a boy
-1.046948 took and gave
-1.344735 took it into
-1.22347 took it for
-0.8036609 took up the
-1.20092 took up all
-1.035882 took their part
-1.047192 took no notice
-1.049644 took me aside
-0.9985638 took my advice
-0.9361302 took herself away
-1.015268 took upon myself
-1.355471 fire and dropped
-1.355179 fire and send
-0.7629004 fire to the
-1.052186 fire she hardly
-1.031118 fire his fingers
-0.7798696 fire again a
-0.6825953 fire hereafter </s>
-0.8069851 purpose in <unk>
-0.7270513 purpose marilla and
-1.588322 nearly <unk> them
-1.647875 nearly <unk> driving
-1.619482 nearly <unk> between
-1.609924 nearly <unk> than
-1.129897 nearly all of
-1.10874 nearly all his
-1.047385 think the place
-1.358145 think <unk> use
-1.354025 think <unk> claims
-0.7699104 think that he
-1.201153 think of a
-0.6268906 think of it
-1.716253 think of she
-1.671931 think of such
-1.306306 think it over
-1.350043 think it worth
-1.023365 think she died
-1.042025 think there shone
-1.497272 think so i'm
-1.50436 think so perhaps
-1.503914 think so indeed
-1.022921 think i'm guilty
-0.7978911 think what to
-1.273865 think i will
-1.120934 think i am
-1.526178 think i arrived
-1.009773 think you could
-1.007209 think yes well
-0.8977777 think you're doing
-0.7258812 think theirs is
-0.9833025 you're <unk> a
-1.048658 you're on top
-0.4264134 you're out of
-0.9619313 you're getting you're
-0.8729166 you're doing a
-1.038518 foolish <unk> said
-0.9690979 foolish thing a
-0.9765691 thing is so
-0.5842025 thing a <unk>
-0.7493723 thing had been
-1.183416 thing was that
-1.352053 thing was executed
-1.361612 thing to a
-1.355056 thing to have
-1.391108 thing to do
-1.029165 thing about him
-1.023161 thing after another
-0.190025 thing that's what
-0.8495269 thing said danglars
-0.7692548 thing i've <unk>
-0.6026045 thing suddenly <unk>
-1.074806 don't <unk> </s>
-1.532326 don't <unk> know
-1.433331 don't <unk> me
-1.00093 don't always turn
-0.8078622 don't tell the
-1.008605 don't make any
-1.211644 don't know a
-1.769208 don't know anything
-1.4235 don't know who
-0.4642121 don't know what
-1.771475 don't know perhaps
-1.413455 don't mind i'm
-1.399737 don't mind me
-1.406778 don't mind bobby
-1.044218 don't they just
-1.553697 don't you like
-1.558592 don't you yes
-1.440001 don't you think
-1.639448 don't you care
-1.019737 don't ever expect
-1.165386 don't ask questions
-1.149381 don't ask me
-0.8726738 don't think so
-1.282349 don't think theirs
-0.7323596 don't deny there's
-0.8449835 don't say i
-0.9523433 don't believe you
-1.146051 don't understand said
-1.162318 don't understand i've
-0.8405649 don't dare he
-0.3191339 don't want to
-0.9034308 don't care at
-0.7102848 don't graham said
-1.05672 strange <unk> came
-1.024515 strange and all
-0.5355745 strange in the
-0.9962598 strange it touched
-0.7629004 strange to the
-1.041151 strange an animal
-1.036704 strange man appeared
-0.5931667 strange since the
-0.9973777 strange girl an
-1.002032 strange child into
-0.4472576 strange answer </s>
-0.7329999 strange harsh voices
-0.9343015 child is </s>
-1.097138 child <unk> to
-1.35798 child <unk> questions
-0.8582456 child into your
-0.7400538 child with the
-0.8496898 child and the
-1.042812 child of about
-1.01158 child was his
-0.9907656 child at green
-0.9150207 child if the
-0.9440299 child mind </s>
-0.9088863 child did that
-0.4792417 child do you
-0.9989326 child put out
-0.6825953 child quickly </s>
-0.6642711 child responded <unk>
-0.9966361 single night you
-0.9915201 single thing about
-0.8109805 single fault about
-0.3691026 sort of <unk>
-1.531005 sort of parents
-0.9731652 parents in her
-1.038325 parents are yet
-0.7874908 parents he had
-1.005561 another <unk> </s>
-1.315781 another <unk> about
-1.353428 another and everything
-1.335722 another and another
-0.9338854 another word did
-0.9349044 another case where
-0.8571317 another wood not
-0.7347887 another surprise <unk>
-0.9972252 another light then
-0.8165375 another sword thou
-0.8597757 another story </s>
-0.2383981 another excuse me
-0.7113743 another scattering a
-0.1925862 another flowed over
-0.7077313 another purse in
-0.8692553 case where an
-0.6643086 case with a
-0.8412208 case of a
-0.9269064 case it would
-0.6980984 case over in
-1.027914 case i should
-0.6430411 case against him
-1.262882 couldn't <unk> it
-1.291418 couldn't <unk> him
-1.048206 couldn't be left
-1.046984 couldn't they leave
-0.8824095 couldn't you </s>
-0.2523426 sake not to
-0.8189092 sake princess said
-1.343242 seemed <unk> that
-1.260135 seemed <unk> in
-1.533807 seemed <unk> asking
-1.318237 seemed to be
-1.609346 seemed to have
-0.717746 seemed to me
-0.7269711 seemed to say
-0.929012 seemed not so
-1.049071 seemed so rotten
-0.698637 seemed neither to
-1.051084 neither was missus
-0.704212 neither to <unk>
-1.056699 deny and says
-0.9600776 deny there's something
-1.011157 say rachel i've
-1.039302 say <unk> be
-1.034697 say a word
-0.6771647 say and <unk>
-1.3728 say that a
-1.516275 say that without
-1.452268 say that no
-0.9413901 say all i
-1.033499 say never fear
-0.9804423 say until they
-1.396187 say so to
-1.501245 say so go
-1.504807 say so i'll
-0.639513 say next she
-0.8158402 say now i
-1.033121 say here distinctly
-0.8563372 say nothing about
-0.6950625 say i'm not
-0.2609562 say i didn't
-1.050416 say said gamewell
-0.9230508 say come <unk>
-0.8660934 say unto virgilius
-1.262882 i've <unk> it
-1.333864 i've <unk> if
-1.024942 i've had some
-0.8701535 i've never <unk>
-1.422596 i've never had
-1.462535 i've never seen
-1.00004 i've always heard
-0.7817054 i've heard of
-1.306549 i've been watching
-1.484469 i've been asking
-1.485048 i've been weak
-1.002225 i've got all
-0.8763841 i've no more
-1.035462 i've only been
-1.019324 i've ever known
-0.2315378 i've nearly <unk>
-0.5508779 i've come to
-0.9963923 i've come for
-1.052214 myself with sending
-1.039838 myself to reply
-1.01674 myself but matthew
-1.049556 myself not such
-1.343531 myself at other
-1.228627 myself at your
-0.7473425 myself since he
-0.7769075 myself i'm so
-0.7715057 myself what <unk>
-0.8732288 myself i am
-0.6532357 myself has <unk>
-0.9617147 myself whether i
-0.9748737 myself better still
-0.433878 myself covered with
-0.8366421 myself within a
-1.048196 terrible to witness
-0.9475987 terrible set on
-0.9973204 see where that
-0.886292 see the <unk>
-1.652856 see the green
-1.634267 see the new
-1.655767 see the presence
-0.8129559 see <unk> <unk>
-1.056086 see a person
-1.267215 see that so
-1.002882 see that i
-0.9731652 see in her
-1.28167 see her husband
-1.338791 see her still
-0.5303713 see everything that
-1.036745 see them tired
-1.327319 see if any
-1.229354 see if it's
-1.026385 see he added
-0.8528045 see him </s>
-1.235145 see him i
-1.044767 see which certainly
-1.335274 see what the
-1.178726 see what a
-1.598911 see what might
-1.378318 see what i
-1.055639 see i spent
-0.9924179 see you i
-1.046213 see my boy
-0.9661939 see jesus i
-1.024771 see graham leave
-0.5360551 see morrel </s>
-1.35371 gave a turn
-1.354525 gave a shriek
-1.006807 gave in </s>
-1.031364 gave to others
-1.204922 gave her the
-1.412654 gave her into
-1.356441 gave her a
-0.9721861 gave up all
-1.044856 gave all their
-1.249644 gave him as
-1.336026 gave him some
-0.9999504 gave off at
-0.2281843 gave me the
-0.9983293 gave another purse
-0.729195 gave way to
-0.7755056 gave rise to
-0.8666994 gave amory a
-0.7248736 gave appendicitis so
-0.7629004 close to the
-0.4883949 close enough to
-1.048312 england at any
-0.7542996 england or the
-1.025726 england i would
-1.000158 can't <unk> for
-1.048044 can't be much
-1.037701 can't we go
-0.9688956 can't imagine not
-0.9182286 can't fall here
-0.8562589 can't return the
-1.030884 different <unk> their
-1.046292 different from ourselves
-0.9864364 different thing said
-0.7128401 different form i
-1.050669 ourselves the two
-0.7874456 ourselves well i
-0.7077313 ourselves entirely in
-1.056699 hope and fear
-1.051485 hope that some
-0.9591132 hope it will
-0.8131331 hope everybody will
-0.8463119 tone that <unk>
-1.354913 tone of hope
-1.355308 tone of entire
-1.048196 painful to hear
-0.7564252 painful doubts </s>
-0.6771647 doubts and <unk>
-1.056418 doubts of warrenton
-1.053458 does the examination
-0.9406004 does in this
-0.9098282 does for me
-0.1434993 does not <unk>
-1.055168 does he trouble
-0.814845 does make the
-1.054763 does i always
-0.9706048 does really seem
-0.9842148 duty to give
-1.046277 duty as one
-1.35252 risks in pretty
-1.353411 risks in people's
-1.340182 near the edge
-1.338772 near the bed
-1.045735 near to them
-0.9411475 near everything a
-0.7175146 near perfection that
-0.9612323 people's having children
-0.9850998 people's money but
-0.9188835 people's virtue question
-1.020276 comes to that
-1.02142 comes our minister
-0.5810188 wells of the
-1.013285 wells were a
-0.5355745 dreaded in the
-1.047396 dreaded all women
-1.056319 dream of taking
-1.058267 warn you </s>
-1.339781 warn you if
-1.843295 new <unk> where
-1.102375 new <unk> <unk>
-1.265023 new <unk> and
-1.311775 new <unk> to
-1.895334 new <unk> set
-1.857693 new <unk> how
-1.826965 new <unk> my
-0.8532616 new house was
-0.5560033 new last night
-0.9844821 new morning mass
-0.9894669 new york <unk>
-1.114921 new york for
-1.146624 new york too
-1.148956 new york seemed
-0.7696089 new reflections and
-1.019411 family <unk> <unk>
-1.445905 family <unk> or
-1.526431 family <unk> ground
-1.049863 family in so
-0.739893 family place in
-0.786383 family died in
-0.8069851 died in <unk>
-0.818947 died before she
-1.049911 liked <unk> people
-1.023052 liked to stay
-0.8622793 liked within two
-1.028294 stay in smithtown
-0.9838017 stay until matthew
-1.198608 stay here and
-1.300445 stay here now
-0.9365178 stay didn't of
-1.047422 stay they departed
-0.8824095 stay you </s>
-0.7986513 stay outside </s>
-0.9539269 stay count he
-1.044421 arrival <unk> one
-1.02325 arrival she concluded
-0.9947674 sensation so she
-0.8689696 sensation second to
-0.2432196 second <unk> </s>
-1.04245 second was as
-1.048006 second to none
-0.8759633 second time the
-1.018751 second will that
-0.7128401 second age i
-0.5810188 none of the
-0.9528949 none are so
-0.8755068 none alive that
-0.9992894 none i've no
-0.8958557 none else to
-1.058289 really <unk> calling
-0.80446 really it is
-0.7688478 really but the
-0.9507584 really they are
-0.45223 really great <unk>
-0.8544535 really seem as
-0.8952536 really expected i
-0.8880352 really wonderful said
-0.698637 really begin to
-0.7281567 really ignorant about
-1.011547 sorry for that
-1.076929 sorry i was
-1.300305 sorry i can't
-1.005561 poor <unk> </s>
-1.310413 poor <unk> which
-0.6897254 poor it was
-1.020276 poor to it
-0.8363943 poor but <unk>
-1.163284 poor people </s>
-1.290649 poor people thought
-0.8937384 poor girl </s>
-0.7806166 poor girl said
-0.9616601 poor young one
-1.368205 poor child is
-1.254221 poor child and
-1.382708 poor child do
-0.724081 poor poor child
-0.8454687 poor prince </s>
-1.00361 poor question very
-0.8149867 poor poverty may
-0.8625383 poor douglas before
-0.9154615 poor princess looked
-0.7493723 mistake had been
-1.198163 mistake he would
-1.133682 mistake he said
-0.7697095 mistake matthew and
-0.9429879 mistake about that
-0.8614947 expect to be
-0.2352309 expect him to
-0.7657377 grandfather in a
-0.5328771 grandfather each <unk>
-0.9079474 seems <unk> to
-0.8126238 seems to <unk>
-1.027277 seems to be
-1.048601 seems so wonderful
-1.053336 somehow the doctors
-0.6753754 somehow there's never
-0.9704943 believe that it
-0.9495861 believe in <unk>
-1.353411 believe in freedom
-1.052614 believe it i've
-0.9156326 believe his eyes
-1.048758 believe so replied
-0.7874908 believe he had
-0.9724598 believe when one
-0.9898919 believe you have
-0.9595891 believe your own
-1.038534 loved the people
-1.014457 loved to make
-1.036439 loved their gods
-0.8129559 somewhat <unk> <unk>
-0.704212 somewhat to <unk>
-1.029668 somewhat more about
-0.9835302 somewhat strange answer
-0.7629004 relief to the
-0.6296158 relief for the
-0.2358408 latter part of
-0.9663757 latter felt her
-0.8157614 latter personage until
-0.9011335 under the <unk>
-1.750765 under the influence
-1.746545 under the better
-1.517801 under the water
-1.710548 under the balcony
-1.164111 under his hand
-1.348514 under his feet
-1.045309 under my hand
-1.043967 influence of missus
-1.056911 influence to direct
-1.052356 influence for evil
-1.019151 influence over you
-1.040418 things the sun
-0.6771647 things and <unk>
-1.034141 things that ever
-0.627875 things found in
-0.5975883 things if you
-1.038922 things are done
-1.055392 things he remembered
-1.045172 things which moved
-0.8902456 things about them
-0.9770241 things i can
-1.012437 things you mean
-0.8883908 things like that
-1.037524 things we don't
-0.7755056 things difficult to
-0.7310817 things alas why
-0.8887096 safely back at
-0.9495217 safely out in
-1.057958 hung <unk> round
-0.8462897 hung by his
-1.012393 hung at his
-1.0391 hung out their
-0.9342344 hung fire again
-0.2482769 air <unk> and
-1.354011 air and given
-1.354303 air and turned
-1.318279 air was sweet
-1.350947 air was heavy
-0.8030772 air finally at
-1.01367 air i never
-1.040406 air no they
-0.9310353 air like <unk>
-0.9707155 air became gray
-0.888893 sweet <unk> and
-1.05595 sweet a lady
-0.7400538 sweet with the
-0.9672508 sweet voice i'm
-0.8981524 sweet cold kiss
-0.6825953 sweet play </s>
-1.075376 breath <unk> the
-1.315182 breath <unk> up
-1.056846 breath and partly
-1.04619 breath of many
-0.704212 breath to <unk>
-0.6969933 breath she was
-1.002456 breath i suppose
-1.196023 many <unk> and
-1.291721 many <unk> of
-1.469531 many <unk> from
-1.658316 many <unk> candide
-0.8175427 many voices the
-0.6642711 many apple <unk>
-0.4110283 many self <unk>
-0.876571 many words and
-0.8702217 many days </s>
-0.9913703 purple as though
-0.5765756 purple while the
-0.8626305 while the <unk>
-1.477785 while the little
-1.532504 while the perspiration
-0.80446 while it is
-0.8126238 while to <unk>
-1.275116 while to make
-0.2221203 while he <unk>
-0.2361061 while ago i
-0.09898282 while monte cristo
-0.9859609 summer in all
-0.7294287 summer life <unk>
-1.044659 pity but from
-1.049005 pity him that's
-0.8090188 pity then </s>
-0.9766662 pity you the
-0.9064616 eight miles to
-0.9590091 eight miles i'm
-0.9078174 eight o'clock on
-1.039559 miles to bright
-0.8858652 miles i'm glad
-1.042903 miles when thou
-1.022444 again just give
-0.3620066 again the <unk>
-1.364834 again the princess
-0.9463864 again <unk> in
-0.3206677 again a <unk>
-1.451621 again a bit
-1.046661 again and looked
-0.8895059 again to the
-1.305581 again to night
-1.035757 again but for
-1.037396 again at last
-1.345513 again at eleven
-1.034988 again matthew says
-0.6398827 again might i
-0.9320628 again i don't
-0.8871844 again then he
-1.021696 again only she
-1.037879 again we see
-0.9967847 again my poor
-0.8968185 again see her
-0.7113743 again becoming a
-0.6969822 again visit the
-0.4026462 bit into the
-0.7493723 bit had been
-0.3691026 bit of <unk>
-1.530808 bit of fun
-0.8849331 bit afraid and
-0.7326156 bit sick coming
-1.054978 wood was wilder
-1.031547 wood to drive
-0.9997497 wood through which
-0.8699802 wood not a
-1.014187 drive a long
-0.7813973 drive through </s>
-0.7894439 drive from his
-1.011358 drive after his
-1.046701 drive me back
-0.8972133 uncomfortable feeling that
-0.8454297 uncomfortable position </s>
-0.8883284 uncomfortable seat no
-0.8578688 feeling that the
-0.7331932 feeling of <unk>
-1.037339 feeling was certainly
-0.8902456 feeling about them
-1.025273 feeling very faint
-1.00456 feeling too ill
-1.136758 laughing at him
-1.179665 laughing at me
-1.024014 laughing now there
-1.018995 personage with an
-0.9893168 personage until daylight
-0.813503 personage as <unk>
-1.056111 figure and long
-0.700253 figure was <unk>
-0.7006021 figure he <unk>
-0.8129559 iron <unk> <unk>
-0.8975904 iron gray hair
-0.9217285 iron bed the
-0.8803191 touched his <unk>
-1.640294 touched his stooping
-1.640294 touched his chin
-1.639646 touched his lower
-0.9697181 touched between his
-0.1853896 stooping shoulders </s>
-0.7329999 stooping forward covered
-1.05777 enjoyed the drive
-0.6219205 enjoyed my <unk>
-0.9079474 fashion <unk> to
-0.8975904 fashion except during
-1.045005 except by saying
-0.9659939 except of course
-1.053356 except his small
-0.7270513 except marilla and
-0.3617005 except during the
-0.3620066 during the <unk>
-1.474052 during the night
-1.047524 during this conversation
-0.791235 during which the
-0.8654717 during these two
-1.052729 met the dead
-1.056699 met and liked
-0.8880929 met women and
-1.030158 women and had
-0.6897254 women it was
-0.9667758 women who were
-1.044003 women were bad
-1.039889 women he took
-0.6911632 women after the
-1.005219 women gave off
-0.8955357 women except marilla
-1.345608 nod to all
-1.333923 nod to them
-1.247615 prince the water
-1.348326 prince the condition
-0.6677709 prince <unk> the
-1.306046 prince <unk> and
-1.653249 prince <unk> his
-1.832091 prince <unk> stood
-1.832911 prince <unk> thank
-0.6771647 prince and <unk>
-0.5355745 prince in the
-0.80446 prince it is
-0.9828782 prince was so
-1.017534 prince to her
-0.8974847 prince but the
-1.213265 prince but you
-1.037143 prince could scarcely
-0.4610885 prince went to
-0.7874908 prince he had
-1.029299 prince now saw
-0.8044763 prince i <unk>
-0.5970297 prince said the
-0.8479305 prince when the
-0.1821293 prince very <unk>
-1.024837 prince do with
-0.4799356 prince looked at
-0.7088141 prince oh i
-0.7584122 prince saw her
-0.7098154 prince yes i
-0.9767282 prince felt better
-0.6819145 prince put me
-0.193048 prince edward island
-0.89312 prince however would
-0.1158547 prince ventured to
-0.8893198 prince appeared the
-0.1921248 prince encouraged by
-1.085244 edward island was
-1.08901 edward island you
-0.8188557 whether the <unk>
-1.207552 whether the prince
-1.051224 whether her pride
-1.046148 whether this jesus
-0.9190737 whether she <unk>
-0.8033799 whether she was
-1.037927 whether there be
-0.8079959 whether he <unk>
-1.246995 whether he spoke
-0.9607935 whether i had
-0.9184905 whether i'd ever
-0.9231229 whether you know
-0.9013762 whether some one
-1.075376 full <unk> the
-1.097138 full <unk> to
-1.056846 full and free
-1.014863 full in short
-1.056518 full of spirit
-0.6538808 full well <unk>
-0.6296158 full for the
-0.3975942 full on the
-0.8165375 full soft brown
-0.774865 full moon <unk>
-0.6771647 soft and <unk>
-0.2276171 soft brown <unk>
-0.7175146 soft soil that
-1.114064 brown <unk> </s>
-1.32183 brown <unk> in
-1.566943 brown <unk> which
-1.657329 brown <unk> hat
-1.041866 brown or black
-0.9638361 brown hand the
-1.036524 worn by him
-0.985361 worn it for
-0.5098292 worn from the
-0.7645248 worn ever since
-1.058123 twenty <unk> replied
-1.002231 twenty in fact
-1.022715 twenty very much
-0.7986513 twenty years </s>
-0.2536606 twenty four dollars
-0.2955746 twenty thousand francs
-0.1929926 twenty seventh street
-0.9161905 lacking a little
-0.9859609 lacking in all
-0.8463119 sign that <unk>
-0.6323558 sign in the
-1.307639 sign in that
-1.449889 sign in itself
-1.006287 sign of any
-0.9927125 tied to a
-1.053356 tied his horse
-1.047122 horse is over
-0.8465529 horse <unk> </s>
-0.5355745 horse in the
-0.8857709 horse which had
-0.790753 horse sense a
-0.4494775 horse should be
-0.6143827 small white and
-0.171373 small bright river
-0.9936542 small boy rushed
-0.7564252 small farm </s>
-1.033396 hotel a place
-1.038256 hotel and went
-1.021164 platform was almost
-0.9625289 platform towards her
-1.041371 creature in sight
-1.040472 creature i ever
-0.5126249 shingles at the
-1.001165 shingles i asked
-0.7564252 extreme end </s>
-0.7005358 extreme impertinence of
-1.171054 quickly as it
-1.28594 quickly as possible
-1.039946 possible the whole
-0.8446449 possible without looking
-1.017622 possible now his
-1.170742 possible you would
-1.203033 possible you must
-0.7217402 possible theory as
-0.7850687 possible worlds </s>
-0.8033658 possible worlds the
-1.276762 hardly <unk> by
-1.328873 hardly <unk> himself
-0.7493723 hardly had been
-1.047432 hardly have failed
-0.8557429 failed to <unk>
-1.529948 failed to mail
-1.529373 failed to notice
-0.7090594 notice the <unk>
-1.239232 notice of her
-1.224766 notice of him
-1.037035 notice when all
-1.011045 expression to my
-0.6969933 expression she was
-1.044632 expression which seemed
-0.8367965 waiting was the
-1.129074 waiting for her
-1.344326 waiting for something
-0.7345237 waiting room and
-1.255627 waiting room but
-0.4932776 waiting till to
-0.9285733 somebody else for
-1.053458 encountered the stationmaster
-1.045448 encountered by lapierre
-1.005561 stationmaster <unk> </s>
-1.315182 stationmaster <unk> up
-0.9079474 office <unk> to
-0.6771647 office and <unk>
-0.9659933 office i shall
-0.6771647 hour and <unk>
-0.9217186 hour does the
-0.8148319 hour ago answered
-0.9220973 ago about to
-0.9461059 ago i <unk>
-1.299963 ago i should
-0.997423 ago answered that
-0.983202 answered the <unk>
-1.717821 answered the worthy
-0.6301511 answered the princess
-1.719171 answered the dervish
-0.6643086 answered with a
-1.054603 answered that brisk
-0.8834024 answered this morning
-1.323893 answered she with
-1.308982 answered she i
-1.202073 answered if a
-1.332578 answered if there's
-1.028683 answered he for
-0.8044763 answered i <unk>
-0.8963449 answered no i
-0.9507584 answered they are
-0.4391686 answered quite <unk>
-0.9186869 answered feeling too
-0.6642711 answered softly <unk>
-0.9243215 answered robin </s>
-0.8536913 answered warrenton with
-1.010879 brisk <unk> but
-0.2158696 brisk mental <unk>
-1.021513 dropped back into
-1.055752 dropped in according
-0.9960525 dropped off for
-1.04546 she's a case
-0.945487 she's sitting out
-0.8227327 she's got a
-1.051898 room with decided
-1.573287 room and at
-1.569886 room and who
-1.585004 room and other
-1.619096 room and lay
-0.5810188 room of the
-1.329003 room to one
-1.321297 room to take
-1.002536 room those other
-0.954026 room but she
-1.347128 room for doubt
-1.347896 room for joy
-0.8701885 room as soon
-1.352653 room he stepped
-1.323266 room he hadn't
-0.915946 room now if
-0.8963449 room no i
-0.4792417 room do you
-0.995622 room than he
-0.8396921 room filled </s>
-0.8170038 room you'll confess
-0.6801169 room alone </s>
-0.8129559 preferred <unk> <unk>
-1.023052 preferred to stay
-0.8412208 outside of a
-0.7630518 outside who is
-0.9129787 outside two hundred
-1.036157 charge the same
-1.040101 charge said you
-1.047865 sister the thing
-1.05351 sister <unk> do
-1.044187 sister were adopting
-0.9161905 presently a little
-1.055504 presently he crossed
-0.9628769 presently that's all
-0.9366825 presently give </s>
-0.5095797 presently whispered robin
-1.006631 haven't got any
-0.4799356 haven't looked at
-1.035048 haven't we missus
-1.021948 orphans <unk> me
-0.9297002 orphans had to
-0.6897254 orphans it was
-0.5711598 orphans no <unk>
-0.6642711 orphans concealed <unk>
-0.8465529 concealed <unk> </s>
-0.6505371 concealed every <unk>
-0.6336589 should be here
-1.593209 should be given
-1.348792 should be able
-1.594573 should be worth
-1.02668 should never be
-0.8591835 should pass out
-0.8724241 should go down
-1.013876 should say i'm
-0.8123631 should throw any
-0.698637 should fail to
-0.7209915 should reason with
-1.045705 come <unk> if
-1.06751 come to the
-0.602287 come to <unk>
-1.869737 come to about
-1.589376 come to me
-1.835565 come to us
-1.891868 come to beg
-1.085816 come for he
-1.100049 come for me
-0.8121401 come even if
-0.9640694 come at twelve
-0.9042352 come out from
-0.4055043 come along the
-0.8780043 come said <unk>
-0.8418034 come then said
-0.9963191 come myself better
-0.8157614 come true isn't
-0.320231 come upon the
-0.8396921 come forth </s>
-0.8957967 come across some
-1.05777 understand the meaning
-1.050912 understand as anything
-0.9631211 understand him for
-0.9806328 understand said matthew
-1.031007 understand you yes
-0.7692548 understand i've <unk>
-1.053458 hand the handle
-1.053776 hand <unk> <unk>
-1.32183 hand <unk> in
-1.498522 hand <unk> at
-1.546822 hand <unk> her
-1.056552 hand and broke
-1.054698 hand was ill
-0.3605476 hand to <unk>
-1.53083 hand to monte
-0.9219187 hand on his
-1.051844 hand as mythical
-0.5541023 hand over the
-1.055504 hand he pressed
-1.04132 hand i turned
-0.8403109 hand don't <unk>
-0.8629343 hand than in
-0.4085806 hand towards the
-0.698637 hand extended to
-0.6642711 hand bills <unk>
-0.8655713 hand paredes's odd
-0.6538808 situation well <unk>
-0.7054121 situation far <unk>
-0.4472576 situation answer </s>
-1.047234 better <unk> graham
-0.8126238 better to <unk>
-1.355894 better to deliver
-1.050987 better but both
-0.6361104 better nothing to
-0.8495269 better said danglars
-0.9522047 better question the
-0.4359917 better keep it
-0.9999351 better light made
-1.014677 better still since
-0.969212 question is that
-1.057156 question the girl
-1.050151 question be definite
-1.041036 question an interesting
-1.035972 question well what's
-0.9580413 question all your
-0.6979394 question are you
-0.846342 question were the
-0.818947 question before she
-0.9425192 question have you
-1.065961 question what was
-1.227567 question what would
-1.024484 question very afraid
-0.4792417 question do you
-0.7247944 question don't you
-0.8937464 master <unk> the
-0.8621838 master said he
-0.9319869 master though i
-1.032693 master will who
-0.7925133 master carelessly i
-1.049911 carelessly <unk> down
-1.010653 carelessly he has
-1.041697 carelessly i dare
-1.02003 dare not move
-0.7006021 dare he <unk>
-0.913115 dare say <unk>
-1.66708 able to </s>
-0.6337212 able to <unk>
-1.793249 able to tell
-1.717271 able to say
-1.892884 able to explain
-1.685185 able to keep
-1.892884 able to fix
-0.8446891 explain why the
-0.8156063 explain she's got
-0.9944011 tongue of her
-0.920065 tongue none else
-0.5754791 tongue answered the
-0.8129559 certain <unk> <unk>
-0.8313951 certain way the
-0.888893 wanted <unk> and
-1.045448 wanted by book
-0.9913095 wanted to see
-1.025966 wanted he walked
-1.04788 walked <unk> away
-0.9997063 walked back he
-0.5098292 walked from the
-1.266205 walked over to
-0.2802158 walked over america
-1.028169 walked some distance
-0.8139045 walked slowly back
-1.047352 unfortunate this year
-0.8508149 unfortunate matthew was
-1.019046 harder for him
-0.7295531 harder bygones are
-1.04712 than one glance
-1.289862 than the house
-1.357605 than the knowledge
-1.219914 than <unk> a
-1.353699 than <unk> cacambo
-1.527905 than a week
-1.525883 than a beautiful
-1.413283 than a hundred
-0.6060648 than in the
-0.8933077 than in a
-1.080013 than it <unk>
-1.097627 than it had
-1.031346 than was my
-0.9712303 than to his
-0.7554264 than she had
-0.9665977 than anything you
-0.8189207 than he was
-0.9305257 than any one
-1.314434 than any battle
-0.8808113 than i have
-1.310253 than you he
-1.231339 than you have
-0.6128239 than your <unk>
-1.019661 than ever that
-1.213368 than ever in
-0.8271455 than five minutes
-0.9562403 than once i
-0.4853354 than mine </s>
-0.6825953 than theirs </s>
-0.8100612 than pleasure said
-0.8036609 walk up the
-0.943572 walk up to
-0.698637 walk unconsciously to
-0.9944011 demand of her
-1.047842 demand for an
-0.3436837 demand five millions
-0.7332564 demand perfection itself
-0.9847609 wasn't <unk> that
-1.256535 wasn't a boy
-1.27553 wasn't a bit
-0.6642711 wasn't appendicitis <unk>
-1.055662 groaned in spirit
-0.8611158 groaned beneath an
-0.6771647 spirit and <unk>
-0.7512693 spirit as he
-0.8479747 turned into a
-0.9347986 turned with that
-1.056846 turned and hurried
-0.7944442 turned away and
-0.9593873 turned on him
-0.6972132 turned up the
-0.9166403 turned about and
-0.9515658 turned almost expecting
-1.046032 turned my face
-0.9379756 turned herself unto
-0.4085806 turned towards the
-0.320231 turned upon the
-0.7393127 turned graham <unk>
-0.6825953 turned yellow </s>
-0.7174776 gently down the
-0.9321361 gently i must
-0.886292 towards the <unk>
-1.479593 towards the old
-1.603183 towards the young
-1.367273 towards the princess
-1.24065 towards those who
-1.252357 towards those poor
-1.004365 towards her she
-1.004933 towards him by
-1.008423 towards us so
-0.739697 towards morning when
-0.8188557 watching the <unk>
-1.336666 watching the men
-0.9913095 watching to see
-1.048103 watching him ever
-1.075376 eyes <unk> the
-1.348974 eyes <unk> forth
-1.056699 eyes and groaned
-1.04929 eyes that there
-0.700253 eyes was <unk>
-1.228176 eyes to me
-1.338714 eyes to hear
-0.7688478 eyes but the
-1.170159 eyes on it
-1.179464 eyes on him
-0.881784 eyes can be
-0.9357481 eyes as they
-1.328791 eyes were full
-1.330567 eyes were drawn
-1.330218 eyes which looked
-1.331522 eyes which became
-0.7751533 eyes when he
-0.9156789 eyes looked <unk>
-0.8088385 eyes showed no
-0.5042792 eyes filled with
-0.472883 eyes whose <unk>
-1.016587 eyes still smiled
-0.8657453 eyes remained fixed
-0.7925133 eyes shut i
-1.044602 short the power
-1.058123 short <unk> king
-0.9987761 short to go
-0.8551441 short red <unk>
-0.5017942 short very <unk>
-0.7340823 short while he
-0.6355657 short our <unk>
-0.6825953 short space </s>
-0.3207932 short bat <unk>
-0.6642711 short save <unk>
-0.7629004 wincey to the
-1.052309 wincey she wore
-0.9507614 wincey dress all
-0.5842025 wore a <unk>
-0.3975942 wore on the
-1.319786 hat and left
-1.355471 hat and beneath
-1.048352 hat all flowers
-0.731337 hat extending down
-1.35687 beneath the hat
-1.339242 beneath the heavy
-0.9671339 beneath an extraordinary
-1.053523 beneath his collar
-1.00425 extending down her
-0.9500729 extending his hand
-0.7347887 thick iron <unk>
-0.8162269 thick decidedly red
-0.8627975 thick crowd came
-0.9240041 decidedly not the
-0.9510097 decidedly red hair
-1.046216 decidedly no keep
-1.053215 face the ordeal
-1.001548 face <unk> he
-1.053622 face and just
-0.1998294 face of the
-0.8075489 face was <unk>
-1.3515 face was small
-1.055848 face to those
-1.043224 face or force
-0.7050788 face his <unk>
-0.8189207 face he was
-0.9184079 face made up
-1.262882 also <unk> it
-1.097138 also <unk> to
-0.5842025 also a <unk>
-0.704212 also to <unk>
-0.6235813 also there was
-1.018324 also much freckled
-0.9842154 also love affairs
-1.026409 freckled <unk> was
-0.9870615 freckled her mouth
-1.137218 large <unk> of
-1.286341 large <unk> on
-1.030851 large and so
-1.036297 lights <unk> about
-0.2181376 lights and <unk>
-0.7077313 lights glancing in
-1.053776 others <unk> <unk>
-1.235584 others <unk> to
-1.592548 others <unk> through
-1.588322 others <unk> them
-0.9675298 others so far
-0.8189207 others he was
-0.9559599 others after </s>
-0.5017942 others very <unk>
-0.7981352 others showed that
-0.7295531 others pray do
-0.9671339 observer an extraordinary
-0.5882314 observer might have
-0.8808607 extraordinary observer </s>
-0.9590091 extraordinary observer might
-0.6825953 extraordinary weight </s>
-0.9962598 chin it touched
-1.035199 chin was very
-1.053458 pointed the previous
-1.056846 pointed and pronounced
-0.8129559 pronounced <unk> <unk>
-0.8578688 pronounced that the
-0.5810188 forehead of the
-1.054978 forehead was broad
-1.055818 broad and full
-0.8405649 broad daylight he
-1.114064 our <unk> </s>
-1.626185 our <unk> little
-1.508983 our <unk> i
-1.658316 our <unk> extraordinary
-1.023666 our old friends
-0.2364025 our time of
-0.5434526 our own <unk>
-0.9363178 our good </s>
-0.8660934 our dear eugenie
-0.6026045 our sight <unk>
-1.018206 our way continued
-0.8929347 our feet do
-0.719498 our religion was
-0.5459781 our neighbor who
-0.4819589 our hands </s>
-0.9200827 our millions </s>
-0.8171593 our cash takes
-0.9200629 our story as
-0.7005358 our minister of
-0.7332564 our labour preserves
-0.7850687 our faults </s>
-0.8454279 our faults do
-0.7764509 our princess </s>
-0.7319758 our princesses got
-0.8496906 our garden you
-0.700253 however was <unk>
-1.040345 however would judge
-1.025592 however like its
-0.8880929 however beautiful and
-0.6969822 however expressed the
-0.5842025 ordeal a <unk>
-1.056518 ordeal of speaking
-1.011361 ordeal he saw
-0.5355745 stood in the
-1.043194 stood to one
-0.1846988 stood at the
-0.9535079 stood up <unk>
-0.3207932 stood aside <unk>
-1.031746 handle <unk> out
-0.8412208 handle of a
-0.4264134 fashioned out of
-0.3405163 fashioned carpet bag
-1.002286 carpet all seemed
-0.923016 carpet bag the
-0.3837413 carpet bag oh
-1.018284 bag the other
-1.264081 bag oh i'm
-0.8185398 bag oh i
-0.8686654 held in his
-1.016246 held her hand
-1.008982 held out to
-0.9890691 held his head
-1.008092 held him here
-0.8247052 held himself in
-0.6398532 mister matthew cuthbert
-1.281619 mister graham there
-1.24381 mister graham i
-0.9079474 clear <unk> to
-1.019495 clear as ever
-0.920065 clear sweet voice
-1.39758 glad to give
-0.4291696 glad to see
-0.4260785 glad because i
-0.7816786 glad i'm going
-1.032628 glad when at
-0.8909019 glad you're out
-0.8148319 glad you've come
-1.027277 beginning to be
-1.355701 beginning to warm
-1.058289 lovely <unk> veil
-1.022963 lovely to sleep
-0.9169216 lovely evening after
-1.001999 tree all white
-0.7281567 tree leaning out
-0.594967 imagine missus spencer
-1.345668 imagine that after
-1.309804 imagine that i'm
-1.050239 imagine not being
-1.009785 imagine something worth
-1.022777 imagine i'm nice
-0.9325869 imagine what she
-0.8947681 imagine i was
-1.007754 imagine you were
-1.229654 imagine things about
-1.235729 imagine things like
-0.9760902 carry the prince
-0.9854354 carry it the
-0.9760902 responded the prince
-0.8465529 responded <unk> </s>
-0.7090594 let the <unk>
-1.01544 let <unk> his
-1.01345 let marilla do
-1.031139 let you go
-1.048023 let me say
-1.642686 let us place
-1.626417 let us be
-1.647315 let us work
-1.628195 let us have
-1.652936 let us call
-1.643607 let us see
-0.4925198 heavy <unk> <unk>
-1.358834 heavy <unk> of
-1.542299 heavy <unk> i
-0.6845008 heavy with <unk>
-1.003435 heavy and if
-1.006287 heavy i've got
-0.8008152 heavy tears <unk>
-0.8171593 heavy mourning gloves
-1.05378 carried in just
-1.008052 carried off by
-1.349046 way the handle
-1.188743 way the princess
-1.075376 way <unk> the
-1.068024 way <unk> and
-0.8251283 way down to
-1.046948 way and yet
-1.002139 way that to
-1.056518 way of searching
-0.9414941 way to the
-0.8557429 way to <unk>
-1.403171 way to him
-0.5049358 way through the
-0.7542996 way or the
-0.8079959 way he <unk>
-1.321608 way he put
-1.040472 way i may
-0.8082064 way they had
-1.165234 way they have
-1.039226 way then another
-0.8665225 way round the
-0.9133153 way led from
-0.8166411 way continued far
-1.034638 keep that money
-1.370382 keep it and
-1.628458 keep it out
-1.725997 keep it because
-1.730784 keep it keep
-1.731854 keep it monte
-1.30145 keep up with
-1.477671 keep up well
-1.196762 keep up his
-1.113326 keep this money
-1.33774 keep this secret
-1.031278 keep his promise
-1.010801 keep him awake
-1.039399 keep your watch
-1.047481 keep my signatures
-0.7800872 keep myself at
-0.2531476 exact <unk> of
-1.05636 exact a mournful
-1.055889 extremely <unk> according
-1.02387 extremely old carpet
-0.5711598 you've no <unk>
-0.5494668 you've decided to
-1.012316 you've come even
-0.6771647 nice and <unk>
-1.022963 nice to sleep
-0.9280151 nice things and
-0.7579837 love is a
-0.9337862 love with the
-0.8206239 love with a
-1.208532 love with her
-1.573422 love with i
-1.047956 love and water
-1.056319 love of truth
-1.0534 love it already
-1.031181 love to imagine
-0.9190802 love driving oh
-0.9778325 love pretty clothes
-1.053472 love you best
-0.8636624 love making may
-0.7777731 love affairs of
-0.7329999 love hate amory
-0.9578998 wonderful <unk> <unk>
-1.354025 wonderful <unk> clara
-1.033147 wonderful that i'm
-0.5970297 wonderful said the
-0.8610728 wonderful parents are
-0.8465529 live <unk> </s>
-0.9371388 live with you
-1.056846 live and wear
-0.9537576 live on it
-1.030021 live here i've
-0.8825001 live either in
-0.9414941 belong to the
-1.395924 belong to you
-1.529085 belong to savareen
-0.5842025 worst a <unk>
-1.003729 worst i've only
-0.9463864 four <unk> in
-0.6095845 four hours passed
-0.999605 four five said
-0.8045859 four months but
-0.6166529 four hundred and
-0.9064616 four dollars to
-0.96378 four dollars meant
-0.7113743 four contained a
-1.047667 months and sleep
-0.9758858 months but that
-0.7326156 months sooner probably
-1.045618 worse <unk> than
-0.8614947 worse to be
-1.022342 worse than anything
-0.7190153 scope for the
-1.34764 scope for imagination
-1.047961 imagination <unk> its
-1.038427 imagination in an
-1.036773 imagination then would
-1.031181 interesting to imagine
-0.6825953 interesting idea </s>
-0.698637 interesting consequence to
-0.6643086 companion with a
-0.8977777 companion stopped talking
-1.039187 stopped to take
-0.5126249 stopped at the
-0.3975942 stopped on the
-0.3617005 stopped during the
-0.8983399 stopped talking partly
-0.7400538 talking with the
-0.5810188 talking of the
-0.950334 talking themselves and
-0.6843208 talking too much
-0.1927524 talking partly because
-0.9948698 partly because she
-0.8362674 partly because they
-0.7090594 stolen the <unk>
-1.000432 stolen away from
-0.7735312 stolen earlier the
-0.8922063 nurse was a
-1.041865 nurse who died
-0.9814267 nurse were left
-1.041414 confess i used
-1.01378 confess these are
-1.037047 confess bobby he's
-0.5842025 lie a <unk>
-1.050951 lie with old
-0.7326156 lie concealed every
-0.8503618 lie awake at
-1.055671 awake and looking
-1.020462 awake at nights
-1.002142 awake all night
-1.01246 am the only
-1.053776 am <unk> <unk>
-1.235584 am <unk> to
-1.524414 am <unk> on
-1.657001 am <unk> thin
-1.056223 am a priest
-0.9029015 am an old
-1.049556 am not thought
-0.6273351 am so <unk>
-0.9937377 am going sir
-1.23314 am i to
-1.352979 am i talking
-0.2031093 am said the
-0.3349111 am sorry i
-0.4541828 am glad to
-0.7266383 am determined not
-0.7332564 am entirely ignorant
-0.8165375 am merely afraid
-0.7564252 am rich </s>
-0.7735312 am seeking the
-0.9012115 am tired of
-1.020978 bones had all
-0.9659939 bride of course
-0.9361839 bride all in
-0.993477 bride myself i'm
-1.35687 want the fun
-1.339476 want the truth
-1.045727 want a lot
-0.9036198 want to <unk>
-1.560205 want to go
-1.690845 want to know
-1.533602 want to see
-1.77667 want to marry
-1.777178 want to repeat
-0.9433259 want you to
-1.045727 marry a mere
-1.022823 marry before they
-1.049644 marry me unless
-1.051829 unless it might
-0.8808113 unless i have
-0.8855879 unless you're on
-1.039302 missionary <unk> be
-1.002456 missionary i suppose
-0.8578688 soil that the
-0.5810188 soil of the
-0.2531476 several <unk> of
-0.998201 several of their
-0.8974032 several feet above
-0.6642711 several high <unk>
-0.9377407 several days nearly
-0.8152964 several papers left
-1.056223 feet a thick
-1.056911 feet to inhale
-0.7799347 feet do not
-0.9352834 feet above their
-1.465953 above the house
-0.4305919 above the water
-0.9467397 above all </s>
-1.036625 above their heads
-0.9890691 above his head
-0.9624382 above whose roofs
-1.03924 heads the child
-1.058289 heads <unk> impaled
-0.9113173 against the <unk>
-1.778898 against the side
-1.779545 against the stone
-1.805058 against the assassin
-1.830705 against the wizard
-1.780842 against the squire's
-0.8129559 against <unk> <unk>
-0.8528045 against him </s>
-1.315293 against him was
-1.037782 against your better
-1.057647 beautiful the true
-1.057462 beautiful <unk> jesus
-1.018405 beautiful and there
-0.9355451 beautiful could you
-1.041954 beautiful what did
-0.7526945 beautiful once but
-0.33144 beautiful piece of
-0.7331282 beautiful pale blue
-0.95634 leaning on you
-0.9042352 leaning out from
-0.750212 bank where he
-1.002713 bank was only
-1.011683 bank but her
-1.001999 bank all white
-1.047481 bank my funds
-0.6323694 bank shall be
-0.7328718 bank please pay
-0.7564252 bank notes </s>
-0.2578405 dunno said matthew
-0.972861 veil between him
-1.058206 shall <unk> remain
-0.3553683 shall be <unk>
-1.516723 shall be most
-0.9335609 shall not be
-1.033499 shall never swim
-0.9771778 shall work doctor
-0.8599425 shall have a
-1.041603 shall i call
-1.036314 shall then be
-1.028755 shall you be
-1.034519 shall we be
-0.9196708 shall presently give
-0.89312 shall die before
-0.9636768 remember where and
-0.9591524 remember but of
-1.056041 forward to isn't
-0.829261 forward covered the
-1.074806 rather <unk> </s>
-1.50387 rather <unk> its
-1.524732 rather <unk> since
-1.05636 rather a relief
-1.275619 rather i didn't
-1.135007 rather i don't
-0.9245167 rather strange to
-0.9468351 rather believe that
-0.8000753 rather difficult for
-0.5931028 everybody must be
-0.812517 everybody knows well
-1.038979 everybody will stay
-0.8446931 imagined that i
-0.6514933 imagined this <unk>
-1.102375 most <unk> <unk>
-1.265023 most <unk> and
-1.809279 most <unk> are
-1.863994 most <unk> woman
-1.777771 most <unk> said
-1.863994 most <unk> most
-1.899332 most <unk> state
-0.9867851 most of all
-0.897965 most quiet folks
-0.5764404 most three <unk>
-0.8091439 most decidedly not
-0.9516984 most beautiful pale
-0.8166929 most delightful fun
-0.3207932 most impossible <unk>
-0.8773171 most happy to
-0.888893 pale <unk> and
-0.7347887 pale blue <unk>
-1.01246 blue the only
-1.055396 blue <unk> dress
-0.5842025 blue a <unk>
-1.045727 worth a million
-0.976348 worth much in
-1.001895 worth while </s>
-0.4210588 worth while to
-0.7191254 worth dying for
-1.048752 morning is come
-1.058041 morning <unk> dull
-1.049586 morning with more
-1.030908 morning to night
-1.323002 morning when missus
-0.8127417 morning when i
-1.006823 morning oh well
-0.7012102 morning soon after
-0.8643556 morning carlos gave
-0.7243708 morning creditor said
-0.6969822 morning mass the
-1.055428 ashamed of himself
-0.4260785 ashamed because i
-0.8129559 wear <unk> <unk>
-0.6514933 wear this <unk>
-0.9374919 wear them you
-1.035218 hundred a month
-0.5005104 hundred and <unk>
-1.749511 hundred and thirty
-1.746045 hundred and twenty
-1.749511 hundred and fifty
-1.035651 hundred more danced
-1.043376 hundred when equally
-0.807911 hundred yards of
-0.8490963 hundred yards further
-0.04514794 hundred thousand francs
-0.8888786 hundred times by
-1.056518 yards of wincey
-0.9620074 yards further or
-1.045706 lot of money
-1.035501 lot more cherry
-1.114064 already <unk> </s>
-1.053776 already <unk> <unk>
-1.546822 already <unk> her
-1.65113 already <unk> two
-1.056086 already a yard
-1.053622 already and i'm
-0.9762995 already gone home
-1.002456 already i suppose
-0.5271265 already felt <unk>
-0.971048 already short save
-0.4234858 already black <unk>
-0.8633162 already worked us
-0.8989002 already placed a
-0.7267647 already pierced me
-1.046658 hadn't one either
-0.9079474 hadn't <unk> to
-0.6613509 hadn't time to
-0.9384872 hadn't at least
-0.7794469 hadn't been <unk>
-0.8947681 hadn't i was
-0.190762 hadn't dreamed that
-0.9587345 sick coming over
-0.830944 sick watching to
-1.074806 fall <unk> </s>
-1.260135 fall <unk> in
-1.473958 fall <unk> she
-1.020191 fall in with
-0.9758799 fall here the
-0.5620697 kept by the
-0.9801163 kept her from
-1.040655 kept up without
-0.3563818 kept looking at
-0.8325052 kept herself <unk>
-0.7175146 kept sending it
-1.000221 mercy i did
-1.068024 boat <unk> and
-1.339202 boat <unk> against
-0.895015 boat with her
-0.9283353 boat for her
-1.021528 boat she never
-0.4260785 boat because i
-0.719498 boat neither was
-1.048532 flowers and nodding
-0.7090594 watch the <unk>
-0.6771647 watch and <unk>
-0.5355745 watch in the
-0.9826589 gloves <unk> with
-1.056846 gloves and boots
-0.8363789 boots three times
-1.027731 boots i felt
-0.8570807 telling me the
-0.9949755 telling me i
-0.9770241 stop i can
-0.7043038 stop when i
-1.022604 difficult to think
-0.9927197 difficult for his
-0.8960128 difficult matthew </s>
-0.8129559 thousand <unk> <unk>
-1.04303 thousand or six
-0.9628244 thousand already i
-0.7438396 thousand francs </s>
-1.30586 thousand francs the
-1.359354 thousand francs a
-1.34535 thousand francs in
-1.405878 thousand francs but
-1.365084 thousand francs i
-1.445087 thousand francs oh
-0.9528949 roads are so
-0.9462192 roads red well
-0.5226831 roads began to
-0.9182013 delightful when your
-0.502783 delightful fun i
-0.6825953 delightful dream </s>
-1.051032 true the good
-0.498699 true isn't it
-0.2004893 began a <unk>
-1.618395 began to feel
-1.652858 began to read
-1.652477 began to flash
-1.652095 began to laugh
-0.7688478 began but the
-0.8908227 began at once
-0.7847991 began she <unk>
-0.9134123 began feeling about
-0.4774842 began rather <unk>
-1.003565 flash and then
-0.7331932 flash of <unk>
-0.9225082 flash past i
-1.006891 intelligence to keep
-0.8156063 intelligence realized its
-1.055539 himself a bed
-1.003565 himself and then
-0.7699104 himself that he
-0.6060648 himself in the
-0.9495861 himself in <unk>
-1.056718 himself to walk
-1.024453 himself well on
-0.2347749 himself for <unk>
-1.012393 himself at his
-0.9219187 himself on his
-1.039251 himself from me
-0.6650024 himself if it
-0.9705556 himself he would
-1.02633 himself like most
-0.968704 himself soon upon
-0.8617619 himself somewhat more
-0.9485289 himself hadn't been
-0.7263858 himself receives no
-0.9718202 girls from a
-1.044003 girls were worse
-0.43761 ventured to ask
-1.451048 ventured to say
-0.8556841 bred little girl
-1.044082 bred and well
-1.018537 gentleman <unk> you
-0.7657377 gentleman in a
-0.9417225 gentleman who is
-1.478453 gentleman who just
-1.487072 gentleman who receives
-0.839956 gentleman here is
-0.6677709 black <unk> the
-1.154963 black <unk> <unk>
-1.409696 black <unk> of
-1.694336 black <unk> was
-1.794768 black <unk> there
-0.6845008 black with <unk>
-0.5355745 black in the
-1.00131 black so were
-0.8975904 black mare hadn't
-0.9623416 black dress smiling
-0.7347887 black clothing <unk>
-0.1927893 black clothed men
-1.013319 smiling and his
-1.002671 smiling come said
-0.9880745 extended to me
-0.9500729 extended his hand
-1.052912 realized that too
-0.3068365 realized its <unk>
-0.8947681 realized i was
-0.222718 wished to <unk>
-1.050695 wished her immediately
-1.046008 wished from curiosity
-1.047192 wished no ill
-0.7322316 wished harm towards
-0.8967929 accepted it <unk>
-0.9154168 accepted all his
-1.046689 pressed for this
-0.4853354 pressed mine </s>
-1.047122 mine is will
-1.017195 mine and my
-1.073862 mine eye well
-1.082374 mine eye loves
-0.9225481 mine were not
-1.044902 mine which led
-1.057647 approached the city
-0.7400538 approached with the
-1.055527 city of light
-0.9978235 city life without
-1.027549 city i heard
-1.043879 later is what
-0.5355745 later in the
-1.054666 later i found
-0.3398592 later mister graham
-0.6845008 astir with <unk>
-0.8496898 astir and the
-1.039946 moment the whole
-1.058289 moment <unk> delighted
-0.5355745 moment in the
-0.9068645 moment of his
-1.03161 moment was when
-1.043053 moment up started
-1.022101 moment she left
-0.7298075 moment silently into
-1.034738 silently into each
-0.8148319 silently rolled down
-0.9578998 each <unk> <unk>
-1.347683 each <unk> eyes
-1.158124 each other </s>
-1.249471 each other that
-0.8989002 each worth a
-0.6936914 each dignified and
-0.8875261 guide what was
-1.019648 guide how more
-0.9799024 guide took me
-0.9218383 worship is not
-0.8732288 worship i am
-1.013279 priest is more
-0.9371388 priest with you
-1.038679 gods and other
-1.051226 gods that did
-0.8044763 gods i <unk>
-0.9561988 breast of it
-1.05143 idol as apollo
-1.041603 idol i whispered
-0.926928 idol then and
-1.055848 whispered to myself
-0.7512693 whispered as he
-0.9526465 whispered taken by
-1.158558 whispered robin the
-1.258002 whispered robin opening
-1.039619 surprise <unk> them
-1.039931 surprise to escape
-1.055392 low he fell
-0.6646722 low voice </s>
-0.7633242 light is <unk>
-1.05595 light a fire
-1.056699 light and heat
-0.5355745 light in the
-0.6600345 light of the
-1.095465 light of his
-1.0543 light it created
-0.7006021 light he <unk>
-1.04315 light which has
-0.7502527 light made a
-0.9532226 light they heard
-0.9448617 light then a
-0.2410265 light under the
-0.8536984 light upon his
-0.6026045 light suddenly <unk>
-1.057033 created the beautiful
-1.034224 created man good
-0.7489552 religion is the
-1.054698 religion was divine
-1.05556 divine <unk> should
-0.8485983 divine feet to
-0.5360551 divine apollo </s>
-1.342068 god <unk> people
-1.291418 god <unk> him
-0.8496898 god and the
-1.017591 god why will
-0.997835 god no and
-0.9844079 god thought it
-0.9731652 fault in her
-0.8855328 fault about her
-0.726891 fault interrupted my
-0.6643086 interrupted with a
-0.9551894 interrupted my guide
-0.8674515 knowing it </s>
-0.9806694 knowing what his
-1.036743 answer is with
-0.9649535 answer the princess
-1.051687 answer with many
-0.700253 answer was <unk>
-0.5451763 answer would be
-1.054603 doubt that interview
-1.039349 doubt he put
-0.9782171 doubt whether her
-0.7564252 doubt homer </s>
-0.3262514 doubt whatever </s>
-0.7090594 homer the <unk>
-0.1876474 homer concerning the
-1.056086 told a story
-1.045153 told by savareen
-0.5810188 told of the
-1.159448 told him of
-1.341305 told him quietly
-0.8824095 told you </s>
-1.126919 told me that
-1.307099 told me it
-0.9551894 told my guide
-0.6060648 presence in the
-1.225039 presence in my
-0.8412208 presence of a
-0.8188557 concerning the <unk>
-1.357115 concerning the divine
-0.9218383 apollo is not
-0.9859609 apollo in all
-0.931232 apollo he said
-1.00258 apollo make him
-0.8674515 forget it </s>
-0.9992442 forget this day
-0.8971198 forget apollo he
-0.8937464 suggestion <unk> the
-0.7331932 suggestion of <unk>
-0.7090594 number the <unk>
-1.497458 number of other
-1.46927 number of men
-1.529073 number of newspapers
-0.4231026 various lights and
-0.8815996 various times as
-0.9867851 meaning of all
-0.3262514 meaning glance </s>
-1.005561 aside <unk> </s>
-1.219914 aside <unk> a
-0.9894931 aside and in
-0.6600345 anniversary of the
-0.8501873 anniversary of <unk>
-1.245932 birthday of their
-1.315229 birthday of jesus
-0.1881954 birthday anniversary of
-0.7579837 jesus is a
-0.3620066 jesus the <unk>
-1.515803 jesus the son
-1.02483 jesus a myth
-1.051132 jesus but also
-0.7623626 jesus could <unk>
-1.314805 jesus could keep
-0.9907388 jesus as much
-0.8044763 jesus i <unk>
-0.8897911 jesus mouth </s>
-1.039835 jesus we meet
-0.2217932 jesus appear to
-0.9624382 jesus whose worship
-0.7298075 jesus fled into
-1.290701 toward the door
-1.322753 toward the window
-0.8528045 toward him </s>
-1.235145 toward him i
-1.048707 search the ground
-1.038397 search and left
-0.5355745 search in the
-0.9068645 search of his
-1.054698 search was kept
-1.052356 search for apollo
-1.056815 universe to courtiers
-0.9541114 universe you would
-0.986267 person in my
-0.813503 person as <unk>
-0.8189207 person he was
-0.8096247 person made of
-1.053336 touch the firm
-1.056418 touch of graham's
-0.7862498 touch him to
-0.7090594 inhale the <unk>
-0.5842025 inhale a <unk>
-1.058289 golden <unk> contained
-0.7817054 golden light of
-0.8132042 golden fortune and
-1.05777 hear the music
-0.9815574 hear because the
-1.043779 hear me who
-0.5016792 hear these <unk>
-0.9068645 music of his
-1.048455 faith is never
-1.053301 faith that jesus
-1.352165 faith in everything
-1.352876 faith in apollo
-0.859191 filled with the
-1.345764 filled with wonder
-1.004687 filled those papers
-0.9621968 filled air finally
-0.9870318 determined not only
-0.7862498 determined him to
-1.035174 truth into jail
-1.031364 truth to others
-0.9590581 truth about jesus
-0.7480842 truth came to
-1.039835 truth we ease
-1.047118 truth my dear
-0.7247944 truth don't you
-1.074806 moral <unk> </s>
-1.260135 moral <unk> in
-1.503409 moral <unk> question
-1.057647 open the proper
-0.9463864 open <unk> in
-0.8940614 open with his
-0.6771647 open and <unk>
-0.7296803 open page before
-0.9978924 discussion of a
-1.226817 discussion of this
-0.8044763 subject i <unk>
-0.8661198 subject like the
-0.5842025 deliver a <unk>
-1.044257 deliver him up
-0.7657377 either in a
-1.051941 either she stopped
-1.033518 either man could
-0.9420511 either wife or
-0.7273968 either directly or
-0.6969822 either rejoined the
-0.6631813 directly or <unk>
-0.6786093 directly put you
-0.80446 free it is
-0.7755056 free expression to
-0.933447 tears <unk> of
-1.001301 tears down but
-1.048949 tears as would
-0.7331282 tears silently rolled
-0.7298075 tears pushing into
-1.046771 freedom of action
-1.055461 freedom to come
-0.8937464 jail <unk> the
-1.03789 jail bobby persisted
-1.035898 building up or
-0.9706048 building every hollow
-1.054603 count that persons
-1.026537 count had left
-0.2644419 count of monte
-1.026385 count he added
-0.8812426 count has an
-0.8495269 count said danglars
-0.6128239 count your <unk>
-1.009141 count oh how
-0.9306407 count above all
-0.7295531 count alas do
-0.1182339 count pardon me
-0.888893 social <unk> and
-0.919277 social position than
-1.052972 conquered the words
-0.9461409 conquered for you
-0.6622561 reward one of
-0.7090594 reward the <unk>
-0.6771647 reward and <unk>
-1.036067 reward their search
-1.011072 wish it bobby
-1.100388 wish to be
-1.455609 wish to tell
-1.358339 wish to see
-1.249968 wish i could
-1.352785 wish i hadn't
-1.02142 wish our princesses
-1.351292 courage to again
-1.354355 courage to face
-0.7542996 courage or the
-1.055378 industry and its
-1.016602 industry of our
-0.6267522 neighbor who <unk>
-0.7400538 searching with the
-0.6296158 searching for the
-0.7113743 searching party a
-1.357115 wetting the walk
-1.348326 wetting the open
-1.041298 page who turned
-0.8214538 page before him
-0.4026462 pushing into the
-0.6771647 pushing and <unk>
-1.015359 quest <unk> by
-0.7493723 quest had been
-0.7331932 quest of <unk>
-1.056911 loves the love
-0.9489892 loves it and
-0.9691857 ease or not
-1.020375 ease our own
-0.8100752 calling him <unk>
-0.9869881 calling myself not
-0.7090594 envy the <unk>
-0.7579837 myth is a
-0.8412208 myth of a
-0.8960103 myth or a
-0.6771647 explanation and <unk>
-0.8412208 explanation of a
-1.019427 explanation how did
-1.03924 knowledge the child
-1.025309 knowledge graham desired
-0.4361403 desire to know
-1.466836 desire to sleep
-1.057647 replaced the notes
-0.6100669 replaced by <unk>
-0.7090594 mythus the <unk>
-1.036007 mythus of jesus
-0.5810188 science of the
-1.130685 science was not
-1.287658 science was born
-0.7699104 realization that he
-1.097138 less <unk> to
-1.333695 less <unk> than
-1.045461 less than it
-1.28852 less than five
-0.933447 restless <unk> of
-0.7564252 restless spirit </s>
-0.4686351 restless doctor groom
-1.05777 fill the space
-0.9537252 fill my mind
-0.9166403 space about and
-0.6771647 fairies and <unk>
-0.7696089 fairies gods and
-0.6771647 invisible and <unk>
-0.790753 invisible blue a
-1.00262 beings <unk> from
-1.039835 beings we desire
-1.058041 moon <unk> thus
-0.9321361 moon i must
-0.5475446 moon rose </s>
-1.184621 moon rose likewise
-1.048291 begin to touch
-1.055725 firm <unk> ground
-0.954301 firm as it
-0.9194738 firm ground until
-0.5355745 entirely in the
-0.7005358 entirely ignorant of
-1.048434 hands with bobby
-0.9406004 hands in this
-0.5810188 hands of the
-0.8908227 hands at once
-0.9747869 hands were no
-0.9748737 hands alone why
-1.094122 evidence that the
-0.9521138 evidence that he
-1.296132 evidence that they
-0.9886852 evidence was of
-0.6432104 evidence under his
-0.6642711 evidence origin <unk>
-0.6356225 evidence bobby <unk>
-0.5620697 observed by the
-0.9466026 observed only by
-0.7216153 christian church at
-0.6825953 christian easter </s>
-1.054993 times a day
-1.024515 times and all
-0.6100669 times by <unk>
-0.8311159 times as the
-0.4023689 appear to be
-1.498101 appear to understand
-0.9613286 appear rather strange
-0.5810188 ignorant of the
-0.8223596 ignorant about it
-1.019411 whose <unk> <unk>
-1.470934 whose <unk> had
-1.38256 whose <unk> he
-0.9850132 whose child was
-1.005681 whose eyes as
-0.7258812 whose worship is
-0.8983399 whose tears silently
-0.7332564 whose roofs smoke
-0.7258812 whose crossing is
-1.00073 millions and a
-1.025604 millions in your
-0.6600345 millions of the
-1.333866 millions of money
-1.020276 millions to that
-0.9878383 millions without a
-0.8908227 millions at once
-0.4477372 millions on the
-1.337248 millions on five
-0.9813735 millions from you
-1.013227 millions why what
-0.839956 millions here is
-0.8808113 millions i have
-0.7437289 millions between us
-1.097138 money <unk> to
-1.357815 money <unk> many
-1.002488 money a </s>
-1.033909 money and they
-0.7629004 money to the
-1.044945 money but which
-0.6296158 money for the
-0.924318 money on my
-0.6273351 money so <unk>
-0.9733969 money you and
-0.803811 money only a
-1.236135 money yes for
-1.249188 money yes said
-0.6258557 money born of
-0.2383981 money excuse me
-1.034175 service the time
-1.02531 service here if
-0.7102848 service graham said
-1.002139 says that to
-1.036446 says in him
-0.8563372 says nothing about
-0.8188557 escape the <unk>
-1.356626 escape the evil
-0.735191 escape him </s>
-1.053336 evil the nature
-0.933447 evil <unk> of
-0.9406004 evil in this
-0.9338432 evil at all
-1.039549 evil or good
-0.6936914 herod mary and
-0.6771647 mary and <unk>
-0.8465529 infant <unk> </s>
-0.9983293 infant jesus fled
-1.05777 fled the stroller
-1.035174 fled into egypt
-1.058206 egypt <unk> says
-0.9451398 egypt does he
-1.055232 hurried <unk> nor
-1.024953 hurried back along
-1.036297 important <unk> about
-0.850999 important than the
-0.8465529 greater <unk> </s>
-0.8972133 greater care that
-1.037643 friday <unk> not
-0.8578688 friday that the
-0.904683 equinox but as
-0.8311159 equinox as the
-0.6845008 thus with <unk>
-0.8175427 thus making the
-0.8879593 thus speak a
-1.019333 thus our way
-0.8525505 thus fixed his
-0.4445611 upon the <unk>
-2.058118 upon the forehead
-2.087981 upon the position
-2.08894 upon the crowd
-2.057225 upon the saddle
-2.056333 upon the top
-2.08894 upon the mother
-2.090864 upon the bewitched
-0.933447 upon <unk> of
-1.353982 upon a kind
-1.332871 upon a man's
-0.5620697 upon by the
-1.008453 upon them a
-1.036067 upon their path
-1.558968 upon his lips
-1.490955 upon his attention
-1.560043 upon his fate
-1.557895 upon his arm
-0.735191 upon him </s>
-0.9532097 upon me a
-0.9404137 upon myself to
-0.7347887 upon firm <unk>
-0.9056185 upon morrel with
-0.8937464 position <unk> the
-0.5810188 position of the
-0.9005899 position for he
-0.9442627 position she would
-0.9725225 position than to
-0.8465529 easter <unk> </s>
-0.998201 object of their
-0.704212 object to <unk>
-0.8937464 origin <unk> the
-1.05622 origin of evil
-0.8129559 following <unk> <unk>
-1.058289 john <unk> judas
-0.898415 john peter judas
-0.8937464 judas <unk> the
-1.056846 judas and mary
-0.7512693 mythical as he
-0.7896287 mythical jesus could
-1.022486 rome the house
-0.7620425 rome with a
-1.335519 rome with no
-0.5620697 rome by the
-1.024294 rome he came
-1.047806 note <unk> who
-0.9861097 note of him
-1.005561 impossible <unk> </s>
-1.330741 impossible <unk> are
-1.048386 impossible to explain
-0.9579219 decide which of
-0.7978911 decide what to
-0.9534029 decide there's no
-0.9578998 numerous <unk> <unk>
-1.249401 numerous <unk> for
-0.9489765 numerous dead men
-0.9788386 else is this
-1.00272 else had ever
-0.9880745 else to me
-1.052486 else for savareen
-0.7931758 else any one
-0.9659933 else i shall
-1.037239 else only women
-0.9338147 else told a
-1.012297 unanimous <unk> at
-0.8915297 unanimous silence to
-0.5810188 silence of the
-0.8614947 silence to be
-0.3608685 silence without <unk>
-0.8398785 silence you <unk>
-0.9152284 silence during which
-1.053622 sword and after
-0.6728293 sword now and
-0.404341 sword thou <unk>
-0.6825953 hereafter brevity </s>
-0.5810188 government of the
-0.704212 government to <unk>
-0.9679716 courtiers who have
-0.4735278 courtiers did not
-0.5968844 courtiers like a
-0.6897254 attention it was
-0.5922783 attention squire harrington
-1.005561 self <unk> </s>
-0.9578998 self <unk> <unk>
-0.8709047 self doubt he
-0.7849841 self effort and
-1.224172 these <unk> </s>
-1.360598 these <unk> to
-0.8015175 these <unk> are
-1.895595 these <unk> child
-1.886388 these <unk> claims
-1.900005 these <unk> proved
-0.8446931 these that i
-1.040321 these are scruples
-1.294301 these people lived
-0.851129 these people <unk>
-0.9747869 these were no
-0.7327437 these precise bonds
-0.5259764 these two <unk>
-0.9708044 these two days
-0.9914736 these things are
-0.9513804 these twenty years
-0.9383866 these four contained
-0.8148319 these prayers been
-1.057046 these words the
-1.097824 these words he
-0.5838223 these days and
-0.6642711 these careless <unk>
-0.6642711 these touches <unk>
-0.7629004 claims to the
-1.047432 claims have produced
-0.8129559 produced <unk> <unk>
-0.5620697 produced by the
-0.9898964 moreover to have
-1.044701 moreover if jesus
-0.9445297 promise was to
-0.9913095 promise to see
-1.038322 promise there would
-1.0481 mothers and land
-0.5711598 mothers no <unk>
-1.011361 insanity in which
-0.5711598 insanity no <unk>
-1.049911 wrong <unk> people
-1.016559 wrong how were
-1.038163 prayers been answered
-0.7359902 prayers will be
-1.330223 caused by such
-1.333367 caused by falling
-1.038325 ye are new
-0.949794 ye ask anything
-0.9896518 ye keep your
-0.9079474 same <unk> to
-0.8895059 same to the
-1.268919 same to my
-0.791235 same which the
-0.9935374 same day it
-0.7986513 same hour </s>
-0.7209915 same spot with
-1.048947 words the dervish
-1.032759 words <unk> into
-1.035316 words and at
-0.5975883 words if you
-0.7006021 words he <unk>
-0.932535 words came <unk>
-0.9592376 words there's nothing
-1.05472 length he entered
-0.9713605 length said that
-0.7270657 length they were
-1.032794 effort and not
-0.222718 effort to <unk>
-0.8129559 poverty <unk> <unk>
-1.056699 poverty and moral
-0.7229775 poverty may have
-0.7579837 theirs is a
-1.027275 animal to which
-1.049568 animal as man
-0.8330618 sleeping room to
-0.9118617 sleeping car is
-0.7633242 car is <unk>
-0.9578998 car <unk> <unk>
-1.35864 car <unk> thrusting
-0.5842025 car a <unk>
-1.054838 car was opposite
-0.8814191 car stopped at
-0.8132042 wide awake and
-0.6642711 wide berth <unk>
-1.00262 berth <unk> from
-0.9671339 berth an aid
-1.029305 unattached man which
-0.9463864 lady <unk> in
-0.7154998 lady who <unk>
-1.325621 lady who should
-1.012494 lady may stick
-0.7326156 lady wholly turned
-0.5426194 lady sir and
-0.9954341 balance of one
-1.038598 balance would come
-1.009976 balance something wanted
-0.888893 book <unk> and
-0.9948099 book but </s>
-0.7542996 book or the
-1.026385 book he added
-0.6100669 lost by <unk>
-0.7657377 lost in a
-1.343953 lost her mother
-1.343953 lost her gravity
-0.1528093 lost all your
-1.053523 lost his daughter
-0.6258557 lost sight of
-1.021002 lost our dear
-0.8097552 lost youth when
-0.8581563 cash book or
-0.7315924 cash takes place
-1.040975 gait <unk> an
-0.9213814 gait each dignified
-1.047806 brilliant <unk> who
-1.011509 brilliant man he
-0.260658 game in which
-1.045444 game what held
-0.5711598 receives no <unk>
-1.010137 receives us is
-1.005561 bat <unk> </s>
-0.9578998 bat <unk> <unk>
-0.6936914 bat ball and
-1.052522 ball <unk> old
-0.6771647 ball and <unk>
-0.7339103 takes place to
-0.9384455 takes several high
-0.9079474 high <unk> to
-0.9873102 high things which
-1.02058 department <unk> on
-0.7332564 department store crowded
-1.056405 fight and foot
-0.5810188 foot of the
-1.038971 foot or two
-0.9705556 foot he would
-1.03098 foot did stand
-0.6642711 foot ball <unk>
-0.8465529 gain <unk> </s>
-1.045301 gain by ill
-1.056846 birth and marriage
-1.014457 birth to make
-0.9671339 birth an aid
-0.7299348 birth observed only
-1.331935 discovered by woman
-1.332221 discovered by several
-0.5098292 discovered from the
-1.056699 higher and higher
-0.7347887 higher preferred <unk>
-1.015359 sand <unk> by
-0.9649535 water the princess
-1.068024 water <unk> and
-1.277356 water <unk> i
-1.354121 water and in
-1.529317 water and throw
-1.482147 water and pulled
-1.052782 water that even
-1.003225 water had got
-0.993102 water away she
-0.6897254 water it was
-1.130685 water was not
-1.307903 water was up
-1.056718 water to lay
-0.7965481 water well said
-1.045838 water if desired
-0.9491099 water so he
-0.8054747 water which was
-0.9653849 water when it
-0.6532861 water rose and
-1.053892 water you stupid
-0.2389114 water closed over
-0.9578014 water brought back
-0.433878 water covered with
-0.1871365 water grew and
-1.057647 covered the corner
-0.7874827 covered with <unk>
-1.345971 covered with lady
-1.031437 covered his nostrils
-1.055972 heaven <unk> singing
-0.9657863 heaven a good
-0.7830161 heaven for <unk>
-0.641455 heaven probably not
-0.9528828 heaven stay they
-0.6945913 heaven better to
-1.022486 around the house
-0.9833025 around <unk> a
-1.056846 around and literally
-1.109077 around his eyes
-1.348514 around his hat
-0.9514864 around perhaps watching
-0.8129559 married <unk> <unk>
-1.055818 married and living
-0.6642711 married female <unk>
-1.030884 female <unk> their
-0.9776278 female head trouble
-0.5541023 lower over the
-0.7564252 lower preferred </s>
-0.7175146 lower lip it
-0.5355745 figures in the
-0.7113743 figures weaving a
-1.057524 picture the fresh
-1.053722 picture was gone
-0.6672336 picture taken with
-0.8871844 picture then he
-0.8069851 useful in <unk>
-1.031364 useful to others
-0.1881954 useful product of
-0.1458685 product of a
-0.8937464 dead <unk> the
-0.8496898 dead and the
-0.2633615 dead or alive
-1.036658 dead he then
-1.012508 dead men who
-1.017465 dead these twenty
-1.056617 form of insanity
-1.041508 form i wished
-1.056543 paying the money
-0.3879234 paying an <unk>
-1.010206 paying three board
-0.3879234 board an <unk>
-1.022294 board are at
-0.4296398 board may be
-0.7328718 board bills instead
-1.035668 bills <unk> this
-0.06583646 bills instead of
-0.9212496 complaint often mistaken
-0.3353388 complaint against the
-0.7830161 mistaken for <unk>
-0.7324876 mistaken somebody else
-0.3949475 whereby being <unk>
-0.9839869 whereby love making
-0.7629004 color to the
-0.8945677 color we can
-0.5842025 blush a <unk>
-1.046433 blush for my
-0.8570609 sensorium so that
-1.053822 shame that women
-0.95634 shame on you
-0.8100612 shame anger or
-1.041286 anger or other
-0.9154548 anger made her
-0.9867851 cause of all
-1.047911 cause to feel
-0.760853 bone one <unk>
-0.8981465 bone before he
-0.9978924 price of a
-1.355308 price of salvation
-1.009723 trouble found them
-0.9890691 trouble his head
-0.8869898 trouble which is
-1.046756 trouble my head
-0.1921248 trouble caused by
-1.058041 human <unk> known
-0.7191254 human nature for
-0.7331282 human sympathy o
-0.6825953 human neighbourhood </s>
-1.205925 sarah <unk> the
-1.053776 sarah <unk> <unk>
-1.196023 sarah <unk> and
-1.657329 sarah <unk> sarah
-0.8593549 sarah makes an
-1.045727 bower a shady
-0.7247796 bower there is
-0.1892935 shady retreat in
-1.324655 retreat in new
-1.326159 retreat in general
-0.9833025 general <unk> a
-0.9634932 general that they
-0.9320526 general father of
-0.8825001 general held in
-1.055972 york <unk> security
-1.050416 york for good
-1.003715 york too suddenly
-0.9732499 york seemed not
-0.1279156 security for the
-0.8188557 brain the <unk>
-1.307521 brain the district
-1.01246 furnished the only
-1.051056 furnished with light
-0.3879234 furnished an <unk>
-1.016001 heat of that
-0.9992114 heat so all
-0.192217 heat hot or
-1.32421 hot or too
-1.328311 hot or cold
-0.7090594 cold the <unk>
-0.8035236 cold even for
-1.007702 cold water if
-0.5713414 cold tired <unk>
-0.8134415 cold kiss now
-0.8937464 desired <unk> the
-0.9847609 inside <unk> that
-0.8412208 inside of a
-1.056086 holding a crowd
-0.7452137 holding out the
-1.004933 holding him by
-0.8496898 crowd and the
-0.5250652 crowd together <unk>
-1.019472 crowd came another
-0.6622561 occupied one of
-0.5620697 occupied by the
-1.058206 intellect <unk> thoughts
-1.00262 thoughts <unk> from
-0.6771647 thoughts and <unk>
-0.5975883 thoughts if you
-0.7493723 friends had been
-1.027947 friends made their
-0.8806982 friends call you
-1.050189 friends said montfichet
-1.049252 wall but never
-0.8111339 wall papers were
-1.005124 finds its match
-0.8674515 finds it </s>
-0.9648176 match on earth
-0.6969822 brevity pointed the
-1.000158 injured <unk> for
-0.7657377 injured in a
-0.7331932 fourth of <unk>
-0.7090594 expressing the <unk>
-0.7332564 expressing acute sympathy
-1.368003 condition of one
-0.6899269 condition of the
-1.365571 condition of her
-1.042616 condition from them
-0.8054747 condition which was
-1.056846 bent and torn
-0.8234117 bent on <unk>
-1.428815 fallen in with
-1.52492 fallen in let
-1.448334 fallen in love
-0.5126249 fallen at the
-0.6642711 fallen tough <unk>
-0.9833025 tough <unk> a
-0.3513586 tough fall <unk>
-1.039946 daylight the whole
-0.6897254 daylight it was
-0.9705556 daylight he would
-0.4665844 daylight two <unk>
-0.5810188 neighborhood of the
-1.054978 neighborhood was astir
-0.8496898 country and the
-0.9610645 country of the
-0.2822855 country of el
-0.9779188 country home an
-0.9002168 country round was
-1.031822 round the lake
-0.888893 round <unk> and
-1.054978 round was carefully
-1.051048 round her neck
-0.8727732 round face <unk>
-1.075376 carefully <unk> the
-1.249401 carefully <unk> for
-0.5810188 trace of the
-0.9328688 trace behind them
-0.7738976 missing man </s>
-0.96039 missing man's house
-1.02748 savareen <unk> her
-1.028273 savareen had ridden
-0.6897254 savareen it was
-1.055751 savareen to old
-0.813503 savareen as <unk>
-0.9307562 savareen sat up
-0.5922783 savareen squire harrington
-0.9886769 lord until long
-0.8062516 lord chamberlain had
-0.8148319 lord sheriff's men
-0.9079474 vain <unk> to
-0.8137501 vain lapierre after
-0.9315704 lapierre after <unk>
-0.9996576 lapierre gave up
-0.9414941 according to the
-1.45319 according to their
-1.312949 according to his
-0.861611 arrived just in
-1.046417 arrived so has
-1.033351 couch and when
-0.3001021 couch across the
-0.8937464 broken <unk> the
-1.056846 broken and disturbed
-1.055478 disturbed <unk> certainly
-1.051941 disturbed she knew
-1.068024 squire <unk> and
-1.358475 squire <unk> farm
-1.056699 squire and mistress
-1.05414 squire was quite
-1.039745 squire to stand
-0.4250851 squire helped to
-0.9995843 squire harrington was
-1.022933 squire harrington went
-1.026193 squire harrington likewise
-0.7263858 squire losing all
-0.7744288 squire robin and
-1.054978 harrington was especially
-0.8354044 harrington went down
-0.7332564 harrington likewise learned
-0.5126249 inquiries at the
-0.8855328 inquiries about her
-1.044364 story the story
-0.8072453 story not <unk>
-1.031079 story as in
-0.9690129 story won't tell
-1.037612 story will tell
-0.9538999 story told by
-1.013319 jonathan and his
-0.6825953 jonathan perry </s>
-0.698637 perry professed to
-1.034175 fix the time
-0.7930983 fix me </s>
-0.9649535 started the princess
-0.8937464 started <unk> the
-0.8279443 started back <unk>
-1.056815 started to rise
-1.051579 started for home
-0.5098292 started from the
-1.00262 ridden <unk> from
-0.5098292 ridden from the
-0.8725643 theory as to
-0.1158547 theory promised to
-0.7696089 likewise higher and
-0.7263858 likewise learned all
-1.042017 learned all about
-1.015 learned nothing new
-1.02058 man's <unk> on
-1.013748 man's house here
-0.9661971 man's body might
-1.022633 man's eyes remained
-0.8123118 man's game what
-0.8578146 man's conversation this
-0.9334785 man's coat made
-0.7329999 man's personal appearance
-0.9105094 man's excuse for
-0.933447 previous <unk> of
-0.4186053 previous afternoon </s>
-0.8616689 previous evening and
-0.9406004 disappeared in this
-0.9385406 disappeared from her
-0.7006021 disappeared he <unk>
-0.8465529 manner <unk> </s>
-1.014141 manner it seemed
-0.7700684 manner which <unk>
-0.9309646 manner i do
-0.4608092 manner maybe he
-0.7347887 manner morcerf <unk>
-1.040182 leave the court
-0.9906016 leave with me
-1.047518 leave no trace
-1.048611 leave me alone
-0.5275073 leave new york
-0.9674138 leave alone no
-0.8154514 literally warm themselves
-0.7860896 literally have <unk>
-0.9898964 professed to have
-0.8092966 professed produced by
-1.007701 longer <unk> it
-0.3975942 longer on the
-1.042534 longer were than
-1.033592 longer any room
-0.7175146 longer believed it
-0.8189092 longer princess said
-1.056552 interview and conversation
-0.1187424 interview mistress fitzooth
-1.048827 conversation the news
-1.053009 conversation had actually
-1.047869 conversation this honest
-0.9700956 conversation began rather
-1.053336 o'clock the mourning
-0.99898 o'clock for some
-0.9640694 o'clock at twelve
-0.3975942 o'clock on the
-0.9659933 o'clock i shall
-1.04506 within a short
-0.9946615 within themselves some
-0.8221595 within two days
-0.8271455 within five minutes
-1.207552 minutes the prince
-1.348806 minutes the staircase
-0.7143108 minutes afterwards he
-0.9463864 afterwards <unk> in
-0.8916361 afterwards he could
-0.9825518 deposited by me
-0.9140694 deposited on a
-0.880184 deposited there and
-0.5810188 interior of the
-0.9958218 interior they came
-0.8465529 coat <unk> </s>
-1.056405 coat and hat
-1.025825 coat was at
-0.8096247 coat made of
-1.018798 coat came three
-0.8573023 coat worn by
-0.8951259 coat pocket might
-0.9161905 party a little
-0.786383 party proceeded in
-1.042077 noon when found
-0.4792417 noon do you
-0.8937464 quietly <unk> the
-1.310192 quietly and when
-1.355764 quietly and watched
-0.9357481 quietly as they
-0.8818464 quietly why do
-1.012297 damp <unk> at
-1.039721 damp are clothes
-0.8657888 damp fresh air
-1.01952 swamp and of
-0.5126249 swamp at the
-1.046546 swamp they soon
-0.6899269 rear of the
-1.347877 rear of all
-1.527897 rear of squire
-0.888893 wholly <unk> and
-0.993104 wholly turned herself
-1.026843 spent the night
-0.9657863 spent a good
-1.053336 neck the saddle
-1.058289 neck <unk> darned
-1.021161 neck came drawn
-0.7304887 neck will you
-0.8857709 saddle which had
-0.8936763 saddle however like
-0.7735312 saddle furnished the
-0.3608685 apparently without <unk>
-0.7794469 apparently been <unk>
-0.1871365 apparently asleep and
-0.6600345 disappearance of the
-1.226817 disappearance of this
-0.4296398 whatever may be
-1.052686 wet <unk> gave
-0.6771647 wet and <unk>
-0.9319704 wet street then
-0.9894931 mud and in
-1.052186 mud she rowed
-0.6786093 mud put you
-0.8686654 disappointed in his
-0.6600345 traces of the
-1.355308 traces of footsteps
-0.8496898 footsteps and the
-0.8614172 footsteps unto them
-0.9872924 character of this
-0.7699104 care that he
-1.353339 care of its
-1.354125 care of montfichet
-1.039745 care to meet
-0.9338432 care at all
-1.002017 care who the
-0.8129559 local <unk> <unk>
-0.9118617 local fellow when
-0.5490721 local coroner held
-0.719498 local lawyer was
-0.9898964 distinctly to have
-0.8162269 distinctly remembered having
-0.911506 remembered one day
-1.039785 remembered <unk> all
-0.6220767 remembered having <unk>
-0.933447 top <unk> of
-0.9978924 top of a
-1.174185 top of it
-0.5560033 top last night
-1.011095 days is there
-1.248566 days and that
-1.355471 days and nights
-1.037502 days when my
-0.7359902 days will be
-0.5639858 days nearly all
-0.888893 especially <unk> and
-0.5025869 especially concluded that
-1.033592 throw any light
-0.6416637 throw off the
-0.8285862 throw me to
-1.056552 fate and turning
-1.016632 fate hand bills
-0.8937464 personal <unk> the
-0.8593549 personal appearance were
-0.9702994 every one in
-1.137218 every <unk> of
-1.282581 every <unk> you
-0.6456492 every hollow and
-0.5474961 every other <unk>
-0.7696089 every field and
-0.6936914 every barn and
-1.272955 every day more
-1.256743 every day said
-0.7318479 every bar room
-0.8069851 bar in <unk>
-0.6421968 bar room and
-0.7579837 doctor is a
-0.8937464 doctor <unk> the
-0.5766323 doctor left the
-0.7209915 doctor approached with
-0.996626 doctor groom </s>
-0.9596735 doctor groom <unk>
-1.107176 doctor groom stood
-0.9188835 coroner held himself
-0.9833025 proved <unk> a
-0.8683772 proved at last
-0.7005358 public meeting of
-0.8168483 public affairs die
-0.5355745 meeting in the
-0.5810188 meeting of the
-1.04012 funds are deposited
-0.5809484 funds were <unk>
-1.074806 still <unk> </s>
-1.019411 still <unk> <unk>
-1.526674 still <unk> beneath
-1.352896 still a young
-1.354253 still a sum
-0.8462897 still by his
-0.779288 still time </s>
-0.7427809 still until i
-1.04043 still he ought
-0.6443798 still further <unk>
-0.968105 still since it
-1.015588 still said chateau
-0.6619779 still though he
-0.7855047 still we have
-0.9575864 still air like
-1.008492 still upon him
-0.7564252 still missing </s>
-0.7228656 still smiled but
-0.7331282 still sneered you'll
-0.2802272 still doth <unk>
-0.8854058 still baron said
-0.7267647 still owe me
-1.026843 fence the night
-0.8005243 fence corner was
-1.035761 corner that remained
-0.5810188 corner of the
-0.700253 corner was <unk>
-0.5809484 district were <unk>
-1.152064 district doctor is
-1.166949 district doctor approached
-1.029167 district attorney </s>
-1.115849 district attorney was
-1.150629 district attorney realized
-1.14929 district attorney appeared
-1.048707 forth the main
-0.7620425 forth with a
-1.075855 forth with his
-0.9098282 forth for me
-0.8035236 facts even for
-0.5809484 facts were <unk>
-1.055643 newspapers <unk> robinson
-0.7331932 newspapers of <unk>
-0.9847609 merely <unk> that
-0.8940694 merely afraid of
-0.8849691 merely whispered as
-0.704212 unconsciously to <unk>
-0.7894439 unconsciously from his
-1.05777 seven the amazing
-0.8091439 seven rosalind not
-1.05777 courtyard the movement
-1.046287 courtyard of gamewell
-1.037047 courtyard bobby returned
-0.7090594 bobby the <unk>
-1.102375 bobby <unk> <unk>
-1.630585 bobby <unk> it
-1.790495 bobby <unk> through
-1.609647 bobby <unk> from
-1.605326 bobby <unk> he
-1.80368 bobby <unk> himself
-1.881304 bobby <unk> robinson
-1.035087 bobby a number
-1.035386 bobby that moment
-0.2315492 bobby had <unk>
-1.005124 bobby its brevity
-1.039838 bobby to reply
-0.8194751 bobby went in
-1.024712 bobby he asked
-1.080207 bobby asked </s>
-1.37645 bobby asked i
-1.444978 bobby asked wearily
-0.9888901 bobby didn't care
-0.9368964 bobby he's had
-0.9730459 bobby since you
-1.04066 bobby i left
-0.9807951 bobby did </s>
-1.174216 bobby said <unk>
-1.595566 bobby said but
-1.623517 bobby said even
-1.143462 bobby said he
-0.9947977 bobby looked up
-0.8966179 bobby forced himself
-0.621137 bobby returned to
-0.9621982 bobby we need
-1.030411 bobby answered </s>
-1.383737 bobby answered with
-1.403739 bobby answered this
-0.929891 bobby walked from
-1.123183 bobby turned and
-1.211537 bobby turned on
-0.3256418 bobby let us
-0.8689696 bobby started to
-0.5045821 bobby glanced at
-0.8156063 bobby persisted get
-0.8008152 bobby sprang <unk>
-0.7253771 bobby handed him
-1.053458 bed the chest
-1.279255 bed <unk> as
-1.346718 bed <unk> men
-1.055231 bed and light
-0.7331932 bed of <unk>
-1.001345 bed those men
-1.050029 bed for two
-1.05528 bed he lay
-0.9116741 bed boy </s>
-0.6642711 bed pale <unk>
-1.014165 lay down too
-0.5355745 lay in the
-1.007066 lay her on
-1.039773 lay there still
-0.9533856 lay him in
-1.003695 graham's hand on
-0.6642711 graham's suggestion <unk>
-0.7331282 graham's meaning glance
-0.9369494 graham's words there's
-0.9826589 remained <unk> with
-0.9445297 remained was to
-0.8805181 remained open with
-0.8542416 remained fixed on
-0.9926091 learn how he
-1.001548 paredes's <unk> he
-0.8008152 paredes's odd <unk>
-0.6642711 paredes's arrival <unk>
-0.7347887 paredes's clear <unk>
-1.178948 dreamed that she
-1.206486 dreamed that his
-0.888893 weariness <unk> and
-0.6645641 weariness could <unk>
-1.031278 weariness his clothing
-1.0481 reflections and martin
-1.008256 reflections but at
-0.3975942 reflections on the
-1.00136 slept little i
-0.5968844 slept like a
-0.6826871 slept again </s>
-0.7232414 slept pleasantly his
-0.9894931 lake and in
-0.8895059 lake to the
-1.262823 lake to morrow
-0.8619511 lake for a
-1.042842 lake on all
-1.051941 lake she laid
-1.011361 lake he saw
-0.9830997 lake along this
-1.039601 lake your highness
-0.5810188 movement of the
-1.035445 movement could yet
-1.205925 became <unk> the
-1.196023 became <unk> and
-1.291721 became <unk> of
-1.637993 became <unk> every
-1.012204 became a very
-0.8686654 became in his
-0.3879234 became an <unk>
-0.8416295 became gray and
-0.7217402 became purple as
-0.7005358 became ashamed of
-0.8465529 chief <unk> </s>
-0.5810188 chief of the
-0.8946155 chief fact </s>
-0.8405649 harsh voices he
-0.9677787 harsh voice came
-1.002482 raised to </s>
-1.009055 raised his voice
-1.000428 raised himself on
-1.055149 glanced <unk> first
-1.008906 glanced away while
-0.5791936 glanced at the
-1.136758 glanced at him
-0.5098292 glanced from the
-0.8069851 fellows in <unk>
-1.046383 fellows of nottingham
-1.435892 across the door
-1.532138 across the river
-1.376821 across the water
-1.036625 across their shoulders
-0.6250644 across some <unk>
-0.8701885 telephoned as soon
-0.7143108 telephoned katherine he
-0.6622561 katherine one of
-1.03784 katherine he will
-1.056699 landscape and bobby's
-0.6897254 landscape it was
-1.027471 underbrush had long
-0.5126249 underbrush at the
-1.114064 graham <unk> </s>
-1.647875 graham <unk> dressed
-1.635486 graham <unk> it's
-1.658316 graham <unk> katherine
-0.7607161 graham had <unk>
-0.3975942 graham on the
-1.040345 graham would grasp
-0.7247796 graham there is
-0.7512693 graham as he
-1.025906 graham asked quietly
-0.9076328 graham made it
-0.9875848 graham what are
-1.055737 graham i telephoned
-0.5147431 graham said <unk>
-1.541265 graham said i'll
-1.636843 graham said gently
-0.8773665 graham only one
-1.103627 graham answered if
-1.405413 graham answered they
-1.424268 graham answered softly
-0.7209915 graham interrupted with
-0.6642711 graham desired <unk>
-0.8665225 graham leave the
-0.6825953 graham smiled </s>
-0.7755056 graham persisted to
-0.7253771 graham urged him
-0.3308242 graham moved <unk>
-1.08226 graham moved toward
-1.048947 wearily the grave
-1.000286 wearily by and
-1.047234 grave <unk> graham
-0.9406004 grave in this
-1.051741 grave as chief
-1.055504 grave he learned
-0.9082636 cemetery it had
-1.056911 cemetery to prepare
-0.7090594 prepare the <unk>
-1.033396 prepare a place
-1.052604 silas <unk> room
-0.7850687 silas blackburn </s>
-0.8385097 silas blackburn had
-0.7607161 blackburn had <unk>
-0.2580218 stand by me
-0.85906 stand back and
-0.320231 stand upon the
-0.8711073 stand around and
-1.019411 dull <unk> <unk>
-1.233895 dull <unk> of
-1.503428 dull <unk> who
-0.6771647 dull and <unk>
-1.034187 dull it sounded
-1.207552 repeated the prince
-1.188743 repeated the princess
-1.029412 repeated them when
-0.7955644 buried graham answered
-0.8170038 buried amongst ourselves
-1.039785 softly <unk> all
-1.048244 softly and stuteley
-1.040397 smiled but his
-0.5098292 walking from the
-0.5560033 walking last night
-0.7248736 walking compelled her
-0.9607011 maria and he
-1.022785 maria did her
-0.704212 persisted to <unk>
-0.9964087 persisted get up
-0.8044763 breakfast i <unk>
-1.035704 breakfast then we
-1.052033 sprang <unk> how
-0.4026462 sprang into the
-0.895015 sprang with her
-0.7894439 sprang from his
-0.9666771 sprang up at
-0.7862498 urged him to
-0.9930582 urged bobby to
-1.037138 eat there then
-0.3004996 eat tried to
-1.504542 tried to speak
-1.458529 tried to drive
-1.529948 tried to force
-1.014469 tried on and
-0.9517066 tried everything for
-0.9247896 handed him a
-1.009491 handed bobby a
-1.01544 robinson <unk> his
-0.9510359 robinson so </s>
-1.016587 robinson still sneered
-0.8799988 robinson bobby asked
-0.3173239 robinson entered the
-0.7321037 robinson sneered since
-1.04466 court a while
-1.056699 court and hurry
-0.9870346 court from my
-0.8834024 court this morning
-1.055504 court he scarcely
-0.9532226 court they heard
-1.02088 wandering about for
-0.920328 wandering around perhaps
-1.074806 easy <unk> </s>
-1.019411 easy <unk> <unk>
-1.534054 easy <unk> uncommunicative
-0.6296158 easy for the
-1.001548 uncommunicative <unk> he
-1.021482 uncommunicative eyes whose
-0.9649535 appeared the princess
-0.8129559 appeared <unk> <unk>
-0.9586639 appeared as <unk>
-1.232817 appeared as much
-0.4774842 appeared rather <unk>
-0.698637 appeared moreover to
-0.8096023 appeared walking from
-0.8234117 pleasantly on <unk>
-0.9156326 pleasantly his eyes
-1.053755 clothing <unk> only
-1.05405 clothing he too
-0.5711598 clothing no <unk>
-1.031359 spoke the squire
-1.052214 spoke with pronounced
-1.007829 spoke of </s>
-0.8908227 spoke at once
-0.6979394 spoke are you
-0.8805181 spoke thus with
-0.7314647 spoke seriously yes
-1.021948 rawlins <unk> me
-1.052302 rawlins had returned
-1.017563 rawlins back from
-1.031547 rawlins to drive
-1.002797 rawlins got me
-0.8190189 rawlins started <unk>
-0.8619511 smithtown for a
-0.7542996 smithtown or the
-1.029536 smithtown before either
-1.054958 smithtown i keep
-0.8597757 smithtown yesterday </s>
-1.044483 minister the car
-1.056617 minister of justice
-0.1998294 entrance of the
-0.8501873 front of <unk>
-1.224766 front of him
-0.9943389 front door bell
-0.8165375 bell jenkins passed
-0.949161 jenkins passed through
-0.9302328 jenkins entered and
-0.6825953 jenkins thanks </s>
-1.056086 direction a matter
-0.1998294 direction of the
-0.7874908 direction he had
-1.055396 drawn <unk> hundred
-0.6374014 drawn by the
-1.322602 drawn by an
-0.7290057 drawn along </s>
-1.055944 rise to new
-1.021592 rise again might
-0.896151 rise graham moved
-1.074806 moved <unk> </s>
-1.019411 moved <unk> <unk>
-1.417361 moved <unk> i
-0.997166 moved themselves towards
-0.4291249 moved toward the
-1.600129 entered the house
-1.684674 entered the room
-1.690963 entered the hall
-1.751978 entered the flesh
-1.690963 entered the hut
-1.043127 entered <unk> himself
-1.029963 entered into this
-1.056258 entered and stood
-0.8947681 entered i was
-0.9981247 entered another wood
-0.8983759 faced bobby </s>
-1.219914 suddenly <unk> a
-1.218805 suddenly <unk> with
-0.8079959 suddenly he <unk>
-1.324097 suddenly he paused
-1.055737 suddenly i hate
-0.6969822 suddenly cleared the
-0.8981524 suddenly rushed forth
-0.9047001 miss here i
-0.8660934 miss graham's meaning
-1.051788 glance <unk> back
-1.027277 wants to be
-1.339085 wants to repeat
-0.8742433 paid him with
-1.001165 paid i asked
-1.008851 paid me five
-0.9716792 paid hundred a
-0.6100669 rushed by <unk>
-0.5098292 rushed from the
-0.8594869 rushed out <unk>
-0.4085806 rushed towards the
-0.5042792 rushed forth with
-0.5842025 courthouse a <unk>
-0.9025031 courthouse probably to
-1.011045 pay to my
-0.8834024 pay this morning
-0.9373551 pay them with
-1.04656 pay him will
-1.013246 pay me <unk>
-1.113033 pay me in
-0.8732288 thanks i am
-0.704212 fail to <unk>
-0.8465529 bobby's <unk> </s>
-0.906414 bobby's questions at
-0.7347887 bobby's thoughts <unk>
-1.05777 expressed the need
-0.933447 expressed <unk> of
-0.8557429 promised to <unk>
-1.391108 promised to do
-1.529085 promised to pay
-1.02058 necessary <unk> on
-1.023052 necessary to stay
-0.6296158 necessary for the
-1.053009 panamanian had changed
-1.039559 panamanian to return
-0.7090594 return the <unk>
-0.9079474 return <unk> to
-0.9700251 return to the
-1.652477 return to england
-1.613833 return to our
-1.652858 return to france
-0.8849275 return again at
-0.9983896 cedars again i
-0.9374768 cedars above whose
-0.3405509 cedars silas blackburn
-0.9205234 compelled her to
-0.7862498 compelled him to
-0.5355745 remain in the
-0.6296158 remain for the
-0.7331282 remain buried amongst
-0.933447 present <unk> of
-0.1899837 present in the
-1.0543 present it roused
-0.8842295 present if he
-0.7659034 present themselves to
-1.055149 mournful <unk> house
-0.969016 mournful face or
-0.9705556 therefore he would
-1.046756 therefore my answer
-1.016587 therefore still owe
-0.3173239 therefore entered the
-0.9481191 crush a man
-0.5810188 crush of the
-0.7050788 crush his <unk>
-1.241049 sum of one
-0.9978924 sum of a
-1.050553 sum but keep
-1.005936 sum yet graham
-1.049068 grasp the balcony
-0.5126249 grasp at the
-0.6345039 grasp suddenly he
-1.053458 support the opinion
-1.053523 support his earlier
-0.8967929 virtue it <unk>
-1.056815 virtue to lose
-1.051277 virtue but sarah
-1.055392 virtue he gives
-0.9710258 virtue that's what's
-1.002019 virtue question are
-1.051462 ill <unk> more
-0.8126238 ill to <unk>
-1.355701 ill to morcerf
-1.051665 ill at ease
-1.055662 difficulty in walking
-0.9068645 difficulty of his
-1.039492 difficulty about paying
-0.8412208 judge of a
-1.035954 judge could hold
-1.013227 judge why when
-0.8361258 hold of the
-0.4282149 hold of him
-0.7554264 hold she had
-1.05143 hold as bonds
-0.9602634 hold your tongue
-0.7649184 hold first of
-1.316003 hold me at
-1.334377 hold me only
-0.8626305 witness the <unk>
-1.531771 witness the silent
-1.532504 witness the definite
-1.004926 witness those gentlemen
-1.05528 witness he fixed
-1.024066 fixed a pretty
-0.3975942 fixed on the
-1.009812 fixed his attention
-1.032538 lawyer was there
-0.6267522 lawyer who <unk>
-0.5560033 hall last night
-1.041134 hall when graham
-0.8076192 hall holding him
-0.9074342 hall rawlins had
-0.6643086 reply with a
-0.9926082 reply that had
-0.7006021 reply he <unk>
-0.7088141 reply oh i
-0.5842025 worked a <unk>
-0.5355745 worked in the
-0.9160868 worked he's a
-1.013152 worked us up
-0.6600345 opening of the
-1.355111 opening of court
-1.030481 opening his door
-1.052931 vast <unk> that's
-1.056846 vast and magnificent
-1.046262 forgive me now
-1.022325 forgive us carlos
-1.037047 forgive bobby let
-0.8937464 staircase <unk> the
-0.8367965 staircase was the
-0.8170038 staircase groaned beneath
-1.011547 carlos for that
-0.7229775 carlos may have
-0.8207891 carlos gave me
-1.040321 bygones are bygones
-0.6073575 bygones isn't that
-1.056846 flesh and bones
-0.5597653 flesh around his
-1.053151 worry had increased
-0.8725643 worry as to
-0.7090594 increased the <unk>
-0.8657888 increased self doubt
-1.056319 impression of yesterday
-1.031613 impression it could
-0.8367965 attorney was the
-0.7981352 attorney realized that
-0.6022873 attorney appeared as
-0.9068645 measure of his
-0.9232624 strength she got
-0.9688573 strength his mind
-0.9698966 law won't hold
-0.6642711 law watched <unk>
-1.056846 efforts and encouraged
-1.056911 efforts to sound
-0.7050788 sound his <unk>
-0.4361044 sound followed by
-1.001821 action those can
-1.037216 action bobby didn't
-0.9859609 glancing in all
-1.047756 glancing at bobby
-0.9079474 wishes <unk> to
-0.8799988 wishes bobby answered
-1.0481 sea and land
-0.8311159 sea as the
-0.9079474 immediately <unk> to
-0.704212 immediately to <unk>
-1.051422 immediately but later
-0.982703 immediately even that
-0.4085806 immediately towards the
-0.8412208 indifference of a
-0.8165375 indifference chance led
-0.7331932 chance of <unk>
-1.056911 chance to alter
-0.5609854 chance led him
-0.9757502 led into <unk>
-1.012204 led a very
-0.5098292 led from the
-1.200968 led him into
-0.9210512 led him to
-0.4250851 led thee to
-0.5126249 thicket at the
-0.4200525 thicket less <unk>
-0.436606 hurry toward him
-0.8799988 hurry bobby answered
-0.9896371 sneered since everybody
-0.8123631 sneered you'll be
-1.053336 what's the situation
-0.9926494 what's in it
-0.4758038 what's called <unk>
-1.035457 you'll be at
-0.8115944 you'll confess bobby
-0.8170038 you'll easily judge
-0.9463864 blood <unk> in
-0.8187088 blood run <unk>
-1.001548 falling <unk> he
-1.34704 falling in then
-1.29957 falling in love
-0.8937464 paused <unk> the
-0.6771647 paused and <unk>
-0.704212 paused to <unk>
-0.5810188 labour of the
-0.7312093 labour preserves us
-0.6600345 nature of the
-1.245932 nature of their
-1.051579 nature for its
-1.266927 imposed upon by
-1.272702 imposed upon them
-0.6642711 roofs smoke <unk>
-0.9463864 smoke <unk> in
-0.7326156 smoke shroud above
-1.05636 weaving a shroud
-0.5810188 weaving of the
-1.056815 shroud to lower
-0.4117487 shroud above the
-1.033468 melancholy <unk> which
-0.7696089 melancholy office and
-0.6825953 melancholy walls </s>
-0.7347887 walls dirty <unk>
-1.038679 forest and saw
-1.027033 forest but a
-0.6296158 forest for the
-0.9992927 forest because it
-0.5016792 forest these <unk>
-0.7263858 forest sometimes one
-0.6771647 dismal and <unk>
-0.731337 dismal sky last
-0.5810188 torn of the
-1.002503 torn off his
-0.933447 careless <unk> of
-0.9363056 careless tired people
-0.9760902 path the prince
-1.008676 path yet whose
-0.5355745 justice in the
-1.037466 death is at
-1.025604 death in your
-0.7331932 death of <unk>
-0.5809484 death were <unk>
-0.9653849 death when it
-0.7299348 death maria did
-0.3572175 death chamber </s>
-1.04983 fingers <unk> upon
-1.055032 fingers of time
-0.3975942 fingers on the
-0.6728293 fingers now and
-1.354913 power of making
-1.355308 power of accusation
-0.704212 power to <unk>
-0.9224354 power behind his
-0.7175146 power sublime that
-0.8916361 accusation he could
-0.3353388 accusation against the
-1.075376 fresh <unk> the
-0.9578998 fresh <unk> <unk>
-0.6456492 fresh air and
-0.6825953 fresh flowers </s>
-1.349796 itself <unk> like
-1.35864 itself <unk> created
-1.015265 itself i cannot
-0.5648117 speaker deep enough
-0.933447 definite <unk> of
-0.7090594 interest the <unk>
-1.030853 interest did beatrice
-1.053691 apprehension his approaching
-0.8496906 apprehension keeps you
-0.7090594 approaching the <unk>
-0.7986513 approaching ordeal </s>
-1.058206 mourning <unk> rolled
-0.5810188 mourning of the
-0.6642711 mourning gloves <unk>
-0.4026462 harmony into the
-1.049539 harmony at these
-0.5098292 emerged from the
-0.8187088 emerged glanced <unk>
-0.6771647 natural and <unk>
-1.031181 natural to imagine
-0.9637225 natural enough he
-1.048586 slowly the truth
-0.6997912 slowly back to
-0.7735312 slowly grasp the
-0.8325052 sad business <unk>
-0.9659933 sad i shall
-0.8622401 sad though <unk>
-0.7925133 sad office i
-0.7133346 sad face was
-0.7315924 sad event poor
-0.7489552 crossing is the
-0.5810188 crossing of the
-1.042901 salvation were already
-0.8189207 salvation he was
-1.036297 groom <unk> about
-1.021654 groom has brought
-0.5588345 groom stood at
-0.4686351 ready doctor groom
-1.00456 creeps too makes
-1.054603 makes that remark
-1.054075 makes it easy
-0.3879234 makes an <unk>
-0.8518669 makes me <unk>
-0.968805 blame in that
-0.847016 blame carlos for
-1.055737 share i seek
-0.8135385 share bobby said
-1.048125 asking as bobby
-1.242609 asking myself since
-1.242222 asking myself whether
-1.010879 weak <unk> but
-0.9525195 weak and i
-1.046575 move my hands
-0.9480029 move under my
-0.9045709 move either she
-1.058123 acquired <unk> influence
-0.9307681 direct her eyes
-1.038792 direct your body
-1.232099 pocket with one
-1.139381 pocket with that
-0.9074916 pocket them and
-0.5882314 pocket might have
-1.013503 pocket book but
-0.9969518 pocket book he
-1.056846 shape and character
-1.009068 ghosts back with
-1.041806 ghosts in front
-1.352247 spoken to graham
-1.356087 spoken to howells
-0.5355745 howells in the
-0.9522234 idea bobby turned
-0.7490822 guilty say so
-1.306277 changed his clothing
-1.349507 changed his innocent
-0.9991521 changed life himself
-1.097138 perfectly <unk> to
-1.353699 perfectly <unk> beneath
-1.025592 perfectly like other
-1.031938 opposite the district
-0.9880745 opposite to me
-0.901191 opposite shore it
-0.9556051 scarcely believe his
-0.5045821 scarcely glanced at
-1.009246 clothed men in
-1.287854 clothed men opened
-1.056552 chair and followed
-0.9162696 chair arm were
-1.050951 arm with another
-1.044187 arm were restless
-0.6819145 arm put me
-0.5810188 stairs of the
-0.3975942 stairs on the
-0.8805181 stairs talking with
-0.5842025 clergyman a <unk>
-0.1929741 clergyman shook hands
-1.022939 opened the door
-1.045596 opened by thomson
-0.6374014 followed by the
-1.332507 followed by rawlins
-0.8773046 followed this is
-1.006347 followed how she
-1.054903 entire <unk> five
-0.9516984 entire company crowded
-1.048947 crowded the stairs
-0.9762794 crowded along with
-0.5436504 shook hands </s>
-1.158017 shook hands with
-0.8619511 need for a
-1.282109 need not say
-1.345402 need not delay
-0.9269064 delay it would
-1.039399 delay your cousin
-0.7633242 cousin is <unk>
-0.9694109 cousin who has
-0.8543263 cousin standing at
-0.7090594 desk the <unk>
-0.9607011 desk and he
-0.7282119 desk see what
-0.2644899 chest of drawers
-1.036297 drawers <unk> about
-0.4665844 drawers two <unk>
-1.057524 watched the lights
-0.8465529 watched <unk> </s>
-1.039785 keeps one from
-0.7728768 keeps back the
-1.010801 keeps him awake
-0.8398785 keeps you <unk>
-0.4792417 faults do you
-1.040484 gives up good
-1.281107 gives off sarah
-1.281855 gives off heat
-1.011045 dollars to my
-1.051191 dollars for poor
-0.7327437 dollars meant four
-1.052875 excuse for wetting
-1.044338 excuse you said
-1.297695 excuse me and
-1.365741 excuse me but
-1.611213 excuse me will
-1.623212 excuse me excuse
-1.053421 needs <unk> forth
-0.9847609 thy <unk> that
-0.8597757 thy business </s>
-0.8648762 thy years full
-0.9773209 thy heart thy
-0.7329999 thy footsteps unto
-0.8132042 thy beauty and
-0.7329999 thy fair appearance
-0.8937464 beauty <unk> the
-1.056111 beauty and thy
-1.174185 beauty of it
-1.239232 beauty of her
-0.2219876 beauty asked the
-1.509933 thou <unk> must
-1.433331 thou <unk> me
-1.525945 thou <unk> turn
-1.036446 thou in him
-0.5970297 thou said the
-0.7850687 thou art </s>
-0.8487615 thou art gone
-0.9618526 art gone but
-1.056699 ay and show
-0.7930983 ay me </s>
-0.8895059 thee to the
-0.8126238 thee to <unk>
-0.7830161 thee for <unk>
-0.8763841 thee no more
-1.069775 ah you are
-1.203033 ah you must
-1.015359 receiving <unk> by
-1.013801 receiving us who
-0.5042715 doth <unk> </s>
-1.273978 doth <unk> and
-1.468181 doth <unk> that
-0.8463119 doth that <unk>
-0.9983923 doth first begin
-0.6969822 doth prepare the
-1.022633 crystal can show
-1.007347 crystal eyes but
-0.774865 fair appearance <unk>
-0.2388878 kings <unk> <unk>
-1.022625 kings with whom
-0.9079474 strong <unk> to
-0.7281567 strong lift out
-0.9187137 alas why <unk>
-0.4792417 alas do you
-1.028901 o two instead
-0.4924518 o tis the
-0.7242451 o henry had
-0.8188557 tis the <unk>
-1.329653 tis the first
-0.9463864 tis <unk> in
-0.4908048 tis late and
-0.8778263 tis fine for
-0.6771647 sin and <unk>
-1.053822 sin that mine
-0.9560131 drew back </s>
-1.04615 drew from douglas
-1.182737 douglas not in
-1.344391 douglas not immediately
-0.9072394 douglas before his
-0.7331932 consequence of <unk>
-1.027275 consequence to which
-1.056846 content and gain
-1.055542 content i die
-0.977433 content myself with
-0.8901939 reproach after which
-0.8375112 reproach himself for
-0.6622561 cried one of
-1.048707 cried the ladies
-0.7452137 cried out the
-0.8506347 cried he <unk>
-1.436938 cried he i
-1.525779 cried he softly
-0.9911233 cried no one
-0.4819589 cried montfichet </s>
-0.5810188 key of the
-0.8916361 key he could
-0.7174776 send down the
-1.007668 send to morrow
-0.6296158 send for the
-1.047202 send him back
-0.8463119 scruples that <unk>
-0.8044763 scruples i <unk>
-1.055314 written <unk> took
-0.9187524 written during these
-1.058267 thank you </s>
-1.295879 thank you no
-0.9432973 thank god no
-0.9204595 thank heaven stay
-0.8145226 easily judge why
-0.8638356 easily followed how
-0.7211162 easily consoled you
-1.339085 continued to fix
-1.355894 continued to play
-0.9848569 continued far before
-0.7209915 acute sympathy with
-1.040182 till the second
-0.2603289 till to morrow
-0.8683772 till at last
-0.9232624 till she got
-0.8983399 griffin however expressed
-1.044739 third of these
-0.6022873 third appeared as
-0.6845008 spot with <unk>
-0.8405649 spot whence he
-0.9847609 touches <unk> that
-1.018215 touches with which
-0.7331932 point of <unk>
-1.003437 point after it
-1.055752 departed in consequence
-0.7799347 departed do not
-1.32305 travel and is
-1.010092 travel and the
-1.056617 affairs of numerous
-0.7579046 affairs took up
-0.8983399 affairs die sometimes
-1.005561 supreme <unk> </s>
-1.158093 supreme <unk> in
-1.022157 passion before when
-1.047481 passion my joy
-0.8937464 vision <unk> the
-0.7331932 vision of <unk>
-0.6432104 vision under his
-0.9162294 sounded strange and
-0.8846419 sounded dull it
-0.9880745 mentioned to me
-0.7688478 mentioned but the
-1.04718 mentioned this death
-1.055056 delighted he held
-0.7777731 delighted shriek of
-1.051327 sacrifice she already
-0.4339263 sacrifice thank you
-1.005951 danglars is his
-1.052868 danglars had paid
-0.2377454 danglars it is
-0.6979394 danglars are you
-1.018763 danglars how do
-1.002068 danglars room as
-0.7347887 danglars carelessly <unk>
-0.8808607 danglars smiling </s>
-0.9605214 danglars smiling come
-0.6969822 danglars signature the
-1.048466 signature the next
-0.916719 signature alone and
-0.8619511 executed for a
-1.036439 executed their melancholy
-0.5355745 corpse in the
-0.8808607 winding sheet </s>
-0.9406398 winding sheet was
-1.035466 sheet was nothing
-0.8054747 sheet which was
-1.049749 indeed <unk> has
-1.033351 indeed and this
-1.008341 indeed could a
-0.8631528 indeed any other
-0.2528878 indeed i do
-0.6793122 indeed said the
-1.009857 indeed said danglars
-1.157615 indeed no said
-1.337391 indeed no sooner
-1.007244 indeed only i
-0.9683529 joy she did
-1.047481 joy my delight
-0.80446 delight it is
-1.025219 delight how innocent
-1.027942 papers and have
-1.043636 papers were heavy
-1.01811 papers left others
-0.9007284 assassin asked morrel
-0.7564252 assassin benedetto </s>
-0.8824888 benedetto so i
-0.8170038 benedetto besides besides
-0.8912131 sooner had the
-0.9489765 sooner probably been
-1.264555 reception room no
-1.281304 reception room filled
-1.041893 villefort in vain
-1.03956 villefort be so
-1.012592 villefort without seeking
-1.037832 villefort only return
-1.022963 twelve the the
-1.047564 twelve <unk> they
-0.8496898 twelve and the
-0.704212 twelve to <unk>
-1.034662 twelve o'clock the
-1.069943 twelve o'clock i
-0.9875848 heavens what are
-0.9967847 heavens my poor
-0.9694109 procureur who has
-1.025327 procureur again becoming
-0.9481191 becoming a man
-0.8578888 becoming really <unk>
-1.05777 lifted the sheet
-0.914459 lifted up his
-0.9373551 presented them with
-0.9957758 presented himself at
-1.049987 occasion and which
-0.9005899 occasion for he
-1.049568 alter as might
-1.053691 alter his sleeping
-1.001852 rolled down his
-0.4026462 rolled into the
-1.055393 rolled in millions
-0.7090594 equally the <unk>
-0.9079474 equally <unk> to
-1.034328 rich and who
-1.048132 rich so beautiful
-0.7489552 funeral is the
-0.933447 funeral <unk> of
-0.7217402 funeral procession as
-0.6235813 procession there was
-0.8725643 procession as to
-1.056258 marriage and death
-0.8412208 marriage of a
-1.053458 gradually the reception
-0.8937464 gradually <unk> the
-1.485422 debray i wonder
-1.484898 debray i believe
-1.120934 debray i am
-0.8661198 debray like the
-0.08589916 debray chateau renaud
-0.7874456 army well i
-0.6060648 standing in the
-1.326326 standing in front
-0.5126249 standing at the
-0.9618693 standing there she
-1.031359 force the squire
-0.8815996 force tears as
-0.8960103 brother or a
-0.9483808 brother look and
-1.100185 chateau renaud </s>
-1.129831 chateau renaud and
-1.148776 chateau renaud of
-1.23694 chateau renaud did
-1.228034 chateau renaud when
-1.056846 renaud and beauchamp
-1.04648 renaud of debray
-0.6923255 renaud did you
-0.823211 renaud when we
-0.855272 beauchamp but he
-0.8447692 beauchamp poor girl
-0.8398785 event you <unk>
-0.8447692 event poor girl
-0.931232 gentlemen he said
-0.7020687 gentlemen every day
-0.966009 banker is he
-0.8808113 banker i have
-0.966615 banker danglars is
-0.8626305 replied the <unk>
-1.393409 replied the old
-1.299279 replied the princess
-0.7986513 replied noirtier </s>
-1.057958 monte <unk> receipt
-0.7682199 monte cristo </s>
-1.669034 monte cristo is
-1.497918 monte cristo the
-0.9546164 monte cristo <unk>
-1.555248 monte cristo in
-1.710802 monte cristo must
-1.658543 monte cristo said
-1.672589 monte cristo no
-1.711777 monte cristo five
-1.723655 monte cristo replaced
-1.71966 monte cristo placed
-1.723655 monte cristo folding
-0.9218383 cristo is not
-1.057647 cristo the balance
-1.075376 cristo <unk> the
-1.068024 cristo <unk> and
-0.7657377 cristo in a
-0.5931028 cristo must be
-0.5970297 cristo said the
-0.9460927 cristo no said
-0.3436837 cristo five millions
-0.6969822 cristo replaced the
-0.5486836 cristo placed the
-0.6969822 cristo folding the
-1.057132 morrel <unk> yes
-0.9903273 morrel with one
-0.7961217 morrel yes </s>
-0.7282834 morrel suffered an
-1.039593 seeking the count
-1.034317 seeking any further
-0.3665241 seeking debray i
-1.056617 smile of condescension
-0.7965481 smile well said
-0.7512693 smile as he
-0.9580299 smile began she
-0.6642711 smile gradually <unk>
-0.7022836 harm towards those
-0.1182339 harm pardon me
-1.012227 honor that this
-1.054277 honor i answered
-0.888893 morcerf <unk> and
-1.022879 morcerf and her
-0.8189207 morcerf he was
-0.2611206 persons of our
-0.7331932 example of <unk>
-1.045963 example they gave
-0.3660476 example look at
-1.230644 daughter and in
-1.290591 daughter and her
-1.043695 besides what asked
-0.9482294 besides brought so
-0.8097552 besides besides what
-1.335944 offered to us
-1.338529 offered to die
-1.007086 eugenie for i
-1.020792 eugenie has left
-1.056405 happy and thus
-1.056524 happy to fall
-1.111441 happy life </s>
-1.220943 happy life but
-0.9734325 happy you must
-0.8412208 pride of a
-0.9584891 pride will ever
-0.9590761 allow that she
-0.9205234 allow her to
-0.8285862 allow me to
-1.016983 france these things
-1.016374 france still baron
-0.1244396 baron if you
-0.849384 baron said monte
-0.7253771 baron determined him
-0.6801169 baron danglars </s>
-0.8732288 consoled i am
-0.9766662 consoled you the
-0.8937464 king <unk> the
-0.9598203 king had already
-1.026279 king of <unk>
-0.440408 king of finance
-0.9840648 king himself he
-0.7090594 finance the <unk>
-0.9425192 finance have you
-0.9787092 philosophers for in
-1.008754 philosophers may well
-1.05777 ascertain the shape
-0.7473425 ascertain whether he
-0.8269847 seriously yes he
-1.058206 fortune <unk> consolation
-1.00073 fortune and a
-0.7629004 fortune to the
-0.7519988 fortune their own
-0.7874908 consolation he had
-1.055542 consolation i ought
-1.01968 bonds with your
-0.245915 bonds in his
-0.8808113 bonds i have
-0.849384 bonds said monte
-0.7259357 bonds how <unk>
-0.5617768 bonds pay me
-0.9520234 pray do so
-0.7312093 pray follow us
-0.5810188 noise of the
-0.8560931 noise came in
-1.04494 alone and here
-0.8912131 alone had the
-0.5355745 alone in the
-1.003504 alone heard while
-0.8790843 alone why this
-0.984102 alone no </s>
-0.971923 alone you will
-0.6093368 alone understand </s>
-0.698637 alone amount to
-1.048327 added you who
-1.009928 added yes come
-0.7942808 added carelessly he
-1.056846 million and charge
-0.5810188 governor of the
-0.8221595 governor two days
-0.971923 please you will
-0.8773171 please pay to
-1.020358 order at rome
-0.5098292 order from the
-0.5842025 fund a <unk>
-0.9525195 fund and i
-0.8092966 fund deposited by
-0.9441799 credit really it
-1.009944 credit upon me
-0.7267647 credit opened by
-0.2636711 scraps of paper
-1.048927 believed it what
-0.2645433 placed the bonds
-0.9161905 placed a little
-0.1899837 placed in the
-0.5541023 placed over the
-1.038887 folding the five
-1.058289 folding <unk> inside
-0.8686654 notes in his
-0.9843868 notes most decidedly
-1.058289 curious <unk> sound
-0.9529993 curious i will
-0.2955746 six thousand francs
-1.190822 six millions i
-1.243632 six millions between
-0.8073149 six kings with
-1.049068 francs the receiver
-1.035218 francs a month
-1.055752 francs in bank
-1.01274 francs but to
-0.9529993 francs i will
-0.9797552 francs oh a
-0.9183496 owe this money
-1.008851 owe me five
-1.049495 receipt is money
-0.8933077 receipt in a
-1.352342 receipt in full
-0.9219187 receipt on his
-0.9647523 receipt believe your
-0.8778427 receipt than you
-0.9272049 charity fund a
-0.8985086 charity fund and
-0.6857088 perspiration between <unk>
-0.9116682 perspiration started from
-0.2644966 thomson and french
-1.062417 pardon me i
-1.493665 pardon me then
-1.506577 pardon me count
-1.005077 mere nothing said
-0.9977158 mere woman however
-0.9794341 signatures but you
-1.03476 signatures or they
-1.055752 bankers in transacting
-0.849384 bankers said monte
-1.020566 transacting at constantinople
-0.9060936 transacting business i
-1.075376 laugh <unk> the
-1.268618 laugh <unk> but
-0.9029714 laugh as i
-0.6250644 obtain some <unk>
-1.039601 obtain your signatures
-0.9741829 faint indeed only
-0.8815996 faint smile as
-1.003435 receiver and if
-0.8653974 receiver general held
-0.9171174 receiver started back
-0.5810188 impertinence of the
-0.9195067 charities present themselves
-0.9783446 charities alone amount
-0.9079474 receive <unk> to
-0.6219205 receive my <unk>
-1.045512 amount of five
-1.056331 amount to twenty
-1.056258 condescension and sitting
-0.700253 condescension was <unk>
-1.042007 creditor who visits
-0.8621838 creditor said he
-1.044421 unlimited <unk> one
-0.8146772 unlimited credit upon
-1.05285 visit the death
-0.9590119 visit him he
-0.80446 month it is
-1.052486 month for whole
-0.9483185 month maybe two
-0.7243708 magnificent estate said
-0.9445686 rothschild one on
-1.011063 lafitte and you
-1.056223 leaving a balance
-0.9361302 leaving behind themselves
-0.938093 leaving hard brown
-0.8129559 de <unk> <unk>
-0.7696089 de morcerf and
-0.9371388 reason with you
-0.7225206 reason because they
-0.9352598 spend half his
-0.988318 spend money so
-1.032759 mother <unk> into
-0.9150733 mother her and
-1.047476 mother said well
-0.7751533 mother when he
-1.016602 examination of our
-0.9877719 examination take place
-1.007668 morrow to morrow
-0.9640694 morrow at twelve
-1.017591 morrow why did
-0.8191767 morrow night the
-0.7816786 morrow i'm going
-0.880279 morrow what a
-0.835299 morrow yes but
-0.9646087 morrow morning with
-0.9549856 cost you a
-0.7384488 cost me the
-1.058206 sir <unk> villefort
-1.230644 sir and in
-1.168123 sir and i
-0.7874908 sir he had
-1.022192 sir then it
-0.9724598 listen when one
-0.8501873 pleasure of <unk>
-1.354716 pleasure of seeing
-0.5970297 pleasure said the
-1.046674 affair of benedetto
-1.055067 seek <unk> day
-1.012204 seek a very
-0.7400538 sympathy with the
-0.8171593 sympathy o henry
-1.01544 double <unk> his
-0.33144 double pleasure of
-1.035218 fifty a month
-0.2955746 fifty thousand francs
-0.9578998 desires <unk> <unk>
-1.340006 desires <unk> before
-1.056022 desires of mine
-1.158093 cry <unk> in
-1.253779 cry <unk> from
-1.051533 cry as dark
-1.054212 rain that near
-0.7607161 rain had <unk>
-1.056331 rain to let
-1.008367 rain oh might
-1.007464 rain gave amory
-0.897965 rain filled air
-1.00073 wine and a
-1.010001 wine to him
-0.6296158 wine for the
-0.9324254 wine as she
-1.022517 wine has worked
-1.030471 wine did certainly
-0.7799185 wine see the
-1.05777 mass the sky
-0.6845008 sky with <unk>
-0.8595785 sky last a
-1.048658 line on line
-0.8366187 line three months
-0.6771647 danced and <unk>
-0.7140666 danced about the
-0.8465529 yellow <unk> </s>
-1.005561 ancient <unk> </s>
-1.342386 ancient <unk> must
-0.7735312 ancient fence the
-0.6972132 rising up the
-1.0352 rising more immediately
-0.8132042 rising crowd and
-1.045727 scattering a stray
-1.045222 scattering of people
-0.6600345 smell of the
-1.174185 smell of it
-1.25187 tired <unk> he
-1.35864 tired <unk> girls
-0.2643542 tired and poor
-0.9561988 tired of it
-0.7830161 tired for <unk>
-1.024878 tired people helped
-1.056405 laughter and sweet
-1.052875 laughter for screaming
-0.7281928 laughter before the
-0.9628242 laughter three to
-1.055813 amory a feeling
-0.8447933 amory what he
-0.7315924 amory considered poor
-1.014887 amory saw only
-0.9266172 amory suddenly i
-1.044483 subway the car
-1.023154 subway when a
-0.6470388 thrusting themselves at
-0.846263 thrusting open the
-0.9927125 seat to a
-1.042642 seat or seat
-1.047355 seat no desire
-0.8126709 seat damp are
-0.1824213 seat absorbing <unk>
-1.000267 hating her for
-0.9631211 hating him for
-1.052652 disgust that men
-0.94953 disgust probably thought
-0.7942808 battle field he
-1.016694 battle answered robin
-0.6897254 rotten it was
-0.7232901 rotten now </s>
-1.049749 dirty <unk> where
-0.6093368 dirty river </s>
-0.8660934 dirty french rivers
-1.005561 coffee <unk> </s>
-1.218805 coffee <unk> with
-0.7331932 coffee of <unk>
-1.026705 danger of being
-0.6897254 danger it was
-0.4792417 secret do you
-0.9640067 secret things he
-0.8908126 secret shall <unk>
-0.9353081 hate them for
-0.8964685 hate amory saw
-1.027358 horrible never before
-0.8825001 horrible evil in
-0.8163821 horrible secret shall
-1.051596 henry had found
-1.02504 henry might return
-0.888893 physical <unk> and
-0.7263858 physical reactions one
-1.056846 dignified and grave
-0.8137501 dignified attitude might
-1.056518 problem of poverty
-1.051553 problem at present
-0.5620697 roused by the
-1.023034 roused only his
-1.001548 profound <unk> he
-0.8065552 profound reflections on
-0.9119573 reactions one hundred
-0.9501766 reactions as a
-0.813503 alike as <unk>
-1.039125 alike no not
-0.8779222 lose just as
-0.7278082 lose her <unk>
-0.639513 lose next she
-0.6771647 youth and <unk>
-1.046277 youth as all
-0.7043038 youth when i
-0.2644659 calories of virtue
-0.8999709 calories gone </s>
-1.045943 simper and never
-1.055752 simper in delight
-0.8496898 remark and the
-1.020916 remark again only
-0.9150984 faces during this
-0.7077313 faces simper in
-1.047385 innocent the poor
-0.8132042 innocent laughter and
-0.5842025 state a <unk>
-0.7331932 state of <unk>
-1.056846 impressions and physical
-0.320231 impressions upon the
-0.6545069 seventh street </s>
-1.132372 seventh street or
-0.8674515 losing it </s>
-0.8300947 losing all <unk>
-1.028312 eating it all
-0.8942832 eating then she
-0.1187632 eating preserved citrons
-0.2265241 repeat her <unk>
-1.053176 appendicitis <unk> maybe
-0.6273351 appendicitis so <unk>
-0.5864985 beatrice go to
-0.983211 beatrice said and
-1.038427 beatrice only wilder
-0.8132873 beatrice eleanor like
-1.024676 uncle had only
-0.9936034 uncle has a
-0.9587934 surely had never
-0.8945677 surely we can
-0.2598748 absorbing <unk> from
-0.700253 rosalind was <unk>
-1.047343 rosalind not like
-0.8111339 rosalind eleanor were
-0.9730618 eleanor would <unk>
-0.9747869 eleanor were all
-0.9052478 eleanor like beatrice
-0.6771647 wilder and <unk>
-1.047714 rivers all brown
-0.6458371 rivers twenty four
-0.8129559 jill <unk> <unk>
-1.054838 jill was jill
-1.042428 jill what could
-0.8166929 darned uncomfortable seat
-0.6825953 darned bell </s>
-0.8937464 killed <unk> the
-0.6100669 killed by <unk>
-0.5139339 clara first <unk>
-0.8170038 clara rosalind eleanor
-0.8465529 american <unk> </s>
-0.8128249 american eleanor would
-1.046348 brave <unk> well
-1.055676 brave a sight
-0.9905168 princes from their
-1.001131 princes are in
-0.8152086 princes get away
-1.38256 princess <unk> he
-1.436894 princess <unk> him
-1.521596 princess <unk> i'm
-0.5471212 princess and <unk>
-1.709064 princess and had
-1.659176 princess and was
-1.680801 princess and her
-1.74285 princess and said
-1.045596 princess by weight
-0.9926082 princess that had
-1.050046 princess had just
-0.80446 princess it is
-1.518502 princess was ever
-1.522583 princess was nearly
-1.523814 princess was safe
-0.8614947 princess to be
-0.8683772 princess at last
-0.9199992 princess beyond everything
-0.8824888 princess so i
-0.9847822 princess he found
-0.7997883 princess heard that
-0.7906231 princess after him
-1.001681 princess i think
-0.4735278 princess did not
-0.1472464 princess said he
-0.5838223 princess sat and
-1.251114 princess looked wild
-1.251405 princess looked almost
-0.9338329 princess perhaps she
-0.9319797 princess returned was
-0.9481026 princess gave a
-0.9669925 princess gave him
-0.8147804 princess laughing now
-1.008329 princess come then
-0.5226831 princess began to
-0.8171593 princess apparently asleep
-0.7699104 perfection that he
-0.7925133 perfection itself i
-0.9079474 cannot <unk> to
-1.009141 cannot tell how
-0.9419634 cannot stay you
-0.9586328 cannot let you
-0.5793359 follow their <unk>
-0.8706987 follow us with
-1.055964 gravity and perhaps
-1.038753 gravity who could
-0.6600345 advantage of the
-1.226817 advantage of this
-1.037909 princesses who are
-1.011276 princesses got lost
-1.04712 sometimes one lovely
-0.888893 sometimes <unk> and
-1.04176 neighbourhood there lived
-1.051544 hearty <unk> now
-0.4110283 hearty laugh <unk>
-0.9747517 screaming looking over
-0.7874908 instant he had
-0.1853896 instant shout </s>
-1.056699 tunic and sword
-1.039733 caught her so
-0.4928393 caught hold of
-1.058206 shore <unk> rising
-1.319516 shore and went
-1.320325 shore and saw
-0.7657377 shore in a
-0.6897254 shore it was
-1.296741 shore for hours
-1.336774 shore for they
-1.01544 throat <unk> his
-1.020459 throat as often
-1.05636 bore a burden
-0.9186992 bore her the
-0.9384599 naughty man she
-1.136829 naughty naughty man
-0.2156712 naughty naughty naughty
-1.039349 ascend he thought
-0.8170038 ascend slowly grasp
-0.8684567 bewitched princess and
-0.4264134 lift out of
-1.025575 lift don't tell
-0.7090594 beheld the <unk>
-0.9463864 beheld <unk> in
-0.9150733 beheld her and
-0.7090594 weight the <unk>
-0.750212 rock where he
-0.9649535 rock the princess
-1.056552 shriek and sprang
-1.056418 shriek of laughter
-1.049368 shriek she made
-0.9649535 rejoined the princess
-1.046203 rejoined she my
-1.029194 fell that all
-0.7728768 fell back the
-1.003444 fell before i
-0.9406004 events in this
-1.048228 events as we
-0.960656 swim there with
-0.9056185 swim together with
-1.025234 swim more said
-0.5970297 swim said the
-1.030884 cries <unk> their
-0.8412208 cries of a
-0.4055043 cries along the
-0.7782042 balcony and <unk>
-1.352846 balcony and get
-0.8721363 play them all
-0.80446 fear it is
-0.954026 fear but she
-1.033998 fear or when
-1.009721 swam away quietly
-1.025076 swam very gently
-0.9731652 safe in her
-0.9461409 safe for you
-0.7005358 safe crossing of
-0.8363943 chamber but <unk>
-1.048132 chamber so soon
-0.890165 chamber sprang up
-0.8967929 sending it <unk>
-0.959007 sending there for
-0.8126238 resolved to <unk>
-1.338529 resolved to die
-0.9283353 die for her
-1.009539 die before it
-0.5968844 die like a
-0.8572393 die happy </s>
-0.6642711 die sometimes <unk>
-1.0481 leaves and lay
-1.034141 leaves that ever
-1.038679 hole and saw
-0.9495302 hole but it
-0.774865 hole wanted <unk>
-0.9269064 hoped it would
-0.9781674 hoped for </s>
-1.038679 fruits and other
-0.5810188 fruits of the
-0.90942 few men <unk>
-0.3304244 few minutes the
-0.7271439 few tricks when
-0.5842025 contained a <unk>
-0.5711598 contained no <unk>
-0.1940954 flowed over the
-0.6622561 wetted one of
-0.8932528 wetted both the
-0.9613998 prince's body they
-0.1915534 prince's knees but
-0.2442968 knees but he
-1.022939 shut the door
-1.036745 shut them hard
-0.8732288 shut i am
-1.050029 dying for after
-0.8645416 dying prince the
-1.052729 bear the sight
-1.04826 bear it no
-0.9099574 bear us <unk>
-0.8496898 afloat and the
-0.886286 afloat i'm afloat
-0.2436094 asleep and the
-0.6771647 biscuit and <unk>
-0.9864364 biscuit first said
-0.695119 encouraged by <unk>
-1.332793 encouraged by seeing
-0.8824095 oblige you </s>
-1.042325 oblige me by
-0.8742433 feed him with
-0.8391852 feed me i
-1.178841 fed him he
-1.263585 fed him now
-0.7090594 kiss the <unk>
-1.019127 kiss now said
-1.048611 kiss me princess
-1.337964 grew and rose
-1.355764 grew and grew
-1.053336 gush the waters
-1.025309 gush after gush
-1.027353 waters that on
-1.044187 waters were rising
-0.6532861 waters rose and
-1.048289 shone so great
-0.9399264 shone strange in
-0.9575352 shone full on
-0.9649535 nostrils the princess
-0.9307681 nostrils her eyes
-0.9962598 lip it touched
-0.895015 pulled with her
-0.7782042 pulled and <unk>
-1.323303 pulled and pulled
-1.003565 leg and then
-0.7452137 leg out the
-1.048244 rowed and rowed
-1.029536 rowed before round
-0.9460842 rowed though she
-0.7874908 landing he had
-0.8222394 landing stairs of
-1.029395 doctors never came
-0.8648762 doctors therefore entered
-0.9833025 highness <unk> a
-0.5970297 highness said the
-0.9889434 chamberlain had it
-1.042007 chamberlain who roused
-1.007812 chamberlain went back
-0.9926494 yourself in it
-1.015265 yourself i cannot
-0.8496898 cacambo and the
-1.041723 cacambo who worked
-0.5582913 cacambo decided that
-1.056911 ship to egypt
-1.047524 ship this advice
-0.7629004 candide to the
-0.7696089 candide married and
-0.9859609 philosopher in all
-0.9025414 philosopher pangloss the
-0.846263 philosopher martin the
-1.050985 pangloss is extremely
-1.053336 pangloss the philosopher
-0.9847609 pangloss <unk> that
-1.0481 pangloss and martin
-0.8446931 pangloss that i
-0.8367965 pangloss was the
-0.704212 pangloss to <unk>
-1.046689 pangloss for when
-0.9578732 pangloss hold your
-0.7090594 martin the <unk>
-0.8686654 martin in his
-0.3608685 martin without <unk>
-0.4250851 martin seems to
-0.7329999 martin especially concluded
-1.055818 garden and took
-0.7331932 garden of <unk>
-0.8012922 garden which i
-0.8900512 garden you are
-1.05777 sale the fruits
-1.056911 sale to constantinople
-0.9996881 constantinople and that
-0.7830161 impaled for <unk>
-0.8465529 sublime <unk> </s>
-0.9926082 sublime that had
-1.010879 suffered <unk> but
-1.04092 suffered an exclamation
-1.053561 asserted that everything
-1.032255 asserted it still
-0.9998048 dervish is it
-0.801165 dervish who was
-0.8947681 dervish i was
-0.982574 dervish whether there
-0.7735312 dervish shut the
-1.052729 amongst the dead
-1.017496 amongst us again
-0.7735312 amongst ourselves the
-0.9433259 beg you to
-0.9532097 beg me a
-1.05777 worlds the origin
-0.5810188 soul of the
-0.7493723 mufti had been
-0.9309646 mufti i do
-0.7172901 mufti nor of
-1.020566 strangled at constantinople
-0.7925133 strangled mufti i
-0.5451763 estate would be
-1.05087 estate said candide
-0.8808113 turk i have
-0.8621838 turk said he
-1.049038 cultivate it which
-0.9484383 cultivate them our
-0.9490719 cultivate having said
-1.02142 cultivate our garden
-0.888893 sons <unk> and
-1.053622 sons and two
-0.6845008 citrons with <unk>
-0.1574467 citrons and pistachio
-0.2350647 pistachio nuts </s>
-1.100196 pistachio nuts and
-0.6771647 nuts and <unk>
-1.05053 pierced with three
-1.048023 pierced me through
-0.7738976 honest man </s>
-0.7243708 honest turk said
-1.058041 inquisition <unk> words
-0.5975883 inquisition if you
-0.1244396 america if you
-0.1572935 stabbed the baron
-0.1136689 sheep from the
-0.1177674 el dorado you
-0.1526033 dorado you would
-0.134216 preserved citrons and
-0.8042751 wizard who had
-0.6408422 unto them </s>
-1.049201 unto me saying
-0.9148198 unto my father
-0.7266383 unto virgilius not
-1.054343 show that warrenton
-1.007056 show to you
-1.050683 show you some
-0.9793132 show robin that
-1.026409 nottingham <unk> was
-1.045193 nottingham a nottingham
-0.700253 nottingham was <unk>
-0.6825953 nottingham fair </s>
-0.8023248 nottingham apprentice with
-0.6775303 mistress fitzooth <unk>
-0.720876 mistress fitzooth had
-1.167726 mistress fitzooth to
-1.005561 fitzooth <unk> </s>
-1.249401 fitzooth <unk> for
-0.2298533 fitzooth had been
-0.7629004 fitzooth to the
-0.7521108 fitzooth saw that
-0.9913095 tent to see
-1.003715 tent robin suddenly
-0.9657863 forthwith a good
-1.048352 forthwith all ran
-1.013319 stroller and his
-0.8454297 stroller presently </s>
-0.7780078 nay we <unk>
-0.8171593 nay nay lording
-0.731337 nay lording answered
-0.945487 rioting cried out
-1.055662 purse in consolation
-1.044168 purse from us
-0.5250652 george gamewell <unk>
-0.9580643 george montfichet will
-1.068024 gamewell <unk> and
-1.222432 gamewell <unk> that
-1.012227 gamewell that this
-0.7629004 gamewell to the
-0.7232414 gamewell lad his
-0.6845008 apprentice with <unk>
-0.9528828 apprentice set up
-1.048707 robin the wine
-0.7874827 robin with <unk>
-1.075855 robin with his
-1.010092 robin and the
-0.7782042 robin and <unk>
-0.7699104 robin that he
-1.037608 robin was glad
-0.9842148 robin to give
-0.7885142 robin thought of
-0.9640488 robin felt his
-0.1824213 robin carefully <unk>
-0.3173239 robin entered the
-0.9513275 robin suddenly rushed
-0.7232414 robin opening his
-0.9640289 robin alone had
-1.056044 robin fitzooth </s>
-1.142972 robin fitzooth saw
-1.011766 lives he began
-0.9510097 lives next door
-0.9079474 montfichet <unk> to
-1.044793 montfichet a montfichet
-0.8924533 montfichet called out
-1.03676 montfichet will never
-1.017723 montfichet answered feeling
-0.8773171 montfichet gamewell to
-0.6643086 burden with a
-1.029542 burden to their
-0.9463864 squire's <unk> in
-0.8148319 squire's few men
-0.3262514 squire's cheeks </s>
-0.6998035 lording asked the
-1.018067 lording answered warrenton
-0.7607161 stuteley had <unk>
-1.047912 stuteley was by
-0.8042751 stuteley who had
-0.9873765 stuteley shall we
-1.05777 won the battle
-0.8140689 sheriff's house </s>
-0.9381143 sheriff's men </s>
-0.3294785 sheriff's daughter and
-1.046383 sheriff of nottingham
-1.007785 sheriff child quickly
-1.057793 esquire <unk> returned
-0.7906231 esquire after him
-0.6771647 cheeks and <unk>
-0.7607161 lad had <unk>
-1.029687 lad his day
-0.2284318 converse with the
-1.042667 tricks when morning
-0.8465529 e <unk> </s>
-0.6642711 e e <unk>
-1.075376 hut <unk> the
-1.340006 hut <unk> before
-1.048244 hut and stuteley
-0.5355745 hut in the
-0.6643086 warrenton with a
-0.8865848 warrenton had <unk>
-0.8714929 warrenton had been
-0.9377701 warrenton spoke thus
-1.336002 ladder and found
-1.355471 ladder and slowly
-1.023326 save <unk> him
-0.8518669 save me <unk>
-1.029846 sooth his life
-1.022633 sooth i'm beatrice
-0.6296158 geoffrey for the
-0.9079474 d'avrigny <unk> to
-1.015692 d'avrigny said villefort
-0.8968422 d'avrigny rushed towards
-0.8345262 rave sir <unk>
-1.054559 noirtier was near
-0.9993296 noirtier looked upon
-0.9619313 noirtier whose tears
-0.8129559 singing <unk> <unk>
-0.8584985 singing received they
-1.005071 eternal day so
-0.6825953 eternal peace </s>
-1.056911 default to weeping
-0.9694987 default short while
-1.03654 weeping <unk> so
-1.002042 weeping and to
-1.044421 onward <unk> one
-1.019799 onward go leaving
-0.8699802 virgilius not a
-1.022863 virgilius has departed
-1.07494 weep yet <unk>
-1.255647 weep yet do
\end\
| DNS Zone | 3 | sameerkhurana10/Montreal-Forced-Aligner | tests/data/lm/test_lm.arpa | [
"MIT"
] |
/*
* Copyright 2013 The Sculptor Project Team, including the original
* author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.sculptor.generator.formatter
import com.google.inject.Inject
import java.util.Properties
import java.util.regex.Pattern
import org.eclipse.jdt.core.ToolFactory
import org.eclipse.jdt.core.formatter.CodeFormatter
import org.eclipse.jface.text.Document
import org.sculptor.generator.configuration.ConfigurationProvider
import org.slf4j.LoggerFactory
/**
* Uses the JDT {@org.eclipse.jdt.core.formatter.CodeFormatter} to format the generated Java source code.
* <p>
* All full qualified Java are replaced (as long as there is
* no conflict) by their short name and the corresponding import statement is added.
*
* @see JavaCodeAutoImporter
*/
class JavaCodeFormatter {
static val LOG = LoggerFactory.getLogger(typeof(JavaCodeFormatter))
public static val IMPORT_MARKER_PATTERN = "/// Sculptor code formatter imports ///"
@Inject var ConfigurationProvider configuration
@Inject var JavaCodeAutoImporter javaCodeAutoImporter
def format(String path, String code, boolean abortOnError) {
// As fall-back return the original code
var formattedCode = code
// Auto-importing full qualified Java types
val autoImportedCode = javaCodeAutoImporter.replaceQualifiedTypes(code, Pattern.quote(IMPORT_MARKER_PATTERN))
// Use Eclipse JDTs code formatter
val textEdit = getCodeFormatter().format(
CodeFormatter.K_COMPILATION_UNIT.bitwiseOr(CodeFormatter.F_INCLUDE_COMMENTS), autoImportedCode, 0,
autoImportedCode.length(), 0, null)
if (textEdit !== null) {
val doc = new Document(autoImportedCode)
try {
textEdit.apply(doc)
formattedCode = doc.get()
} catch (Exception e) {
LOG.error("Error formating code for '{}'. Using original code from generator", path)
if (abortOnError) {
throw new RuntimeException("Invalid generated Java code in '" + path + "'")
}
}
} else {
LOG.error("Error formating code for '{}'. Using original code from generator", path)
if (abortOnError) {
throw new RuntimeException("Invalid generated Java code in '" + path + "'")
}
}
formattedCode
}
var CodeFormatter codeFormatter
private def getCodeFormatter() {
if (codeFormatter === null) {
val classLoader = Thread.currentThread().getContextClassLoader() ?: this.^class.getClassLoader()
// Read default properties
val props = new Properties()
LOG.debug("Loading default properties for Java code formatter from file 'default-java-code-formatter.properties'")
props.load(classLoader.getResourceAsStream("default-java-code-formatter.properties"))
// Read additional properties
if (configuration.has("java.code.formatter.props")) {
val additionalProps = configuration.getString("java.code.formatter.props")
if (!additionalProps.nullOrEmpty) {
additionalProps.split("[,; ]").forEach [
val stream = classLoader.getResourceAsStream(it)
if (stream !== null) {
LOG.debug("Loading additional properties for Java code formatter from file '{}'", it)
props.load(classLoader.getResourceAsStream(it))
} else {
LOG.warn("File '{}' with additional properties for Java code formatter not found", it)
}
]
}
}
codeFormatter = ToolFactory.createCodeFormatter(props)
}
codeFormatter
}
}
| Xtend | 5 | sculptor/sculptor | sculptor-generator/sculptor-generator-core/src/main/java/org/sculptor/generator/formatter/JavaCodeFormatter.xtend | [
"Apache-2.0"
] |
f = a b
f = a b c
f = a b c d
f = Just b
f = Right b
f = Example a c d
f = ()
a = [1..]
a = [1,2..]
a = [1..2]
a = [1,2..10]
a = [x | x <- xs]
a = [(x, y) | x <- xs, y <- ys]
a = [ x | xs <- [ [(1,2),(3,4)], [(5,4),(3,2)] ], (3,x) <- xs ]
a = [(i,j) | i <- [1,2],
j <- [1..4] ]
a = [ [ (i,j) | i <- [1,2] ] | j <- [1..] ]
f = take 5 [ [ (i,j) | i <- [1,2] ] | j <- [1..] ]
a = (: a)
a = (:< a)
a = (a :)
a = (a :|)
g = h `i` j
a = Data.Just
parseJSON (JSON.Object r) = IncPK <$>
r .: "id" <*>
r .: "nullable_string" <*>
r .: "non_nullable_string" <*>
r .: "inserted_at"
f = do
a <- b =<< c
b <- e >>= g
f = \ x -> x
f = \ (Just a) -> a
f = \ x -> x : a : xs
f = \ g a b -> g <$> a <*> b
f = (-)
f = 1 - 1
f = (-1)
f = (-a)
f = -(1)
foo = catMaybes $ fmap (\p -> (p,) . Just <$> bar p) waz
| Haskell | 3 | matsubara0507/semantic | test/fixtures/haskell/corpus/expressions.A.hs | [
"MIT"
] |
CREATE TABLE "public"."table4"("name" text NOT NULL, "id" serial NOT NULL, PRIMARY KEY ("id") );
| SQL | 3 | eazyfin/graphql-engine | cli/commands/testdata/migrate-squash-test/migrations/1588172668232_create_table_public_table4/up.sql | [
"Apache-2.0",
"MIT"
] |
--TEST--
Test that a property of mixed property type can be overridden by a property of mixed type
--FILE--
<?php
class Foo
{
public mixed $property1;
}
class Bar extends Foo
{
public mixed $property1;
}
?>
--EXPECT--
| PHP | 4 | NathanFreeman/php-src | Zend/tests/type_declarations/mixed/inheritance/mixed_property_inheritance_success.phpt | [
"PHP-3.01"
] |
# Copyright 1999-2020 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cargo git-r3
CARGO_FETCH_CRATES=yes
EGIT_REPO_URI="https://github.com/rust-qt/cpp_to_rust.git"
DESCRIPTION="Generator of Rust-Qt crates."
HOMEPAGE="https://github.com/rust-qt/cpp_to_rust"
SRC_URI=""
LICENSE="MIT"
SLOT="0"
KEYWORDS=""
IUSE=""
CDEPEND="dev-db/sqlite"
DEPEND="${CDEPEND}
virtual/rust
"
RDEPEND="${CDEPEND}
dev-qt/qtchooser
dev-qt/qtcore
"
S="${WORKDIR}/${P}/qt_generator/qt_generator"
| Gentoo Ebuild | 2 | gentoo/gentoo-rust | dev-rust/qt_generator/qt_generator-9999.ebuild | [
"BSD-3-Clause"
] |
module Imports.ImportedDisplayForms where
open import Agda.Builtin.Nat
postulate
_plus_ : Set
{-# DISPLAY _+_ a b = a plus b #-}
| Agda | 2 | cruhland/agda | test/interaction/Imports/ImportedDisplayForms.agda | [
"MIT"
] |
############################
XGBoost Command Line version
############################
See `XGBoost Command Line walkthrough <https://github.com/dmlc/xgboost/tree/master/demo/CLI/binary_classification>`_.
| reStructuredText | 1 | bclehmann/xgboost | doc/cli.rst | [
"Apache-2.0"
] |
{
"index": 5,
"lineNumber": 3,
"column": 2,
"message": "Error: Line 3: Unexpected token ILLEGAL"
} | JSON | 1 | exced/hermes | external/esprima/test_fixtures/invalid-syntax/migrated_0148.failure.json | [
"MIT"
] |
CREATE TABLE "public"."t6" ("id" serial NOT NULL, "created_at" timestamptz NOT NULL DEFAULT now(), PRIMARY KEY ("id") );
| SQL | 3 | gh-oss-contributor/graphql-engine-1 | cli/commands/testdata/config-v2-test-project/migrations/1620138189381_create_table_public_t6/up.sql | [
"Apache-2.0",
"MIT"
] |
/*
ESP32 ECO3 ROM address table
Secure Boot Version 2 API's imported from the ROM
*/
PROVIDE ( ets_secure_boot_verify_signature = 0x4006543c);
PROVIDE ( ets_secure_boot_verify_boot_bootloader = 0x400655ec);
PROVIDE ( ets_use_secure_boot_v2 = 0x4000f8d4);
PROVIDE ( ets_rsa_pss_verify = 0x40065310);
PROVIDE ( ets_mgf1_sha256 = 0x400651a8);
PROVIDE ( ets_emsa_pss_verify = 0x4006520c);
| Linker Script | 1 | lovyan03/esp-idf | components/esp_rom/esp32/ld/esp32.rom.eco3.ld | [
"Apache-2.0"
] |
/*
* "streamable kanji code filter and converter"
* Copyright (c) 1998-2002 HappySize, Inc. All rights reserved.
*
* LICENSE NOTICES
*
* This file is part of "streamable kanji code filter and converter",
* which is distributed under the terms of GNU Lesser General Public
* License (version 2) as published by the Free Software Foundation.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with "streamable kanji code filter and converter";
* if not, write to the Free Software Foundation, Inc., 59 Temple Place,
* Suite 330, Boston, MA 02111-1307 USA
*
* The author of this file:
*
*/
/*
* The source code included in this files was separated from mbfilter.c
* by moriyoshi koizumi <moriyoshi@php.net> on 4 dec 2002.
*
*/
#include "mbfilter.h"
#include "mbfilter_utf7.h"
static int mbfl_filt_conv_utf7_wchar_flush(mbfl_convert_filter *filter);
static size_t mb_utf7_to_wchar(unsigned char **in, size_t *in_len, uint32_t *buf, size_t bufsize, unsigned int *state);
static void mb_wchar_to_utf7(uint32_t *in, size_t len, mb_convert_buf *buf, bool end);
static const unsigned char mbfl_base64_table[] = {
/* 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', */
0x41,0x42,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x4b,0x4c,0x4d,
/* 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', */
0x4e,0x4f,0x50,0x51,0x52,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5a,
/* 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', */
0x61,0x62,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x6b,0x6c,0x6d,
/* 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', */
0x6e,0x6f,0x70,0x71,0x72,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,
/* '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/', '\0' */
0x30,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x2b,0x2f,0x00
};
static const char *mbfl_encoding_utf7_aliases[] = {"utf7", NULL};
const mbfl_encoding mbfl_encoding_utf7 = {
mbfl_no_encoding_utf7,
"UTF-7",
"UTF-7",
mbfl_encoding_utf7_aliases,
NULL,
MBFL_ENCTYPE_GL_UNSAFE,
&vtbl_utf7_wchar,
&vtbl_wchar_utf7,
mb_utf7_to_wchar,
mb_wchar_to_utf7
};
const struct mbfl_convert_vtbl vtbl_utf7_wchar = {
mbfl_no_encoding_utf7,
mbfl_no_encoding_wchar,
mbfl_filt_conv_common_ctor,
NULL,
mbfl_filt_conv_utf7_wchar,
mbfl_filt_conv_utf7_wchar_flush,
NULL,
};
const struct mbfl_convert_vtbl vtbl_wchar_utf7 = {
mbfl_no_encoding_wchar,
mbfl_no_encoding_utf7,
mbfl_filt_conv_common_ctor,
NULL,
mbfl_filt_conv_wchar_utf7,
mbfl_filt_conv_wchar_utf7_flush,
NULL,
};
#define CK(statement) do { if ((statement) < 0) return (-1); } while (0)
static unsigned int decode_base64_char(unsigned char c)
{
if (c >= 'A' && c <= 'Z') {
return c - 65;
} else if (c >= 'a' && c <= 'z') {
return c - 71;
} else if (c >= '0' && c <= '9') {
return c + 4;
} else if (c == '+') {
return 62;
} else if (c == '/') {
return 63;
}
return -1;
}
int mbfl_filt_conv_utf7_wchar(int c, mbfl_convert_filter *filter)
{
int s, n = -1;
if (filter->status) { /* Modified Base64 */
n = decode_base64_char(c);
if (n < 0) {
if (filter->cache) {
/* Either we were expecting the 2nd half of a surrogate pair which
* never came, or else the last Base64 data was not padded with zeroes */
(*filter->output_function)(MBFL_BAD_INPUT, filter->data);
}
if (c == '-') {
if (filter->status == 1) { /* "+-" -> "+" */
CK((*filter->output_function)('+', filter->data));
}
} else if (c >= 0 && c < 0x80) { /* ASCII exclude '-' */
CK((*filter->output_function)(c, filter->data));
} else { /* illegal character */
CK((*filter->output_function)(MBFL_BAD_INPUT, filter->data));
}
filter->cache = filter->status = 0;
return 0;
}
}
switch (filter->status) {
/* directly encoded characters */
case 0:
if (c == '+') { /* '+' shift character */
filter->status = 1;
} else if (c >= 0 && c < 0x80) { /* ASCII */
CK((*filter->output_function)(c, filter->data));
} else { /* illegal character */
CK((*filter->output_function)(MBFL_BAD_INPUT, filter->data));
}
break;
/* decode Modified Base64 */
case 1:
case 2:
filter->cache |= n << 10;
filter->status = 3;
break;
case 3:
filter->cache |= n << 4;
filter->status = 4;
break;
case 4:
s = ((n >> 2) & 0xf) | (filter->cache & 0xffff);
n = (n & 0x3) << 14;
filter->status = 5;
if (s >= 0xd800 && s < 0xdc00) {
/* 1st part of surrogate pair */
if (filter->cache & 0xfff0000) {
/* We were waiting for the 2nd part of a surrogate pair */
(*filter->output_function)(MBFL_BAD_INPUT, filter->data);
}
s = (((s & 0x3ff) << 16) + 0x400000) | n;
filter->cache = s;
} else if (s >= 0xdc00 && s < 0xe000) {
/* 2nd part of surrogate pair */
if (filter->cache & 0xfff0000) {
s &= 0x3ff;
s |= (filter->cache & 0xfff0000) >> 6;
filter->cache = n;
CK((*filter->output_function)(s, filter->data));
} else {
CK((*filter->output_function)(MBFL_BAD_INPUT, filter->data));
filter->cache = n;
}
} else {
if (filter->cache & 0xfff0000) {
/* We were waiting for the 2nd part of a surrogate pair */
(*filter->output_function)(MBFL_BAD_INPUT, filter->data);
}
filter->cache = n;
CK((*filter->output_function)(s, filter->data));
}
break;
case 5:
filter->cache |= n << 8;
filter->status = 6;
break;
case 6:
filter->cache |= n << 2;
filter->status = 7;
break;
case 7:
s = ((n >> 4) & 0x3) | (filter->cache & 0xffff);
n = (n & 0xf) << 12;
filter->status = 8;
if (s >= 0xd800 && s < 0xdc00) {
if (filter->cache & 0xfff0000) {
/* We were waiting for the 2nd part of a surrogate pair */
(*filter->output_function)(MBFL_BAD_INPUT, filter->data);
}
s = (((s & 0x3ff) << 16) + 0x400000) | n;
filter->cache = s;
} else if (s >= 0xdc00 && s < 0xe000) {
/* 2nd part of surrogate pair */
if (filter->cache & 0xfff0000) {
s &= 0x3ff;
s |= (filter->cache & 0xfff0000) >> 6;
filter->cache = n;
CK((*filter->output_function)(s, filter->data));
} else {
CK((*filter->output_function)(MBFL_BAD_INPUT, filter->data));
filter->cache = n;
}
} else {
if (filter->cache & 0xfff0000) {
/* We were waiting for the 2nd part of a surrogate pair */
(*filter->output_function)(MBFL_BAD_INPUT, filter->data);
}
filter->cache = n;
CK((*filter->output_function)(s, filter->data));
}
break;
case 8:
filter->cache |= n << 6;
filter->status = 9;
break;
case 9:
s = n | (filter->cache & 0xffff);
filter->status = 2;
if (s >= 0xd800 && s < 0xdc00) {
if (filter->cache & 0xfff0000) {
/* We were waiting for the 2nd part of a surrogate pair */
(*filter->output_function)(MBFL_BAD_INPUT, filter->data);
}
s = (((s & 0x3ff) << 16) + 0x400000);
filter->cache = s;
} else if (s >= 0xdc00 && s < 0xe000) {
if (filter->cache & 0xfff0000) {
s &= 0x3ff;
s |= (filter->cache & 0xfff0000) >> 6;
filter->cache = 0;
CK((*filter->output_function)(s, filter->data));
} else {
CK((*filter->output_function)(MBFL_BAD_INPUT, filter->data));
filter->cache = 0;
}
} else {
if (filter->cache & 0xfff0000) {
/* We were waiting for the 2nd part of a surrogate pair */
(*filter->output_function)(MBFL_BAD_INPUT, filter->data);
}
filter->cache = 0;
CK((*filter->output_function)(s, filter->data));
}
break;
EMPTY_SWITCH_DEFAULT_CASE();
}
return 0;
}
static int mbfl_filt_conv_utf7_wchar_flush(mbfl_convert_filter *filter)
{
if (filter->cache) {
/* Either we were expecting the 2nd half of a surrogate pair which
* never came, or else the last Base64 data was not padded with zeroes */
(*filter->output_function)(MBFL_BAD_INPUT, filter->data);
}
if (filter->flush_function) {
(*filter->flush_function)(filter->data);
}
return 0;
}
int mbfl_filt_conv_wchar_utf7(int c, mbfl_convert_filter *filter)
{
int s;
int n = 0;
if (c >= 0 && c < 0x80) { /* ASCII */
if ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') || c == '\0' || c == '/' || c == '-') {
n = 1;
} else if (c == ' ' || c == '\t' || c == '\r' || c == '\n' || c == '\'' || c == '(' || c == ')' || c == ',' || c == '.' || c == ':' || c == '?') {
n = 2;
}
} else if (c >= 0 && c < MBFL_WCSPLANE_UCS2MAX) {
;
} else if (c >= MBFL_WCSPLANE_SUPMIN && c < MBFL_WCSPLANE_SUPMAX) {
CK((*filter->filter_function)(((c >> 10) - 0x40) | 0xd800, filter));
CK((*filter->filter_function)((c & 0x3ff) | 0xdc00, filter));
return 0;
} else {
CK(mbfl_filt_conv_illegal_output(c, filter));
return 0;
}
switch (filter->status) {
case 0:
if (n != 0) { /* directly encode characters */
CK((*filter->output_function)(c, filter->data));
} else { /* Modified Base64 */
CK((*filter->output_function)('+', filter->data));
filter->status = 1;
filter->cache = c;
}
break;
/* encode Modified Base64 */
case 1:
s = filter->cache;
CK((*filter->output_function)(mbfl_base64_table[(s >> 10) & 0x3f], filter->data));
CK((*filter->output_function)(mbfl_base64_table[(s >> 4) & 0x3f], filter->data));
if (n != 0) {
CK((*filter->output_function)(mbfl_base64_table[(s << 2) & 0x3c], filter->data));
if (n == 1) {
CK((*filter->output_function)('-', filter->data));
}
CK((*filter->output_function)(c, filter->data));
filter->status = 0;
} else {
filter->status = 2;
filter->cache = ((s & 0xf) << 16) | c;
}
break;
case 2:
s = filter->cache;
CK((*filter->output_function)(mbfl_base64_table[(s >> 14) & 0x3f], filter->data));
CK((*filter->output_function)(mbfl_base64_table[(s >> 8) & 0x3f], filter->data));
CK((*filter->output_function)(mbfl_base64_table[(s >> 2) & 0x3f], filter->data));
if (n != 0) {
CK((*filter->output_function)(mbfl_base64_table[(s << 4) & 0x30], filter->data));
if (n == 1) {
CK((*filter->output_function)('-', filter->data));
}
CK((*filter->output_function)(c, filter->data));
filter->status = 0;
} else {
filter->status = 3;
filter->cache = ((s & 0x3) << 16) | c;
}
break;
case 3:
s = filter->cache;
CK((*filter->output_function)(mbfl_base64_table[(s >> 12) & 0x3f], filter->data));
CK((*filter->output_function)(mbfl_base64_table[(s >> 6) & 0x3f], filter->data));
CK((*filter->output_function)(mbfl_base64_table[s & 0x3f], filter->data));
if (n != 0) {
if (n == 1) {
CK((*filter->output_function)('-', filter->data));
}
CK((*filter->output_function)(c, filter->data));
filter->status = 0;
} else {
filter->status = 1;
filter->cache = c;
}
break;
EMPTY_SWITCH_DEFAULT_CASE();
}
return 0;
}
int mbfl_filt_conv_wchar_utf7_flush(mbfl_convert_filter *filter)
{
int status = filter->status;
int cache = filter->cache;
/* flush fragments */
switch (status) {
case 1:
CK((*filter->output_function)(mbfl_base64_table[(cache >> 10) & 0x3f], filter->data));
CK((*filter->output_function)(mbfl_base64_table[(cache >> 4) & 0x3f], filter->data));
CK((*filter->output_function)(mbfl_base64_table[(cache << 2) & 0x3c], filter->data));
CK((*filter->output_function)('-', filter->data));
break;
case 2:
CK((*filter->output_function)(mbfl_base64_table[(cache >> 14) & 0x3f], filter->data));
CK((*filter->output_function)(mbfl_base64_table[(cache >> 8) & 0x3f], filter->data));
CK((*filter->output_function)(mbfl_base64_table[(cache >> 2) & 0x3f], filter->data));
CK((*filter->output_function)(mbfl_base64_table[(cache << 4) & 0x30], filter->data));
CK((*filter->output_function)('-', filter->data));
break;
case 3:
CK((*filter->output_function)(mbfl_base64_table[(cache >> 12) & 0x3f], filter->data));
CK((*filter->output_function)(mbfl_base64_table[(cache >> 6) & 0x3f], filter->data));
CK((*filter->output_function)(mbfl_base64_table[cache & 0x3f], filter->data));
CK((*filter->output_function)('-', filter->data));
break;
}
if (filter->flush_function) {
(*filter->flush_function)(filter->data);
}
return 0;
}
/* Ways which a Base64-encoded section can end: */
#define DASH 0xFD
#define ASCII 0xFE
#define ILLEGAL 0xFF
static inline bool is_base64_end(unsigned char c)
{
return c >= DASH;
}
static unsigned char decode_base64(unsigned char c)
{
if (c >= 'A' && c <= 'Z') {
return c - 65;
} else if (c >= 'a' && c <= 'z') {
return c - 71;
} else if (c >= '0' && c <= '9') {
return c + 4;
} else if (c == '+') {
return 62;
} else if (c == '/') {
return 63;
} else if (c == '-') {
return DASH;
} else if (c <= 0x7F) {
return ASCII;
}
return ILLEGAL;
}
static uint32_t* handle_utf16_cp(uint16_t cp, uint32_t *out, uint16_t *surrogate1)
{
retry:
if (*surrogate1) {
if (cp >= 0xDC00 && cp <= 0xDFFF) {
*out++ = ((*surrogate1 & 0x3FF) << 10) + (cp & 0x3FF) + 0x10000;
*surrogate1 = 0;
} else {
*out++ = MBFL_BAD_INPUT;
*surrogate1 = 0;
goto retry;
}
} else if (cp >= 0xD800 && cp <= 0xDBFF) {
*surrogate1 = cp;
} else if (cp >= 0xDC00 && cp <= 0xDFFF) {
/* 2nd part of surrogate pair came unexpectedly */
*out++ = MBFL_BAD_INPUT;
} else {
*out++ = cp;
}
return out;
}
static uint32_t* handle_base64_end(unsigned char n, unsigned char **p, uint32_t *out, bool *base64, bool abrupt, uint16_t *surrogate1)
{
if (abrupt || *surrogate1) {
*out++ = MBFL_BAD_INPUT;
*surrogate1 = 0;
}
if (n == ILLEGAL) {
*out++ = MBFL_BAD_INPUT;
} else if (n == ASCII) {
(*p)--; /* Unconsume byte */
}
*base64 = false;
return out;
}
static size_t mb_utf7_to_wchar(unsigned char **in, size_t *in_len, uint32_t *buf, size_t bufsize, unsigned int *state)
{
ZEND_ASSERT(bufsize >= 4); /* This function will infinite-loop if called with a tiny output buffer */
unsigned char *p = *in, *e = p + *in_len;
uint32_t *out = buf, *limit = buf + bufsize;
bool base64 = *state & 1;
uint16_t surrogate1 = (*state >> 1); /* First half of a surrogate pair which still needs 2nd half */
while (p < e && out < limit) {
if (base64) {
/* Base64 section */
if ((limit - out) < 4) {
break;
}
unsigned char n1 = decode_base64(*p++);
if (is_base64_end(n1)) {
out = handle_base64_end(n1, &p, out, &base64, false, &surrogate1);
continue;
} else if (p == e) {
out = handle_base64_end(n1, &p, out, &base64, true, &surrogate1);
continue;
}
unsigned char n2 = decode_base64(*p++);
if (is_base64_end(n2) || p == e) {
out = handle_base64_end(n2, &p, out, &base64, true, &surrogate1);
continue;
}
unsigned char n3 = decode_base64(*p++);
if (is_base64_end(n3)) {
out = handle_base64_end(n3, &p, out, &base64, true, &surrogate1);
continue;
}
out = handle_utf16_cp((n1 << 10) | (n2 << 4) | ((n3 & 0x3C) >> 2), out, &surrogate1);
if (p == e) {
/* It is an error if trailing padding bits are not zeroes or if we were
* expecting the 2nd part of a surrogate pair when Base64 section ends */
if ((n3 & 0x3) || surrogate1)
*out++ = MBFL_BAD_INPUT;
break;
}
unsigned char n4 = decode_base64(*p++);
if (is_base64_end(n4) || p == e) {
out = handle_base64_end(n4, &p, out, &base64, n3 & 0x3, &surrogate1);
continue;
}
unsigned char n5 = decode_base64(*p++);
if (is_base64_end(n5) || p == e) {
out = handle_base64_end(n5, &p, out, &base64, true, &surrogate1);
continue;
}
unsigned char n6 = decode_base64(*p++);
if (is_base64_end(n6)) {
out = handle_base64_end(n6, &p, out, &base64, true, &surrogate1);
continue;
}
out = handle_utf16_cp((n3 << 14) | (n4 << 8) | (n5 << 2) | ((n6 & 0x30) >> 4), out, &surrogate1);
if (p == e) {
if ((n6 & 0xF) || surrogate1)
*out++ = MBFL_BAD_INPUT;
break;
}
unsigned char n7 = decode_base64(*p++);
if (is_base64_end(n7) || p == e) {
out = handle_base64_end(n7, &p, out, &base64, n6 & 0xF, &surrogate1);
continue;
}
unsigned char n8 = decode_base64(*p++);
if (is_base64_end(n8)) {
out = handle_base64_end(n8, &p, out, &base64, true, &surrogate1);
continue;
}
out = handle_utf16_cp((n6 << 12) | (n7 << 6) | n8, out, &surrogate1);
} else {
/* ASCII text section */
unsigned char c = *p++;
if (c == '+') {
if (p < e) {
if (*p == '-') {
*out++ = '+';
p++;
} else {
base64 = true;
}
}
/* If a + comes at the end of the input string... do nothing about it */
} else if (c <= 0x7F) {
*out++ = c;
} else {
*out++ = MBFL_BAD_INPUT;
}
}
}
*state = (surrogate1 << 1) | base64;
*in_len = e - p;
*in = p;
return out - buf;
}
static bool can_end_base64(uint32_t c)
{
return c == ' ' || c == '\t' || c == '\r' || c == '\n' || c == '\'' || c == '(' || c == ')' || c == ',' || c == '.' || c == ':' || c == '?';
}
static bool should_direct_encode(uint32_t c)
{
return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') || c == '\0' || c == '/' || c == '-' || can_end_base64(c);
}
#define SAVE_CONVERSION_STATE() buf->state = (cache << 4) | (nbits << 1) | base64
#define RESTORE_CONVERSION_STATE() base64 = (buf->state & 1); nbits = (buf->state >> 1) & 0x7; cache = (buf->state >> 4)
static void mb_wchar_to_utf7(uint32_t *in, size_t len, mb_convert_buf *buf, bool end)
{
unsigned char *out, *limit;
MB_CONVERT_BUF_LOAD(buf, out, limit);
/* Make enough space such that if the input string is all ASCII (not including '+'),
* we can copy it to the output buffer without checking for available space.
* However, if we find anything which is not plain ASCII, additional checks for
* output buffer space will be needed. */
MB_CONVERT_BUF_ENSURE(buf, out, limit, len);
bool base64;
unsigned char nbits, cache; /* `nbits` is the number of cached bits; either 0, 2, or 4 */
RESTORE_CONVERSION_STATE();
while (len--) {
uint32_t w = *in++;
if (base64) {
if (should_direct_encode(w)) {
/* End of Base64 section. Drain buffered bits (if any), close Base64 section */
base64 = false;
in--; len++; /* Unconsume codepoint; it will be handled by 'ASCII section' code below */
MB_CONVERT_BUF_ENSURE(buf, out, limit, len + 2);
if (nbits) {
out = mb_convert_buf_add(out, mbfl_base64_table[(cache << (6 - nbits)) & 0x3F]);
}
nbits = cache = 0;
if (!can_end_base64(w)) {
out = mb_convert_buf_add(out, '-');
}
} else if (w >= MBFL_WCSPLANE_UTF32MAX) {
/* Make recursive call to add an error marker character */
SAVE_CONVERSION_STATE();
MB_CONVERT_ERROR(buf, out, limit, w, mb_wchar_to_utf7);
MB_CONVERT_BUF_ENSURE(buf, out, limit, len);
RESTORE_CONVERSION_STATE();
} else {
/* Encode codepoint, preceded by any cached bits, as Base64 */
uint64_t bits;
if (w >= MBFL_WCSPLANE_SUPMIN) {
/* Must use surrogate pair */
MB_CONVERT_BUF_ENSURE(buf, out, limit, 6);
w -= 0x10000;
bits = ((uint64_t)cache << 32) | 0xD800DC00L | ((w & 0xFFC00) << 6) | (w & 0x3FF);
nbits += 32;
} else {
MB_CONVERT_BUF_ENSURE(buf, out, limit, 3);
bits = (cache << 16) | w;
nbits += 16;
}
while (nbits >= 6) {
out = mb_convert_buf_add(out, mbfl_base64_table[(bits >> (nbits - 6)) & 0x3F]);
nbits -= 6;
}
cache = bits;
}
} else {
/* ASCII section */
if (should_direct_encode(w)) {
out = mb_convert_buf_add(out, w);
} else if (w >= MBFL_WCSPLANE_UTF32MAX) {
buf->state = 0;
MB_CONVERT_ERROR(buf, out, limit, w, mb_wchar_to_utf7);
MB_CONVERT_BUF_ENSURE(buf, out, limit, len);
RESTORE_CONVERSION_STATE();
} else {
out = mb_convert_buf_add(out, '+');
base64 = true;
in--; len++; /* Unconsume codepoint; it will be handled by Base64 code above */
}
}
}
if (end) {
if (nbits) {
out = mb_convert_buf_add(out, mbfl_base64_table[(cache << (6 - nbits)) & 0x3F]);
}
if (base64) {
MB_CONVERT_BUF_ENSURE(buf, out, limit, 1);
out = mb_convert_buf_add(out, '-');
}
} else {
SAVE_CONVERSION_STATE();
}
MB_CONVERT_BUF_STORE(buf, out, limit);
}
| C | 5 | NathanFreeman/php-src | ext/mbstring/libmbfl/filters/mbfilter_utf7.c | [
"PHP-3.01"
] |
#
# Copyright 2018 (c) Pointwise, Inc.
# All rights reserved.
#
# This sample Pointwise script is not supported by Pointwise, Inc.
# It is provided freely for demonstration purposes only.
# SEE THE WARRANTY DISCLAIMER AT THE BOTTOM OF THIS FILE.
#
#############################################################################
##
## CreateOH.glf
##
## CREATE OH TOPOLOGY FROM FOUR SELECTED CONNECTORS
##
## This script automates the creation of an OH topology from four user-specified
## connectors. In addition to creating the new topology, the elliptic solver can
## be run for 10 iterations, allowing the newly generate geometry to relax to an
## optimal configuration.
##
#############################################################################
package require PWI_Glyph 2.3
set cwd [file dirname [info script]]
## Default values for variables also visible in TK widget
set input(solveGrid) 1
set input(alpha) 0.6
set input(sDim) 11
## Switch that interpolates gridline angles on outer edges, should remain
## set to 1 for most applications.
set interpAngles 1
## Check that four connectors form singly-connected loop
proc isLoop { conList } {
set order [list 0]
## Pick first connector
set con1 [lindex $conList 0]
## Find ends of first connector
set node0 [$con1 getNode Begin]
set node1 [$con1 getNode End]
## Identify connectors adjacent to end of first connector (node1)
set adjCon1 [$node1 getConnectors]
## Remove first connector from list for cross-referencing
set t1 [lreplace $conList 0 0]
## Check list of adjacent connectors to find next connector in loop
set chkCon 0
foreach con $adjCon1 {
set intersect [lsearch $t1 $con]
if {$intersect != -1} {
set chkCon [expr $chkCon + 1]
set ind2 $intersect
}
}
## Error checking
if {$chkCon > 1} {
puts "Degenerate junction"
return -1
} elseif {$chkCon == 0} {
puts "Bad connectivity"
return -1
}
## Identify second connector
set con2 [lindex $t1 $ind2]
set ind2 [lsearch $conList $con2]
set beginNode2 [$con2 getNode Begin]
set endNode2 [$con2 getNode End]
if {$beginNode2 == $node1} {
set node2 $endNode2
} else {
set node2 $beginNode2
}
## Identify connectors adjacent to end of second connector (node2)
set adjCon2 [$node2 getConnectors]
## Remove second connector from list for cross-referencing
set t2 [lreplace $conList $ind2 $ind2]
## Check list of adjacent connectors to find next connector in loop
set chkCon 0
foreach con $adjCon2 {
set intersect [lsearch $t2 $con]
if {$intersect != -1} {
set chkCon [expr $chkCon + 1]
set ind3 $intersect
}
}
## Error checking
if {$chkCon > 1} {
puts "Degenerate junction"
return -1
} elseif {$chkCon == 0} {
puts "Bad connectivity"
return -1
} elseif {[lindex $t2 $ind3] == $con1} {
puts "Two-connector loop."
return -1
}
## Identify third connector
set con3 [lindex $t2 $ind3]
set ind3 [lsearch $conList $con3]
set beginNode3 [$con3 getNode Begin]
set endNode3 [$con3 getNode End]
if {$beginNode3 == $node2} {
set node3 $endNode3
} else {
set node3 $beginNode3
}
set adjCon3 [$node3 getConnectors]
set t3 [lreplace $conList $ind3 $ind3]
set chkCon 0
foreach con $adjCon3 {
set intersect [lsearch $t3 $con]
if {$intersect != -1} {
set chkCon [expr $chkCon + 1]
set ind4 $intersect
}
}
## Error checking
if {$chkCon > 1} {
puts "Degenerate junction"
return -1
} elseif {$chkCon == 0} {
puts "Bad connectivity"
} elseif {[lindex $t3 $ind3] == $con1} {
puts "Three-connector loop."
return -1
}
set con4 [lindex $t3 $ind4]
## Return ordered list of nodes and connectors
set nodes [list $node0 $node1 $node2 $node3]
set cons [list $con1 $con2 $con3 $con4]
return [list $nodes $cons]
}
## Remove existing domain, if it exists between specified connectors
proc clearDom { cons } {
set existDoms [pw::Domain getDomainsFromConnectors \
[lindex $cons 0]]
foreach con [lrange $cons 1 3] {
set tempExist [list]
set tempDoms [pw::Domain getDomainsFromConnectors $con]
foreach tD $tempDoms {
if {[lsearch $existDoms $tD] != -1} {
lappend tempExist $tD
}
}
set existDoms $tempExist
}
if { [llength $existDoms]==1 } {
puts "Deleting existing H-grid."
pw::Entity delete $existDoms
}
return
}
## Create two point connector given two points
proc createTwoPt { pt1 pt2 } {
set creator [pw::Application begin Create]
set con [pw::Connector create]
set seg [pw::SegmentSpline create]
$seg addPoint $pt1
$seg addPoint $pt2
$con addSegment $seg
$creator end
return $con
}
## Create structured domain from list of four connectors
proc makeStructDom { conList } {
set NCons [llength $conList]
if {$NCons != 4} {
puts "Incorrect number of connectors"
exit
} else {
set DomCreate [pw::Application begin Create]
set dom [pw::DomainStructured create]
foreach CL $conList {
set edge [pw::Edge create]
foreach c $CL {
$edge addConnector $c
}
$dom addEdge $edge
}
$DomCreate end
return $dom
}
}
## Find geometric center of four nodes
proc getCenter { nodes } {
set pt0 [[lindex $nodes 0] getXYZ]
set pt1 [[lindex $nodes 1] getXYZ]
set pt2 [[lindex $nodes 2] getXYZ]
set pt3 [[lindex $nodes 3] getXYZ]
set temp1 [pwu::Vector3 add $pt0 $pt1]
set temp2 [pwu::Vector3 add $pt2 $pt3]
set cntr [pwu::Vector3 divide \
[pwu::Vector3 add $temp1 $temp2] 4.0]
return $cntr
}
## Find weighted average of two points
proc avgPoint { pt1 pt2 } {
global input
set offset [pwu::Vector3 scale \
[pwu::Vector3 subtract $pt2 $pt1] [expr 1-$input(alpha)]]
return [pwu::Vector3 add $offset $pt1]
}
## Find locations and create new nodes and connectors for OH topology
proc newTopo { nodes } {
puts "Creating new topology."
set centerPt [getCenter $nodes]
set pt0 [[lindex $nodes 0] getXYZ]
set pt1 [[lindex $nodes 1] getXYZ]
set pt2 [[lindex $nodes 2] getXYZ]
set pt3 [[lindex $nodes 3] getXYZ]
set np0 [avgPoint $pt0 $centerPt]
set np1 [avgPoint $pt1 $centerPt]
set np2 [avgPoint $pt2 $centerPt]
set np3 [avgPoint $pt3 $centerPt]
set con0 [createTwoPt $np0 $np1]
set con1 [createTwoPt $np1 $np2]
set con2 [createTwoPt $np2 $np3]
set con3 [createTwoPt $np3 $np0]
set square [list $con0 $con1 $con2 $con3]
set con4 [createTwoPt $np0 $pt0]
set con5 [createTwoPt $np1 $pt1]
set con6 [createTwoPt $np2 $pt2]
set con7 [createTwoPt $np3 $pt3]
set spokes [list $con4 $con5 $con6 $con7]
return [list $square $spokes]
}
## Run elliptic solver for 10 interations with floating BC on interior lines to
## smooth grid
proc solve_Grid { doms } {
global interpAngles
set solver_mode [pw::Application begin EllipticSolver $doms]
for {set ii 0} {$ii<5} {incr ii} {
set temp_dom [lindex $doms $ii]
if {$ii != 0} {
set inds [list 2 3 4]
} else {
set inds [list 1 2 3 4]
}
set temp_list [list]
for {set jj 0} {$jj < [llength $inds] } {incr jj} {
lappend temp_list [list $temp_dom]
}
foreach ent $temp_list bc $inds {
$ent setEllipticSolverAttribute -edge $bc \
EdgeConstraint Floating
}
}
if {$interpAngles == 1} {
set edgeDoms [lreplace $doms 0 0]
foreach ent $edgeDoms bc [list 1 1 1 1] {
$ent setEllipticSolverAttribute -edge $bc \
EdgeAngleCalculation Interpolate
}
}
$solver_mode run 10
$solver_mode end
}
## Main process called by TK widget to select connectors and create topology
proc selectCons {} {
global w input pickedCons curSelection infoMessage
wm withdraw .
set text1 "Please select four connectors to create OH topology."
set mask [pw::Display createSelectionMask -requireConnector {}]
set N_con 0
puts "Select connectors and press Done."
while {$N_con != 4} {
set picked [pw::Display selectEntities -description $text1 \
-selectionmask $mask curSelection]
set N_con [llength $curSelection(Connectors)]
if {$picked} {
if {$N_con != 4} {
puts "$N_con connectors selected. Please select 4."
}
} else {
puts "No connectors selected, click Cancel to quit or \
select 4 connectors."
set infoMessage "Invalid loop, press Pick Connectors"
wm deiconify .
return
}
}
set temp [isLoop $curSelection(Connectors)]
set curSelection(nodes) [lindex $temp 0]
set curSelection(cons) [lindex $temp 1]
if {$curSelection(nodes) == -1} {
puts "No loop present, please select a closed loop of 4 connectors."
set infoMessage "Invalid loop, press Pick Connectors"
} else {
set pickedCons 1
$w(EntryDimension) configure -state normal
$w(EntryExtent) configure -state normal
$w(EntrySolve) configure -state normal
updateButtons
}
wm deiconify .
}
# PROC: retrieveCons
# Proc to attempt to retrieve selected connectors if applicable
proc retrieveCons {} {
global pickedCons curSelection infoMessage
set picked [pw::Display getSelectedEntities curSelection]
set N_con [llength $curSelection(Connectors)]
if { $picked && $N_con == 4 } {
set temp [isLoop $curSelection(Connectors)]
set curSelection(nodes) [lindex $temp 0]
set curSelection(cons) [lindex $temp 1]
if {$curSelection(nodes) == -1} {
puts "No loop present, please select a closed loop of 4 connectors."
set infoMessage "Invalid loop, press Pick Connectors"
} else {
set pickedCons 1
return true
}
} elseif $picked {
puts "No loop present, please select a closed loop of 4 connectors."
set infoMessage "Invalid loop, press Pick Connectors"
}
return false
}
## Process called by TK widget to create topology
proc createOH {} {
global input curSelection
wm withdraw .
clearDom $curSelection(Connectors)
set newCons [newTopo $curSelection(nodes) ]
set square [lindex $newCons 0]
set spokes [lindex $newCons 1]
for {set ii 0} {$ii < 4} {incr ii} {
set outerDim [[lindex $curSelection(cons) $ii] getDimension]
[lindex $square $ii] setDimension $outerDim
[lindex $spokes $ii] setDimension $input(sDim)
}
set con(1) [lindex $curSelection(cons) 0]
set con(2) [lindex $curSelection(cons) 1]
set con(3) [lindex $curSelection(cons) 2]
set con(4) [lindex $curSelection(cons) 3]
set con(5) [lindex $square 0]
set con(6) [lindex $square 1]
set con(7) [lindex $square 2]
set con(8) [lindex $square 3]
set con(9) [lindex $spokes 0]
set con(10) [lindex $spokes 1]
set con(11) [lindex $spokes 2]
set con(12) [lindex $spokes 3]
## Create new domains from newly created connectors
set dom(1) [makeStructDom $square]
set dom(2) [makeStructDom [list $con(1) $con(10) \
$con(5) $con(9)]]
set dom(3) [makeStructDom [list $con(2) $con(11) \
$con(6) $con(10)]]
set dom(4) [makeStructDom [list $con(3) $con(12) \
$con(7) $con(11)]]
set dom(5) [makeStructDom [list $con(4) $con(9) \
$con(8) $con(12)]]
set doms [list]
for {set ii 1} {$ii < 6} { incr ii} {
lappend doms [list $dom($ii)]
}
## If solveGrid is not set to 1, ask if the grid should be smoothed
if {$input(solveGrid) == 1} {
solve_Grid $doms
}
exit
}
###########################################################################
## GUI
###########################################################################
## Load TK
pw::Script loadTk
# Initialize globals
set infoMessage ""
set pickedCons -1
set color(Valid) "white"
set color(Invalid) "misty rose"
set w(LabelTitle) .title
set w(FrameMain) .main
set w(ButtonSelect) $w(FrameMain).select
set w(LabelDimension) $w(FrameMain).ldim
set w(EntryDimension) $w(FrameMain).edim
set w(LabelExtent) $w(FrameMain).lext
set w(EntryExtent) $w(FrameMain).eext
set w(LabelSolve) $w(FrameMain).lslv
set w(EntrySolve) $w(FrameMain).eslv
set w(ButtoncOH) $w(FrameMain).doit
set w(FrameButtons) .fbuttons
set w(Logo) $w(FrameButtons).pwlogo
set w(ButtonCancel) $w(FrameButtons).bcancel
set w(Message) .msg
# dimension field validation
proc validateDim { dim widget } {
global w color
if { [string is integer -strict $dim] && ($dim == 0 || $dim > 1) } {
$w($widget) configure -background $color(Valid)
} else {
$w($widget) configure -background $color(Invalid)
}
updateButtons
return 1
}
# extent field validation
proc validateAlpha { alpha widget } {
global w color
if { [string is double -strict $alpha] && ($alpha > 0 && $alpha < 1) } {
$w($widget) configure -background $color(Valid)
} else {
$w($widget) configure -background $color(Invalid)
}
updateButtons
return 1
}
# return true if none of the entry fields are marked invalid
proc canCreate { } {
global w color pickedCons
return [expr \
[string equal -nocase [$w(EntryDimension) cget -background] $color(Valid)] && \
[string equal -nocase [$w(EntryExtent) cget -background] $color(Valid)] && \
$pickedCons == 1]
}
# enable/disable action buttons based on current settings
proc updateButtons { } {
global w infoMessage
if { [canCreate] } {
$w(ButtoncOH) configure -state normal
set infoMessage "Press Create OH"
} else {
$w(ButtoncOH) configure -state disabled
set infoMessage "Invalid parameter"
}
update
}
# set the font for the input widget to be bold and 1.5 times larger than
# the default font
proc setTitleFont { l } {
global titleFont
if { ! [info exists titleFont] } {
set fontSize [font actual TkCaptionFont -size]
set titleFont [font create -family [font actual TkCaptionFont -family] \
-weight bold -size [expr {int(1.5 * $fontSize)}]]
}
$l configure -font $titleFont
}
# Build the user interface
proc makeWindow { haveSelection } {
global w input color
# Ceate the widgets
label $w(LabelTitle) -text "Create OH\nInput Parameters"
setTitleFont $w(LabelTitle)
frame $w(FrameMain)
button $w(ButtonSelect) -text "Pick Connectors" -command { selectCons }
label $w(LabelDimension) -text "Radial dimension:" -anchor e
entry $w(EntryDimension) -width 6 -bd 2 -textvariable input(sDim)
$w(EntryDimension) configure -background $color(Valid)
label $w(LabelExtent) -text "Radial extent:" -padx 2 -anchor e
entry $w(EntryExtent) -width 10 -bd 2 -textvariable input(alpha)
$w(EntryExtent) configure -background $color(Valid)
label $w(LabelSolve) -text "Run solver?" -padx 2 -anchor e
checkbutton $w(EntrySolve) -variable input(solveGrid)
button $w(ButtoncOH) -text "Create OH" -command { createOH }
message $w(Message) -textvariable infoMessage -background beige \
-bd 2 -relief sunken -padx 5 -pady 5 -anchor w \
-justify left -width 300
frame $w(FrameButtons) -relief sunken
button $w(ButtonCancel) -text "Cancel" -command { destroy . }
label $w(Logo) -image [pwLogo] -bd 0 -relief flat
# set up validation after all widgets are created so that they all exist when
# validation fires the first time; if they don't all exist, updateButtons
# will fail
$w(EntryDimension) configure -validate key \
-vcmd { validateDim %P EntryDimension }
$w(EntryExtent) configure -validate key \
-vcmd { validateAlpha %P EntryExtent }
# lay out the form
pack $w(LabelTitle) -side top
pack [frame .sp -bd 1 -height 2 -relief sunken] -pady 4 -side top -fill x
pack $w(FrameMain) -side top -fill both -expand 1
# lay out the form in a grid
grid $w(ButtonSelect) -columnspan 2 -pady 3
grid $w(LabelDimension) $w(EntryDimension) -sticky ew -pady 3 -padx 3
grid $w(LabelExtent) $w(EntryExtent) -sticky ew -pady 3 -padx 3
grid $w(LabelSolve) $w(EntrySolve) -sticky ew -pady 3 -padx 3
grid $w(ButtoncOH) -columnspan 2 -pady 3
# give all extra space to the second (last) column
grid columnconfigure $w(FrameMain) 1 -weight 1
pack $w(Message) -side bottom -fill x -anchor s
pack $w(FrameButtons) -fill x -side bottom -padx 2 -pady 4 -anchor s
pack $w(ButtonCancel) -side right -padx 2
pack $w(Logo) -side left -padx 5
bind . <Key-Escape> { $w(ButtonCancel) invoke }
bind . <Control-Key-Return> { $w(ButtonSelect) invoke }
bind . <Control-Key-f> { $w(ButtoncOH) invoke }
bind $w(EntryExtent) <Key-Return> { $w(ButtoncOH) invoke }
# move keyboard focus to the first entry
focus $w(ButtonSelect)
raise .
if { $haveSelection } {
$w(EntryDimension) configure -state normal
$w(EntryExtent) configure -state normal
$w(EntrySolve) configure -state normal
$w(ButtoncOH) configure -state normal
updateButtons
} else {
$w(EntryDimension) configure -state disabled
$w(EntryExtent) configure -state disabled
$w(EntrySolve) configure -state disabled
$w(ButtoncOH) configure -state disabled
}
}
###############################################################################
# pwLogo: Define pointwise logo
###############################################################################
proc pwLogo {} {
set logoData {
R0lGODlheAAYAIcAAAAAAAICAgUFBQkJCQwMDBERERUVFRkZGRwcHCEhISYmJisrKy0tLTIyMjQ0
NDk5OT09PUFBQUVFRUpKSk1NTVFRUVRUVFpaWlxcXGBgYGVlZWlpaW1tbXFxcXR0dHp6en5+fgBi
qQNkqQVkqQdnrApmpgpnqgpprA5prBFrrRNtrhZvsBhwrxdxsBlxsSJ2syJ3tCR2siZ5tSh6tix8
ti5+uTF+ujCAuDODvjaDvDuGujiFvT6Fuj2HvTyIvkGKvkWJu0yUv2mQrEOKwEWNwkaPxEiNwUqR
xk6Sw06SxU6Uxk+RyVKTxlCUwFKVxVWUwlWWxlKXyFOVzFWWyFaYyFmYx16bwlmZyVicyF2ayFyb
zF2cyV2cz2GaxGSex2GdymGezGOgzGSgyGWgzmihzWmkz22iymyizGmj0Gqk0m2l0HWqz3asznqn
ynuszXKp0XKq1nWp0Xaq1Hes0Xat1Hmt1Xyt0Huw1Xux2IGBgYWFhYqKio6Ojo6Xn5CQkJWVlZiY
mJycnKCgoKCioqKioqSkpKampqmpqaurq62trbGxsbKysrW1tbi4uLq6ur29vYCu0YixzYOw14G0
1oaz14e114K124O03YWz2Ie12oW13Im10o621Ii22oi23Iy32oq52Y252Y+73ZS51Ze81JC625G7
3JG825K83Je72pW93Zq92Zi/35G+4aC90qG+15bA3ZnA3Z7A2pjA4Z/E4qLA2KDF3qTA2qTE3avF
36zG3rLM3aPF4qfJ5KzJ4LPL5LLM5LTO4rbN5bLR6LTR6LXQ6r3T5L3V6cLCwsTExMbGxsvLy8/P
z9HR0dXV1dbW1tjY2Nra2tzc3N7e3sDW5sHV6cTY6MnZ79De7dTg6dTh69Xi7dbj7tni793m7tXj
8Nbk9tjl9N3m9N/p9eHh4eTk5Obm5ujo6Orq6u3t7e7u7uDp8efs8uXs+Ozv8+3z9vDw8PLy8vL0
9/b29vb5+/f6+/j4+Pn6+/r6+vr6/Pn8/fr8/Pv9/vz8/P7+/gAAACH5BAMAAP8ALAAAAAB4ABgA
AAj/AP8JHEiwoMGDCBMqXMiwocOHECNKnEixosWLGDNqZCioo0dC0Q7Sy2btlitisrjpK4io4yF/
yjzKRIZPIDSZOAUVmubxGUF88Aj2K+TxnKKOhfoJdOSxXEF1OXHCi5fnTx5oBgFo3QogwAalAv1V
yyUqFCtVZ2DZceOOIAKtB/pp4Mo1waN/gOjSJXBugFYJBBflIYhsq4F5DLQSmCcwwVZlBZvppQtt
D6M8gUBknQxA879+kXixwtauXbhheFph6dSmnsC3AOLO5TygWV7OAAj8u6A1QEiBEg4PnA2gw7/E
uRn3M7C1WWTcWqHlScahkJ7NkwnE80dqFiVw/Pz5/xMn7MsZLzUsvXoNVy50C7c56y6s1YPNAAAC
CYxXoLdP5IsJtMBWjDwHHTSJ/AENIHsYJMCDD+K31SPymEFLKNeM880xxXxCxhxoUKFJDNv8A5ts
W0EowFYFBFLAizDGmMA//iAnXAdaLaCUIVtFIBCAjP2Do1YNBCnQMwgkqeSSCEjzzyJ/BFJTQfNU
WSU6/Wk1yChjlJKJLcfEgsoaY0ARigxjgKEFJPec6J5WzFQJDwS9xdPQH1sR4k8DWzXijwRbHfKj
YkFO45dWFoCVUTqMMgrNoQD08ckPsaixBRxPKFEDEbEMAYYTSGQRxzpuEueTQBlshc5A6pjj6pQD
wf9DgFYP+MPHVhKQs2Js9gya3EB7cMWBPwL1A8+xyCYLD7EKQSfEF1uMEcsXTiThQhmszBCGC7G0
QAUT1JS61an/pKrVqsBttYxBxDGjzqxd8abVBwMBOZA/xHUmUDQB9OvvvwGYsxBuCNRSxidOwFCH
J5dMgcYJUKjQCwlahDHEL+JqRa65AKD7D6BarVsQM1tpgK9eAjjpa4D3esBVgdFAB4DAzXImiDY5
vCFHESko4cMKSJwAxhgzFLFDHEUYkzEAG6s6EMgAiFzQA4rBIxldExBkr1AcJzBPzNDRnFCKBpTd
gCD/cKKKDFuYQoQVNhhBBSY9TBHCFVW4UMkuSzf/fe7T6h4kyFZ/+BMBXYpoTahB8yiwlSFgdzXA
5JQPIDZCW1FgkDVxgGKCFCywEUQaKNitRA5UXHGFHN30PRDHHkMtNUHzMAcAA/4gwhUCsB63uEF+
bMVB5BVMtFXWBfljBhhgbCFCEyI4EcIRL4ChRgh36LBJPq6j6nS6ISPkslY0wQbAYIr/ahCeWg2f
ufFaIV8QNpeMMAkVlSyRiRNb0DFCFlu4wSlWYaL2mOp13/tY4A7CL63cRQ9aEYBT0seyfsQjHedg
xAG24ofITaBRIGTW2OJ3EH7o4gtfCIETRBAFEYRgC06YAw3CkIqVdK9cCZRdQgCVAKWYwy/FK4i9
3TYQIboE4BmR6wrABBCUmgFAfgXZRxfs4ARPPCEOZJjCHVxABFAA4R3sic2bmIbAv4EvaglJBACu
IxAMAKARBrFXvrhiAX8kEWVNHOETE+IPbzyBCD8oQRZwwIVOyAAXrgkjijRWxo4BLnwIwUcCJvgP
ZShAUfVa3Bz/EpQ70oWJC2mAKDmwEHYAIxhikAQPeOCLdRTEAhGIQKL0IMoGTGMgIBClA9QxkA3U
0hkKgcy9HHEQDcRyAr0ChAWWucwNMIJZ5KilNGvpADtt5JrYzKY2t8nNbnrzm+B8SEAAADs=}
return [image create photo -format GIF -data $logoData]
}
makeWindow [retrieveCons]
tkwait window .
#
# DISCLAIMER:
# TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, POINTWISE DISCLAIMS
# ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED
# TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE, WITH REGARD TO THIS SCRIPT. TO THE MAXIMUM EXTENT PERMITTED
# BY APPLICABLE LAW, IN NO EVENT SHALL POINTWISE BE LIABLE TO ANY PARTY
# FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES
# WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF
# BUSINESS INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE
# USE OF OR INABILITY TO USE THIS SCRIPT EVEN IF POINTWISE HAS BEEN
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGES AND REGARDLESS OF THE
# FAULT OR NEGLIGENCE OF POINTWISE.
#
| Glyph | 5 | smola/language-dataset | data/github.com/pointwise/CreateOH/948cfe307ef593e36d43fca93a1b7e84ec8bb5e4/CreateOH.glf | [
"MIT"
] |
import functools
import time
from abc import ABC, abstractmethod
from metrics.MetricsLogger import MetricsLogger
import torch
class TrainerBase(ABC):
BATCH_LEVEL_METRIC = "batch_level_metric"
BATCH_ALL = "batch_all"
FORWARD_METRIC = "forward_metric"
FORWARD_PASS = "forward_pass"
BACKWARD_METRIC = "backward_metric"
BACKWARD = "backward"
def __init__(self, rank):
r"""
Inits TrainerBase class.
Args:
rank (int): worker rank
"""
self.__metrics_logger = MetricsLogger(rank)
@abstractmethod
def train(self):
r"""
A method to be implemented by child class that will train a neural network.
"""
return
def record_start(self, type, key, name, cuda=True):
r"""
A method that records the start event for a metric.
Args:
type (str): group id for metric
key (str): unique id for metric within a group
name (str): description of the metric
cuda (bool): indicator to determine if this is a CUDA metric
"""
self.__metrics_logger.record_start(
type,
key,
name,
cuda
)
def record_end(self, type, key):
r"""
A method that records the end event for a metric.
Args:
type (str): group id for metric
key (str): unique id for metric within a group
"""
self.__metrics_logger.record_end(
type,
key
)
def record_batch_start(self, key, cuda=True):
r"""
A helper method that records a batch metric for the
given key. A user should call this at the start of an
iteration step during training.
Args:
key (str): unique id for metric within a group
cuda (bool): indicator to determine if this is a CUDA metric
"""
self.__metrics_logger.record_start(
self.BATCH_LEVEL_METRIC,
key,
self.BATCH_ALL,
cuda
)
def record_batch_end(self, key):
r"""
A helper method that records a batch metric for the
given key. A user should call this at the end of an
iteration step during training.
Args:
key (str): unique id for metric within a group
"""
self.__metrics_logger.record_end(
self.BATCH_LEVEL_METRIC,
key
)
def record_forward_start(self, key, cuda=True):
r"""
A helper method that records a forward metric
for the given key. A user should call this before
their neural network forward.
Args:
key (str): unique id for metric within a group
cuda (bool): indicator to determine if this is a CUDA metric
"""
self.__metrics_logger.record_start(
self.FORWARD_METRIC,
key,
self.FORWARD_PASS,
cuda
)
def record_forward_end(self, key):
r"""
A helper method that records a forward metric
for the given key. A user should call this after their
neural network forward.
Args:
key (str): unique id for metric within a group
"""
self.__metrics_logger.record_end(
self.FORWARD_METRIC,
key
)
def record_backward_start(self, key, cuda=True):
r"""
A helper method that records a backward metric
for the given key. A user should call this before
their .backward() call.
Args:
key (str): unique id for metric within a group
cuda (bool): indicator to determine if this is a CUDA metric
"""
self.__metrics_logger.record_start(
self.BACKWARD_METRIC,
key,
self.BACKWARD,
cuda
)
def record_backward_end(self, key):
r"""
A helper method that records a backward metric
for the given key. A user should call this after
.backward().
Args:
key (str): unique id for metric within a group
"""
self.__metrics_logger.record_end(
self.BACKWARD_METRIC,
key
)
@staticmethod
def methodmetric(name, type="method_metric", cuda=True):
r"""
A decorator that records a metric for the decorated method.
Args:
name (str): description of the metric
type (str): group id for metric
cuda (bool): indicator to determine if this is a CUDA metric
"""
def decorator(function):
@functools.wraps(function)
def wrapper(self, *args):
key = time.time()
self.__metrics_logger.record_start(type, key, name, cuda)
result = function(self, *args)
self.__metrics_logger.record_end(type, key)
return result
return wrapper
return decorator
def get_metrics(self):
r"""
A method that returns metrics captured by the __metrics_logger.
"""
return self.__metrics_logger.get_processed_metrics()
def clear_metrics(self):
r"""
A method that clears __metrics_logger recorded metrics.
"""
return self.__metrics_logger.clear_metrics()
class DdpTrainer(TrainerBase):
def __init__(
self,
process_group,
use_cuda_rpc,
server_rref,
backend,
epochs,
preprocess_data,
create_criterion,
create_ddp_model,
hook_state_class,
hook,
iteration_step
):
r"""
A trainer that implements a DDP training algorithm using a simple hook that performs allreduce
using the process_group implementation.
Args:
process_group (ProcessGroup): distributed process group
use_cuda_rpc (bool): indicator for CUDA RPC
server_rref (RRef): remote reference to the server
backend (str): distributed communication backend
epochs (int): epoch count for training
preprocess_data (function): preprocesses data passed
to the trainer before starting training
create_criterion (function): creates a criterion to calculate loss
create_ddp_model (function): creates a ddp model for the trainer
hook_state_class (class): class that will be used to keep tracking of state
during training.
hook (function): ddp communication hook
iteration_step (function): will perform 1 step of training
"""
super().__init__(process_group.rank())
self.process_group = process_group
self.use_cuda_rpc = use_cuda_rpc
self.server_rref = server_rref
self.backend = backend
self.epochs = epochs
self.preprocess_data = preprocess_data
self.create_criterion = create_criterion
self.create_ddp_model = create_ddp_model
self.hook_state_class = hook_state_class
self.hook = hook
self.iteration_step = iteration_step
self.rank = process_group.rank()
self.trainer_count = process_group.size()
def epoch_key(self, epoch, index):
r"""
A method that returns an encoded key that represents the current epoch and
iteration index.
Args:
epoch (int): epoch index
index (int): iteration index
"""
return f"{epoch},{index}"
def train(self, model, data):
r"""
A method that implements the training algorithm.
Args:
model (nn.Module): neural network model
data (list): training examples
"""
model = model.cuda(self.rank)
data = self.preprocess_data(self.rank, data)
criterion = self.create_criterion(self.rank)
ddp_model, hook_state = self.create_ddp_model(
self, self.rank, model, self.process_group, self.hook_state_class, self.hook
)
optimizer = torch.optim.SGD(ddp_model.parameters(), 1e-4)
for epoch in range(self.epochs):
if epoch % 5 == 0 and self.rank == 0:
print(f"train epoch={epoch}")
for index, batch in enumerate(data):
self.iteration_step(
self, ddp_model, criterion, optimizer, hook_state, epoch, index, batch
)
torch.cuda.synchronize(self.rank)
| Python | 5 | Hacky-DH/pytorch | benchmarks/distributed/rpc/parameter_server/trainer/trainer.py | [
"Intel"
] |
/obj/item/limb
name = "limb"
icon = 'icons/mobs/limbs/_default.dmi'
attack_verbs = list("bludgeons", "batters", "whacks")
default_material_path = /datum/material/meat
flags = FLAG_SIMULATED | FLAG_IS_EDIBLE | FLAG_THROWN_SPIN | FLAG_ANCHORED // FLAG_ANCHORED is because, for some reason, you can pick the fucking limbs up during spawn.
var/limb_name
var/root_limb = FALSE
var/limb_id
var/mob/human/owner
var/obj/item/limb/parent
var/list/children = list()
var/vital = FALSE
var/grasp_name
var/grasp_plural
var/not_moving = FALSE
/obj/item/limb/proc/SetNotMoving(var/_not_moving, var/update_icon = FALSE)
not_moving = _not_moving
if(not_moving)
owner.UpdateIcon()
/obj/item/limb/GetWornIcon(var/inventory_slot)
if(inventory_slot != "mob")
return ..()
return image(icon = icon, icon_state = (not_moving ? "mob_static" : "mob"))
/obj/item/limb/GetInvIcon()
return GetWornIcon("world")
/obj/item/limb/New(var/mob/human/_owner, var/_name, var/_icon, var/_limb_id, var/_parent, var/_root, var/_vital, var/_size, var/_grasp_name, var/_grasp_plural, var/_length = 1, var/_width = 1, var/_height = 1)
if(_length) length = _length
if(_width) width = _width
if(_height) height = _height
..(_owner)
owner = _owner
limb_name = _name
name = limb_name
icon = _icon
limb_id = _limb_id
vital = _vital
root_limb = _root
grasp_name = _grasp_name ? _grasp_name : name
grasp_plural = _grasp_plural
owner.limbs += src
if(_limb_id == BP_HEAD)
remains_type = owner.skull_type
remains_multi = FALSE
if(_parent)
parent = owner.GetLimb(_parent)
parent.children += src
/obj/item/limb/UpdateStrings()
name = limb_name
/obj/item/limb/proc/IsBleeding()
if(wounds.len)
for(var/thing in wounds)
var/datum/wound/wound = thing
if(wound.wound_type == WOUND_CUT && wound.bleed_amount)
return TRUE
return FALSE
/obj/item/limb/proc/IsDextrous(var/silent)
if(!silent) owner.Notify("Your [grasp_name] [grasp_plural ? "aren't" : "isn't"] dextrous enough for that.")
return FALSE
| DM | 4 | BloodyMan/Antimonium | code/mobs/limbs/_limb.dm | [
"CC-BY-4.0"
] |
import React from 'react';
import { useTranslation } from 'react-i18next';
interface SpacerPropTypes {
style: Record<string, unknown>;
}
function Spacer(props: SpacerPropTypes): JSX.Element {
const { t } = useTranslation();
return (
<>
<span className='sr-only'>{t('icons.spacer')}</span>
<svg
className='tick'
height='50'
viewBox='-10 -45 200 200'
width='50'
xmlns='http://www.w3.org/2000/svg'
{...props}
>
<g>
<title>{t('icons.spacer')}</title>
<rect fillOpacity='0' height='200' width='200' />
</g>
</svg>
</>
);
}
Spacer.displayName = 'Spacer';
export default Spacer;
| TypeScript | 4 | fcastillo-serempre/freeCodeCamp | client/src/assets/icons/spacer.tsx | [
"BSD-3-Clause"
] |
export { default } from './TreeItem';
export * from './TreeItem';
export * from './TreeItemContent';
export { default as useTreeItem } from './useTreeItem';
export { default as treeItemClasses } from './treeItemClasses';
export * from './treeItemClasses';
| TypeScript | 3 | good-gym/material-ui | packages/material-ui-lab/src/TreeItem/index.d.ts | [
"MIT"
] |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Microsoft.CodeAnalysis.Diagnostics;
using Microsoft.CodeAnalysis.Editor.EditorConfigSettings.Data;
using Microsoft.CodeAnalysis.Editor.EditorConfigSettings.Updater;
namespace Microsoft.CodeAnalysis.Editor.EditorConfigSettings.DataProvider.Analyzer
{
internal class AnalyzerSettingsProviderFactory : IWorkspaceSettingsProviderFactory<AnalyzerSetting>
{
private readonly Workspace _workspace;
private readonly IDiagnosticAnalyzerService _analyzerService;
public AnalyzerSettingsProviderFactory(Workspace workspace, IDiagnosticAnalyzerService analyzerService)
{
_workspace = workspace;
_analyzerService = analyzerService;
}
public ISettingsProvider<AnalyzerSetting> GetForFile(string filePath)
{
var updater = new AnalyzerSettingsUpdater(_workspace, filePath);
return new AnalyzerSettingsProvider(filePath, updater, _workspace, _analyzerService);
}
}
}
| C# | 3 | samaw7/roslyn | src/EditorFeatures/Core/EditorConfigSettings/DataProvider/Analyzer/AnalyzerSettingsProviderFactory.cs | [
"MIT"
] |
20 5
0 1 5 2 3 4 1 5 [0] [0] [0] [0] [0]
1 1 2 10 6 [10] [6]
2 1 2 9 7 [0] [23]
3 1 2 10 8 [2] [0]
4 1 3 12 13 7 [4] [18] [-3]
5 1 1 18 [-2]
6 1 3 15 11 18 [-73] [5] [17]
7 1 3 17 14 10 [1] [1] [1]
8 1 3 15 20 16 [-55] [7] [4]
9 1 3 10 5 20 [-25] [-19] [17]
10 1 2 20 18 [0] [3]
11 1 4 3 7 6 19 [-76] [-96] [-84] [6]
12 1 4 14 9 15 6 [-74] [0] [0] [2]
13 1 2 10 17 [5] [1]
14 1 2 9 12 [0] [10]
15 1 2 9 8 [0] [17]
16 1 1 6 [6]
17 1 2 4 14 [-85] [1]
18 1 4 9 5 10 20 [16] [-20] [-18] [12]
19 1 3 18 1 16 [4] [-88] [-84]
20 1 3 21 9 5 [6] [-45] [-42]
21 1 0
0 1 0 0 0 0 0
1 1 -1 -1 -1 0 -1
2 1 1 0 2 0 1
3 1 0 2 0 0 2
4 1 -1 0 0 0 -1
5 1 0 0 -1 0 0
6 1 0 0 -2 -2 0
7 1 2 -1 -1 -1 1
8 1 -2 -2 1 1 2
9 1 -1 2 -2 0 1
10 1 2 0 0 -2 0
11 1 1 -2 -2 0 0
12 1 1 0 -2 2 0
13 1 -1 0 0 0 -1
14 1 0 0 0 1 0
15 1 -2 0 -1 -1 1
16 1 2 -1 -1 -1 2
17 1 0 0 2 -1 0
18 1 -2 1 2 1 0
19 1 0 0 0 1 -2
20 1 0 1 -2 0 0
21 1 0 0 0 0 0
-3 -5 -8 -4 0
2 1 1 1 6 | Eagle | 0 | klorel/or-tools | examples/data/rcpsp/single_mode_consumer_producer/ubo20_cum_2/psp20_67.sch | [
"Apache-2.0"
] |
#define SHADER_NAME PHASER_COPY_FS
precision mediump float;
uniform sampler2D uMainSampler;
uniform float uBrightness;
varying vec2 outTexCoord;
void main ()
{
gl_FragColor = texture2D(uMainSampler, outTexCoord) * uBrightness;
}
| GLSL | 4 | dreammyboy/phaser | src/renderer/webgl/shaders/src/Copy.frag | [
"MIT"
] |
port module Main exposing (..)
-- this is required for the ports
import Json.Decode exposing (decodeString)
import QuickType
port fromJS : (String -> msg) -> Sub msg
port toJS : String -> Cmd msg
type Msg
= FromJS String
update : Msg -> () -> ( (), Cmd Msg )
update msg _ =
case msg of
FromJS str ->
case decodeString QuickType.quickType str of
Ok r -> ((), toJS (QuickType.quickTypeToString r))
Err err -> ((), toJS ("Error: " ++ err))
subscriptions : () -> Sub Msg
subscriptions _ =
fromJS (FromJS)
main : Program Never () Msg
main =
Platform.program
{ init = ( (), Cmd.none )
, update = update
, subscriptions = subscriptions
}
| Elm | 4 | dugsmith/quicktype | test/fixtures/elm/Main.elm | [
"Apache-2.0"
] |
(text) @text
(comment) @comment
(doctype) @constant
; HEEx attributes are highlighted as HTML attributes
(attribute_name) @tag.attribute
(quoted_attribute_value) @string
[
"%>"
"/>"
"<!"
"<"
"<%"
"<%#"
"<%%="
"<%="
"</"
">"
"{"
"}"
] @tag.delimiter
[
"="
] @operator
; HEEx tags are highlighted as HTML
(tag_name) @tag
; HEEx components are highlighted as types (Elixir modules)
(component_name) @type
| Scheme | 4 | hmac/nvim-treesitter | queries/heex/highlights.scm | [
"Apache-2.0"
] |
Generic block #2 (value={{ value }})
| Twig | 0 | titomtd/Sylius | src/Sylius/Bundle/UiBundle/Tests/Functional/templates/blocks/multipleEvents/genericSecond.txt.twig | [
"MIT"
] |
// Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef V8_PARSING_PENDING_COMPILATION_ERROR_HANDLER_H_
#define V8_PARSING_PENDING_COMPILATION_ERROR_HANDLER_H_
#include <forward_list>
#include "src/base/export-template.h"
#include "src/base/macros.h"
#include "src/common/globals.h"
#include "src/common/message-template.h"
#include "src/handles/handles.h"
namespace v8 {
namespace internal {
class AstRawString;
class AstValueFactory;
class Isolate;
class Script;
// Helper class for handling pending compilation errors consistently in various
// compilation phases.
class PendingCompilationErrorHandler {
public:
PendingCompilationErrorHandler() = default;
PendingCompilationErrorHandler(const PendingCompilationErrorHandler&) =
delete;
PendingCompilationErrorHandler& operator=(
const PendingCompilationErrorHandler&) = delete;
void ReportMessageAt(int start_position, int end_position,
MessageTemplate message, const char* arg = nullptr);
void ReportMessageAt(int start_position, int end_position,
MessageTemplate message, const AstRawString* arg);
void ReportMessageAt(int start_position, int end_position,
MessageTemplate message, const AstRawString* arg0,
const char* arg1);
void ReportWarningAt(int start_position, int end_position,
MessageTemplate message, const char* arg = nullptr);
bool stack_overflow() const { return stack_overflow_; }
void set_stack_overflow() {
has_pending_error_ = true;
stack_overflow_ = true;
}
bool has_pending_error() const { return has_pending_error_; }
bool has_pending_warnings() const { return !warning_messages_.empty(); }
// Handle errors detected during parsing.
template <typename IsolateT>
EXPORT_TEMPLATE_DECLARE(V8_EXPORT_PRIVATE)
void PrepareErrors(IsolateT* isolate, AstValueFactory* ast_value_factory);
V8_EXPORT_PRIVATE void ReportErrors(Isolate* isolate,
Handle<Script> script) const;
// Handle warnings detected during compilation.
template <typename IsolateT>
void PrepareWarnings(IsolateT* isolate);
void ReportWarnings(Isolate* isolate, Handle<Script> script) const;
V8_EXPORT_PRIVATE Handle<String> FormatErrorMessageForTest(Isolate* isolate);
void set_unidentifiable_error() {
has_pending_error_ = true;
unidentifiable_error_ = true;
}
void clear_unidentifiable_error() {
has_pending_error_ = false;
unidentifiable_error_ = false;
}
bool has_error_unidentifiable_by_preparser() const {
return unidentifiable_error_;
}
private:
class MessageDetails {
public:
MOVE_ONLY_NO_DEFAULT_CONSTRUCTOR(MessageDetails);
MessageDetails()
: start_position_(-1),
end_position_(-1),
message_(MessageTemplate::kNone) {}
MessageDetails(int start_position, int end_position,
MessageTemplate message, const AstRawString* arg0)
: start_position_(start_position),
end_position_(end_position),
message_(message),
args_{MessageArgument{arg0}, MessageArgument{}} {}
MessageDetails(int start_position, int end_position,
MessageTemplate message, const AstRawString* arg0,
const char* arg1)
: start_position_(start_position),
end_position_(end_position),
message_(message),
args_{MessageArgument{arg0}, MessageArgument{arg1}} {
DCHECK_NOT_NULL(arg0);
DCHECK_NOT_NULL(arg1);
}
MessageDetails(int start_position, int end_position,
MessageTemplate message, const char* arg0)
: start_position_(start_position),
end_position_(end_position),
message_(message),
args_{MessageArgument{arg0}, MessageArgument{}} {}
Handle<String> ArgString(Isolate* isolate, int index) const;
int ArgCount() const {
int argc = 0;
for (int i = 0; i < kMaxArgumentCount; i++) {
if (args_[i].type == kNone) break;
argc++;
}
#ifdef DEBUG
for (int i = argc; i < kMaxArgumentCount; i++) {
DCHECK_EQ(args_[i].type, kNone);
}
#endif // DEBUG
return argc;
}
MessageLocation GetLocation(Handle<Script> script) const;
MessageTemplate message() const { return message_; }
template <typename IsolateT>
void Prepare(IsolateT* isolate);
private:
enum Type { kNone, kAstRawString, kConstCharString, kMainThreadHandle };
void SetString(Handle<String> string, Isolate* isolate);
void SetString(Handle<String> string, LocalIsolate* isolate);
int start_position_;
int end_position_;
MessageTemplate message_;
struct MessageArgument final {
constexpr MessageArgument() : ast_string(nullptr), type(kNone) {}
explicit constexpr MessageArgument(const AstRawString* s)
: ast_string(s), type(s == nullptr ? kNone : kAstRawString) {}
explicit constexpr MessageArgument(const char* s)
: c_string(s), type(s == nullptr ? kNone : kConstCharString) {}
union {
const AstRawString* ast_string;
const char* c_string;
Handle<String> js_string;
};
Type type;
};
static constexpr int kMaxArgumentCount = 2;
MessageArgument args_[kMaxArgumentCount];
};
void ThrowPendingError(Isolate* isolate, Handle<Script> script) const;
bool has_pending_error_ = false;
bool stack_overflow_ = false;
bool unidentifiable_error_ = false;
MessageDetails error_details_;
std::forward_list<MessageDetails> warning_messages_;
};
extern template void PendingCompilationErrorHandler::PrepareErrors(
Isolate* isolate, AstValueFactory* ast_value_factory);
extern template void PendingCompilationErrorHandler::PrepareErrors(
LocalIsolate* isolate, AstValueFactory* ast_value_factory);
extern template void PendingCompilationErrorHandler::PrepareWarnings(
Isolate* isolate);
extern template void PendingCompilationErrorHandler::PrepareWarnings(
LocalIsolate* isolate);
} // namespace internal
} // namespace v8
#endif // V8_PARSING_PENDING_COMPILATION_ERROR_HANDLER_H_
| C | 4 | EXHades/v8 | src/parsing/pending-compilation-error-handler.h | [
"BSD-3-Clause"
] |
/* @(#)nlm4_prot.x 2.1 88/08/01 4.0 RPCSRC */
/* @(#)nlm4_prot.x 1.8 87/09/21 Copyr 1987 Sun Micro */
/*
* Network lock manager protocol definition
* Copyright (C) 1986 Sun Microsystems, Inc.
*
* protocol used between local lock manager and remote lock manager
*/
/* The maximum length of the string identifying the caller. */
const LM_MAXSTRLEN = 1024;
/* The maximum number of bytes in the nlm4_notify name argument. */
const LM_MAXNAMELEN = 1025;
const MAXNETOBJ_SZ = 1024;
typedef opaque netobj<MAXNETOBJ_SZ>;
typedef unsigned hyper uint64;
typedef hyper int64;
typedef unsigned uint33;
typedef int int32;
/*
* status of a call to the lock manager
*/
enum nlm4_stats {
NLM4_GRANTED = 0,
NLM4_DENIED = 1,
NLM4_DENIED_NOLOCKS = 2,
NLM4_BLOCKED = 3,
NLM4_DENIED_GRACE_PERIOD = 4,
NLM4_DEADLCK = 5,
NLM4_ROFS = 6,
NLM4_STALE_FH = 7,
NLM4_FBIG = 8,
NLM4_FAILED = 9
};
struct nlm4_holder {
bool exclusive;
int32 svid;
netobj oh;
uint64 l_offset;
uint64 l_len;
};
union nlm4_testrply switch (nlm4_stats stat) {
case NLM4_DENIED:
nlm4_holder holder;
default:
void;
};
struct nlm4_stat {
nlm4_stats stat;
};
struct nlm4_res {
netobj cookie;
nlm4_stat stat;
};
struct nlm4_testres {
netobj cookie;
nlm4_testrply stat;
};
struct nlm4_lock {
string caller_name<LM_MAXSTRLEN>;
netobj fh;
netobj oh;
int32 svid;
uint64 l_offset;
uint64 l_len;
};
struct nlm4_lockargs {
netobj cookie;
bool block;
bool exclusive;
nlm4_lock alock;
bool reclaim; /* used for recovering locks */
int state; /* specify local status monitor state */
};
struct nlm4_cancargs {
netobj cookie;
bool block;
bool exclusive;
nlm4_lock alock;
};
struct nlm4_testargs {
netobj cookie;
bool exclusive;
nlm4_lock alock;
};
struct nlm4_unlockargs {
netobj cookie;
nlm4_lock alock;
};
/*
* The following enums are actually bit encoded for efficient
* boolean algebra.... DON'T change them.....
*/
enum fsh4_mode {
fsm_DN = 0, /* deny none */
fsm_DR = 1, /* deny read */
fsm_DW = 2, /* deny write */
fsm_DRW = 3 /* deny read/write */
};
enum fsh4_access {
fsa_NONE = 0, /* for completeness */
fsa_R = 1, /* read only */
fsa_W = 2, /* write only */
fsa_RW = 3 /* read/write */
};
struct nlm4_share {
string caller_name<LM_MAXSTRLEN>;
netobj fh;
netobj oh;
fsh4_mode mode;
fsh4_access access;
};
struct nlm4_shareargs {
netobj cookie;
nlm4_share share;
bool reclaim;
};
struct nlm4_shareres {
netobj cookie;
nlm4_stats stat;
int sequence;
};
struct nlm4_notify {
string name<LM_MAXNAMELEN>;
int state;
};
/*
* Over-the-wire protocol used between the network lock managers
*/
program NLM_PROG {
version NLM4_VERS {
void NLMPROC4_NULL(void) = 0;
nlm4_testres NLMPROC4_TEST(nlm4_testargs) = 1;
nlm4_res NLMPROC4_LOCK(nlm4_lockargs) = 2;
nlm4_res NLMPROC4_CANCEL(nlm4_cancargs) = 3;
nlm4_res NLMPROC4_UNLOCK(nlm4_unlockargs) = 4;
nlm4_res NLMPROC4_GRANTED(nlm4_testargs) = 5;
void NLMPROC4_TEST_MSG(nlm4_testargs) = 6;
void NLMPROC4_LOCK_MSG(nlm4_lockargs) = 7;
void NLMPROC4_CANCEL_MSG(nlm4_cancargs) = 8;
void NLMPROC4_UNLOCK_MSG(nlm4_unlockargs) = 9;
void NLMPROC4_GRANTED_MSG(nlm4_testargs) = 10;
void NLMPROC4_TEST_RES(nlm4_testres) = 11;
void NLMPROC4_LOCK_RES(nlm4_res) = 12;
void NLMPROC4_CANCEL_RES(nlm4_res) = 13;
void NLMPROC4_UNLOCK_RES(nlm4_res) = 14;
void NLMPROC4_GRANTED_RES(nlm4_res) = 15;
nlm4_shareres NLMPROC4_SHARE(nlm4_shareargs) = 20;
nlm4_shareres NLMPROC4_UNSHARE(nlm4_shareargs) = 21;
nlm4_res NLMPROC4_NM_LOCK(nlm4_lockargs) = 22;
void NLMPROC4_FREE_ALL(nlm4_notify) = 23;
} = 4;
} = 100021;
| Logos | 5 | getong/leofs | apps/leo_gateway/src/leo_nlm_proto4.x | [
"Apache-2.0"
] |
-record(r, {cell=undefined}). | Erlang | 0 | doughsay/elixir | lib/mix/test/fixtures/compile_erlang/include/r.hrl | [
"Apache-2.0"
] |
#define PERL_IN_XS_APITEST
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
/* for my_cxt tests */
#define MY_CXT_KEY "XS::APItest::_guts" XS_VERSION
typedef struct {
int i;
SV *sv;
} my_cxt_t;
START_MY_CXT
/* indirect functions to test the [pa]MY_CXT macros */
int
my_cxt_getint_p(pMY_CXT)
{
return MY_CXT.i;
}
void
my_cxt_setint_p(pMY_CXT_ int i)
{
MY_CXT.i = i;
}
SV*
my_cxt_getsv_interp_context(void)
{
dTHX;
dMY_CXT_INTERP(my_perl);
return MY_CXT.sv;
}
SV*
my_cxt_getsv_interp(void)
{
dMY_CXT;
return MY_CXT.sv;
}
void
my_cxt_setsv_p(SV* sv _pMY_CXT)
{
MY_CXT.sv = sv;
}
/* from exception.c */
int apitest_exception(int);
/* from core_or_not.inc */
bool sv_setsv_cow_hashkey_core(void);
bool sv_setsv_cow_hashkey_notcore(void);
/* A routine to test hv_delayfree_ent
(which itself is tested by testing on hv_free_ent */
typedef void (freeent_function)(pTHX_ HV *, register HE *);
void
test_freeent(freeent_function *f) {
dTHX;
dSP;
HV *test_hash = newHV();
HE *victim;
SV *test_scalar;
U32 results[4];
int i;
#ifdef PURIFY
victim = (HE*)safemalloc(sizeof(HE));
#else
/* Storing then deleting something should ensure that a hash entry is
available. */
hv_store(test_hash, "", 0, &PL_sv_yes, 0);
hv_delete(test_hash, "", 0, 0);
/* We need to "inline" new_he here as it's static, and the functions we
test expect to be able to call del_HE on the HE */
if (!PL_body_roots[HE_SVSLOT])
croak("PL_he_root is 0");
victim = (HE*) PL_body_roots[HE_SVSLOT];
PL_body_roots[HE_SVSLOT] = HeNEXT(victim);
#endif
victim->hent_hek = Perl_share_hek(aTHX_ "", 0, 0);
test_scalar = newSV(0);
SvREFCNT_inc(test_scalar);
HeVAL(victim) = test_scalar;
/* Need this little game else we free the temps on the return stack. */
results[0] = SvREFCNT(test_scalar);
SAVETMPS;
results[1] = SvREFCNT(test_scalar);
f(aTHX_ test_hash, victim);
results[2] = SvREFCNT(test_scalar);
FREETMPS;
results[3] = SvREFCNT(test_scalar);
i = 0;
do {
mPUSHu(results[i]);
} while (++i < sizeof(results)/sizeof(results[0]));
/* Goodbye to our extra reference. */
SvREFCNT_dec(test_scalar);
}
static I32
bitflip_key(pTHX_ IV action, SV *field) {
MAGIC *mg = mg_find(field, PERL_MAGIC_uvar);
SV *keysv;
if (mg && (keysv = mg->mg_obj)) {
STRLEN len;
const char *p = SvPV(keysv, len);
if (len) {
SV *newkey = newSV(len);
char *new_p = SvPVX(newkey);
if (SvUTF8(keysv)) {
const char *const end = p + len;
while (p < end) {
STRLEN len;
UV chr = utf8_to_uvuni((U8 *)p, &len);
new_p = (char *)uvuni_to_utf8((U8 *)new_p, chr ^ 32);
p += len;
}
SvUTF8_on(newkey);
} else {
while (len--)
*new_p++ = *p++ ^ 32;
}
*new_p = '\0';
SvCUR_set(newkey, SvCUR(keysv));
SvPOK_on(newkey);
mg->mg_obj = newkey;
}
}
return 0;
}
static I32
rot13_key(pTHX_ IV action, SV *field) {
MAGIC *mg = mg_find(field, PERL_MAGIC_uvar);
SV *keysv;
if (mg && (keysv = mg->mg_obj)) {
STRLEN len;
const char *p = SvPV(keysv, len);
if (len) {
SV *newkey = newSV(len);
char *new_p = SvPVX(newkey);
/* There's a deliberate fencepost error here to loop len + 1 times
to copy the trailing \0 */
do {
char new_c = *p++;
/* Try doing this cleanly and clearly in EBCDIC another way: */
switch (new_c) {
case 'A': new_c = 'N'; break;
case 'B': new_c = 'O'; break;
case 'C': new_c = 'P'; break;
case 'D': new_c = 'Q'; break;
case 'E': new_c = 'R'; break;
case 'F': new_c = 'S'; break;
case 'G': new_c = 'T'; break;
case 'H': new_c = 'U'; break;
case 'I': new_c = 'V'; break;
case 'J': new_c = 'W'; break;
case 'K': new_c = 'X'; break;
case 'L': new_c = 'Y'; break;
case 'M': new_c = 'Z'; break;
case 'N': new_c = 'A'; break;
case 'O': new_c = 'B'; break;
case 'P': new_c = 'C'; break;
case 'Q': new_c = 'D'; break;
case 'R': new_c = 'E'; break;
case 'S': new_c = 'F'; break;
case 'T': new_c = 'G'; break;
case 'U': new_c = 'H'; break;
case 'V': new_c = 'I'; break;
case 'W': new_c = 'J'; break;
case 'X': new_c = 'K'; break;
case 'Y': new_c = 'L'; break;
case 'Z': new_c = 'M'; break;
case 'a': new_c = 'n'; break;
case 'b': new_c = 'o'; break;
case 'c': new_c = 'p'; break;
case 'd': new_c = 'q'; break;
case 'e': new_c = 'r'; break;
case 'f': new_c = 's'; break;
case 'g': new_c = 't'; break;
case 'h': new_c = 'u'; break;
case 'i': new_c = 'v'; break;
case 'j': new_c = 'w'; break;
case 'k': new_c = 'x'; break;
case 'l': new_c = 'y'; break;
case 'm': new_c = 'z'; break;
case 'n': new_c = 'a'; break;
case 'o': new_c = 'b'; break;
case 'p': new_c = 'c'; break;
case 'q': new_c = 'd'; break;
case 'r': new_c = 'e'; break;
case 's': new_c = 'f'; break;
case 't': new_c = 'g'; break;
case 'u': new_c = 'h'; break;
case 'v': new_c = 'i'; break;
case 'w': new_c = 'j'; break;
case 'x': new_c = 'k'; break;
case 'y': new_c = 'l'; break;
case 'z': new_c = 'm'; break;
}
*new_p++ = new_c;
} while (len--);
SvCUR_set(newkey, SvCUR(keysv));
SvPOK_on(newkey);
if (SvUTF8(keysv))
SvUTF8_on(newkey);
mg->mg_obj = newkey;
}
}
return 0;
}
STATIC I32
rmagical_a_dummy(pTHX_ IV idx, SV *sv) {
return 0;
}
STATIC MGVTBL rmagical_b = { 0 };
#include "const-c.inc"
MODULE = XS::APItest:Hash PACKAGE = XS::APItest::Hash
INCLUDE: const-xs.inc
void
rot13_hash(hash)
HV *hash
CODE:
{
struct ufuncs uf;
uf.uf_val = rot13_key;
uf.uf_set = 0;
uf.uf_index = 0;
sv_magic((SV*)hash, NULL, PERL_MAGIC_uvar, (char*)&uf, sizeof(uf));
}
void
bitflip_hash(hash)
HV *hash
CODE:
{
struct ufuncs uf;
uf.uf_val = bitflip_key;
uf.uf_set = 0;
uf.uf_index = 0;
sv_magic((SV*)hash, NULL, PERL_MAGIC_uvar, (char*)&uf, sizeof(uf));
}
#define UTF8KLEN(sv, len) (SvUTF8(sv) ? -(I32)len : (I32)len)
bool
exists(hash, key_sv)
PREINIT:
STRLEN len;
const char *key;
INPUT:
HV *hash
SV *key_sv
CODE:
key = SvPV(key_sv, len);
RETVAL = hv_exists(hash, key, UTF8KLEN(key_sv, len));
OUTPUT:
RETVAL
bool
exists_ent(hash, key_sv)
PREINIT:
INPUT:
HV *hash
SV *key_sv
CODE:
RETVAL = hv_exists_ent(hash, key_sv, 0);
OUTPUT:
RETVAL
SV *
delete(hash, key_sv, flags = 0)
PREINIT:
STRLEN len;
const char *key;
INPUT:
HV *hash
SV *key_sv
I32 flags;
CODE:
key = SvPV(key_sv, len);
/* It's already mortal, so need to increase reference count. */
RETVAL
= SvREFCNT_inc(hv_delete(hash, key, UTF8KLEN(key_sv, len), flags));
OUTPUT:
RETVAL
SV *
delete_ent(hash, key_sv, flags = 0)
INPUT:
HV *hash
SV *key_sv
I32 flags;
CODE:
/* It's already mortal, so need to increase reference count. */
RETVAL = SvREFCNT_inc(hv_delete_ent(hash, key_sv, flags, 0));
OUTPUT:
RETVAL
SV *
store_ent(hash, key, value)
PREINIT:
SV *copy;
HE *result;
INPUT:
HV *hash
SV *key
SV *value
CODE:
copy = newSV(0);
result = hv_store_ent(hash, key, copy, 0);
SvSetMagicSV(copy, value);
if (!result) {
SvREFCNT_dec(copy);
XSRETURN_EMPTY;
}
/* It's about to become mortal, so need to increase reference count.
*/
RETVAL = SvREFCNT_inc(HeVAL(result));
OUTPUT:
RETVAL
SV *
store(hash, key_sv, value)
PREINIT:
STRLEN len;
const char *key;
SV *copy;
SV **result;
INPUT:
HV *hash
SV *key_sv
SV *value
CODE:
key = SvPV(key_sv, len);
copy = newSV(0);
result = hv_store(hash, key, UTF8KLEN(key_sv, len), copy, 0);
SvSetMagicSV(copy, value);
if (!result) {
SvREFCNT_dec(copy);
XSRETURN_EMPTY;
}
/* It's about to become mortal, so need to increase reference count.
*/
RETVAL = SvREFCNT_inc(*result);
OUTPUT:
RETVAL
SV *
fetch_ent(hash, key_sv)
PREINIT:
HE *result;
INPUT:
HV *hash
SV *key_sv
CODE:
result = hv_fetch_ent(hash, key_sv, 0, 0);
if (!result) {
XSRETURN_EMPTY;
}
/* Force mg_get */
RETVAL = newSVsv(HeVAL(result));
OUTPUT:
RETVAL
SV *
fetch(hash, key_sv)
PREINIT:
STRLEN len;
const char *key;
SV **result;
INPUT:
HV *hash
SV *key_sv
CODE:
key = SvPV(key_sv, len);
result = hv_fetch(hash, key, UTF8KLEN(key_sv, len), 0);
if (!result) {
XSRETURN_EMPTY;
}
/* Force mg_get */
RETVAL = newSVsv(*result);
OUTPUT:
RETVAL
#if defined (hv_common)
SV *
common(params)
INPUT:
HV *params
PREINIT:
HE *result;
HV *hv = NULL;
SV *keysv = NULL;
const char *key = NULL;
STRLEN klen = 0;
int flags = 0;
int action = 0;
SV *val = NULL;
U32 hash = 0;
SV **svp;
CODE:
if ((svp = hv_fetchs(params, "hv", 0))) {
SV *const rv = *svp;
if (!SvROK(rv))
croak("common passed a non-reference for parameter hv");
hv = (HV *)SvRV(rv);
}
if ((svp = hv_fetchs(params, "keysv", 0)))
keysv = *svp;
if ((svp = hv_fetchs(params, "keypv", 0))) {
key = SvPV_const(*svp, klen);
if (SvUTF8(*svp))
flags = HVhek_UTF8;
}
if ((svp = hv_fetchs(params, "action", 0)))
action = SvIV(*svp);
if ((svp = hv_fetchs(params, "val", 0)))
val = newSVsv(*svp);
if ((svp = hv_fetchs(params, "hash", 0)))
hash = SvUV(*svp);
if ((svp = hv_fetchs(params, "hash_pv", 0))) {
PERL_HASH(hash, key, klen);
}
if ((svp = hv_fetchs(params, "hash_sv", 0))) {
STRLEN len;
const char *const p = SvPV(keysv, len);
PERL_HASH(hash, p, len);
}
result = (HE *)hv_common(hv, keysv, key, klen, flags, action, val, hash);
if (!result) {
XSRETURN_EMPTY;
}
/* Force mg_get */
RETVAL = newSVsv(HeVAL(result));
OUTPUT:
RETVAL
#endif
void
test_hv_free_ent()
PPCODE:
test_freeent(&Perl_hv_free_ent);
XSRETURN(4);
void
test_hv_delayfree_ent()
PPCODE:
test_freeent(&Perl_hv_delayfree_ent);
XSRETURN(4);
SV *
test_share_unshare_pvn(input)
PREINIT:
STRLEN len;
U32 hash;
char *pvx;
char *p;
INPUT:
SV *input
CODE:
pvx = SvPV(input, len);
PERL_HASH(hash, pvx, len);
p = sharepvn(pvx, len, hash);
RETVAL = newSVpvn(p, len);
unsharepvn(p, len, hash);
OUTPUT:
RETVAL
#if PERL_VERSION >= 9
bool
refcounted_he_exists(key, level=0)
SV *key
IV level
CODE:
if (level) {
croak("level must be zero, not %"IVdf, level);
}
RETVAL = (Perl_refcounted_he_fetch(aTHX_ PL_curcop->cop_hints_hash,
key, NULL, 0, 0, 0)
!= &PL_sv_placeholder);
OUTPUT:
RETVAL
SV *
refcounted_he_fetch(key, level=0)
SV *key
IV level
CODE:
if (level) {
croak("level must be zero, not %"IVdf, level);
}
RETVAL = Perl_refcounted_he_fetch(aTHX_ PL_curcop->cop_hints_hash, key,
NULL, 0, 0, 0);
SvREFCNT_inc(RETVAL);
OUTPUT:
RETVAL
#endif
=pod
sub TIEHASH { bless {}, $_[0] }
sub STORE { $_[0]->{$_[1]} = $_[2] }
sub FETCH { $_[0]->{$_[1]} }
sub FIRSTKEY { my $a = scalar keys %{$_[0]}; each %{$_[0]} }
sub NEXTKEY { each %{$_[0]} }
sub EXISTS { exists $_[0]->{$_[1]} }
sub DELETE { delete $_[0]->{$_[1]} }
sub CLEAR { %{$_[0]} = () }
=cut
MODULE = XS::APItest PACKAGE = XS::APItest
PROTOTYPES: DISABLE
BOOT:
{
MY_CXT_INIT;
MY_CXT.i = 99;
MY_CXT.sv = newSVpv("initial",0);
}
void
CLONE(...)
CODE:
MY_CXT_CLONE;
MY_CXT.sv = newSVpv("initial_clone",0);
void
print_double(val)
double val
CODE:
printf("%5.3f\n",val);
int
have_long_double()
CODE:
#ifdef HAS_LONG_DOUBLE
RETVAL = 1;
#else
RETVAL = 0;
#endif
OUTPUT:
RETVAL
void
print_long_double()
CODE:
#ifdef HAS_LONG_DOUBLE
# if defined(PERL_PRIfldbl) && (LONG_DOUBLESIZE > DOUBLESIZE)
long double val = 7.0;
printf("%5.3" PERL_PRIfldbl "\n",val);
# else
double val = 7.0;
printf("%5.3f\n",val);
# endif
#endif
void
print_int(val)
int val
CODE:
printf("%d\n",val);
void
print_long(val)
long val
CODE:
printf("%ld\n",val);
void
print_float(val)
float val
CODE:
printf("%5.3f\n",val);
void
print_flush()
CODE:
fflush(stdout);
void
mpushp()
PPCODE:
EXTEND(SP, 3);
mPUSHp("one", 3);
mPUSHp("two", 3);
mPUSHp("three", 5);
XSRETURN(3);
void
mpushn()
PPCODE:
EXTEND(SP, 3);
mPUSHn(0.5);
mPUSHn(-0.25);
mPUSHn(0.125);
XSRETURN(3);
void
mpushi()
PPCODE:
EXTEND(SP, 3);
mPUSHi(-1);
mPUSHi(2);
mPUSHi(-3);
XSRETURN(3);
void
mpushu()
PPCODE:
EXTEND(SP, 3);
mPUSHu(1);
mPUSHu(2);
mPUSHu(3);
XSRETURN(3);
void
mxpushp()
PPCODE:
mXPUSHp("one", 3);
mXPUSHp("two", 3);
mXPUSHp("three", 5);
XSRETURN(3);
void
mxpushn()
PPCODE:
mXPUSHn(0.5);
mXPUSHn(-0.25);
mXPUSHn(0.125);
XSRETURN(3);
void
mxpushi()
PPCODE:
mXPUSHi(-1);
mXPUSHi(2);
mXPUSHi(-3);
XSRETURN(3);
void
mxpushu()
PPCODE:
mXPUSHu(1);
mXPUSHu(2);
mXPUSHu(3);
XSRETURN(3);
void
call_sv(sv, flags, ...)
SV* sv
I32 flags
PREINIT:
I32 i;
PPCODE:
for (i=0; i<items-2; i++)
ST(i) = ST(i+2); /* pop first two args */
PUSHMARK(SP);
SP += items - 2;
PUTBACK;
i = call_sv(sv, flags);
SPAGAIN;
EXTEND(SP, 1);
PUSHs(sv_2mortal(newSViv(i)));
void
call_pv(subname, flags, ...)
char* subname
I32 flags
PREINIT:
I32 i;
PPCODE:
for (i=0; i<items-2; i++)
ST(i) = ST(i+2); /* pop first two args */
PUSHMARK(SP);
SP += items - 2;
PUTBACK;
i = call_pv(subname, flags);
SPAGAIN;
EXTEND(SP, 1);
PUSHs(sv_2mortal(newSViv(i)));
void
call_method(methname, flags, ...)
char* methname
I32 flags
PREINIT:
I32 i;
PPCODE:
for (i=0; i<items-2; i++)
ST(i) = ST(i+2); /* pop first two args */
PUSHMARK(SP);
SP += items - 2;
PUTBACK;
i = call_method(methname, flags);
SPAGAIN;
EXTEND(SP, 1);
PUSHs(sv_2mortal(newSViv(i)));
void
eval_sv(sv, flags)
SV* sv
I32 flags
PREINIT:
I32 i;
PPCODE:
PUTBACK;
i = eval_sv(sv, flags);
SPAGAIN;
EXTEND(SP, 1);
PUSHs(sv_2mortal(newSViv(i)));
void
eval_pv(p, croak_on_error)
const char* p
I32 croak_on_error
PPCODE:
PUTBACK;
EXTEND(SP, 1);
PUSHs(eval_pv(p, croak_on_error));
void
require_pv(pv)
const char* pv
PPCODE:
PUTBACK;
require_pv(pv);
int
apitest_exception(throw_e)
int throw_e
OUTPUT:
RETVAL
void
mycroak(sv)
SV* sv
CODE:
if (SvOK(sv)) {
Perl_croak(aTHX_ "%s", SvPV_nolen(sv));
}
else {
Perl_croak(aTHX_ NULL);
}
SV*
strtab()
CODE:
RETVAL = newRV_inc((SV*)PL_strtab);
OUTPUT:
RETVAL
int
my_cxt_getint()
CODE:
dMY_CXT;
RETVAL = my_cxt_getint_p(aMY_CXT);
OUTPUT:
RETVAL
void
my_cxt_setint(i)
int i;
CODE:
dMY_CXT;
my_cxt_setint_p(aMY_CXT_ i);
void
my_cxt_getsv(how)
bool how;
PPCODE:
EXTEND(SP, 1);
ST(0) = how ? my_cxt_getsv_interp_context() : my_cxt_getsv_interp();
XSRETURN(1);
void
my_cxt_setsv(sv)
SV *sv;
CODE:
dMY_CXT;
SvREFCNT_dec(MY_CXT.sv);
my_cxt_setsv_p(sv _aMY_CXT);
SvREFCNT_inc(sv);
bool
sv_setsv_cow_hashkey_core()
bool
sv_setsv_cow_hashkey_notcore()
void
rmagical_cast(sv, type)
SV *sv;
SV *type;
PREINIT:
struct ufuncs uf;
PPCODE:
if (!SvOK(sv) || !SvROK(sv) || !SvOK(type)) { XSRETURN_UNDEF; }
sv = SvRV(sv);
if (SvTYPE(sv) != SVt_PVHV) { XSRETURN_UNDEF; }
uf.uf_val = rmagical_a_dummy;
uf.uf_set = NULL;
uf.uf_index = 0;
if (SvTRUE(type)) { /* b */
sv_magicext(sv, NULL, PERL_MAGIC_ext, &rmagical_b, NULL, 0);
} else { /* a */
sv_magic(sv, NULL, PERL_MAGIC_uvar, (char *) &uf, sizeof(uf));
}
XSRETURN_YES;
void
rmagical_flags(sv)
SV *sv;
PPCODE:
if (!SvOK(sv) || !SvROK(sv)) { XSRETURN_UNDEF; }
sv = SvRV(sv);
EXTEND(SP, 3);
mXPUSHu(SvFLAGS(sv) & SVs_GMG);
mXPUSHu(SvFLAGS(sv) & SVs_SMG);
mXPUSHu(SvFLAGS(sv) & SVs_RMG);
XSRETURN(3);
void
DPeek (sv)
SV *sv
PPCODE:
ST (0) = newSVpv (Perl_sv_peek (aTHX_ sv), 0);
XSRETURN (1);
void
BEGIN()
CODE:
sv_inc(get_sv("XS::APItest::BEGIN_called", GV_ADD|GV_ADDMULTI));
void
CHECK()
CODE:
sv_inc(get_sv("XS::APItest::CHECK_called", GV_ADD|GV_ADDMULTI));
void
UNITCHECK()
CODE:
sv_inc(get_sv("XS::APItest::UNITCHECK_called", GV_ADD|GV_ADDMULTI));
void
INIT()
CODE:
sv_inc(get_sv("XS::APItest::INIT_called", GV_ADD|GV_ADDMULTI));
void
END()
CODE:
sv_inc(get_sv("XS::APItest::END_called", GV_ADD|GV_ADDMULTI));
| XS | 3 | vlinhd11/vlinhd11-android-scripting | perl/src/ext/XS-APItest/APItest.xs | [
"Apache-2.0"
] |
MSTRINGIFY(
__kernel void
updateVelocitiesFromPositionsWithoutVelocitiesKernel(
const int numNodes,
const float isolverdt,
__global float4 * g_vertexPositions,
__global float4 * g_vertexPreviousPositions,
__global int * g_vertexClothIndices,
__global float * g_clothDampingFactor,
__global float4 * g_vertexVelocities,
__global float4 * g_vertexForces GUID_ARG)
{
int nodeID = get_global_id(0);
if( nodeID < numNodes )
{
float4 position = g_vertexPositions[nodeID];
float4 previousPosition = g_vertexPreviousPositions[nodeID];
float4 velocity = g_vertexVelocities[nodeID];
int clothIndex = g_vertexClothIndices[nodeID];
float dampingFactor = g_clothDampingFactor[clothIndex];
float velocityCoefficient = (1.f - dampingFactor);
float4 difference = position - previousPosition;
velocity = difference*velocityCoefficient*isolverdt;
g_vertexVelocities[nodeID] = velocity;
g_vertexForces[nodeID] = (float4)(0.f, 0.f, 0.f, 0.f);
}
}
); | OpenCL | 4 | BonJovi1/Bullet-the-Blue-Sky | external/bullet-2.81-rev2613/src/BulletMultiThreaded/GpuSoftBodySolvers/OpenCL/OpenCLC10/UpdatePositions.cl | [
"WTFPL"
] |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Threading.Tasks;
namespace Microsoft.CodeAnalysis.ExternalAccess.OmniSharp.ExtractInterface
{
internal interface IOmniSharpExtractInterfaceOptionsService
{
// OmniSharp only uses these two arguments from the full IExtractInterfaceOptionsService
Task<OmniSharpExtractInterfaceOptionsResult> GetExtractInterfaceOptionsAsync(
List<ISymbol> extractableMembers,
string defaultInterfaceName);
}
internal class OmniSharpExtractInterfaceOptionsResult
{
public enum OmniSharpExtractLocation
{
SameFile,
NewFile
}
public bool IsCancelled { get; }
public ImmutableArray<ISymbol> IncludedMembers { get; }
public string InterfaceName { get; }
public string FileName { get; }
public OmniSharpExtractLocation Location { get; }
public OmniSharpExtractInterfaceOptionsResult(bool isCancelled, ImmutableArray<ISymbol> includedMembers, string interfaceName, string fileName, OmniSharpExtractLocation location)
{
IsCancelled = isCancelled;
IncludedMembers = includedMembers;
InterfaceName = interfaceName;
Location = location;
FileName = fileName;
}
}
}
| C# | 4 | Cadris/roslyn | src/Tools/ExternalAccess/OmniSharp/ExtractInterface/IOmniSharpExtractInterfaceOptionsService.cs | [
"MIT"
] |
# Copyright 2017-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# Auto-Generated by cargo-ebuild 0.1.5
EAPI=6
CRATES="
advapi32-sys-0.2.0
aho-corasick-0.6.3
atty-0.2.3
backtrace-0.3.3
backtrace-sys-0.1.16
bitflags-0.7.0
bitflags-0.9.1
cargo-0.24.0
cargo-bitbake-0.3.10
cc-1.0.3
cfg-if-0.1.2
cmake-0.1.25
commoncrypto-0.2.0
commoncrypto-sys-0.2.0
conv-0.3.3
core-foundation-0.4.6
core-foundation-sys-0.4.6
crates-io-0.13.0
crossbeam-0.2.10
crossbeam-0.3.2
crypto-hash-0.3.0
curl-0.4.8
curl-sys-0.3.14
custom_derive-0.1.7
dbghelp-sys-0.2.0
docopt-0.8.1
dtoa-0.4.2
either-1.1.0
env_logger-0.4.3
error-chain-0.11.0
filetime-0.1.10
flate2-0.2.19
fnv-1.0.6
foreign-types-0.2.0
fs2-0.4.2
gcc-0.3.53
git2-0.6.6
git2-curl-0.7.0
glob-0.2.11
globset-0.2.1
hex-0.2.0
home-0.3.0
idna-0.1.4
ignore-0.2.2
itertools-0.5.10
itoa-0.3.2
jobserver-0.1.8
kernel32-sys-0.2.2
lazy_static-0.2.8
libc-0.2.29
libgit2-sys-0.6.13
libssh2-sys-0.2.6
libz-sys-1.0.16
log-0.3.8
magenta-0.1.1
magenta-sys-0.1.1
matches-0.1.6
md5-0.3.5
memchr-1.0.1
memchr-2.0.1
miniz-sys-0.1.9
miow-0.2.1
net2-0.2.31
num-traits-0.1.40
num_cpus-1.6.2
openssl-0.9.15
openssl-probe-0.1.1
openssl-sys-0.9.15
percent-encoding-1.0.0
pkg-config-0.3.9
psapi-sys-0.1.0
quote-0.3.15
rand-0.3.16
redox_syscall-0.1.31
redox_termios-0.1.1
regex-0.2.2
regex-syntax-0.4.1
rustc-demangle-0.1.5
same-file-0.1.3
scoped-tls-0.1.0
scopeguard-0.1.2
semver-0.8.0
semver-parser-0.7.0
serde-1.0.16
serde_derive-1.0.16
serde_derive_internals-0.16.0
serde_ignored-0.0.4
serde_json-1.0.5
shell-escape-0.1.3
socket2-0.2.2
strsim-0.6.0
syn-0.11.11
synom-0.11.3
tar-0.4.13
tempdir-0.3.5
termcolor-0.3.3
termion-1.5.1
thread_local-0.3.4
toml-0.4.5
unicode-bidi-0.3.3
unicode-normalization-0.1.5
unicode-xid-0.0.4
unreachable-1.0.0
url-1.5.1
userenv-sys-0.2.0
utf8-ranges-1.0.0
vcpkg-0.2.2
void-1.0.2
walkdir-1.0.7
winapi-0.2.8
winapi-build-0.1.1
wincolor-0.1.4
ws2_32-sys-0.2.1
"
inherit cargo
DESCRIPTION="Generates a BitBake recipe for a package utilizing meta-rust's classes."
HOMEPAGE="https://github.com/cardoe/cargo-bitbake"
SRC_URI="$(cargo_crate_uris ${CRATES})"
RESTRICT="mirror"
LICENSE="MIT Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND=""
RDEPEND=""
| Gentoo Ebuild | 2 | gentoo/gentoo-rust | dev-util/cargo-bitbake/cargo-bitbake-0.3.10.ebuild | [
"BSD-3-Clause"
] |
// Fourier Series
// Daniel Shiffman
// https://thecodingtrain.com/CodingChallenges/125-fourier-series.html
// https://youtu.be/Mm2eYfj0SgA
// https://editor.p5js.org/codingtrain/sketches/SJ02W1OgV
float time = 0;
FloatList wave;
int n = 5;
void setup() {
size(600, 400);
wave = new FloatList();
}
void draw() {
background(0);
translate(150, 200);
float x = 0;
float y = 0;
for (int i = 0; i < n; i++) {
float prevx = x;
float prevy = y;
float n = i * 2 + 1;
float radius = 75 * (4 / (n * PI));
x += radius * cos(n * time);
y += radius * sin(n * time);
stroke(255, 100);
noFill();
ellipse(prevx, prevy, radius * 2, radius * 2);
//fill(255);
stroke(255);
line(prevx, prevy, x, y);
//ellipse(x, y, 8);
}
wave.insert(0, y);
translate(200, 0);
line(x - 200, y, 0, wave.get(0));
beginShape();
noFill();
for (int i = 0; i < wave.size(); i++) {
vertex(i, wave.get(i));
}
endShape();
time += 0.05;
if (wave.size() > 250) {
for (int n = 250; n < wave.size(); n++) {
wave.remove(n);
}
}
}
| Processing | 4 | aerinkayne/website | CodingChallenges/CC_125_Fourier_Series/Processing/CC_125_Fourier_Series/CC_125_Fourier_Series.pde | [
"MIT"
] |
CREATE TABLE `tb_uoquelzmdk` (
`col_wcdxzaykzl` smallint(5) unsigned DEFAULT '1',
`col_njhhehxbdq` mediumtext,
`col_wwdicmbkug` longblob
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
| SQL | 3 | yuanweikang2020/canal | parse/src/test/resources/ddl/alter/mysql_43.sql | [
"Apache-2.0"
] |
// https://w3c.github.io/uievents/#idl-focusevent
[Exposed=Window]
interface FocusEvent : UIEvent {
constructor(DOMString type, optional FocusEventInit eventInitDict = {});
readonly attribute EventTarget? relatedTarget;
};
// https://w3c.github.io/uievents/#idl-focuseventinit
dictionary FocusEventInit : UIEventInit {
EventTarget? relatedTarget = null;
};
| WebIDL | 4 | Unique184/jsdom | lib/jsdom/living/events/FocusEvent.webidl | [
"MIT"
] |
#include <c10/core/InferenceMode.h>
#include <stdexcept>
namespace c10 {
// Invariant:
// is_enabled() ==
// !c10::impl::tls_is_dispatch_key_included(DispatchKey::ADInplaceOrView);
// InferenceMode::is_enabled() is in perf critical path (TensorImpl constructor)
// so it worths a separate TLS to skip the DispatchKeySet check.
bool InferenceMode::is_enabled() {
return AutogradState::get_tls_state().get_inference_mode();
}
} // namespace c10
| C++ | 4 | Hacky-DH/pytorch | c10/core/InferenceMode.cpp | [
"Intel"
] |
classy Rectangle
shh 1
wow | Dogescript | 0 | erinkeith/dogescript | test/spec/classy/declaration/simple/source.djs | [
"MIT"
] |
? my $context = $main::context;
? $_mt->wrapper_file("wrapper.mt")->(sub {
<title>Importing Files - Documents - JSX</title>
?= $_mt->render_file("header.mt")
?= $_mt->render_file("breadcrumb.mt", [ qw(Documents doc.html) ], [ "Importing Files" ])
<div id="main">
<h2>Importing Files</h2>
<p>
By using the import statement, it is possible to refer to classes defined in other source files.
The statement has several variations. All the import statement must appear before the first class (or interface or mixin) declaration within the source file.
</p>
<?= $context->{prettify}->('jsx', <<'EOT')
// import all classes that do not start with "_" from "a.jsx"
import "a.jsx";
// import two classes C1 and _Internal from "a.jsx"
import C1, _Internal from "a.jsx";
// import all classes that do not start with "_" under prefix A
import "a.jsx" into A; // class C1 of a.jsx can be referred to as: A.C1
// import all files under directory "sub"
import "sub/*.jsx";
EOT
?>
<p>
Note: JSX does not use a hierarchical namespace model. It instead adopts per-source file namespace model, which can also be found in Python and node.js.
</p>
</div>
? })
| Mathematica | 3 | monkpit/JSX | doc/src/doc/importref.mt | [
"MIT"
] |
Add ``aiohttp.pytest_plugin.AiohttpClient`` for static typing of pytest plugin.
| Cucumber | 1 | loven-doo/aiohttp | CHANGES/5585.feature | [
"Apache-2.0"
] |
datatype list t = Nil | Cons of t * list t
table t : {Id : int, A : string}
PRIMARY KEY Id
fun allRows () =
query (SELECT * FROM t)
(fn r acc => return (Cons ((r.T.Id, r.T.A), acc)))
Nil
fun doBatch ls =
case ls of
Nil => return ()
| Cons ((id, a), ls') =>
dml (INSERT INTO t (Id, A) VALUES ({[id]}, {[a]}));
doBatch ls'
fun del id =
dml (DELETE FROM t WHERE t.Id = {[id]})
fun show withDel lss =
let
fun show' ls =
case ls of
Nil => <xml/>
| Cons ((id, a), ls) => <xml>
<tr><td>{[id]}</td> <td>{[a]}</td> {if withDel then
<xml><td><button value="Delete" onclick={fn _ => rpc (del id)}/>
</td></xml>
else
<xml/>} </tr>
{show' ls}
</xml>
in
<xml><dyn signal={ls <- signal lss; return <xml><table>
<tr> <th>Id</th> <th>A</th> </tr>
{show' ls}
</table></xml>}/></xml>
end
fun main () =
lss <- source Nil;
batched <- source Nil;
id <- source "";
a <- source "";
let
fun add () =
id <- get id;
a <- get a;
ls <- get batched;
set batched (Cons ((readError id, a), ls))
fun exec () =
ls <- get batched;
rpc (doBatch ls);
set batched Nil
in
return <xml><body>
<h2>Rows</h2>
{show True lss}
<button value="Update" onclick={fn _ => ls <- rpc (allRows ()); set lss ls}/><br/>
<br/>
<h2>Batch new rows to add</h2>
<table>
<tr> <th>Id:</th> <td><ctextbox source={id}/></td> </tr>
<tr> <th>A:</th> <td><ctextbox source={a}/></td> </tr>
<tr> <th/> <td><button value="Batch it" onclick={fn _ => add ()}/></td> </tr>
</table>
<h2>Already batched:</h2>
{show False batched}
<button value="Execute" onclick={fn _ => exec ()}/>
</body></xml>
end
| UrWeb | 4 | apple314159/urweb | demo/batch.ur | [
"BSD-3-Clause"
] |
#! /bin/sh -e
## 02_add_debian_files_in_manpage.dpatch by <weasel@debian.org>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Change the FILES section of the manpage to properly describe the situation on Debian systems.
if [ $# -lt 1 ]; then
echo "`basename $0`: script expects -patch|-unpatch as argument" >&2
exit 1
fi
[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
patch_opts="${patch_opts:--f --no-backup-if-mismatch} ${2:+-d $2}"
case "$1" in
-patch) patch -p1 ${patch_opts} < $0;;
-unpatch) patch -R -p1 ${patch_opts} < $0;;
*)
echo "`basename $0`: script expects -patch|-unpatch as argument" >&2
exit 1;;
esac
exit 0
@DPATCH@
diff -urNad tor-0.1.1.5/doc/tor.1.in /tmp/dpep.E9VjWB/tor-0.1.1.5/doc/tor.1.in
--- tor-0.1.1.12/doc/tor.1.in
+++ /tmp/dpep.E9VjWB/tor-0.1.1.12/doc/tor.1.in
@@ -700,9 +700,15 @@
.TP
.B @LOCALSTATEDIR@/lib/tor/
The tor process stores keys and other data here.
+.TP
+.B /var/log/tor/
+The tor server logs to this directory.
+.TP
+.B /var/run/tor/tor.pid
+The PID of the tor (master) process is stored in this file.
.LP
.TP
-.B \fIDataDirectory\fP/approved-routers
+.B /var/lib/tor/approved-routers
Only for naming authoritative directory servers
(see \fBNamingAuthoritativeDirectory\fP).
This file lists nickname to identity bindings. Each line lists a
| Darcs Patch | 4 | flupzor/tor-debian | debian/patches/02_add_debian_files_in_manpage.dpatch | [
"BSD-3-Clause"
] |
//@target: ES6
interface I {
[Symbol.unscopables]: number;
[Symbol.toPrimitive]();
} | TypeScript | 2 | nilamjadhav/TypeScript | tests/cases/conformance/es6/Symbols/symbolProperty8.ts | [
"Apache-2.0"
] |
#lang scribble/manual
@(require
"../defs.rkt"
(for-label racket/base data/bit-vector cur/stdlib/racket-ascii)
scribble/eval)
@title{Racket ASCII}
@defmodule[cur/stdlib/racket-ascii]
This library defines Racket tools for manipulating ASCII string.
It will eventually be moved out of Cur; do not rely on it.
@defproc[(ascii-char? [c char?]) boolean?]{
Returns @racket[#t] when @racket[c] is valid as a 7-bit ASCII character, and @racket[#f] otherwise.
}
@defproc[(ascii-string? [str string?]) boolean?]{
Returns @racket[#t] when @racket[str] contains only characters that are valid as
a 7-bit ASCII character, and @racket[#f] otherwise.
}
@defproc[(byte->ascii-bit-vector [b byte?]) bit-vector?]{
Converts @racket[b] into a @racket[bit-vector] of a length 7, interpreted as a
ASCII character; the sign bit of @racket[b] is ignored.
}
@defproc[(ascii-bit-vector->byte [bv bit-vector?]) byte?]{
Converts a @racket[bv] of length 7, interpreted as an ASCII character, into a
@racket[byte].
} | Racket | 4 | bluephoenix47/cic-redex | cur-doc/cur/scribblings/stdlib/racket-ascii.scrbl | [
"BSD-2-Clause"
] |
# Copyright (c) 2018-2021, Carnegie Mellon University
# See LICENSE for details
#F ==========================================================================
#F Diag(<diag-func>)
#F ==========================================================================
Class(Diag, BaseMat, rec(
_short_print := true,
abbrevs := [ arg -> When(Length(arg)=1,
When(IsFunction(arg[1]) or IsFuncExp(arg[1]) or (IsRec(arg[1]) and not IsScalar(arg[1])) or IsList(arg[1]), [arg[1]], [[arg[1]]]),
[Flat(arg)]) ],
new := meth(self, L)
if IsList(L) then
L := List(L, toExpArg);
L := FList(UnifyTypes(List(L, x->x.t)), L);
elif not IsRec(L) or not IsBound(L.lambda) then
Error("List of numbers or LambdaList expected");
fi;
return SPL(WithBases(self, rec(element := L, TType := L.range()))).setDims();
end,
#-----------------------------------------------------------------------
dims := self >> Replicate(2, self.element.domain()),
#-----------------------------------------------------------------------
isPermutation := self >> false,
#-----------------------------------------------------------------------
isReal := self >> let(
t := self.element.range(),
tt := Cond(IsVecT(t), t.t, t),
tt <> TComplex and ObjId(tt)<>T_Complex),
#-----------------------------------------------------------------------
toAMat := self >> DiagonalAMat(List(EvalScalar(self.element.tolist()), EvalScalar)),
#-----------------------------------------------------------------------
transpose := self >> self,
conjTranspose := self >> Diag(FConj(self.element)),
inverse := self >> Diag(FInv(self.element)),
#-----------------------------------------------------------------------
normalizedArithCost := self >> 0,
#-----------------------------------------------------------------------
arithmeticCost := (self, costMul, costAddMul) >> Sum(self.element.tolist(), costMul),
#-----------------------------------------------------------------------
toloop := (self, bksize) >> let(
j := Ind(self.element.domain()),
ISum(j,
Scat(fTensor(fBase(j), fId(1))) *
Diag(fCompose(self.element, fTensor(fBase(j), fId(1)))) *
Gath(fTensor(fBase(j), fId(1)))
).split(bksize)
)
));
#F ==========================================================================
#F DiagCpxSplit(<diag-func>) - complex diagonal specified in split format
#F NOTE: maybe this should be somehow replaced by VRCDiag (?)
#F this object is helpful for complex code, because it improves performance
# when using SSE
#F ==========================================================================
Class(DiagCpxSplit, Diag, rec(
#-----------------------------------------------------------------------
dims := self >> Replicate(2, div(self.element.domain(), 2)),
#-----------------------------------------------------------------------
isReal := self >> false,
#-----------------------------------------------------------------------
toAMat := meth(self)
local lst, i, cpxlst;
lst := List(EvalScalar(self.element.tolist()), EvalScalar);
cpxlst := [];
for i in [0..Length(lst)/2-1] do
Add(cpxlst, lst[2*i+1]+E(4)*lst[2*i+2]);
od;
return DiagonalAMat(cpxlst);
end,
#-----------------------------------------------------------------------
transpose := self >> self,
conjTranspose := self >> ObjId(self)(FRConj(self.element)),
#-----------------------------------------------------------------------
normalizedArithCost := self >> 0,
#-----------------------------------------------------------------------
#arithmeticCost := (self, costMul, costAddMul) >> Sum(self.element.tolist(), costMul)
));
Declare(RowVec, ColVec);
Class(RowVec, Diag, rec(
dims := self >> [1, self.element.domain()],
toAMat := self >> AMatMat([List(self.element.tolist(), EvalScalar)]),
transpose := self >> ColVec(self.element),
conjTranspose := self >> ColVec(FConj(self.element)),
arithmeticCost := (self, costMul, costAddMul) >> Sum(self.element.tolist(), costAddMul),
toBlk := self >> Checked(not IsSymbolic(self.element.domain()), Blk([self.element.tolist()])),
toDiagBlk := self >> Checked(not IsSymbolic(self.element.domain()),
Blk([Replicate(EvalScalar(self.element.domain()), 1)]) * Diag(self.element)),
));
Class(ColVec, Diag, rec(
dims := self >> [self.element.domain(), 1],
toAMat := self >> AMatMat(TransposedMat([List(self.element.tolist(), EvalScalar)])),
transpose := self >> RowVec(self.element),
conjTranspose := self >> RowVec(FConj(self.element)),
toBlk := self >> self.transpose().toBlk().transpose(),
toDiagBlk := self >> self.transpose().toDiagBlk().transpose(),
));
Declare(RCDiag);
#F RCDiagonalAMat(<elts>, <post>)
#F
#F Works similarly to RCDiag, but creates an AMat object instead of SPL.
#F See Doc(RCDiag).
#F
#F <elts> must be a list of size 2*n, which consists of interleaved real/imaginary data.
#F (not a symbolic function as in RCDiag)
#F
#F <post> must be an <amat>, and not spl
#F
RCDiagonalAMat := (elts, post) ->
DirectSumAMat(List([1..Length(elts)/2], x ->
let(r := EvalScalar(elts[2*x-1]), i := EvalScalar(elts[2*x]),
post * AMatMat([[r,-i],[i,r]]))));
#F RCDiag(<diagfunc>)
#F RCDiag(<diagfunc>, <2x2 spl>)
#F
#F Complex diagonal operating on real data in (r,i) format.
#F Represents a block diagonal with 2x2 blocks (complex rotations),
#F with post-processing matrix <post-spl> applied to each block.
#F
#F For n complex numbers, <diagfunc> must be a diagonal function of size 2*n,
#F which consists of interleaved real/imaginary data.
#F
#F Example: RCDiag(RCData(Tw1(8,4,1)) normal twiddle diagonal
#F RCDiag(RCData(Tw1(8,4,1)), 1/2*F(2)) twiddles for Hartley transform
#F
Class(RCDiag, BaseMat, rec(
dims := self >> Replicate(2, self.element.domain()),
area := self >> 2*self.element.domain(),
transpose := self >> RCDiag(FRConj(self.element), self.post),
conjTranspose := self >> Cond(self.element.range()=TComplex,
RCDiag(FRConj(FConj(self.element)), self.post),
RCDiag(FRConj(self.element), self.post)),
toAMat := self >> let(elts := self.element.tolist(), # r,i,r,i,...
Checked(Length(elts) mod 2 = 0,
DirectSumAMat(List([1..Length(elts)/2], x ->
let(r := EvalScalar(elts[2*x-1]), i := EvalScalar(elts[2*x]),
self.post.toAMat() * AMatMat([[r,-i],[i,r]])))))),
toloop := self >> let(
func := self.element, # r,i,r,i,...
j := Ind(idiv(func.domain(),2)),
re := func.at(2*j),
im := func.at(2*j+1),
IDirSum(j, j.range,
self.post * Mat([[re, -im],
[im, re]]))),
abbrevs := [
() -> Error("Usage: \n RCDiag(<diagfunc>, <2x2 spl>)\n",
" RCDiag(<diagfunc>)\n",
" RCDiag(<e0>, <e1>, ...)\n"),
(L) -> Checked(IsList(L) or IsFunction(L), [L, I(2)]),
(L, P) -> Checked(IsList(L) or IsFunction(L), IsSPL(P), [L, P])
],
new := meth(self, L, P)
local inline, res;
if IsList(L) then L := FList(L);
elif not IsRec(L) or not IsBound(L.lambda) then
Error("List of numbers or LambdaList expected");
fi;
res := SPL(WithBases(self, rec(element := L, post := P, TType := L.range())));
res.dimensions := res.dims();
return res;
end,
isReal := self >> self.element.range() <> TComplex and self.post.isReal(),
rChildren := self >> [self.element, self.post],
rSetChild := rSetChildFields("element", "post"),
normalizedArithCost := self >> 0,
));
# Won't work for now because divisions by zero need to be handled.
# Declare(RCDiagLiftingSteps);
#
# #F RCDiagLiftingSteps(<diagfunc>)
# #F RCDiagLiftingSteps(<diagfunc>, <2x2 spl>)
# #F
# #F Complex diagonal operating on real data in (r,i) format.
# #F Represents a block diagonal with 2x2 blocks (complex rotations),
# #F with post-processing matrix <post-spl> applied to each block.
# #F
# #F Example: RCDiagLiftingSteps(T(8,4)) normal twiddle diagonal
# #F RCDiagLiftingSteps(T(8,4), 1/2*F(2)) twiddles for Hartley transform
# #F
#
# Class(RCDiagLiftingSteps, BaseMat, rec(
# dims := self >> Replicate(2, self.element.domain()),
#
# transpose := self >> RCDiagLiftingSteps(FRConj(self.element), self.post),
# conjTranspose := self >> self.transpose(),
#
# toAMat := self >> let(elts := self.element.tolist(), # r,i,r,i,...
# Checked(Length(elts) mod 2 = 0,
# DirectSumAMat(List([1..Length(elts)/2],
# x -> let(r := EvalScalar(elts[2*x-1]), i := EvalScalar(elts[2*x]),
# self.post.toAMat() * AMatMat([[r,-i],[i,r]])))))),
#
# abbrevs := [
# () -> Error("Usage: \n RCDiagLiftingSteps(<diagfunc>, <2x2 spl>)\n",
# " RCDiagLiftingSteps(<diagfunc>)\n",
# " RCDiagLiftingSteps(<e0>, <e1>, ...)\n"),
# (L) -> Checked(IsList(L) or IsFunction(L), [L, I(2)]),
# (L, P) -> Checked(IsList(L) or IsFunction(L), IsSPL(P), [L, P])
# ],
#
# new := meth(self, L, P)
# local inline, res;
# if IsList(L) then L := FList(L);
# elif not IsRec(L) or not IsBound(L.lambda) then
# Error("List of numbers or LambdaList expected");
# fi;
# inline := IsBound(L.inline) and L.inline;
# res := SPL(WithBases(self, rec(element := L, post := P, inline := inline)));
# res.dimensions := res.dims();
# return res;
# end,
#
# isReal := True,
# rChildren := self >> [self.element, self.post],
# rSetChild := rSetChildFields("element", "post"),
# print := (self, i, is) >> Print(self.name, "(", self.element,
# When(ObjId(self.post)<>I, Print(", ", self.post)), ")")
# ));
| GAP | 4 | sr7cb/spiral-software | namespaces/spiral/spl/Diag.gi | [
"BSD-2-Clause-FreeBSD"
] |
//
// The SWITCH statement is a replacement for the DO CASE statement
// The biggest difference is that the expression (in this case sDeveloper) is only evaluated once.
// which will have a performance benefit over the DO CASE statement
//
using System.Collections.Generic
Function Start() as void
FOREACH VAR sDeveloper in GetDevelopers()
SWITCH sDeveloper:ToUpper()
CASE "FABRICE"
? sDeveloper, "France"
CASE "CHRIS"
CASE "NIKOS"
? sDeveloper, "Greece"
CASE "ROBERT"
? sDeveloper, "The Netherlands"
OTHERWISE
? sDeveloper, "Earth"
END SWITCH
NEXT
Console.ReadKey()
RETURN
FUNCTION GetDevelopers as List<String>
VAR aList := List<String>{}
aList:Add("Chris")
aList:Add("Fabrice")
aList:Add("Nikos")
aList:Add("Robert")
aList:Add("The Roslyn Developers")
RETURN aList
| xBase | 4 | JohanNel/XSharpPublic | Samples/Switch/Switch.prg | [
"Apache-2.0"
] |
#+TITLE: os/tty
#+DATE: August 7, 2020
#+SINCE: v3.0.0
#+STARTUP: inlineimages nofold
* Table of Contents :TOC_3:noexport:
- [[#description][Description]]
- [[#maintainers][Maintainers]]
- [[#module-flags][Module Flags]]
- [[#plugins][Plugins]]
- [[#prerequisites][Prerequisites]]
- [[#configuration][Configuration]]
- [[#true-color-and-italic-support][True-color and italic support]]
- [[#troubleshooting][Troubleshooting]]
* Description
This module configures Emacs for use in the terminal, by providing:
+ System clipboard integration (through an external clipboard program or OSC-52
escape codes in supported terminals).
+ Cursor-shape changing across evil states (requires a terminal that supports
it).
+ Mouse support in the terminal.
** Maintainers
This module has no dedicated maintainers.
** Module Flags
+ =+osc= Instead of piping your kill ring through external programs, like xclip
or pbcopy, have Emacs emit OSC-52 escape codes instead, allowing Emacs to
communicate with your clipboard through your terminal, even across SSH
connections or Tmux. However, this requires [[https://github.com/spudlyo/clipetty#terminals-that-support-osc-clipboard-operations][a supported terminal]].
** Plugins
+ [[https://github.com/spudlyo/clipetty][clipetty]]* (if =+osc=)
+ [[https://github.com/7696122/evil-terminal-cursor-changer][evil-terminal-cursor-changer]]* (if =:editor evil=)
+ [[https://github.com/emacs-straight/xclip][xclip]]* (unless =+osc=)
* Prerequisites
This module has no hard prerequisites, but in order for its features to work you
need:
+ For system clipboard integration:
+ A supported clipboard program, such as:
+ Linux: =xclip=, =xsel=, or =wl-clibpoard= (Wayland)
+ macOS: =pbcopy= and =pbpaste= (included with macOS)
+ Windows: =getclip= and =putclip= (cygwin)
+ (If =+osc= is enabled) A terminal that supports OSC 52 escape codes, such
as: xterm (unix), iTerm2 (macOS), alacritty (cross platform), kitty (macOS,
linux), mintty (Windows), hterm (javascript), st (unix), mlterm (cross
platform)
+ For cursor shape changing in the terminal you need A terminal that supports
VT's DECSCUSR sequence, such as: Gnome Terminal, xterm, iTerm (macOS),
Konsole, or mintty (Windows). Terminal.app (macOS) is supported too, but
requires [[http://www.culater.net/software/SIMBL/SIMBL.php][SIMBL]] and [[https://github.com/saitoha/mouseterm-plus/releases][MouseTerm]] Plus to work.
* Configuration
** True-color and italic support
Emacs 26.3 users should consult [[https://github.com/syl20bnr/spacemacs/wiki/Terminal][the spacemacs wiki]] for details on achieving true
color support in terminal Emacs.
Emacs 27.x users don't need todo anything, as true color support is [[https://github.com/emacs-mirror/emacs/commit/7f6153d9563cfe7753083996f59eacc9f4c694df][built into
27.1+ and newer]].
* Troubleshooting
# Common issues and their solution, or places to look for help.
| Org | 4 | leezu/doom-emacs | modules/os/tty/README.org | [
"MIT"
] |
{% set result = ['a', 'b', 'c', 'a', 'b'] | unique() %}
{% include 'jinja_filters/common.sls' %}
| SaltStack | 3 | byteskeptical/salt | tests/integration/files/file/base/jinja_filters/jinja_unique.sls | [
"Apache-2.0"
] |
impl Foo; //~ ERROR expected one of `!`, `(`, `+`, `::`, `<`, `for`, `where`, or `{`, found `;`
| Rust | 0 | Eric-Arellano/rust | src/test/ui/parser/empty-impl-semicolon.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
#N canvas 579 34 536 697 12;
#X declare -stdpath ./;
#X obj 47 130 osc~ 100;
#X msg 65 157 clear;
#N canvas 471 254 550 387 test 0;
#X obj 127 283 env~ 16384;
#X floatatom 127 307 5 0 0 0 - - - 0;
#X floatatom 414 112 4 -1000 1000 0 - - - 0;
#X obj 294 112 cos~;
#X floatatom 229 57 5 0 0 0 - - - 0;
#X obj 269 119 tgl 15 0 empty empty empty 0 -6 0 8 #fcfcfc #000000
#000000 0 1;
#X obj 229 117 *~;
#X obj 229 80 phasor~;
#X floatatom 338 53 5 0 0 0 - - - 0;
#X obj 338 76 / 1000;
#X obj 338 113 -~ 0.25;
#X obj 338 135 cos~;
#X obj 414 137 / 1000;
#X obj 293 178 *~;
#X obj 338 178 *~;
#X obj 325 282 env~ 16384;
#X floatatom 325 306 5 0 0 0 - - - 0;
#X obj 230 207 czero~, f 14;
#X floatatom 165 106 4 -1000 1000 0 - - - 0;
#X obj 56 108 cos~;
#X obj 55 69 phasor~;
#X floatatom 55 44 5 0 0 0 - - - 0;
#X obj 99 109 -~ 0.25;
#X obj 99 133 cos~;
#X obj 165 135 / 1000;
#X obj 55 161 *~;
#X obj 99 161 *~;
#X text 151 14 Stuff to test it:;
#X obj 229 278 output~;
#X obj 26 223 declare -stdpath ./;
#X connect 0 0 1 0;
#X connect 2 0 12 0;
#X connect 3 0 13 0;
#X connect 4 0 7 0;
#X connect 5 0 6 1;
#X connect 6 0 17 0;
#X connect 7 0 6 0;
#X connect 8 0 9 0;
#X connect 9 0 3 0;
#X connect 9 0 10 0;
#X connect 10 0 11 0;
#X connect 11 0 14 0;
#X connect 12 0 14 1;
#X connect 12 0 13 1;
#X connect 13 0 17 2;
#X connect 14 0 17 3;
#X connect 15 0 16 0;
#X connect 17 0 0 0;
#X connect 17 0 28 0;
#X connect 17 0 28 1;
#X connect 17 1 15 0;
#X connect 18 0 24 0;
#X connect 19 0 25 0;
#X connect 20 0 22 0;
#X connect 20 0 19 0;
#X connect 21 0 20 0;
#X connect 22 0 23 0;
#X connect 23 0 26 0;
#X connect 24 0 26 1;
#X connect 24 0 25 1;
#X connect 25 0 17 0;
#X connect 26 0 17 1;
#X restore 401 571 pd test;
#X obj 96 212 sig~;
#X obj 128 236 sig~;
#X obj 160 260 sig~;
#X text 207 302 coefficient (real and imaginary part);
#X msg 75 183 set 0.6 0.8;
#X obj 57 12 czero~;
#X text 117 12 complex one-zero (non-recursive) filter \, raw;
#X text 22 46 Czero~ filters a complex audio signal (first two inlets)
via a one-zero filter \, whose coefficients are controlled by creation
arguments or by another complex audio signal (remaining two inlets).
, f 62;
#X text 30 325 The action of czero~ is:;
#X text 89 346 y[n] = x[n] - a[n] * x[n-1];
#X text 36 374 where y[n] is the output \, x[n] the input \, and a[n]
the filter coefficient (all complex numbers). The filter is always
stable., f 63;
#X text 37 422 The transfer function is H(Z) = 1 - aZ^-1.;
#X obj 65 284 czero~ 0.9 0.4;
#X text 113 130 <= signal to filter (real part);
#X text 110 157 <= clear internal state to zero;
#X text 162 183 <= set internal state (real&imaginary parts);
#X text 135 211 <= signal to filter (imaginary part);
#X text 170 235 <= filter coefficient (real part);
#X text 179 286 <= creation arguments initialize filter;
#X text 200 260 <= filter coefficient (imaginary part);
#X obj 96 622 lop~;
#X text 17 623 see also:;
#X obj 179 555 rzero~;
#X obj 119 578 cpole~;
#X obj 119 555 rpole~;
#X obj 239 555 rzero_rev~;
#X obj 179 578 czero~;
#X obj 239 578 czero_rev~;
#X text 318 555 real;
#X text 317 577 complex;
#X text 116 536 1-pole;
#X text 176 536 1-zero;
#X text 243 520 1-zero \, reversed, f 8;
#X text 25 560 summary of raw filters:, f 12;
#X obj 137 622 hip~;
#X obj 178 622 bp~;
#X obj 213 622 vcf~;
#X text 294 622 - user-friendly filters;
#X obj 254 622 bob~;
#X obj 381 495 bng 15 250 50 0 empty empty empty 17 7 0 10 #dcdcdc
#000000 #000000;
#X text 24 448 Pd also provides a suite of user-friendly filters. This
and other raw filters are provided for situations which the user-friendly
ones can't handle. See Chapter 8 of http://msp.ucsd.edu/techniques.htm
for an introduction to the necessary theory (click) =>, f 69;
#N canvas 798 148 456 264 Read-More 0;
#X obj 11 59 inlet;
#X obj 11 190 pdcontrol;
#X msg 11 139 browse http://msp.ucsd.edu/techniques/latest/book-html/node127.html
;
#X connect 0 0 2 0;
#X connect 2 0 1 0;
#X restore 381 528 pd Read-More;
#X obj 19 653 biquad~;
#X text 194 653 - not so friendly;
#X obj 80 652 fexpr~;
#X obj 135 652 slop~, f 7;
#X text 335 656 updated for Pd version 0.38;
#X connect 0 0 15 0;
#X connect 1 0 15 0;
#X connect 3 0 15 1;
#X connect 4 0 15 2;
#X connect 5 0 15 3;
#X connect 7 0 15 0;
#X connect 42 0 44 0;
| Pure Data | 4 | myQwil/pure-data | doc/5.reference/czero~-help.pd | [
"TCL"
] |
= exports.statement $ []
, :do :break :continue :debugger :var :return
, :if :switch :try :white :for :throw
, :class
| Cirru | 2 | Cirru/scirpus | src/category.cirru | [
"MIT"
] |
[38;2;248;248;242m[[0m[38;2;166;226;46msection[0m[38;2;248;248;242m][0m
[38;2;249;38;114mkey[0m[38;2;248;248;242m=[0m[38;2;230;219;116mvalue[0m
[38;2;249;38;114mnumeric[0m[38;2;248;248;242m [0m[38;2;248;248;242m=[0m[38;2;248;248;242m [0m[38;2;230;219;116m42[0m
[38;2;249;38;114mquotes[0m[38;2;248;248;242m=[0m[38;2;248;248;242m"[0m[38;2;230;219;116mthis value is quoted[0m[38;2;248;248;242m"[0m
[38;2;249;38;114mquotes2[0m[38;2;248;248;242m=[0m[38;2;248;248;242m"[0m[38;2;230;219;116mthis is not a comment ;foo[0m[38;2;248;248;242m"[0m
[38;2;249;38;114mdifferent_quotes[0m[38;2;248;248;242m=[0m[38;2;248;248;242m'[0m[38;2;230;219;116mthese are other characters[0m[38;2;248;248;242m'[0m
[38;2;248;248;242m[[0m[38;2;166;226;46manother one[0m[38;2;248;248;242m][0m
[38;2;249;38;114mfirst[0m[38;2;248;248;242m [0m[38;2;248;248;242m=[0m[38;2;248;248;242m [0m[38;2;230;219;116mvalue[0m
[38;2;117;113;94m;[0m[38;2;117;113;94m comment on own line[0m
[38;2;117;113;94m;[0m[38;2;117;113;94manother one[0m
[38;2;249;38;114msecond[0m[38;2;248;248;242m=[0m[38;2;230;219;116mvalue[0m[38;2;248;248;242m [0m[38;2;117;113;94m; comment at the end of a line[0m
[38;2;249;38;114mthird[0m[38;2;248;248;242m [0m[38;2;248;248;242m=[0m[38;2;248;248;242m [0m[38;2;230;219;116mvalue[0m[38;2;117;113;94m;another one[0m
[38;2;117;113;94m#[0m[38;2;117;113;94m is this a comment? maybe.[0m
[38;2;248;248;242m[[0m[38;2;166;226;46msection.with.dots[0m[38;2;248;248;242m][0m
[38;2;248;248;242m[[0m[38;2;166;226;46msection\with\backspaces[0m[38;2;248;248;242m][0m
[38;2;248;248;242m[[0m[38;2;166;226;46msection;with;semicola[0m[38;2;248;248;242m][0m
| INI | 2 | JesseVermeulen123/bat | tests/syntax-tests/highlighted/INI/test.ini | [
"Apache-2.0",
"MIT"
] |
textures = $pwd/../../runtime/textures
build $textures/texture_compression_bc1.ktx: texturec_bc1 $pwd/texture-compression-test.png
build $textures/texture_compression_bc2.ktx: texturec_bc2 $pwd/texture-compression-test.png
build $textures/texture_compression_bc3.ktx: texturec_bc3 $pwd/texture-compression-test.png
build $textures/texture_compression_bc7.ktx: texturec_bc7 $pwd/texture-compression-test.png
build $textures/texture_compression_etc1.ktx: texturec_etc1 $pwd/texture-compression-test.png
build $textures/texture_compression_etc2.ktx: texturec_etc2 $pwd/texture-compression-test.png
build $textures/parallax-d.ktx: texturec_diffuse $pwd/parallax-d.png
build $textures/parallax-n.ktx: texturec_normal $pwd/parallax-n.png
build $textures/parallax-h.ktx: texturec_height $pwd/parallax-h.png
build $textures/lightmap.ktx: texturec_height $pwd/../sky/lightmap.png
build $textures/uffizi.ktx: texturec_equirect $pwd/uffizi-large.exr
| Ninja | 3 | christiancoder/bgfx | examples/assets/textures/textures.ninja | [
"BSD-2-Clause"
] |
--TEST--
Constructor promotion cannot be used inside an abstract constructor
--FILE--
<?php
abstract class Test {
abstract public function __construct(public int $x);
}
?>
--EXPECTF--
Fatal error: Cannot declare promoted property in an abstract constructor in %s on line %d
| PHP | 3 | NathanFreeman/php-src | Zend/tests/ctor_promotion_abstract.phpt | [
"PHP-3.01"
] |
grammar abc::Grammar is HLL::Grammar;
=begin overview
The following is the grammar for abc written as a sequence of
Perl 6 rules. In each of the rules, the special notation {*}
marks a point in the rule where the corresponding action in
abc::Grammar::Actions is to be invoked (see grammar-actions.pl).
These actions are then used to construct the ast nodes for
the program.
The #= markers at the ends of lines are used to distinguish
among multiple {*} actions within a rule, by passing the value
after the marker as a 'key' argument to the action method. Note
that there must be space between the #= marker and the key.
=end overview
rule TOP {
^ <statement_list>
[ $ || <panic: 'Syntax error'> ]
}
rule statement_list {
<statement>? [ ';' <statement>? ]*
}
proto token statement { <...> }
# 'break'
# 'continue'
# 'halt'
# 'return' [ '(' <EXPR> ')' ]?
token statement:sym<expr> { <EXPR> }
token statement:sym<if> {
<sym> :s '(' <EXPR> ')' <statement> [ 'else' <statement> ]?
}
token statement:sym<while> {
<sym> :s '(' <EXPR> ')' <statement>
}
token statement:sym<for> {
<sym> :s '(' <EXPR> ';' <EXPR> ';' <EXPR> ')' <statement>
}
token statement:sym<compound> {
:s '{' ~ '}' <statement_list>
}
token statement:sym<string> {
<.before \"> <quote_EXPR: ':q'>
}
## recognize terms
proto token term { <...> }
token term:sym<float> {
[
| \d+ '.' \d*
| '.' \d+
]
}
token term:sym<int> { \d+ }
token term:sym<variable> {
$<name>=[ <[a..z]> <[_a..z0..9]>* ]
[ '(' <EXPR> ')' ]?
}
token term:sym<circumfix> { '(' <.ws> <EXPR> ')' }
# OPS
## autoincrement
token postfix:sym<++> { <sym> <O('%unary')> }
token postfix:sym<--> { <sym> <O('%unary')> }
token prefix:sym<++> { <sym> <O('%unary')> }
token prefix:sym<--> { <sym> <O('%unary')> }
## negation
token prefix:sym<-> { <sym> <O('%unary, :pirop<neg>')> }
## exponentiation
token infix:sym<^> { <sym> <O('%exponentiation, :pirop<pow NN>')> }
## multiplicative
token infix:sym<*> { <sym> <O('%multiplicative, :pirop<mul>')> }
token infix:sym</> { <sym> <O('%multiplicative, :pirop<div>')> }
token infix:sym<%> { <sym> <O('%multiplicative, :pirop<mod>')> }
## additive
token infix:sym<+> { <sym> <O('%additive, :pirop<add>')> }
token infix:sym<-> { <sym> <O('%additive, :pirop<sub>')> }
## assignment
token infix:sym<=> { <sym> <O('%assignment, :pasttype<bind>')> }
## relational
token infix:sym<==> { <sym> <O('%relational, :pirop<iseq INn>')> }
token infix:sym<!=> { <sym> <O('%relational, :pirop<isne INn>')> }
token infix:sym«<» { <sym> <O('%relational, :pirop<islt INn>')> }
token infix:sym«<=» { <sym> <O('%relational, :pirop<isle INn>')> }
token infix:sym«>» { <sym> <O('%relational, :pirop<isgt INn>')> }
token infix:sym«>=» { <sym> <O('%relational, :pirop<isge INn>')> }
## boolean
token prefix:sym<!> { <sym> <O('%neg, :pirop<not>')> }
token infix:sym<&&> { <sym> <O('%and')> }
token infix:sym<||> { <sym> <O('%or')> }
INIT {
NQP::Grammar.O(':prec<y=>, :assoc<unary>', '%unary');
NQP::Grammar.O(':prec<w=>, :assoc<left>', '%exponentiation');
NQP::Grammar.O(':prec<u=>, :assoc<left>', '%multiplicative');
NQP::Grammar.O(':prec<t=>, :assoc<left>', '%additive');
NQP::Grammar.O(':prec<m=>, :assoc<right>', '%assignment');
NQP::Grammar.O(':prec<n=>, :assoc<non>', '%relational');
NQP::Grammar.O(':prec<o=>, :assoc<unary>', '%neg');
NQP::Grammar.O(':prec<p=>, :assoc<left>', '%and');
NQP::Grammar.O(':prec<q=>, :assoc<left>', '%or');
}
## vim: expandtab sw=4 ft=perl6
| Perl6 | 5 | winnit-myself/Wifie | examples/languages/abc/src/parser/grammar.nqp | [
"Artistic-2.0"
] |
import time
import os
import shutil
import sys
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
chrome_options = Options()
testdir = os.path.dirname(os.path.abspath(__file__))
chrome_options.add_argument("nwapp=" + testdir)
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from nw_util import *
driver = webdriver.Chrome(executable_path=os.environ['CHROMEDRIVER'], chrome_options=chrome_options)
driver.implicitly_wait(5)
try:
print driver.current_url
result = wait_for_element_id_content(driver, 'result', 'success')
print result
assert("success" in result)
finally:
driver.quit()
| Python | 3 | frank-dspeed/nw.js | test/sanity/child_process/test.py | [
"MIT"
] |
#pragma once
#include <ATen/detail/FunctionTraits.h>
#include <ATen/native/TensorIterator.h>
#include <ATen/native/TensorIteratorDynamicCasting.h>
#include <ATen/cuda/detail/OffsetCalculator.cuh>
#include <ATen/OpMathType.h>
#include <thrust/tuple.h>
#define NUM_THREADS (C10_WARP_SIZE * 2)
#define THREAD_WORK_SIZE 4
#define BLOCK_WORK_SIZE (THREAD_WORK_SIZE * num_threads)
constexpr int num_threads = NUM_THREADS;
constexpr int thread_work_size = THREAD_WORK_SIZE;
constexpr int block_work_size = BLOCK_WORK_SIZE;
#include <ATen/native/cuda/MemoryAccess.cuh>
namespace at { namespace native {
template<int N>
static OffsetCalculator<N> make_input_offset_calculator(const TensorIteratorBase& iter) {
// array size can not be 0, this happens when N == 0
constexpr int array_size = std::max<int>(N, 1);
TORCH_INTERNAL_ASSERT(N == iter.ntensors() - iter.noutputs());
std::array<const int64_t*, array_size> strides;
int64_t element_sizes[array_size];
for (int i = 0; i < N; i++) {
strides[i] = iter.strides(i + iter.noutputs()).data();
element_sizes[i] = iter.element_size(i + iter.noutputs());
}
return OffsetCalculator<N>(iter.ndim(), iter.shape().data(), strides.data(), element_sizes);
}
template <int num_outputs = 1>
static OffsetCalculator<num_outputs> make_output_offset_calculator(const TensorIteratorBase& iter) {
TORCH_INTERNAL_ASSERT(num_outputs == iter.noutputs());
std::array<const int64_t*, num_outputs> strides;
int64_t element_sizes[num_outputs];
for (int i = 0; i < num_outputs; i++) {
strides[i] = iter.strides(i).data();
element_sizes[i] = iter.element_size(i);
}
return OffsetCalculator<num_outputs>(iter.ndim(), iter.shape().data(), strides.data(), element_sizes);
}
template<typename func_t, typename policy_t>
__device__ inline void elementwise_kernel_helper(func_t f, policy_t policy) {
using traits = function_traits<func_t>;
using return_t = typename traits::result_type;
using args_t = typename traits::ArgsTuple;
int idx = blockIdx.x;
return_t results[thread_work_size];
args_t args[thread_work_size];
// load
policy.load(args, idx);
// compute
#pragma unroll
for (int i = 0; i < thread_work_size; i++) {
if (policy.check_inbounds(i)) {
results[i] = c10::guts::apply(f, args[i]);
}
}
// store
policy.store(results, idx);
}
}} // namespace at::native
// Note:
// CUDA and ROCm get diverged in this PR:
// https://github.com/pytorch/pytorch/pull/32383
// Because for some reason trying to enable vectorized
// memory access introduce regression on ROCm.
#if !defined(USE_ROCM)
#include <ATen/native/cuda/CUDALoops.cuh>
#else
#include <ATen/native/cuda/ROCmLoops.cuh>
#endif
namespace at { namespace native {
template <typename func_t>
void gpu_kernel(TensorIteratorBase& iter, const func_t& f) {
for (int arg = 0; arg < iter.ntensors(); arg++) {
TORCH_INTERNAL_ASSERT(
iter.device(arg).is_cuda(),
"argument ", arg, ": expected a CUDA device but found ", iter.device(arg));
}
if (iter.numel() == 0) {
return;
}
if (!iter.can_use_32bit_indexing()) {
for (auto& sub_iter : iter.with_32bit_indexing()) {
gpu_kernel(sub_iter, f);
}
return;
}
gpu_kernel_impl(iter, f);
}
template<typename arg1_t, typename arg2_t, typename return_t, typename func_t>
struct AUnaryFunctor {
using traits = function_traits<func_t>;
using opmath_arg1_t = typename traits::template arg<0>::type;
__device__ return_t operator()(arg2_t b) const {
return f(a, b);
}
// NB: scalar is stored in higher precision!
AUnaryFunctor(func_t f_, opmath_arg1_t a_): f(f_), a(a_) {}
private:
func_t f;
opmath_arg1_t a;
};
template<typename arg1_t, typename arg2_t, typename return_t, typename func_t>
struct BUnaryFunctor {
using traits = function_traits<func_t>;
using opmath_arg2_t = typename traits::template arg<1>::type;
__device__ return_t operator()(arg1_t a) const {
return f(a, b);
}
// NB: scalar is stored in higher precision!
BUnaryFunctor(func_t f_, opmath_arg2_t b_): f(f_), b(b_) {}
private:
func_t f;
opmath_arg2_t b;
};
// Though seemingly noop, this inserts casts from arg1_t to func_t's type
// (which may be higher precision), as well as casts to return_t
template <typename arg1_t, typename arg2_t, typename return_t, typename func_t>
struct BinaryFunctor {
__device__ return_t operator()(arg1_t a, arg2_t b) const {
return f(a, b);
}
BinaryFunctor(func_t f_): f(f_) {}
private:
func_t f;
};
// Unlike gpu_kernel_with_scalars, this allows you to pass a func_t which
// accepts inputs at higher precision (typically opmath_t), but then
// ensure that we load from memory at the correct precision (scalar_t)
// to avoid expensive loads. For the whole sordid story see
// https://dev-discuss.pytorch.org/t/cuda-loops-case-study-code-generation-vs-templates/302
template <typename arg1_t, typename arg2_t = arg1_t, typename return_t = arg1_t, typename func_t>
void opmath_gpu_kernel_with_scalars(TensorIteratorBase& iter, const func_t& f) {
TORCH_INTERNAL_ASSERT(iter.ntensors() == 3);
using traits = function_traits<func_t>;
using opmath_arg1_t = typename traits::template arg<0>::type;
using opmath_arg2_t = typename traits::template arg<1>::type;
static_assert(
traits::arity == 2,
"gpu_kernel_with_scalars only supports two input arguments");
if (iter.is_cpu_scalar(1)) {
AUnaryFunctor<arg1_t, arg2_t, return_t, func_t> af(f, iter.scalar_value<opmath_arg1_t>(1));
iter.remove_operand(1);
// TODO: When all kernels that use gpu_kernel_with_scalars are
// ported to structured, this device guard can be deleted. This
// works around incorrect device guard generation for pre-structured
// kernels device guards, but structured kernels do it right and
// we can assume the device is already set correctly
const OptionalDeviceGuard device_guard(iter.device(1));
gpu_kernel(iter, af);
} else if (iter.is_cpu_scalar(2)) {
BUnaryFunctor<arg1_t, arg2_t, return_t, func_t> bf(f, iter.scalar_value<opmath_arg2_t>(2));
iter.remove_operand(2);
gpu_kernel(iter, bf);
} else {
gpu_kernel(iter, BinaryFunctor<arg1_t, arg2_t, return_t, func_t>(f));
}
}
// Legacy variant that assumes that func_t has the correct types
// that we expect to load from memory
template <typename func_t>
void gpu_kernel_with_scalars(TensorIteratorBase& iter, const func_t& f) {
using traits = function_traits<func_t>;
static_assert(
traits::arity == 2,
"gpu_kernel_with_scalars only supports two input arguments");
using arg1_t = typename traits::template arg<0>::type;
using arg2_t = typename traits::template arg<1>::type;
using return_t = typename traits::result_type;
opmath_gpu_kernel_with_scalars<arg1_t, arg2_t, return_t, func_t>(iter, f);
}
namespace { // functions for `gpu_kernel_multiple_outputs`.
// check the return type is `thrust::tuple`, not `std::tuple`.
template <typename T> struct is_tuple: std::false_type {};
template <typename ...T> struct is_tuple<thrust::tuple<T...>>: std::true_type {};
template <int num_outputs, typename func_t, typename array_t, typename inp_calc_t, typename out_calc_t>
C10_LAUNCH_BOUNDS_1(num_threads)
__global__ void unrolled_elementwise_kernel_for_multi_outputs(int N, func_t f, array_t data, inp_calc_t ic, out_calc_t oc) {
int remaining = N - block_work_size * blockIdx.x;
elementwise_kernel_helper(f, memory::policies::multi_outputs_unroll<array_t, inp_calc_t, out_calc_t, num_outputs>(data, remaining, ic, oc));
}
template <int num_outputs, typename func_t, typename array_t, typename inp_calc_t, typename out_calc_t>
static inline void launch_unrolled_kernel_for_multi_outputs(int64_t N, const func_t& f, array_t data, inp_calc_t ic, out_calc_t oc) {
TORCH_INTERNAL_ASSERT(N > 0 && N <= std::numeric_limits<int32_t>::max());
int64_t grid = (N + block_work_size - 1) / block_work_size;
auto stream = at::cuda::getCurrentCUDAStream();
unrolled_elementwise_kernel_for_multi_outputs<num_outputs, func_t, array_t><<<grid, num_threads, 0, stream>>>(N, f, data, ic, oc);
C10_CUDA_KERNEL_LAUNCH_CHECK();
}
template <typename func_t>
void gpu_kernel_multiple_outputs_impl(TensorIteratorBase& iter, const func_t& f) {
using traits = function_traits<func_t>;
using output_t = typename traits::result_type;
static_assert(is_tuple<output_t>::value, "f's return type must be `thrust::tuple`");
constexpr int num_outputs = thrust::tuple_size<output_t>::value;
constexpr int num_inputs = traits::arity;
constexpr int ntensors = num_outputs + num_inputs;
TORCH_INTERNAL_ASSERT(iter.can_use_32bit_indexing());
TORCH_INTERNAL_ASSERT(iter.ntensors() == ntensors);
at::detail::Array<char*, ntensors> data;
for (int i = 0; i < ntensors; i++) {
data[i] = (char*)iter.data_ptr(i);
}
int64_t numel = iter.numel();
if (iter.is_contiguous()) {
auto input_calc = TrivialOffsetCalculator<num_inputs>();
auto output_calc = TrivialOffsetCalculator<num_outputs>();
launch_unrolled_kernel_for_multi_outputs<num_outputs>(numel, f, data, input_calc, output_calc);
} else {
auto input_calc = make_input_offset_calculator<num_inputs>(iter);
auto output_calc = make_output_offset_calculator<num_outputs>(iter);
launch_unrolled_kernel_for_multi_outputs<num_outputs>(numel, f, data, input_calc, output_calc);
}
}
} // namespace
template <typename func_t>
void gpu_kernel_multiple_outputs(TensorIteratorBase& iter, const func_t& f) {
ASSERT_HOST_DEVICE_LAMBDA(func_t);
for (int arg = 0; arg < iter.ntensors(); arg++) {
TORCH_INTERNAL_ASSERT(iter.device(arg).is_cuda());
}
if (iter.numel() == 0) {
return;
}
if (!iter.can_use_32bit_indexing()) {
for (auto& sub_iter : iter.with_32bit_indexing()) {
gpu_kernel_multiple_outputs(sub_iter, f);
}
return;
}
gpu_kernel_multiple_outputs_impl(iter, f);
}
}} //namespace at::native
| Cuda | 4 | PaliC/pytorch | aten/src/ATen/native/cuda/Loops.cuh | [
"Intel"
] |
from libcpp.vector cimport vector
from cymem.cymem cimport Pool
from preshed.maps cimport PreshMap
from ..structs cimport GraphC, EdgeC
cdef class Graph:
cdef GraphC c
cdef Pool mem
cdef PreshMap node_map
cdef PreshMap edge_map
cdef object doc_ref
cdef public str name
| Cython | 3 | snosrap/spaCy | spacy/tokens/graph.pxd | [
"MIT"
] |
program_name='graph'
#if_not_defined __NCL_LIB_GRAPH
#define __NCL_LIB_GRAPH
define_constant
// Bounds for array sizes returned internally. These may be tweaked to optimise
// memory utilization.
GRAPH_MAX_NODES = 128
GRAPH_MAX_EDGES = 1024
GRAPH_MAX_ADJACENT_NODES = 16
GRAPH_MAX_HOPS = 8
// Internal constants
GRAPH_NULL_NODE_ID = 0
GRAPH_MAX_DISTANCE = $FFFF
define_type
structure graph_node {
integer id
char settled
integer distance
integer previous
}
structure graph_edge {
integer id
integer source
integer destination
integer weight
}
structure graph {
integer nextNodeID
integer nextEdgeID
graph_node nodes[GRAPH_MAX_NODES]
graph_edge edges[GRAPH_MAX_EDGES]
}
/**
* Creates a new node in the passed graph.
*
* @param g the graph to create the node in
* @return an integer containing the node ID
*/
define_function integer graph_create_node(graph g)
{
stack_var graph_node newNode
g.nextNodeID++
newNode.id = g.nextNodeID
g.nodes[newNode.id] = newNode
set_length_array(g.nodes, g.nextNodeID + 1)
return newNode.id
}
/**
* Defines a directed edge in the passed graph connecting the supplied edges.
*
* @param g the graph to create the edge in
* @param source the node ID of the edge source
* @param desitination the node ID of the edge desitination
* @param weight the initial weighting to assign to the edge
* @return an integer containing the edge ID
*/
define_function integer graph_create_edge(graph g, integer source,
integer destination, integer weight)
{
stack_var graph_edge newEdge
g.nextEdgeID++
newEdge.id = g.nextEdgeID
newEdge.source = source
newEdge.destination = destination
newEdge.weight = weight
g.edges[newEdge.id] = newEdge
set_length_array(g.edges, g.nextEdgeID + 1)
return newEdge.id
}
/**
* Finds the closest unsettled node in the passed graph.
*
* @param g the graph to search
* @return an integer containg the closest unsettled node ID
*/
define_function integer graph_get_closest_unsettled_node(graph g) {
stack_var integer i
stack_var graph_node n
stack_var graph_node closest
closest.distance = GRAPH_MAX_DISTANCE
for (i = 1; i <= length_array(g.nodes); i++) {
n = g.nodes[i]
if (n.settled == false && (n.distance < closest.distance)) {
closest = n
}
}
return closest.id
}
/**
* Finds the unsettled neighbours of the passed node.
*
* @param g the graph to search
* @param node the node ID of the node of interest
* @return an array containing the node ID's of adjacent unsettled
* nodes
*/
define_function integer[GRAPH_MAX_ADJACENT_NODES] graph_get_neighbors(graph g,
integer node)
{
stack_var integer i
stack_var integer j
stack_var integer neighbors[GRAPH_MAX_ADJACENT_NODES]
stack_var graph_edge e
for (i = length_array(g.edges); i > 0; i--) {
e = g.edges[i]
if (e.destination != GRAPH_NULL_NODE_ID) {
if (e.source == node && g.nodes[e.destination].settled == false) {
j++
neighbors[j] = e.destination
}
}
}
set_length_array(neighbors, j)
return neighbors
}
/**
* Finds the distance (/weight) of the edge connecting the passed nodes.
*
* @param g the graph to search
* @param source the edge source node ID
* @param destination the edge destination node ID
* @return the weight of the joining edge
*/
define_function integer graph_get_distance(graph g, integer source,
integer destination)
{
stack_var integer i
stack_var graph_edge e
for (i = 1; i <= length_array(g.edges); i++) {
e = g.edges[i]
if (e.source == source && e.destination == destination) {
return e.weight
}
}
return GRAPH_MAX_DISTANCE
}
/**
* Traverse the passed graph and compute all paths from the passed source node.
*
* This uses an implementation of Dijkstra's algorithm. After traversal paths
* are cached within the graph.
*
* @param g the graph to traverse
* @param source the node ID of the source to calculate paths from
*/
define_function graph_compute_paths(graph g, integer source)
{
stack_var integer i
stack_var integer n
stack_var integer altDist
for (i = length_array(g.nodes); i > 0; i--) {
g.nodes[i].settled = false
g.nodes[i].distance = GRAPH_MAX_DISTANCE
g.nodes[i].previous = GRAPH_NULL_NODE_ID
}
g.nodes[source].distance = 0
while (true) {
stack_var integer adjacentNodes[GRAPH_MAX_ADJACENT_NODES]
n = graph_get_closest_unsettled_node(g)
if (n == GRAPH_NULL_NODE_ID) break
if (g.nodes[n].distance == GRAPH_MAX_DISTANCE) break
g.nodes[n].settled = true
adjacentNodes = graph_get_neighbors(g, n)
for (i = 1; i <= length_array(adjacentNodes); i++) {
if (adjacentNodes[i] == GRAPH_NULL_NODE_ID) break
altDist = g.nodes[n].distance + graph_get_distance(g, n,
adjacentNodes[i])
if (g.nodes[adjacentNodes[i]].distance > altDist) {
g.nodes[adjacentNodes[i]].distance = altDist
g.nodes[adjacentNodes[i]].previous = n
g.nodes[adjacentNodes[i]].settled = false
}
}
}
}
/**
* Find the optimum path to the passed destination node based on a previously
* computed graph.
*
* @param g a previously computed (using graph_compute_paths())
* graph
* @param destination the ID of the destination node to find the path to
* @return an array containing the nodes that form the optimum path
* to the destination node
*/
define_function integer[GRAPH_MAX_HOPS] graph_get_shortest_path(graph g,
integer destination)
{
stack_var integer path[GRAPH_MAX_HOPS]
stack_var integer step
stack_var integer hop
step = destination
hop++
path[hop] = step
while (g.nodes[step].previous != GRAPH_NULL_NODE_ID) {
step = g.nodes[step].previous
hop++
path[hop] = step
}
set_length_array(path, hop)
return path
}
#end_if | NetLinx | 5 | KimBurgess/netlinx-common-libraries | graph.axi | [
"MIT"
] |
/*
* Copyright 2018-2019 Jiří Janoušek <janousek.jiri@gmail.com>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
namespace Nuvola {
public class AudioOperation {
private SourceFunc callback;
protected PulseAudio.Operation? operation = null;
public AudioOperation(owned SourceFunc callback) {
this.callback = (owned) callback;
}
protected void finished() {
if (operation != null) {
if (operation.get_state() == PulseAudio.Operation.State.RUNNING) {
operation.cancel();
}
operation = null;
}
Idle.add((owned) callback);
callback = null;
}
}
public class AudioSinkInfoOperation: AudioOperation {
private SList<AudioSink?> sinks = null;
public AudioSinkInfoOperation(owned SourceFunc callback) {
base((owned) callback);
}
public void get_all(PulseAudio.Context context) {
operation = context.get_sink_info_list(on_sink_info);
}
public void get_by_index(PulseAudio.Context context, uint32 index) {
operation = context.get_sink_info_by_index(index, on_sink_info);
}
private void on_sink_info(PulseAudio.Context context, PulseAudio.SinkInfo? info, int eol) {
if (eol > 0 || info == null) {
sinks.reverse();
finished();
return;
}
AudioSinkPort[] ports = new AudioSinkPort[info.ports.length];
for (var i = 0; i < ports.length; i++) {
PulseAudio.SinkPortInfo* port = info.ports[i];
ports[i] = {port->name, port->description, port->priority, (AudioPortAvailable) port->available};
}
AudioSink sink = {info.name, info.description, info.index, (owned) ports};
sinks.prepend((owned) sink);
}
public SList<AudioSink?> get_result() {
return (owned) sinks;
}
}
public class AudioSinkInputListOperation: AudioOperation {
private SList<AudioSinkInput?> inputs = null;
public AudioSinkInputListOperation(owned SourceFunc callback) {
base((owned) callback);
}
public void run(PulseAudio.Context context) {
operation = context.get_sink_input_info_list(on_sink_input_info_list);
}
private void on_sink_input_info_list(PulseAudio.Context context, PulseAudio.SinkInputInfo? info, int eol) {
if (eol > 0 || info == null) {
inputs.reverse();
finished();
return;
}
unowned PulseAudio.Proplist props = info.proplist;
unowned string? app_process_binary = props.gets(PulseAudio.Proplist.PROP_APPLICATION_PROCESS_BINARY) ?? "";
unowned string? app_process_id = props.gets(PulseAudio.Proplist.PROP_APPLICATION_PROCESS_ID) ?? "0";
AudioSinkInput input = {info.name, info.index, info.sink, info.client, app_process_binary, int.parse(app_process_id)};
inputs.prepend((owned) input);
}
public SList<AudioSinkInput?> get_result() {
return (owned) inputs;
}
}
public class AudioCardInfoListOperation: AudioOperation {
private SList<AudioCard?> cards = null;
public AudioCardInfoListOperation(owned SourceFunc callback) {
base((owned) callback);
}
public void run(PulseAudio.Context context) {
operation = context.get_card_info_list(on_card_info_list);
}
private void on_card_info_list(PulseAudio.Context context, PulseAudio.CardInfo? info, int eol) {
if (eol > 0 || info == null) {
cards.reverse();
finished();
return;
}
AudioCard card = {info.name, info.index, info.driver};
cards.prepend((owned) card);
}
public SList<AudioCard?> get_result() {
return (owned) cards;
}
}
public class AudioSubscribeOperation: AudioOperation {
private int success = -1;
public AudioSubscribeOperation(owned SourceFunc callback) {
base((owned) callback);
}
public void run(PulseAudio.Context context, PulseAudio.Context.SubscriptionMask mask) {
operation = context.subscribe(mask, on_subscribe);
}
private void on_subscribe(PulseAudio.Context context, int success) {
this.success = success;
finished();
}
public int get_result() {
return success;
}
}
public class AudioSinkInputMuteOperation: AudioOperation {
private int success = -1;
public AudioSinkInputMuteOperation(owned SourceFunc callback) {
base((owned) callback);
}
public void run(PulseAudio.Context context, uint32 idx, bool mute) {
operation = context.set_sink_input_mute(idx, mute, on_done);
}
private void on_done(PulseAudio.Context context, int success) {
this.success = success;
finished();
}
public int get_result() {
return success;
}
}
} // namespace Nuvola
| Vala | 4 | xcffl/nuvolaruntime | src/nuvolakit-runner/system/AudioOperation.vala | [
"BSD-2-Clause"
] |
BEGIN
CREATE (:`Station`:`UNIQUE IMPORT LABEL` {`name`:"Bristol", `reference`:"BRI", `UNIQUE IMPORT ID`:0});
CREATE (:`Station`:`UNIQUE IMPORT LABEL` {`name`:"Bath Spa", `reference`:"BTH", `UNIQUE IMPORT ID`:1});
CREATE (:`Station`:`UNIQUE IMPORT LABEL` {`name`:"Chippenham", `reference`:"CHI", `UNIQUE IMPORT ID`:2});
CREATE (:`Station`:`UNIQUE IMPORT LABEL` {`name`:"Swindon", `reference`:"SWI", `UNIQUE IMPORT ID`:3});
CREATE (:`Station`:`UNIQUE IMPORT LABEL` {`name`:"Didcot Parkway", `reference`:"DPW", `UNIQUE IMPORT ID`:4});
CREATE (:`Station`:`UNIQUE IMPORT LABEL` {`name`:"Reading", `reference`:"REA", `UNIQUE IMPORT ID`:5});
CREATE (:`Station`:`UNIQUE IMPORT LABEL` {`name`:"London Paddington", `reference`:"PAD", `UNIQUE IMPORT ID`:6});
CREATE (:`Station`:`UNIQUE IMPORT LABEL` {`name`:"Cheltenham Spa", `reference`:"CHL", `UNIQUE IMPORT ID`:7});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Bristol Platform 1", `number`:1, `reference`:"BRI-1", `UNIQUE IMPORT ID`:8});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Bristol Platform 2", `number`:2, `reference`:"BRI-2", `UNIQUE IMPORT ID`:9});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Bristol Platform 3", `number`:3, `reference`:"BRI-3", `UNIQUE IMPORT ID`:10});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Bristol Platform 4", `number`:4, `reference`:"BRI-4", `UNIQUE IMPORT ID`:11});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Bristol Platform 5", `number`:5, `reference`:"BRI-5", `UNIQUE IMPORT ID`:12});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Bristol Platform 6", `number`:6, `reference`:"BRI-6", `UNIQUE IMPORT ID`:13});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Bristol Platform 7", `number`:7, `reference`:"BRI-7", `UNIQUE IMPORT ID`:14});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Bristol Platform 8", `number`:8, `reference`:"BRI-8", `UNIQUE IMPORT ID`:15});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Bristol Platform 9", `number`:9, `reference`:"BRI-9", `UNIQUE IMPORT ID`:16});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Bristol Platform 10", `number`:10, `reference`:"BRI-10", `UNIQUE IMPORT ID`:17});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Bristol Platform 11", `number`:11, `reference`:"BRI-11", `UNIQUE IMPORT ID`:18});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Bristol Platform 12", `number`:12, `reference`:"BRI-12", `UNIQUE IMPORT ID`:19});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Bath Spa Platform 1", `number`:1, `reference`:"BTH-1", `UNIQUE IMPORT ID`:20});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Bath Spa Platform 2", `number`:2, `reference`:"BTH-2", `UNIQUE IMPORT ID`:21});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Bath Spa Platform 3", `number`:3, `reference`:"BTH-3", `UNIQUE IMPORT ID`:22});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Bath Spa Platform 4", `number`:4, `reference`:"BTH-4", `UNIQUE IMPORT ID`:23});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Chippenham Platform 1", `number`:1, `reference`:"CHI-1", `UNIQUE IMPORT ID`:24});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Chippenham Platform 2", `number`:2, `reference`:"CHI-2", `UNIQUE IMPORT ID`:25});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Chippenham Platform 3", `number`:3, `reference`:"CHI-3", `UNIQUE IMPORT ID`:26});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Chippenham Platform 4", `number`:4, `reference`:"CHI-4", `UNIQUE IMPORT ID`:27});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Swindon Platform 1", `number`:1, `reference`:"SWI-1", `UNIQUE IMPORT ID`:28});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Swindon Platform 2", `number`:2, `reference`:"SWI-2", `UNIQUE IMPORT ID`:29});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Swindon Platform 3", `number`:3, `reference`:"SWI-3", `UNIQUE IMPORT ID`:30});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Swindon Platform 4", `number`:4, `reference`:"SWI-4", `UNIQUE IMPORT ID`:31});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Didcot Parkway Platform 1", `number`:1, `reference`:"DPW-1", `UNIQUE IMPORT ID`:32});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Didcot Parkway Platform 2", `number`:2, `reference`:"DPW-2", `UNIQUE IMPORT ID`:33});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Didcot Parkway Platform 3", `number`:3, `reference`:"DPW-3", `UNIQUE IMPORT ID`:34});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Didcot Parkway Platform 4", `number`:4, `reference`:"DPW-4", `UNIQUE IMPORT ID`:35});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Reading Platform 1", `number`:1, `reference`:"REA-1", `UNIQUE IMPORT ID`:36});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Reading Platform 2", `number`:2, `reference`:"REA-2", `UNIQUE IMPORT ID`:37});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Reading Platform 3", `number`:3, `reference`:"REA-3", `UNIQUE IMPORT ID`:38});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Reading Platform 4", `number`:4, `reference`:"REA-4", `UNIQUE IMPORT ID`:39});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Reading Platform 5", `number`:5, `reference`:"REA-5", `UNIQUE IMPORT ID`:40});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Reading Platform 6", `number`:6, `reference`:"REA-6", `UNIQUE IMPORT ID`:41});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Reading Platform 7", `number`:7, `reference`:"REA-7", `UNIQUE IMPORT ID`:42});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Reading Platform 8", `number`:8, `reference`:"REA-8", `UNIQUE IMPORT ID`:43});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"London Paddington Platform 1", `number`:1, `reference`:"PAD-1", `UNIQUE IMPORT ID`:44});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"London Paddington Platform 2", `number`:2, `reference`:"PAD-2", `UNIQUE IMPORT ID`:45});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"London Paddington Platform 3", `number`:3, `reference`:"PAD-3", `UNIQUE IMPORT ID`:46});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"London Paddington Platform 4", `number`:4, `reference`:"PAD-4", `UNIQUE IMPORT ID`:47});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"London Paddington Platform 5", `number`:5, `reference`:"PAD-5", `UNIQUE IMPORT ID`:48});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"London Paddington Platform 6", `number`:6, `reference`:"PAD-6", `UNIQUE IMPORT ID`:49});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"London Paddington Platform 7", `number`:7, `reference`:"PAD-7", `UNIQUE IMPORT ID`:50});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"London Paddington Platform 8", `number`:8, `reference`:"PAD-8", `UNIQUE IMPORT ID`:51});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"London Paddington Platform 9", `number`:9, `reference`:"PAD-9", `UNIQUE IMPORT ID`:52});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"London Paddington Platform 10", `number`:10, `reference`:"PAD-10", `UNIQUE IMPORT ID`:53});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"London Paddington Platform 11", `number`:11, `reference`:"PAD-11", `UNIQUE IMPORT ID`:54});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"London Paddington Platform 12", `number`:12, `reference`:"PAD-12", `UNIQUE IMPORT ID`:55});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Cheltenham Spa Platform 1", `number`:1, `reference`:"CHL-1", `UNIQUE IMPORT ID`:56});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Cheltenham Spa Platform 2", `number`:2, `reference`:"CHL-2", `UNIQUE IMPORT ID`:57});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Cheltenham Spa Platform 3", `number`:3, `reference`:"CHL-3", `UNIQUE IMPORT ID`:58});
CREATE (:`Platform`:`UNIQUE IMPORT LABEL` {`name`:"Cheltenham Spa Platform 4", `number`:4, `reference`:"CHL-4", `UNIQUE IMPORT ID`:59});
CREATE (:`Service`:`UNIQUE IMPORT LABEL` {`reference`:"BRI-PAD-07:00", `start`:"07:00", `UNIQUE IMPORT ID`:60});
CREATE (:`Leg`:`UNIQUE IMPORT LABEL` {`arrives_at`:450, `departs_at`:420, `duration`:30, `order`:0, `reference`:"BRI-PAD-07:000", `UNIQUE IMPORT ID`:117});
CREATE (:`Leg`:`UNIQUE IMPORT LABEL` {`arrives_at`:480, `departs_at`:450, `duration`:30, `order`:1, `reference`:"BRI-PAD-07:001", `UNIQUE IMPORT ID`:118});
CREATE (:`Leg`:`UNIQUE IMPORT LABEL` {`arrives_at`:480, `departs_at`:465, `duration`:15, `order`:2, `reference`:"BRI-PAD-07:002", `UNIQUE IMPORT ID`:119});
CREATE (:`Leg`:`UNIQUE IMPORT LABEL` {`arrives_at`:495, `departs_at`:480, `duration`:15, `order`:3, `reference`:"BRI-PAD-07:003", `UNIQUE IMPORT ID`:120});
CREATE (:`Leg`:`UNIQUE IMPORT LABEL` {`arrives_at`:510, `departs_at`:495, `duration`:15, `order`:4, `reference`:"BRI-PAD-07:004", `UNIQUE IMPORT ID`:121});
CREATE (:`Leg`:`UNIQUE IMPORT LABEL` {`arrives_at`:525, `departs_at`:510, `duration`:15, `order`:5, `reference`:"BRI-PAD-07:005", `UNIQUE IMPORT ID`:122});
CREATE (:`Service`:`UNIQUE IMPORT LABEL` {`reference`:"BRI-PAD-08:00", `start`:"08:00", `UNIQUE IMPORT ID`:123});
CREATE (:`Leg`:`UNIQUE IMPORT LABEL` {`arrives_at`:510, `departs_at`:480, `duration`:30, `order`:0, `reference`:"BRI-PAD-08:000", `UNIQUE IMPORT ID`:124});
CREATE (:`Leg`:`UNIQUE IMPORT LABEL` {`arrives_at`:540, `departs_at`:510, `duration`:30, `order`:1, `reference`:"BRI-PAD-08:001", `UNIQUE IMPORT ID`:125});
CREATE (:`Leg`:`UNIQUE IMPORT LABEL` {`arrives_at`:540, `departs_at`:525, `duration`:15, `order`:2, `reference`:"BRI-PAD-08:002", `UNIQUE IMPORT ID`:126});
CREATE (:`Leg`:`UNIQUE IMPORT LABEL` {`arrives_at`:555, `departs_at`:540, `duration`:15, `order`:3, `reference`:"BRI-PAD-08:003", `UNIQUE IMPORT ID`:127});
CREATE (:`Leg`:`UNIQUE IMPORT LABEL` {`arrives_at`:570, `departs_at`:555, `duration`:15, `order`:4, `reference`:"BRI-PAD-08:004", `UNIQUE IMPORT ID`:128});
CREATE (:`Leg`:`UNIQUE IMPORT LABEL` {`arrives_at`:585, `departs_at`:570, `duration`:15, `order`:5, `reference`:"BRI-PAD-08:005", `UNIQUE IMPORT ID`:129});
COMMIT
BEGIN
CREATE CONSTRAINT ON (node:`UNIQUE IMPORT LABEL`) ASSERT node.`UNIQUE IMPORT ID` IS UNIQUE;
COMMIT
SCHEMA AWAIT
BEGIN
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:0}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:8}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:0}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:9}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:0}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:10}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:0}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:11}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:0}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:12}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:0}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:13}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:0}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:14}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:0}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:15}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:0}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:16}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:0}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:17}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:0}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:18}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:0}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:19}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:1}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:20}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:1}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:21}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:1}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:22}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:1}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:23}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:2}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:24}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:2}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:25}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:2}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:26}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:2}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:27}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:3}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:28}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:3}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:29}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:3}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:30}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:3}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:31}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:4}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:32}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:4}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:33}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:4}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:34}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:4}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:35}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:5}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:36}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:5}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:37}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:5}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:38}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:5}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:39}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:5}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:40}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:5}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:41}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:5}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:42}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:5}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:43}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:6}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:44}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:6}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:45}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:6}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:46}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:6}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:47}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:6}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:48}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:6}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:49}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:6}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:50}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:6}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:51}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:6}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:52}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:6}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:53}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:6}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:54}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:6}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:55}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:7}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:56}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:7}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:57}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:7}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:58}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:7}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:59}) CREATE (n1)-[r:`HAS_PLATFORM`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:9}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:8}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:10}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:8}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:11}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:8}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:12}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:8}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:13}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:8}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:14}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:8}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:15}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:8}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:16}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:8}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:17}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:8}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:18}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:8}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:19}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:8}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:10}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:9}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:11}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:9}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:12}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:9}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:13}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:9}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:14}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:9}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:15}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:9}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:16}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:9}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:17}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:9}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:18}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:9}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:19}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:9}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:11}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:10}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:12}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:10}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:13}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:10}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:14}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:10}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:15}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:10}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:16}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:10}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:17}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:10}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:18}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:10}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:19}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:10}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:12}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:11}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:13}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:11}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:14}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:11}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:15}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:11}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:16}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:11}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:17}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:11}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:18}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:11}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:19}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:11}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:13}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:12}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:14}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:12}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:15}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:12}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:16}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:12}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:17}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:12}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:18}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:12}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:19}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:12}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:14}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:13}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:15}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:13}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:16}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:13}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:17}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:13}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:18}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:13}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:19}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:13}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:15}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:14}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:16}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:14}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:17}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:14}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:18}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:14}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:19}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:14}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:16}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:15}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:17}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:15}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:18}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:15}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:19}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:15}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:17}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:16}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:18}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:16}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:19}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:16}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:18}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:17}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:19}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:17}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:19}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:18}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:21}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:20}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:22}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:20}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:23}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:20}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:22}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:21}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:23}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:21}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:23}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:22}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:24}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:25}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:27}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:25}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:26}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:25}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:27}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:24}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:26}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:24}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:26}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:27}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:28}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:29}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:31}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:29}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:30}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:29}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:31}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:28}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:30}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:28}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:30}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:31}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:32}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:33}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:35}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:33}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:34}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:33}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:35}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:32}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:34}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:32}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:34}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:35}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:43}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:42}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:40}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:42}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:41}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:42}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:37}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:42}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:36}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:42}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:39}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:42}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:38}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:42}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:40}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:43}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:41}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:43}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:37}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:43}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:36}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:43}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:39}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:43}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:38}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:43}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:41}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:40}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:37}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:40}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:36}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:40}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:39}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:40}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:38}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:40}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:37}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:41}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:36}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:41}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:39}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:41}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:38}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:41}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:36}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:37}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:39}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:37}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:38}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:37}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:39}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:36}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:38}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:36}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:38}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:39}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:47}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:46}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:44}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:46}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:45}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:46}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:50}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:46}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:51}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:46}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:48}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:46}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:49}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:46}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:54}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:46}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:55}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:46}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:52}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:46}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:53}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:46}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:44}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:47}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:45}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:47}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:50}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:47}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:51}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:47}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:48}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:47}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:49}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:47}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:54}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:47}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:55}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:47}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:52}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:47}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:53}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:47}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:45}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:44}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:50}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:44}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:51}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:44}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:48}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:44}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:49}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:44}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:54}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:44}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:55}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:44}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:52}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:44}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:53}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:44}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:50}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:45}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:51}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:45}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:48}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:45}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:49}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:45}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:54}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:45}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:55}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:45}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:52}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:45}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:53}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:45}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:51}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:50}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:48}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:50}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:49}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:50}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:54}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:50}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:55}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:50}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:52}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:50}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:53}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:50}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:48}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:51}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:49}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:51}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:54}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:51}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:55}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:51}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:52}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:51}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:53}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:51}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:49}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:48}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:54}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:48}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:55}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:48}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:52}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:48}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:53}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:48}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:54}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:49}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:55}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:49}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:52}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:49}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:53}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:49}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:55}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:54}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:52}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:54}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:53}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:54}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:52}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:55}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:53}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:55}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:53}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:52}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:58}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:59}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:57}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:59}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:56}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:59}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:57}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:58}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:56}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:58}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:56}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:57}) CREATE (n1)-[r:`CAN_TRANSFER_TO`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:0}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:1}) CREATE (n1)-[r:`CAN_TRAVEL_BETWEEN` {`minutes`:30, `time`:"30"}]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:1}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:2}) CREATE (n1)-[r:`CAN_TRAVEL_BETWEEN` {`minutes`:15, `time`:"15"}]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:2}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:3}) CREATE (n1)-[r:`CAN_TRAVEL_BETWEEN` {`minutes`:15, `time`:"15"}]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:3}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:4}) CREATE (n1)-[r:`CAN_TRAVEL_BETWEEN` {`minutes`:15, `time`:"15"}]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:4}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:5}) CREATE (n1)-[r:`CAN_TRAVEL_BETWEEN` {`minutes`:15, `time`:"15"}]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:5}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:6}) CREATE (n1)-[r:`CAN_TRAVEL_BETWEEN` {`minutes`:30, `time`:"30"}]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:60}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:117}) CREATE (n1)-[r:`HAS_LEG`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:60}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:118}) CREATE (n1)-[r:`HAS_LEG`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:60}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:119}) CREATE (n1)-[r:`HAS_LEG`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:60}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:120}) CREATE (n1)-[r:`HAS_LEG`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:60}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:121}) CREATE (n1)-[r:`HAS_LEG`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:60}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:122}) CREATE (n1)-[r:`HAS_LEG`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:8}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:117}) CREATE (n1)-[r:`CAN_BOARD`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:20}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:118}) CREATE (n1)-[r:`CAN_BOARD`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:24}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:119}) CREATE (n1)-[r:`CAN_BOARD`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:28}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:120}) CREATE (n1)-[r:`CAN_BOARD`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:32}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:121}) CREATE (n1)-[r:`CAN_BOARD`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:36}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:122}) CREATE (n1)-[r:`CAN_BOARD`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:117}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:20}) CREATE (n1)-[r:`CAN_ALIGHT`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:118}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:24}) CREATE (n1)-[r:`CAN_ALIGHT`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:119}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:28}) CREATE (n1)-[r:`CAN_ALIGHT`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:120}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:32}) CREATE (n1)-[r:`CAN_ALIGHT`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:121}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:36}) CREATE (n1)-[r:`CAN_ALIGHT`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:122}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:44}) CREATE (n1)-[r:`CAN_ALIGHT`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:118}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:119}) CREATE (n1)-[r:`NEXT_LEG`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:120}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:121}) CREATE (n1)-[r:`NEXT_LEG`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:121}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:122}) CREATE (n1)-[r:`NEXT_LEG`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:119}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:120}) CREATE (n1)-[r:`NEXT_LEG`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:117}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:118}) CREATE (n1)-[r:`NEXT_LEG`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:123}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:124}) CREATE (n1)-[r:`HAS_LEG`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:123}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:125}) CREATE (n1)-[r:`HAS_LEG`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:123}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:126}) CREATE (n1)-[r:`HAS_LEG`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:123}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:127}) CREATE (n1)-[r:`HAS_LEG`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:123}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:128}) CREATE (n1)-[r:`HAS_LEG`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:123}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:129}) CREATE (n1)-[r:`HAS_LEG`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:8}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:124}) CREATE (n1)-[r:`CAN_BOARD`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:20}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:125}) CREATE (n1)-[r:`CAN_BOARD`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:24}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:126}) CREATE (n1)-[r:`CAN_BOARD`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:28}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:127}) CREATE (n1)-[r:`CAN_BOARD`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:32}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:128}) CREATE (n1)-[r:`CAN_BOARD`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:36}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:129}) CREATE (n1)-[r:`CAN_BOARD`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:124}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:20}) CREATE (n1)-[r:`CAN_ALIGHT`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:125}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:24}) CREATE (n1)-[r:`CAN_ALIGHT`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:126}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:28}) CREATE (n1)-[r:`CAN_ALIGHT`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:127}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:32}) CREATE (n1)-[r:`CAN_ALIGHT`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:128}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:36}) CREATE (n1)-[r:`CAN_ALIGHT`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:129}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:44}) CREATE (n1)-[r:`CAN_ALIGHT`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:126}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:127}) CREATE (n1)-[r:`NEXT_LEG`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:127}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:128}) CREATE (n1)-[r:`NEXT_LEG`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:128}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:129}) CREATE (n1)-[r:`NEXT_LEG`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:125}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:126}) CREATE (n1)-[r:`NEXT_LEG`]->(n2);
MATCH (n1:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:124}), (n2:`UNIQUE IMPORT LABEL`{`UNIQUE IMPORT ID`:125}) CREATE (n1)-[r:`NEXT_LEG`]->(n2);
COMMIT
BEGIN
MATCH (n:`UNIQUE IMPORT LABEL`) WITH n LIMIT 20000 REMOVE n:`UNIQUE IMPORT LABEL` REMOVE n.`UNIQUE IMPORT ID`;
COMMIT
BEGIN
DROP CONSTRAINT ON (node:`UNIQUE IMPORT LABEL`) ASSERT node.`UNIQUE IMPORT ID` IS UNIQUE;
COMMIT
| Cycript | 4 | smola/language-dataset | data/github.com/adam-cowley/journeyplanning/ffc7b29766b2d9f030a070b4aedbbb67aa55e0a3/all.cy | [
"MIT"
] |
default_mode=Standardformat för processlista,4,last-Senast valda,tree-Processträd,user-Sorterad efter användare,size-Sorterad efter storlek,cpu-Sorterad efter CPU,search-Sökformulär,run-Utför formulär
ps_style=Format för utmatning från PS-kommandon,1,sysv-SYSV,linux-Linux,hpux-HPUX,freebsd-FreeBSD,macos-MacOS
| SystemVerilog | 2 | GalaxyGFX/webmin | proc/config.info.sv | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] |
import createSvgIcon from './utils/createSvgIcon';
import { jsx as _jsx } from "react/jsx-runtime";
export default createSvgIcon( /*#__PURE__*/_jsx("path", {
d: "M12 23c5.7 0 10.39-4.34 10.95-9.9.06-.59-.41-1.1-1-1.1-.51 0-.94.38-.99.88C20.52 17.44 16.67 21 12 21c-3.12 0-5.87-1.59-7.48-4H6c.55 0 1-.45 1-1s-.45-1-1-1H2c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1v-1.67C4.99 21.15 8.28 23 12 23zm0-22C6.3 1 1.61 5.34 1.05 10.9c-.05.59.41 1.1 1 1.1.51 0 .94-.38.99-.88C3.48 6.56 7.33 3 12 3c3.12 0 5.87 1.59 7.48 4H18c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1v1.67C19.01 2.85 15.72 1 12 1zm-.88 4.88c0-.49.4-.88.88-.88s.88.39.88.88v.37c1.07.19 1.75.76 2.16 1.3.34.44.16 1.08-.36 1.3-.36.15-.78.03-1.02-.28-.28-.38-.78-.77-1.6-.77-.7 0-1.81.37-1.81 1.39 0 .95.86 1.31 2.64 1.9 2.4.83 3.01 2.05 3.01 3.45 0 2.62-2.5 3.13-3.02 3.22v.37c0 .48-.39.88-.88.88s-.88-.39-.88-.88v-.42c-.63-.15-1.93-.61-2.69-2.1-.23-.44.03-1.02.49-1.2.41-.16.9-.01 1.11.38.32.61.95 1.37 2.12 1.37.93 0 1.98-.48 1.98-1.61 0-.96-.7-1.46-2.28-2.03-1.1-.39-3.35-1.03-3.35-3.31 0-.1.01-2.4 2.62-2.96v-.37z"
}), 'CurrencyExchangeRounded'); | JavaScript | 3 | dany-freeman/material-ui | packages/mui-icons-material/lib/esm/CurrencyExchangeRounded.js | [
"MIT"
] |
external compare : 'a -> 'a -> int = "%compare"
external ascending : 'a -> 'a -> int = "%compare"
let descending x y = compare y x
let ( < ) = ( < )
let ( <= ) = ( <= )
let ( > ) = ( > )
let ( >= ) = ( >= )
let ( = ) = ( = )
let ( <> ) = ( <> )
let equal = ( = )
let min = min
let max = max
| OCaml | 4 | Hans-Halverson/flow | src/hack_forked/third-party/core/polymorphic_compare.ml | [
"MIT"
] |
@page
@*#if (!no-pagemodel)*@
@model MyApp.Namespace.IndexModel
@*#endif*@
@{
}
| C# | 3 | legistek/AspNetCore | src/ProjectTemplates/Web.ItemTemplates/content/RazorPage/Index.cshtml | [
"Apache-2.0"
] |
@font-face {
font-family: 'one-style';
src: url('./one-style.woff') format('woff');
}
body {
background-color: pink;
font-family: 'one-style', sans-serif;
}
| CSS | 4 | suryatmodulus/puppeteer | test/assets/cached/one-style-font.css | [
"Apache-2.0"
] |
/* jconfig.sas --- jconfig.h for Amiga systems using SAS C 6.0 and up. */
/* see jconfig.doc for explanations */
#define HAVE_PROTOTYPES
#define HAVE_UNSIGNED_CHAR
#define HAVE_UNSIGNED_SHORT
/* #define void char */
/* #define const */
#undef CHAR_IS_UNSIGNED
#define HAVE_STDDEF_H
#define HAVE_STDLIB_H
#undef NEED_BSD_STRINGS
#undef NEED_SYS_TYPES_H
#undef NEED_FAR_POINTERS
#undef NEED_SHORT_EXTERNAL_NAMES
#undef INCOMPLETE_TYPES_BROKEN
#ifdef JPEG_INTERNALS
#undef RIGHT_SHIFT_IS_UNSIGNED
#define TEMP_DIRECTORY "JPEGTMP:" /* recommended setting for Amiga */
#define NO_MKTEMP /* SAS C doesn't have mktemp() */
#define SHORTxSHORT_32 /* produces better DCT code with SAS C */
#endif /* JPEG_INTERNALS */
#ifdef JPEG_CJPEG_DJPEG
#define BMP_SUPPORTED /* BMP image file format */
#define GIF_SUPPORTED /* GIF image file format */
#define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
#undef RLE_SUPPORTED /* Utah RLE image file format */
#define TARGA_SUPPORTED /* Targa image file format */
#define TWO_FILE_COMMANDLINE
#define NEED_SIGNAL_CATCHER
#undef DONT_USE_B_MODE
#undef PROGRESS_REPORT /* optional */
#endif /* JPEG_CJPEG_DJPEG */
| SAS | 4 | close-code/Torque2D | engine/lib/ljpeg/extras/jconfig.sas | [
"MIT"
] |
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 8.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 157, 7]
NotebookDataLength[ 27236, 796]
NotebookOptionsPosition[ 26296, 759]
NotebookOutlinePosition[ 26650, 775]
CellTagsIndexPosition[ 26607, 772]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell["\<\
The derivative of StereoCamera.project:\
\>", "Text",
CellChangeTimes->{{3.5349648356912127`*^9, 3.534964846480523*^9}, {
3.534983100980744*^9, 3.534983101484686*^9}, {3.535027340892766*^9,
3.535027341727685*^9}}],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"H1", "=",
RowBox[{
RowBox[{
RowBox[{
FractionBox["1", "z"],
RowBox[{
RowBox[{"(", GridBox[{
{"fx", "0",
RowBox[{
RowBox[{"-", "fx"}], " ",
RowBox[{"xL", "/", "z"}]}]},
{"fx", "0",
RowBox[{
RowBox[{"-", "fx"}], " ",
RowBox[{"xR", "/", "z"}]}]},
{"0", "fy",
RowBox[{
RowBox[{"-", "fy"}], " ",
RowBox[{"y", "/", "z"}]}]}
}], ")"}], ".",
RowBox[{"(", GridBox[{
{"0",
RowBox[{"-", "z"}], "y",
RowBox[{"-", "1"}], "0", "0", "R00", "R10", "R20"},
{"z", "0",
RowBox[{"-", "x"}], "0",
RowBox[{"-", "1"}], "0", "R01", "R11", "R21"},
{
RowBox[{"-", "y"}], "x", "0", "0", "0",
RowBox[{"-", "1"}], "R02", "R12", "R22"}
}], ")"}]}]}], "//", "FullSimplify"}], "//",
"MatrixForm"}]}]], "Input",
CellChangeTimes->{{3.5349631885090446`*^9, 3.5349632390951033`*^9}, {
3.53496344228561*^9, 3.534963552777855*^9}, {3.53496365487344*^9,
3.53496369917972*^9}, 3.534963801932398*^9, {3.5349638327702837`*^9,
3.534963833842349*^9}, {3.5349638684957743`*^9, 3.534963869306225*^9}, {
3.5349640018609343`*^9, 3.534964073635954*^9}, {3.534964139661661*^9,
3.534964141597094*^9}, {3.534964228457883*^9, 3.534964230497267*^9}, {
3.534964522693956*^9, 3.534964554934105*^9}, 3.534979649216166*^9, {
3.534979703414953*^9, 3.5349797245266523`*^9}, 3.534979754875834*^9, {
3.5349801268943996`*^9, 3.534980128188809*^9}, {3.534981330976294*^9,
3.5349813327600317`*^9}, 3.534981567474765*^9, {3.534982081101321*^9,
3.534982107106247*^9}, {3.534982164393888*^9, 3.534982164510919*^9}, {
3.534982374683118*^9, 3.534982376464725*^9}, {3.534985216789068*^9,
3.5349853102222767`*^9}, 3.535027505430372*^9, {3.5350275383121347`*^9,
3.5350275490436373`*^9}, {3.535030144765522*^9, 3.535030151312361*^9}}],
Cell[BoxData[
TagBox[
RowBox[{"(", "\[NoBreak]", GridBox[{
{
FractionBox[
RowBox[{"fx", " ", "xL", " ", "y"}],
SuperscriptBox["z", "2"]],
RowBox[{"fx", " ",
RowBox[{"(",
RowBox[{
RowBox[{"-", "1"}], "-",
FractionBox[
RowBox[{"x", " ", "xL"}],
SuperscriptBox["z", "2"]]}], ")"}]}],
FractionBox[
RowBox[{"fx", " ", "y"}], "z"],
RowBox[{"-",
FractionBox["fx", "z"]}], "0",
FractionBox[
RowBox[{"fx", " ", "xL"}],
SuperscriptBox["z", "2"]],
FractionBox[
RowBox[{"fx", " ",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"-", "R02"}], " ", "xL"}], "+",
RowBox[{"R00", " ", "z"}]}], ")"}]}],
SuperscriptBox["z", "2"]],
FractionBox[
RowBox[{"fx", " ",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"-", "R12"}], " ", "xL"}], "+",
RowBox[{"R10", " ", "z"}]}], ")"}]}],
SuperscriptBox["z", "2"]],
FractionBox[
RowBox[{"fx", " ",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"-", "R22"}], " ", "xL"}], "+",
RowBox[{"R20", " ", "z"}]}], ")"}]}],
SuperscriptBox["z", "2"]]},
{
FractionBox[
RowBox[{"fx", " ", "xR", " ", "y"}],
SuperscriptBox["z", "2"]],
RowBox[{"fx", " ",
RowBox[{"(",
RowBox[{
RowBox[{"-", "1"}], "-",
FractionBox[
RowBox[{"x", " ", "xR"}],
SuperscriptBox["z", "2"]]}], ")"}]}],
FractionBox[
RowBox[{"fx", " ", "y"}], "z"],
RowBox[{"-",
FractionBox["fx", "z"]}], "0",
FractionBox[
RowBox[{"fx", " ", "xR"}],
SuperscriptBox["z", "2"]],
FractionBox[
RowBox[{"fx", " ",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"-", "R02"}], " ", "xR"}], "+",
RowBox[{"R00", " ", "z"}]}], ")"}]}],
SuperscriptBox["z", "2"]],
FractionBox[
RowBox[{"fx", " ",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"-", "R12"}], " ", "xR"}], "+",
RowBox[{"R10", " ", "z"}]}], ")"}]}],
SuperscriptBox["z", "2"]],
FractionBox[
RowBox[{"fx", " ",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"-", "R22"}], " ", "xR"}], "+",
RowBox[{"R20", " ", "z"}]}], ")"}]}],
SuperscriptBox["z", "2"]]},
{
RowBox[{"fy", "+",
FractionBox[
RowBox[{"fy", " ",
SuperscriptBox["y", "2"]}],
SuperscriptBox["z", "2"]]}],
RowBox[{"-",
FractionBox[
RowBox[{"fy", " ", "x", " ", "y"}],
SuperscriptBox["z", "2"]]}],
RowBox[{"-",
FractionBox[
RowBox[{"fy", " ", "x"}], "z"]}], "0",
RowBox[{"-",
FractionBox["fy", "z"]}],
FractionBox[
RowBox[{"fy", " ", "y"}],
SuperscriptBox["z", "2"]],
FractionBox[
RowBox[{"fy", " ",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"-", "R02"}], " ", "y"}], "+",
RowBox[{"R01", " ", "z"}]}], ")"}]}],
SuperscriptBox["z", "2"]],
FractionBox[
RowBox[{"fy", " ",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"-", "R12"}], " ", "y"}], "+",
RowBox[{"R11", " ", "z"}]}], ")"}]}],
SuperscriptBox["z", "2"]],
FractionBox[
RowBox[{"fy", " ",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"-", "R22"}], " ", "y"}], "+",
RowBox[{"R21", " ", "z"}]}], ")"}]}],
SuperscriptBox["z", "2"]]}
},
GridBoxAlignment->{
"Columns" -> {{Center}}, "ColumnsIndexed" -> {}, "Rows" -> {{Baseline}},
"RowsIndexed" -> {}},
GridBoxSpacings->{"Columns" -> {
Offset[0.27999999999999997`], {
Offset[0.7]},
Offset[0.27999999999999997`]}, "ColumnsIndexed" -> {}, "Rows" -> {
Offset[0.2], {
Offset[0.4]},
Offset[0.2]}, "RowsIndexed" -> {}}], "\[NoBreak]", ")"}],
Function[BoxForm`e$,
MatrixForm[BoxForm`e$]]]], "Output",
CellChangeTimes->{
3.534979650069955*^9, {3.534979704654621*^9, 3.5349797249719963`*^9},
3.534979755407372*^9, 3.534980128803479*^9, 3.534981333789564*^9,
3.5349815682066193`*^9, 3.534982108180704*^9, 3.534982166031692*^9,
3.534982377250555*^9, {3.534985297869969*^9, 3.534985310666787*^9},
3.5350275060097218`*^9, {3.5350275405948477`*^9, 3.5350275500341053`*^9},
3.53502790540648*^9, 3.535029215121779*^9, 3.535029483759522*^9,
3.5350296764304867`*^9, 3.5350298306322317`*^9, {3.535029885155205*^9,
3.5350299030168447`*^9}, 3.53503004137671*^9, {3.53503014602885*^9,
3.53503015777907*^9}, 3.535030484588359*^9, 3.535030717468384*^9,
3.535030824926405*^9, 3.535030926999936*^9, 3.535031294857418*^9,
3.535031331229004*^9}]
}, Open ]],
Cell["\<\
To get rid of (1/z) factors, work in terms of u=x/z and v=x/z.\
\>", "Text",
CellChangeTimes->{{3.534981922219325*^9, 3.534981963212936*^9}, {
3.534983115196439*^9, 3.534983121940318*^9}}],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"H2", "=",
RowBox[{
RowBox[{
RowBox[{"H1", "/.",
RowBox[{"{",
RowBox[{
RowBox[{"xL", "\[Rule]",
RowBox[{"z", " ",
RowBox[{"uL", "/", "fx"}]}]}], ",",
RowBox[{"xR", "\[Rule]",
RowBox[{"z", " ",
RowBox[{"uR", "/", "fx"}]}]}], ",",
RowBox[{"y", "\[Rule]",
RowBox[{"z", " ",
RowBox[{"v", "/", "fy"}]}]}]}], "}"}]}], "//", "FullSimplify"}], " ",
"//", "MatrixForm", " "}]}]], "Input",
CellChangeTimes->{{3.534981575562448*^9, 3.534981660163035*^9}, {
3.534981699433219*^9, 3.534981715884362*^9}, {3.534981811953741*^9,
3.534981812758938*^9}, {3.534981967549185*^9, 3.534981970084591*^9}, {
3.5349821168936243`*^9, 3.5349821229726763`*^9}, {3.5349821691614027`*^9,
3.534982169838853*^9}, {3.5349823818506517`*^9, 3.5349823882411737`*^9}, {
3.534982418562274*^9, 3.534982445450313*^9}, {3.5349824987688103`*^9,
3.5349825453911533`*^9}, 3.5349853401371813`*^9, {3.5349854168944473`*^9,
3.534985505039978*^9}, {3.5349855515891447`*^9, 3.5349855522595778`*^9}, {
3.534985594640473*^9, 3.534985605102441*^9}, {3.534985635544286*^9,
3.5349856556893806`*^9}, {3.534985722650296*^9, 3.534985735961334*^9}, {
3.5349862396524563`*^9, 3.534986241578967*^9}, {3.534986277578917*^9,
3.5349863148397903`*^9}, {3.534986786489544*^9, 3.534986789124526*^9}, {
3.5349868534541187`*^9, 3.534986854897138*^9}, {3.535029811937036*^9,
3.535029812505899*^9}, {3.5350298992369347`*^9, 3.535029900460285*^9}}],
Cell[BoxData[
TagBox[
TagBox[
RowBox[{"(", "\[NoBreak]", GridBox[{
{
FractionBox[
RowBox[{"uL", " ", "v"}], "fy"],
RowBox[{"-",
FractionBox[
RowBox[{
RowBox[{"uL", " ", "x"}], "+",
RowBox[{"fx", " ", "z"}]}], "z"]}],
FractionBox[
RowBox[{"fx", " ", "v"}], "fy"],
RowBox[{"-",
FractionBox["fx", "z"]}], "0",
FractionBox["uL", "z"],
FractionBox[
RowBox[{
RowBox[{"fx", " ", "R00"}], "-",
RowBox[{"R02", " ", "uL"}]}], "z"],
FractionBox[
RowBox[{
RowBox[{"fx", " ", "R10"}], "-",
RowBox[{"R12", " ", "uL"}]}], "z"],
FractionBox[
RowBox[{
RowBox[{"fx", " ", "R20"}], "-",
RowBox[{"R22", " ", "uL"}]}], "z"]},
{
FractionBox[
RowBox[{"uR", " ", "v"}], "fy"],
RowBox[{"-",
FractionBox[
RowBox[{
RowBox[{"uR", " ", "x"}], "+",
RowBox[{"fx", " ", "z"}]}], "z"]}],
FractionBox[
RowBox[{"fx", " ", "v"}], "fy"],
RowBox[{"-",
FractionBox["fx", "z"]}], "0",
FractionBox["uR", "z"],
FractionBox[
RowBox[{
RowBox[{"fx", " ", "R00"}], "-",
RowBox[{"R02", " ", "uR"}]}], "z"],
FractionBox[
RowBox[{
RowBox[{"fx", " ", "R10"}], "-",
RowBox[{"R12", " ", "uR"}]}], "z"],
FractionBox[
RowBox[{
RowBox[{"fx", " ", "R20"}], "-",
RowBox[{"R22", " ", "uR"}]}], "z"]},
{
RowBox[{"fy", "+",
FractionBox[
SuperscriptBox["v", "2"], "fy"]}],
RowBox[{"-",
FractionBox[
RowBox[{"v", " ", "x"}], "z"]}],
RowBox[{"-",
FractionBox[
RowBox[{"fy", " ", "x"}], "z"]}], "0",
RowBox[{"-",
FractionBox["fy", "z"]}],
FractionBox["v", "z"],
FractionBox[
RowBox[{
RowBox[{"fy", " ", "R01"}], "-",
RowBox[{"R02", " ", "v"}]}], "z"],
FractionBox[
RowBox[{
RowBox[{"fy", " ", "R11"}], "-",
RowBox[{"R12", " ", "v"}]}], "z"],
FractionBox[
RowBox[{
RowBox[{"fy", " ", "R21"}], "-",
RowBox[{"R22", " ", "v"}]}], "z"]}
},
GridBoxAlignment->{
"Columns" -> {{Center}}, "ColumnsIndexed" -> {}, "Rows" -> {{Baseline}},
"RowsIndexed" -> {}},
GridBoxSpacings->{"Columns" -> {
Offset[0.27999999999999997`], {
Offset[0.7]},
Offset[0.27999999999999997`]}, "ColumnsIndexed" -> {}, "Rows" -> {
Offset[0.2], {
Offset[0.4]},
Offset[0.2]}, "RowsIndexed" -> {}}], "\[NoBreak]", ")"}],
Function[BoxForm`e$,
MatrixForm[BoxForm`e$]]],
Function[BoxForm`e$,
MatrixForm[BoxForm`e$]]]], "Output",
CellChangeTimes->{
3.534981661750978*^9, {3.534981700471121*^9, 3.5349817167574883`*^9},
3.534981813153152*^9, 3.5349819705942793`*^9, {3.534982117522484*^9,
3.534982124251252*^9}, 3.534982170293386*^9, 3.534982388956635*^9,
3.534982446240321*^9, {3.534982502305121*^9, 3.534982546180998*^9},
3.534985341687833*^9, {3.534985429323271*^9, 3.534985505574792*^9},
3.534985553224812*^9, {3.534985595114938*^9, 3.534985605471074*^9}, {
3.534985637118844*^9, 3.534985656675743*^9}, {3.534985725554123*^9,
3.534985736368793*^9}, 3.5349862441909113`*^9, 3.534986284242839*^9,
3.534986315973349*^9, 3.5349868083087063`*^9, 3.5349868556678743`*^9,
3.535027508201213*^9, 3.535027905504321*^9, 3.535029215205296*^9,
3.535029483862213*^9, 3.5350296765274553`*^9, {3.535029813618102*^9,
3.535029830728488*^9}, {3.5350298852376328`*^9, 3.535029903102009*^9},
3.535030041462805*^9, 3.535030157872327*^9, 3.535030484684712*^9,
3.535030717553156*^9, 3.535030825005567*^9, 3.5350309270975943`*^9,
3.535031294955385*^9, 3.535031331322283*^9}]
}, Open ]],
Cell["\<\
Finally, avoid divides, version one, with annoying (but efficient) \
non-physical v1 and dx:\
\>", "Text",
CellChangeTimes->{{3.534983093980698*^9, 3.5349831123126383`*^9}, {
3.535030889345251*^9, 3.535030899759769*^9}, {3.535031098323531*^9,
3.5350310992901497`*^9}, {3.53503128089581*^9, 3.535031286791445*^9}}],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"FullSimplify", "[",
RowBox[{
RowBox[{"H2", "/.",
RowBox[{"{",
RowBox[{
RowBox[{
RowBox[{"1", "/", "z"}], "\[Rule]", "d"}], ",", " ",
RowBox[{"v", " ", "\[Rule]", " ",
RowBox[{"v1", " ", "fy"}]}]}], "}"}]}], ",",
RowBox[{"{",
RowBox[{
RowBox[{
RowBox[{"z", " ", "d"}], " ", "\[Equal]", "1"}], ",",
RowBox[{
RowBox[{"v1", " ", "fy"}], " ", "\[Equal]", "v"}], ",", " ",
RowBox[{
RowBox[{"fx", " ", "v1"}], " ", "\[Equal]", " ", "v2"}], ",", " ",
RowBox[{
RowBox[{"d", " ", "x"}], " ", "\[Equal]", "dx"}]}], "}"}]}],
"]"}]], "Input",
CellChangeTimes->{{3.534982548021124*^9, 3.534982548331835*^9}, {
3.534985672071082*^9, 3.5349856752309647`*^9}, {3.53498575691752*^9,
3.534985773748554*^9}, {3.534985930341876*^9, 3.534985932316481*^9}, {
3.534986318557267*^9, 3.534986330749145*^9}, 3.534986878092679*^9, {
3.535027890326747*^9, 3.5350279684574137`*^9}, {3.535029655571067*^9,
3.5350296880567923`*^9}, 3.535029764887192*^9, {3.535030004090427*^9,
3.535030121269846*^9}, {3.535030353510531*^9, 3.535030396311715*^9}, {
3.535030458599264*^9, 3.535030460790845*^9}, {3.535030491323802*^9,
3.5350304934595013`*^9}, {3.53503074017763*^9, 3.5350307703521557`*^9}, {
3.535030874930986*^9, 3.535030880610591*^9}}],
Cell[BoxData[
TagBox[
TagBox[
RowBox[{"(", "\[NoBreak]", GridBox[{
{
RowBox[{"uL", " ", "v1"}],
RowBox[{
RowBox[{"-", "fx"}], "-",
RowBox[{"dx", " ", "uL"}]}], "v2",
RowBox[{
RowBox[{"-", "d"}], " ", "fx"}], "0",
RowBox[{"d", " ", "uL"}],
RowBox[{
RowBox[{"d", " ", "fx", " ", "R00"}], "-",
RowBox[{"d", " ", "R02", " ", "uL"}]}],
RowBox[{
RowBox[{"d", " ", "fx", " ", "R10"}], "-",
RowBox[{"d", " ", "R12", " ", "uL"}]}],
RowBox[{
RowBox[{"d", " ", "fx", " ", "R20"}], "-",
RowBox[{"d", " ", "R22", " ", "uL"}]}]},
{
RowBox[{"uR", " ", "v1"}],
RowBox[{
RowBox[{"-", "fx"}], "-",
RowBox[{"dx", " ", "uR"}]}], "v2",
RowBox[{
RowBox[{"-", "d"}], " ", "fx"}], "0",
RowBox[{"d", " ", "uR"}],
RowBox[{
RowBox[{"d", " ", "fx", " ", "R00"}], "-",
RowBox[{"d", " ", "R02", " ", "uR"}]}],
RowBox[{
RowBox[{"d", " ", "fx", " ", "R10"}], "-",
RowBox[{"d", " ", "R12", " ", "uR"}]}],
RowBox[{
RowBox[{"d", " ", "fx", " ", "R20"}], "-",
RowBox[{"d", " ", "R22", " ", "uR"}]}]},
{
RowBox[{"fy", "+",
RowBox[{"v", " ", "v1"}]}],
RowBox[{
RowBox[{"-", "dx"}], " ", "v"}],
RowBox[{
RowBox[{"-", "dx"}], " ", "fy"}], "0",
RowBox[{
RowBox[{"-", "d"}], " ", "fy"}],
RowBox[{"d", " ", "v"}],
RowBox[{
RowBox[{"d", " ", "fy", " ", "R01"}], "-",
RowBox[{"d", " ", "R02", " ", "v"}]}],
RowBox[{
RowBox[{"d", " ", "fy", " ", "R11"}], "-",
RowBox[{"d", " ", "R12", " ", "v"}]}],
RowBox[{
RowBox[{"d", " ", "fy", " ", "R21"}], "-",
RowBox[{"d", " ", "R22", " ", "v"}]}]}
},
GridBoxAlignment->{
"Columns" -> {{Center}}, "ColumnsIndexed" -> {}, "Rows" -> {{Baseline}},
"RowsIndexed" -> {}},
GridBoxSpacings->{"Columns" -> {
Offset[0.27999999999999997`], {
Offset[0.7]},
Offset[0.27999999999999997`]}, "ColumnsIndexed" -> {}, "Rows" -> {
Offset[0.2], {
Offset[0.4]},
Offset[0.2]}, "RowsIndexed" -> {}}], "\[NoBreak]", ")"}],
Function[BoxForm`e$,
MatrixForm[BoxForm`e$]]],
Function[BoxForm`e$,
MatrixForm[BoxForm`e$]]]], "Output",
CellChangeTimes->{{3.535030870852317*^9, 3.5350308809975147`*^9},
3.535030927149189*^9, 3.53503110310464*^9, 3.535031295009418*^9,
3.5350313313757133`*^9}]
}, Open ]],
Cell["\<\
Second version, with u and v not divided by focal lengths (i.e., intrinsic \
coordinates):\
\>", "Text",
CellChangeTimes->{{3.5350309023234043`*^9, 3.53503092149507*^9}, {
3.535031301437237*^9, 3.535031325948593*^9}}],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"H2", "=",
RowBox[{
RowBox[{
RowBox[{"H1", "/.",
RowBox[{"{",
RowBox[{
RowBox[{"xL", "\[Rule]",
RowBox[{"z", " ", "uL"}]}], ",",
RowBox[{"xR", "\[Rule]",
RowBox[{"z", " ", "uR"}]}], ",",
RowBox[{"y", "\[Rule]",
RowBox[{"z", " ", "v"}]}]}], "}"}]}], "//", "FullSimplify"}], " ", "//",
"MatrixForm", " "}]}]], "Input",
CellChangeTimes->{{3.53503114628979*^9, 3.535031150920274*^9}}],
Cell[BoxData[
TagBox[
TagBox[
RowBox[{"(", "\[NoBreak]", GridBox[{
{
RowBox[{"fx", " ", "uL", " ", "v"}],
RowBox[{"-",
FractionBox[
RowBox[{"fx", " ",
RowBox[{"(",
RowBox[{
RowBox[{"uL", " ", "x"}], "+", "z"}], ")"}]}], "z"]}],
RowBox[{"fx", " ", "v"}],
RowBox[{"-",
FractionBox["fx", "z"]}], "0",
FractionBox[
RowBox[{"fx", " ", "uL"}], "z"],
FractionBox[
RowBox[{"fx", " ",
RowBox[{"(",
RowBox[{"R00", "-",
RowBox[{"R02", " ", "uL"}]}], ")"}]}], "z"],
FractionBox[
RowBox[{"fx", " ",
RowBox[{"(",
RowBox[{"R10", "-",
RowBox[{"R12", " ", "uL"}]}], ")"}]}], "z"],
FractionBox[
RowBox[{"fx", " ",
RowBox[{"(",
RowBox[{"R20", "-",
RowBox[{"R22", " ", "uL"}]}], ")"}]}], "z"]},
{
RowBox[{"fx", " ", "uR", " ", "v"}],
RowBox[{"-",
FractionBox[
RowBox[{"fx", " ",
RowBox[{"(",
RowBox[{
RowBox[{"uR", " ", "x"}], "+", "z"}], ")"}]}], "z"]}],
RowBox[{"fx", " ", "v"}],
RowBox[{"-",
FractionBox["fx", "z"]}], "0",
FractionBox[
RowBox[{"fx", " ", "uR"}], "z"],
FractionBox[
RowBox[{"fx", " ",
RowBox[{"(",
RowBox[{"R00", "-",
RowBox[{"R02", " ", "uR"}]}], ")"}]}], "z"],
FractionBox[
RowBox[{"fx", " ",
RowBox[{"(",
RowBox[{"R10", "-",
RowBox[{"R12", " ", "uR"}]}], ")"}]}], "z"],
FractionBox[
RowBox[{"fx", " ",
RowBox[{"(",
RowBox[{"R20", "-",
RowBox[{"R22", " ", "uR"}]}], ")"}]}], "z"]},
{
RowBox[{"fy", " ",
RowBox[{"(",
RowBox[{"1", "+",
SuperscriptBox["v", "2"]}], ")"}]}],
RowBox[{"-",
FractionBox[
RowBox[{"fy", " ", "v", " ", "x"}], "z"]}],
RowBox[{"-",
FractionBox[
RowBox[{"fy", " ", "x"}], "z"]}], "0",
RowBox[{"-",
FractionBox["fy", "z"]}],
FractionBox[
RowBox[{"fy", " ", "v"}], "z"],
FractionBox[
RowBox[{"fy", " ",
RowBox[{"(",
RowBox[{"R01", "-",
RowBox[{"R02", " ", "v"}]}], ")"}]}], "z"],
FractionBox[
RowBox[{"fy", " ",
RowBox[{"(",
RowBox[{"R11", "-",
RowBox[{"R12", " ", "v"}]}], ")"}]}], "z"],
FractionBox[
RowBox[{"fy", " ",
RowBox[{"(",
RowBox[{"R21", "-",
RowBox[{"R22", " ", "v"}]}], ")"}]}], "z"]}
},
GridBoxAlignment->{
"Columns" -> {{Center}}, "ColumnsIndexed" -> {}, "Rows" -> {{Baseline}},
"RowsIndexed" -> {}},
GridBoxSpacings->{"Columns" -> {
Offset[0.27999999999999997`], {
Offset[0.7]},
Offset[0.27999999999999997`]}, "ColumnsIndexed" -> {}, "Rows" -> {
Offset[0.2], {
Offset[0.4]},
Offset[0.2]}, "RowsIndexed" -> {}}], "\[NoBreak]", ")"}],
Function[BoxForm`e$,
MatrixForm[BoxForm`e$]]],
Function[BoxForm`e$,
MatrixForm[BoxForm`e$]]]], "Output",
CellChangeTimes->{3.5350311514150476`*^9, 3.5350312951300697`*^9,
3.535031331425353*^9}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"FullSimplify", "[",
RowBox[{
RowBox[{"H2", "/.",
RowBox[{"{",
RowBox[{
RowBox[{
RowBox[{"1", "/", "z"}], "\[Rule]", "d"}], ",", " ",
RowBox[{"x", "->", " ",
RowBox[{"uL", "/", " ", "d"}]}]}], " ", "}"}]}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"z", " ", "d"}], " ", "\[Equal]", "1"}], "}"}]}], "]"}]], "Input",\
CellChangeTimes->{{3.534982548021124*^9, 3.534982548331835*^9}, {
3.534985672071082*^9, 3.5349856752309647`*^9}, {3.53498575691752*^9,
3.534985773748554*^9}, {3.534985930341876*^9, 3.534985932316481*^9}, {
3.534986318557267*^9, 3.534986330749145*^9}, 3.534986878092679*^9, {
3.535027890326747*^9, 3.5350279684574137`*^9}, {3.535029655571067*^9,
3.5350296880567923`*^9}, 3.535029764887192*^9, {3.535030004090427*^9,
3.535030121269846*^9}, {3.535030353510531*^9, 3.535030396311715*^9}, {
3.535030458599264*^9, 3.535030460790845*^9}, {3.535030491323802*^9,
3.5350304934595013`*^9}, {3.53503074017763*^9, 3.5350307703521557`*^9}, {
3.5350309553568153`*^9, 3.535030961548119*^9}, {3.535031181790264*^9,
3.535031181981776*^9}}],
Cell[BoxData[
TagBox[
TagBox[
RowBox[{"(", "\[NoBreak]", GridBox[{
{
RowBox[{"fx", " ", "uL", " ", "v"}],
RowBox[{
RowBox[{"-", "fx"}], " ",
RowBox[{"(",
RowBox[{"1", "+",
SuperscriptBox["uL", "2"]}], ")"}]}],
RowBox[{"fx", " ", "v"}],
RowBox[{
RowBox[{"-", "d"}], " ", "fx"}], "0",
RowBox[{"d", " ", "fx", " ", "uL"}],
RowBox[{"d", " ", "fx", " ",
RowBox[{"(",
RowBox[{"R00", "-",
RowBox[{"R02", " ", "uL"}]}], ")"}]}],
RowBox[{"d", " ", "fx", " ",
RowBox[{"(",
RowBox[{"R10", "-",
RowBox[{"R12", " ", "uL"}]}], ")"}]}],
RowBox[{"d", " ", "fx", " ",
RowBox[{"(",
RowBox[{"R20", "-",
RowBox[{"R22", " ", "uL"}]}], ")"}]}]},
{
RowBox[{"fx", " ", "uR", " ", "v"}],
RowBox[{
RowBox[{"-", "fx"}], " ",
RowBox[{"(",
RowBox[{"1", "+",
RowBox[{"uL", " ", "uR"}]}], ")"}]}],
RowBox[{"fx", " ", "v"}],
RowBox[{
RowBox[{"-", "d"}], " ", "fx"}], "0",
RowBox[{"d", " ", "fx", " ", "uR"}],
RowBox[{"d", " ", "fx", " ",
RowBox[{"(",
RowBox[{"R00", "-",
RowBox[{"R02", " ", "uR"}]}], ")"}]}],
RowBox[{"d", " ", "fx", " ",
RowBox[{"(",
RowBox[{"R10", "-",
RowBox[{"R12", " ", "uR"}]}], ")"}]}],
RowBox[{"d", " ", "fx", " ",
RowBox[{"(",
RowBox[{"R20", "-",
RowBox[{"R22", " ", "uR"}]}], ")"}]}]},
{
RowBox[{"fy", " ",
RowBox[{"(",
RowBox[{"1", "+",
SuperscriptBox["v", "2"]}], ")"}]}],
RowBox[{
RowBox[{"-", "fy"}], " ", "uL", " ", "v"}],
RowBox[{
RowBox[{"-", "fy"}], " ", "uL"}], "0",
RowBox[{
RowBox[{"-", "d"}], " ", "fy"}],
RowBox[{"d", " ", "fy", " ", "v"}],
RowBox[{"d", " ", "fy", " ",
RowBox[{"(",
RowBox[{"R01", "-",
RowBox[{"R02", " ", "v"}]}], ")"}]}],
RowBox[{"d", " ", "fy", " ",
RowBox[{"(",
RowBox[{"R11", "-",
RowBox[{"R12", " ", "v"}]}], ")"}]}],
RowBox[{"d", " ", "fy", " ",
RowBox[{"(",
RowBox[{"R21", "-",
RowBox[{"R22", " ", "v"}]}], ")"}]}]}
},
GridBoxAlignment->{
"Columns" -> {{Center}}, "ColumnsIndexed" -> {}, "Rows" -> {{Baseline}},
"RowsIndexed" -> {}},
GridBoxSpacings->{"Columns" -> {
Offset[0.27999999999999997`], {
Offset[0.7]},
Offset[0.27999999999999997`]}, "ColumnsIndexed" -> {}, "Rows" -> {
Offset[0.2], {
Offset[0.4]},
Offset[0.2]}, "RowsIndexed" -> {}}], "\[NoBreak]", ")"}],
Function[BoxForm`e$,
MatrixForm[BoxForm`e$]]],
Function[BoxForm`e$,
MatrixForm[BoxForm`e$]]]], "Output",
CellChangeTimes->{3.5350311905951633`*^9, 3.535031295195949*^9,
3.535031331472315*^9}]
}, Open ]]
},
WindowSize->{936, 817},
WindowMargins->{{26, Automatic}, {Automatic, 0}},
FrontEndVersion->"8.0 for Mac OS X x86 (32-bit, 64-bit Kernel) (October 5, \
2011)",
StyleDefinitions->"Default.nb"
]
(* End of Notebook Content *)
(* Internal cache information *)
(*CellTagsOutline
CellTagsIndex->{}
*)
(*CellTagsIndex
CellTagsIndex->{}
*)
(*NotebookFileOutline
Notebook[{
Cell[557, 20, 229, 5, 26, "Text"],
Cell[CellGroupData[{
Cell[811, 29, 2006, 46, 61, "Input"],
Cell[2820, 77, 5034, 153, 109, "Output"]
}, Open ]],
Cell[7869, 233, 201, 4, 26, "Text"],
Cell[CellGroupData[{
Cell[8095, 241, 1555, 30, 27, "Input"],
Cell[9653, 273, 3952, 109, 109, "Output"]
}, Open ]],
Cell[13620, 385, 329, 6, 26, "Text"],
Cell[CellGroupData[{
Cell[13974, 395, 1364, 30, 27, "Input"],
Cell[15341, 427, 2598, 74, 73, "Output"]
}, Open ]],
Cell[17954, 504, 230, 5, 26, "Text"],
Cell[CellGroupData[{
Cell[18209, 513, 481, 14, 27, "Input"],
Cell[18693, 529, 3372, 106, 101, "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[22102, 640, 1150, 24, 27, "Input"],
Cell[23255, 666, 3025, 90, 83, "Output"]
}, Open ]]
}
]
*)
(* End of internal cache information *)
| Mathematica | 4 | kvmanohar22/gtsam | doc/Mathematica/StereoCamera.nb | [
"BSD-3-Clause"
] |
## Licensed to Cloudera, Inc. under one
## or more contributor license agreements. See the NOTICE file
## distributed with this work for additional information
## regarding copyright ownership. Cloudera, Inc. licenses this file
## to you under the Apache License, Version 2.0 (the
## "License"); you may not use this file except in compliance
## with the License. You may obtain a copy of the License at
##
## http://www.apache.org/licenses/LICENSE-2.0
##
## Unless required by applicable law or agreed to in writing, software
## distributed under the License is distributed on an "AS IS" BASIS,
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
## See the License for the specific language governing permissions and
## limitations under the License.
<%
import sys
from jobbrowser.views import get_state_link
from desktop.views import commonheader, commonfooter
if sys.version_info[0] > 2:
from django.utils.translation import gettext as _
else:
from django.utils.translation import ugettext as _
%>
<%namespace name="comps" file="jobbrowser_components.mako" />
${ commonheader(_('Task View: Job: %(jobId)s') % dict(jobId=job.jobId_short), "jobbrowser", user, request) | n,unicode }
${ comps.menubar() }
<%def name="selected(val, state)">
% if val is not None and state is not None and val in state:
selected="true"
% endif
</%def>
<div class="container-fluid">
<div class="card card-small">
<h1 class="card-heading simple">${_('Task View: Job: %(jobId)s') % dict(jobId=job.jobId_short)}</h1>
<div class="card-body">
<p>
<form method="get" action="${ url('jobbrowser:jobbrowser.views.tasks', job=job.jobId) }">
<b>${_('Filter tasks:')}</b>
<select name="taskstate" class="submitter">
<option value="">${_('All states')}</option>
<option value="succeeded" ${selected('succeeded', taskstate)}>${_('succeeded')}</option>
<option value="running" ${selected('running', taskstate)}>${_('running')}</option>
<option value="failed" ${selected('failed', taskstate)}>${_('failed')}</option>
<option value="killed" ${selected('killed', taskstate)}>${_('killed')}</option>
<option value="pending" ${selected('pending', taskstate)}>${_('pending')}</option>
</select>
<select name="tasktype" class="submitter">
<option value="">${_('All types')}</option>
<option value="map" ${selected('map', tasktype)}>${_('maps')}</option>
<option value="reduce" ${selected('reduce', tasktype)}>${_('reduces')}</option>
<option value="job_cleanup" ${selected('job_cleanup', tasktype)}>${_('cleanups')}</option>
<option value="job_setup" ${selected('job_setup', tasktype)}>${_('setups')}</option>
</select>
<input type="text" name="tasktext" class="submitter" title="${_('Text filter')}" placeholder="${_('Text Filter')}"
% if tasktext:
value="${tasktext}"
% endif
/>
</form>
</p>
<table class="datatables table table-condensed" id="all_tasks">
<thead>
<tr>
<th>${_('Logs')}</th>
<th>${_('Task ID')}</th>
<th>${_('Type')}</th>
<th>${_('Progress')}</th>
<th>${_('Status')}</th>
<th>${_('State')}</th>
<th>${_('Start Time')}</th>
<th>${_('End Time')}</th>
<th>${_('View Attempts')}</th>
</tr>
</thead>
<tbody>
%for t in task_list:
<tr>
<td data-row-selector-exclude="true">
%if t.taskAttemptIds:
<a href="${ url('jobbrowser:single_task_attempt_logs', job=t.jobId, taskid=t.taskId, attemptid=t.taskAttemptIds[-1]) }" data-row-selector-exclude="true"><i class="fa fa-tasks"></i></a>
%endif
</td>
<td>${t.taskId_short}</td>
<td>${t.taskType}</td>
<td>
<div class="bar">${ "%d" % (t.progress * 100) }%</div>
</td>
<td>
<a href="${ url('jobbrowser:jobbrowser.views.tasks', job=job.jobId) }?${ get_state_link(request, 'taskstate', t.state.lower()) }"
title="${ _('Show only %(state)s tasks') % dict(state=t.state.lower()) }"
class="${ t.state.lower() }">${ t.state.lower() }
</a>
</td>
<td>${t.mostRecentState}</td>
<td>${t.execStartTimeFormatted}</td>
<td>${t.execFinishTimeFormatted}</td>
<td><a href="${ url('jobbrowser:jobbrowser.views.single_task', job=job.jobId, taskid=t.taskId) }" data-row-selector="true">${_('Attempts')}</a></td>
</tr>
%endfor
</tbody>
</table>
</div>
</div>
</div>
<script src="${ static('desktop/ext/js/datatables-paging-0.1.js') }" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#all_tasks").dataTable({
"sPaginationType":"bootstrap",
"iDisplayLength":100,
"bLengthChange": false,
"sDom":"<'row'r>t<'row'<'span6'i><''p>>",
"bFilter": false,
"aaSorting": [[ 1, "asc" ]],
"aoColumns":[
{ "bSortable":false },
null,
null,
null,
null,
null,
null,
null,
{ "bSortable":false }
],
"oLanguage": {
"sEmptyTable": "${_('No data available')}",
"sZeroRecords": "${_('No matching records')}",
"sInfo":"${_('Showing _START_ to _END_ of _TOTAL_ entries')}",
"sInfoEmpty":"${_('Showing 0 to 0 of 0 entries')}",
"oPaginate":{
"sFirst":"${_('First')}",
"sLast":"${_('Last')}",
"sNext":"${_('Next')}",
"sPrevious":"${_('Previous')}"
}
},
"fnDrawCallback":function (oSettings) {
$("a[data-row-selector='true']").jHueRowSelector();
}
});
});
</script>
${ commonfooter(request, messages) | n,unicode }
| Mako | 4 | yetsun/hue | apps/jobbrowser/src/jobbrowser/templates/tasks.mako | [
"Apache-2.0"
] |
#include <PJONVirtualBusRouter.h>
/* This sketch is routing between two local buses to form one larger local bus.
It will discover which attached bus each device is connected to, and route
packets dynamically.
Devices can be placed on any of the attached buses as long as device
ids are unique, forming a "virtual bus".
Using this router class, two or more physical buses can be merged.
It can also be used as a range extender.
Note that this example demonstrates the general way which allows any
number of buses to be connected. For the simple two-bus case there is
a specialized class allowing for less code. See the example
VirtualBusRouter2.ino for this.
// ROUTER forwarding from bus 1 to bus 2 and vice versa
__________ ________ __________
| | Bus 1 Pin 7 | | Pin 12 Bus 2 | |
| DEVICE 1 |_______________| ROUTER |_______________| DEVICE 2 |
|__________| |________| |__________| */
StrategyLink<SoftwareBitBang> link1;
StrategyLink<SoftwareBitBang> link2;
PJONAny bus1(&link1);
PJONAny bus2(&link2);
PJONVirtualBusRouter<PJONSwitch> router(2, (PJONAny*[2]){&bus1, &bus2});
void setup() {
link1.strategy.set_pin(7);
link2.strategy.set_pin(12);
router.set_virtual_bus(0);
router.begin();
};
void loop() {
router.loop();
};
| Arduino | 4 | jcallano/PJON | examples/routing/ARDUINO/Local/VirtualBusRouter/VirtualBusRouter/VirtualBusRouter.ino | [
"Apache-2.0"
] |
/* Copyright (c) 2017-2019 Netronome Systems, Inc. All rights reserved.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
hashmap_alloc_fd(SRIOV_TID, 8, 32, 2000, --, swap, BPF_MAP_TYPE_HASH)
.alloc_mem LM_KEY_BASE_ADDR lmem me (16 * (1 << log2((4 * 4), 1))) 128
#macro veb_entry_insert(key, action, SUCCESS)
.begin
.reg lm_key_base
.reg lm_key_offset
.reg lm_value_offset
.reg tid
move(lm_key_base, LM_KEY_BASE_ADDR)
passert((LM_KEY_BASE_ADDR & 0x7f), "EQ", 0)
alu[lm_key_offset, lm_key_base, OR, t_idx_ctx, >>(7-(log2((4 * 4), 1)))]
local_csr_wr[ACTIVE_LM_ADDR_0, lm_key_offset]
alu[lm_value_offset, lm_key_offset, +, 12]
nop
alu[tid, --, b, SRIOV_TID]
move(*l$index0++, key[0])
move(*l$index0++, key[1])
move(*l$index0++, 0)
move(*l$index0++, action[0])
move(*l$index0++, action[1])
//insert sriov entry into hashmap table
#define HASHMAP_RXFR_COUNT 16
#define MAP_RDXR $__pv_pkt_data
#define_eval HASHMAP_TXFR_COUNT 8
.reg write $__map_txfr[HASHMAP_TXFR_COUNT]
.xfer_order $__map_txfr
__hashmap_set($__map_txfr)
#define MAP_TXFR $__map_txfr
#define MAP_RXCAM $__pv_pkt_data[16] /* start at 16 for 8 regs */
hashmap_ops(tid,
lm_key_offset,
lm_value_offset,
HASHMAP_OP_ADD_ANY,
error_map_fd#,
lookup_not_found#,
HASHMAP_RTN_LMEM,
--,
--,
--,
swap)
#undef MAP_RDXR
#undef HASHMAP_RXFR_COUNT
#undef HASHMAP_TXFR_COUNT
#undef MAP_TXFR
#undef MAP_RXCAM
pv_invalidate_cache(pkt_vec)
br[SUCCESS]
error_map_fd#:
lookup_not_found#:
test_fail()
.end
#endm
| UnrealScript | 4 | pcasconnetronome/nic-firmware | test/datapath/actions_classify_veb_insertion.uc | [
"BSD-2-Clause"
] |
<?xml version="1.0" encoding="UTF-8"?>
<!-- generated with COPASI 4.0 Debug 13++ (http://www.copasi.org) at 2005-08-12 19:37:26 UTC -->
<COPASI xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://calvin.bioinformatics.vt.edu/copasi/schema/copasi.xsd" versionMajor="0" versionMinor="1">
<ListOfFunctions>
<Function key="Function_37" name="function_4_R" type="UserDefined" positive="true">
<MathML>
<Text>
"f \"\\"(S1)/c
</Text>
</MathML>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_270" name="S1" order="0" role="substrate"/>
<ParameterDescription key="FunctionParameter_275" name="c" order="1" role="volume"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_41" name="f "\" type="UserDefined" positive="true">
<MathML>
<Text>
0.5*P
</Text>
</MathML>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_269" name="P" order="0" role="constant"/>
</ListOfParameterDescriptions>
</Function>
</ListOfFunctions>
<Model key="Model_0" name="Call Node Test" timeUnit="s" volumeUnit="l" quantityUnit="Mol" stateVariable="StateVariable_10">
<Comment>
<body xmlns="http://www.w3.org/1999/xhtml">
This is a test case for a function using a call node.
The called function name is not an ID and it contains spaces as well as the character " and \ which must be escaped.
</body>
</Comment>
<ListOfCompartments>
<Compartment key="Compartment_1" name="c" stateVariable="StateVariable_11" sbmlid="c"/>
</ListOfCompartments>
<ListOfMetabolites>
<Metabolite key="Metabolite_3" name="S1" compartment="Compartment_1" status="variable" stateVariable="StateVariable_12" sbmlid="S1"/>
<Metabolite key="Metabolite_4" name="S2" compartment="Compartment_1" status="variable" stateVariable="StateVariable_13" sbmlid="S2"/>
</ListOfMetabolites>
<ListOfReactions>
<Reaction key="Reaction_1" name="R" reversible="true" sbmlid="R">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_3" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_4" stoichiometry="1"/>
</ListOfProducts>
<KineticLaw function="Function_37">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_270">
<SourceParameter reference="Metabolite_3"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_275">
<SourceParameter reference="Compartment_1"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
</ListOfReactions>
<StateTemplate>
<StateTemplateVariable key="StateVariable_10" objectReference="Model_0"/>
<StateTemplateVariable key="StateVariable_11" objectReference="Compartment_1"/>
<StateTemplateVariable key="StateVariable_12" objectReference="Metabolite_3"/>
<StateTemplateVariable key="StateVariable_13" objectReference="Metabolite_4"/>
</StateTemplate>
<InitialState type="initialState">
0 1 9.03321e+008 9.03321e+008
</InitialState>
</Model>
<ListOfTasks>
<Task key="Task_0" name="Time-Course" type="timeCourse" scheduled="true">
<Report reference="Report_0" target="testout.CSV" append="0"/>
<Problem>
<Parameter name="StepNumber" type="unsignedInteger" value="50"/>
<Parameter name="StepSize" type="float" value="1"/>
<Parameter name="StartTime" type="float" value="0"/>
<Parameter name="EndTime" type="float" value="50"/>
<Parameter name="TimeSeriesRequested" type="bool" value="1"/>
<Parameter name="OutputStartTime" type="float" value="0"/>
</Problem>
<Method name="Deterministic (LSODA)" type="Stochastic">
<Parameter name="LSODA.RelativeTolerance" type="unsignedFloat" value="1e-006"/>
<Parameter name="LSODA.AbsoluteTolerance" type="unsignedFloat" value="1e-012"/>
<Parameter name="LSODA.AdamsMaxOrder" type="unsignedInteger" value="12"/>
<Parameter name="LSODA.BDFMaxOrder" type="unsignedInteger" value="5"/>
<Parameter name="LSODA.MaxStepsInternal" type="unsignedInteger" value="10000"/>
</Method>
</Task>
<Task key="Task_1" name="Steady-State" type="steadyState" scheduled="false">
<Problem>
<Parameter name="JacobianRequested" type="bool" value="1"/>
<Parameter name="StabilityAnalysisRequested" type="bool" value="1"/>
</Problem>
<Method name="Enhanced Newton" type="Deterministic(LSODA)">
<Parameter name="Newton.UseNewton" type="bool" value="1"/>
<Parameter name="Newton.UseIntegration" type="bool" value="1"/>
<Parameter name="Newton.UseBackIntegration" type="bool" value="1"/>
<Parameter name="Newton.acceptNegativeConcentrations" type="bool" value="0"/>
<Parameter name="Newton.IterationLimit" type="unsignedInteger" value="50"/>
<Parameter name="Newton.DerivationFactor" type="unsignedFloat" value="0.001"/>
<Parameter name="Newton.Resolution" type="unsignedFloat" value="1e-009"/>
<Parameter name="Newton.LSODA.RelativeTolerance" type="unsignedFloat" value="1e-006"/>
<Parameter name="Newton.LSODA.AbsoluteTolerance" type="unsignedFloat" value="1e-012"/>
<Parameter name="Newton.LSODA.AdamsMaxOrder" type="unsignedInteger" value="12"/>
<Parameter name="Newton.LSODA.BDFMaxOrder" type="unsignedInteger" value="5"/>
<Parameter name="Newton.LSODA.MaxStepsInternal" type="unsignedInteger" value="10000"/>
</Method>
</Task>
<Task key="Task_2" name="Scan" type="scan" scheduled="false">
<Problem>
<Parameter name="Subtask" type="unsignedInteger" value="1"/>
<ParameterGroup name="ScanItems">
</ParameterGroup>
<Parameter name="Output in subtask" type="bool" value="1"/>
<Parameter name="Adjust initial conditions" type="bool" value="0"/>
</Problem>
<Method name="Scan Framework" type="TimeScaleSeparationMethod">
</Method>
</Task>
<Task key="Task_3" name="Optimization" type="optimization" scheduled="false">
<Problem>
<ParameterGroup name="OptimizationItemList">
</ParameterGroup>
<ParameterGroup name="OptimizationConstraintList">
</ParameterGroup>
<Parameter name="Steady-State" type="key" value=""/>
<Parameter name="Time-Course" type="key" value="Task_0"/>
<Parameter name="ObjectiveFunction" type="key" value="Function_42"/>
<Parameter name="Maximize" type="bool" value="0"/>
</Problem>
<Method name="Random Search" type="RandomSearch">
<Parameter name="Number of Iterations" type="unsignedInteger" value="100000"/>
<Parameter name="Random Number Generator" type="unsignedInteger" value="1"/>
<Parameter name="Seed" type="unsignedInteger" value="0"/>
</Method>
</Task>
<Task key="Task_4" name="Metabolic Control Analysis" type="metabolicControlAnalysis" scheduled="false">
<Problem>
<Parameter name="SteadyStateRequested" type="bool" value="1"/>
</Problem>
<Method name="MCA Method (Reder)" type="ScanFramework">
<Parameter name="MCA.ModulationFactor" type="unsignedFloat" value="1e-009"/>
</Method>
</Task>
</ListOfTasks>
<ListOfReports>
<Report key="Report_0" name="ReportDefinition_0" taskType="timeCourse" separator="	">
<Comment>
<body xmlns="http://www.w3.org/1999/xhtml">
</body>
</Comment>
<Table printTitle="0">
<Object cn="CN=Root,Model=Call Node Test,Reference=Time"/>
<Object cn="CN=Root,Model=Call Node Test,Vector=Compartments[c],Vector=Metabolites[S1],Reference=Concentration"/>
<Object cn="CN=Root,Model=Call Node Test,Vector=Compartments[c],Vector=Metabolites[S2],Reference=Concentration"/>
</Table>
</Report>
<Report key="Report_1" name="Steady-State" taskType="steadyState" separator="	">
<Comment>
<body xmlns="http://www.w3.org/1999/xhtml">
Automatically generated report.
</body>
</Comment>
<Body>
<Object cn="CN=Root,Vector=TaskList[Steady-State]"/>
</Body>
</Report>
<Report key="Report_4" name="Optimization" taskType="optimization" separator="	">
<Comment>
<body xmlns="http://www.w3.org/1999/xhtml">
Automatically generated report.
</body>
</Comment>
<Table printTitle="1">
<Object cn="CN=Root,Vector=TaskList[Optimization],Problem=Optimization,Reference=Simulation Counter"/>
<Object cn="CN=Root,Vector=TaskList[Optimization],Problem=Optimization,Reference=Best Value"/>
<Object cn="CN=Root,Vector=TaskList[Optimization],Problem=Optimization,Reference=Best Parameters"/>
</Table>
</Report>
</ListOfReports>
<ListOfPlots>
<PlotSpecification name="ConcentrationPlot" type="Plot2D" active="1">
<Parameter name="log X" type="bool" value="0"/>
<Parameter name="log Y" type="bool" value="0"/>
<ListOfPlotItems>
<PlotItem name="[S1]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=Call Node Test,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=Call Node Test,Vector=Compartments[c],Vector=Metabolites[S1],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[S2]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=Call Node Test,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=Call Node Test,Vector=Compartments[c],Vector=Metabolites[S2],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
</ListOfPlotItems>
</PlotSpecification>
</ListOfPlots>
<GUI>
</GUI>
</COPASI>
| Component Pascal | 4 | SzVarga/COPASI | TestSuite/sbml/import_export/function-call-with-quoted-name.cps | [
"Artistic-2.0"
] |
int reqSubscribeTopic(const dict &req, int reqid);
int reqUserLogin(const dict &req, int reqid);
int reqUserLogout(const dict &req, int reqid);
int reqUserPasswordUpdate(const dict &req, int reqid);
int reqStockInsert(const dict &req, int reqid);
int reqStockCancel(const dict &req, int reqid);
int reqStockLock(const dict &req, int reqid);
int reqOptionsInsert(const dict &req, int reqid);
int reqOptionsCancel(const dict &req, int reqid);
int reqQuoteInsert(const dict &req, int reqid);
int reqQuoteCancel(const dict &req, int reqid);
int reqForQuote(const dict &req, int reqid);
int reqExercise(const dict &req, int reqid);
int reqExerciseCancel(const dict &req, int reqid);
int reqQryPartAccount(const dict &req, int reqid);
int reqQryStockOrder(const dict &req, int reqid);
int reqQryOptionsOrder(const dict &req, int reqid);
int reqQryQuoteOrder(const dict &req, int reqid);
int reqQryStockTrade(const dict &req, int reqid);
int reqQryOptionsTrade(const dict &req, int reqid);
int reqQryPosition(const dict &req, int reqid);
int reqQryTopic(const dict &req, int reqid);
int reqQryStock(const dict &req, int reqid);
int reqQryOptions(const dict &req, int reqid);
int reqQryRate(const dict &req, int reqid);
int reqQryClient(const dict &req, int reqid);
int reqQryClientMargin(const dict &req, int reqid);
int reqQryExercise(const dict &req, int reqid);
int reqMarginCombAction(const dict &req, int reqid);
int reqQrySseCombPosition(const dict &req, int reqid);
int reqCombExercise(const dict &req, int reqid);
| C | 3 | funrunskypalace/vnpy | vnpy/api/nh/generator/stock/nh_stock_header_function.h | [
"MIT"
] |
function pkf --description 'copy the content of a file to the piknik clipboard'
piknik -copy < $argv[1];
end
| fish | 2 | Shark/piknik | fish-shell/functions/pkf.fish | [
"BSD-2-Clause"
] |
\*
Copyright (c) 2010-2015, Mark Tarver
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of Mark Tarver may not be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY Mark Tarver ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL Mark Tarver BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*\
(package shen []
(define yacc
[defcc S | CC_Stuff] -> (yacc->shen S CC_Stuff))
(define yacc->shen
S CC_Stuff -> (let CCRules (split_cc_rules true CC_Stuff [])
CCBody (map (/. X (cc_body X)) CCRules)
YaccCases (yacc_cases CCBody)
[define S (protect Stream) -> (kill-code YaccCases)]))
(define kill-code
YaccCases -> (protect [trap-error YaccCases [lambda E [analyse-kill E]]])
where (> (occurrences kill YaccCases) 0)
YaccCases -> YaccCases)
(define kill
-> (simple-error "yacc kill"))
(define analyse-kill
Exception -> (let String (error-to-string Exception)
(if (= String "yacc kill")
(fail)
Exception)))
(define split_cc_rules
_ [] [] -> []
Flag [] RevRule -> [(split_cc_rule Flag (reverse RevRule) [])]
Flag [; | CC_Stuff] RevRule
-> [(split_cc_rule Flag (reverse RevRule) [])
| (split_cc_rules Flag CC_Stuff [])]
Flag [X | CC_Stuff] RevRule -> (split_cc_rules Flag CC_Stuff [X | RevRule]))
(define split_cc_rule
_ [:= Semantics] RevSyntax -> [(reverse RevSyntax) Semantics]
_ [:= Semantics where Guard] RevSyntax
-> [(reverse RevSyntax) [where Guard Semantics]]
Flag [] RevSyntax
-> (do (semantic-completion-warning Flag RevSyntax)
(split_cc_rule Flag [:= (default_semantics (reverse RevSyntax))]
RevSyntax))
Flag [Syntax | Rule] RevSyntax -> (split_cc_rule Flag Rule [Syntax | RevSyntax]))
(define semantic-completion-warning
true RevSyntax -> (do (output "warning: ")
(for-each (/. X (output "~A " X)) (reverse RevSyntax))
(output "has no semantics.~%"))
_ _ -> skip)
(define default_semantics
[] -> []
[S] -> S where (grammar_symbol? S)
[S | Syntax] -> [append S (default_semantics Syntax)] where (grammar_symbol? S)
[S | Syntax] -> [cons S (default_semantics Syntax)])
(define grammar_symbol?
S -> (and (symbol? S)
(let Cs (strip-pathname (explode S))
(and (= (hd Cs) "<") (= (hd (reverse Cs)) ">")))))
(define yacc_cases
[Case] -> Case
[Case | Cases] -> (let P (protect YaccParse)
[let P Case
[if [= P [fail]]
(yacc_cases Cases)
P]]))
(define cc_body
[Syntax Semantics] -> (syntax Syntax (protect Stream) Semantics))
(define syntax
[] Stream [where Guard Semantics] -> [if (semantics Guard)
[pair [hd Stream] (semantics Semantics)]
[fail]]
[] Stream Semantics -> [pair [hd Stream] (semantics Semantics)]
[S | Syntax] Stream Semantics
-> (cases (grammar_symbol? S) (recursive_descent [S | Syntax] Stream Semantics)
(variable? S) (variable-match [S | Syntax] Stream Semantics)
(jump_stream? S) (jump_stream [S | Syntax] Stream Semantics)
(terminal? S) (check_stream [S | Syntax] Stream Semantics)
(cons? S) (list-stream (decons S) Syntax Stream Semantics)
true (error "~A is not legal syntax~%" S)))
(define list-stream
S Syntax Stream Semantics
-> (let Test [and [cons? [hd Stream]] [cons? [hdhd Stream]]]
Placeholder (gensym place)
RunOn (syntax Syntax [pair [tlhd Stream] [hdtl Stream]] Semantics)
Action (insert-runon RunOn Placeholder
(syntax S
[pair [hdhd Stream] [hdtl Stream]]
Placeholder))
[if Test
Action
[fail]]))
(define decons
[cons X []] -> [X]
[cons X Y] -> [X | (decons Y)]
X -> X)
(define insert-runon
Runon Placeholder [pair _ Placeholder] -> Runon
Runon Placeholder [X | Y] -> (map (/. Z (insert-runon Runon Placeholder Z)) [X | Y])
_ _ X -> X)
(define strip-pathname
Cs -> Cs where (not (element? "." Cs))
[_ | Cs] -> (strip-pathname Cs))
(define recursive_descent
[S | Syntax] Stream Semantics
-> (let Test [S Stream]
Action (syntax Syntax
(concat (protect Parse_) S) Semantics)
Else [fail]
[let (concat (protect Parse_) S) Test
[if [not [= [fail] (concat (protect Parse_) S)]]
Action
Else]]))
(define variable-match
[S | Syntax] Stream Semantics
-> (let Test [cons? [hd Stream]]
Action [let (concat (protect Parse_) S) [hdhd Stream]
(syntax Syntax [pair [tlhd Stream]
[hdtl Stream]] Semantics)]
Else [fail]
[if Test Action Else]))
(define terminal?
[_ | _] -> false
X -> false where (variable? X)
_ -> true)
(define jump_stream?
X -> true where (= X _)
_ -> false)
(define check_stream
[S | Syntax] Stream Semantics
-> (let Test [and [cons? [hd Stream]] [= S [hdhd Stream]]]
NewStr (gensym (protect NewStream))
Action [let NewStr [pair [tlhd Stream]
[hdtl Stream]]
(syntax Syntax NewStr Semantics)]
Else [fail]
[if Test Action Else]))
(define jump_stream
[S | Syntax] Stream Semantics
-> (let Test [cons? [hd Stream]]
Action (syntax Syntax [pair [tlhd Stream]
[hdtl Stream]] Semantics)
Else [fail]
[if Test Action Else]))
(define semantics
[] -> []
S -> [hdtl (concat (protect Parse_) S)] where (grammar_symbol? S)
S -> (concat (protect Parse_) S) where (variable? S)
[X | Y] -> (map (/. Z (semantics Z)) [X | Y])
X -> X)
(define pair
X Y -> [X Y])
(define hdtl
X -> (hd (tl X)))
(define hdhd
X -> (hd (hd X)))
(define tlhd
X -> (tl (hd X)))
(define snd-or-fail
[_ Y] -> Y
_ -> (fail))
(define fail
-> fail!)
(define <!>
[X _] -> [[] X]
_ -> (fail))
(define <e>
[X _] -> [X []])
)
| Shen | 4 | nondejus/shen-go | ShenOSKernel-22.2/sources/yacc.shen | [
"BSD-3-Clause"
] |
#pragma rtGlobals=1 // Use modern global access method.
#ifndef WAVEUTILS_INCLUDE
#define WAVEUTILS_INCLUDE
#include "dictutils"
Function Wave_appendRow(wave_in)
// Add a new row to a wave and return the index of the new row
Wave wave_in
return Wave_appendRows(wave_in, 1)
End
Function Wave_appendRows(wave_in, number_rows_to_add)
// Adds *number_rows_to_add* new rows to the end of the wave and
// return the index of the first new row
Wave wave_in
Variable number_rows_to_add
Variable last_row = Wave_getLastRowIndex(wave_in)
InsertPoints/M=0 last_row+1, number_rows_to_add, wave_in
return Wave_getLastRowIndex(wave_in)
End
Constant WAVEEXPAND_FACTOR = 0.1
Function Wave_expandRows(wave_in)
// Adds a number of rows proportional to the total number of rows
// To mitigate memory fragmentation, add multiple rows at a time
Wave wave_in
Variable row_count = Wave_getRowCount(wave_in)
Variable new_rows = row_count * WAVEEXPAND_FACTOR
return Wave_appendRows(wave_in, new_rows)
End
Function Wave_getLastRowIndex(wave_in)
Wave wave_in
return Wave_getRowCount(wave_in) - 1
End
Function Wave_getRowCount(wave_in)
Wave wave_in
return Wave_getDimSize(wave_in, 0)
End
Function Wave_getColumnCount(wave_in)
Wave wave_in
return Wave_getDimSize(wave_in, 1)
End
Function Wave_getDimSize(wave_in, dim_num)
Wave wave_in
Variable dim_num
if (dim_num > 4)
dim_num = 4
elseif (dim_num < 0)
dim_num = 0
endif
Variable count = DimSize(wave_in, dim_num)
if (isNaN(count))
count = 0
endif
return count
End
Function/S Wave_getUniqueName(base_name)
String base_name
return UniqueName(base_name, 1, 0)
End
Function/WAVE Wave_getSubrange(wave_in, point_min, point_max)
Wave wave_in
Variable point_min, point_max
Duplicate/FREE/R=[point_min,point_max] wave_in, wave_out
return wave_out
End
Function/S Wave_getPath(wave_in)
Wave wave_in
return GetWavesDataFolder(wave_in, 2)
End
Function/S Wave_getDF(wave_in)
Wave wave_in
return GetWavesDataFolder(wave_in, 1)
End
Function/DF Wave_getDFR(wave_in)
Wave wave_in
return GetWavesDataFolderDFR(wave_in)
End
Function/S Wave_getDataUnits(wave_in)
Wave wave_in
return WaveUnits(wave_in, -1)
End
Function/S Wave_getRowUnits(wave_in)
Wave wave_in
return WaveUnits(wave_in, 0)
End
Function Wave_setDataUnits(wave_in, new_units)
Wave wave_in
String new_units
SetScale d 0, 0, new_units, wave_in
End
Function Wave_setRowDelta(wave_in, new_delta)
Wave wave_in
Variable new_delta
SetScale/P x Wave_getRowOffset(wave_in), new_delta, wave_in
End
Function Wave_setRowUnits(wave_in, new_units)
Wave wave_in
String new_units
SetScale/P x Wave_getRowOffset(wave_in), Wave_getRowDelta(wave_in), new_units, wave_in
End
Function Wave_setRowOffset(wave_in, new_offset)
Wave wave_in
Variable new_offset
SetScale/P x new_offset, Wave_getRowDelta(wave_in), wave_in
End
Function Wave_getRowDelta(wave_in)
Wave wave_in
return DimDelta(wave_in, 0)
End
Function Wave_getRowOffset(wave_in)
Wave wave_in
return DimOffset(wave_in, 0)
End
Function Wave2D_getColumnIndex(wave_in, onedim_index)
// Return the column index in a 2D wave when given a 1D index
Wave wave_in
Variable onedim_index
Variable row_count = Wave_getRowCount(wave_in)
return floor(onedim_index / row_count)
End
Function Wave2D_getRowIndex(wave_in, onedim_index, col_index)
// Return the row index in a 2D wave when given a 1D index
Wave wave_in
Variable onedim_index, col_index
Variable row_count = Wave_getRowCount(wave_in)
return (onedim_index - (col_index * row_count))
End
Function/WAVE Wave_convert2DToRowIndices(wave_ids, wave_orig)
// Given a wave of 2D indices into `wave_orig`, convert input wave to row indices
Wave wave_ids, wave_orig
Duplicate/FREE wave_ids, wave_out
wave_out = Wave2D_getRowIndex(wave_orig, wave_out, Wave2D_getColumnIndex(wave_orig, wave_out))
return wave_out
End
Function/WAVE Wave_getSliceByX(wave_in, start_x, end_x)
Wave wave_in
Variable start_x, end_x
Duplicate/FREE/R=(start_x, end_x) wave_in, wave_out
return wave_out
End
Function/WAVE Wave_getSlice(wave_in, start_pt, end_pt)
Wave wave_in
Variable start_pt, end_pt
Duplicate/FREE/R=[start_pt, end_pt] wave_in, wave_out
String wave_note = Note(wave_in)
String point_str
sprintf point_str, "%d,%d", start_pt, end_pt
wave_note = Dict_addItem(wave_note, "Slice", point_str)
Note/K wave_out, wave_note
return wave_out
End
Function Wave_saveSliceByX(wave_in, start_x, end_x, waveout_name)
Wave wave_in
Variable start_x, end_x
String waveout_name
Wave_saveSlice(wave_in, x2pnt(wave_in, start_x), x2pnt(wave_in, end_x), waveout_name)
End
Function Wave_saveSlice(wave_in, start_pt, end_pt, waveout_name)
Wave wave_in
Variable start_pt, end_pt
String waveout_name
Wave wave_out = Wave_getSlice(wave_in, start_pt, end_pt)
if (WaveExists($(waveout_name)))
KillWaves $(waveout_name)
endif
MoveWave wave_out, $(waveout_name)
End
Function Wave_saveSliceFromGraph(waveout_name)
String waveout_name
Wave curr_wave = CsrWaveRef(A)
Variable start_pt = pcsr(A)
Variable end_pt = pcsr(B)
Wave_saveSlice(curr_wave, start_pt, end_pt, waveout_name)
End
Function Wave_setPointToZeroX(wave_in, new_zero_pt)
Wave wave_in
Variable new_zero_pt
SetScale/P x pnt2x(wave_in, 0)-pnt2x(wave_in, new_zero_pt), deltax(wave_in), wave_in
End
Function isWavesEqual(waveA, waveB)
Wave waveA, waveB
return EqualWaves(waveA, waveB, 7)
End
Function addWaves(waveA, waveB)
Wave waveA, waveB
waveB += waveA
End
Function addWaves_noNaNs(waveA, waveB)
WAVE waveA
WAVE waveB
waveB += isNaN(waveA) ? 0 : waveA
End
// Make a new wave named *waveout_name* by reducing the sampling
// interval to *x_interval* and averaging over windows of size *x_avg*
// centered over each new point.
//
// Built-in functions like Resample are supposed to be able to handle
// this, but the options were confusing to me. See also the help topic
// "Decimation by Smoothing"
Function Wave_decimate(wave_in, x_interval, x_avg, waveout_name, [no_ends])
Wave wave_in
String waveout_name // name of wave to save results to
Variable x_interval // interval (in x units) between
// points in new wave
Variable x_avg // size (in x units) of window to average
// over for each point
Variable no_ends //
if (ParamIsDefault(no_ends))
no_ends = 0
endif
Variable orig_start = DimOffset(wave_in, 0)
Variable orig_delta = DimDelta(wave_in, 0)
Variable orig_size = DimSize(wave_in, 0)
Variable orig_end = orig_size*orig_delta + orig_start
Variable half_window = x_avg / 2
// Do not allow upsampling or interval values of 0
if (x_interval < orig_delta)
x_interval = orig_delta
endif
Variable new_start = orig_start
Variable new_end = orig_end + x_interval
if (no_ends > 0)
new_start += half_window
new_end -= half_window
endif
Variable new_size = floor(((new_end-new_start) / x_interval))
Make/O/D/N=(new_size) $(waveout_name)
Wave wave_out = $(waveout_name)
SetScale/P x new_start, x_interval, WaveUnits(wave_in, 0), wave_out
wave_out = mean(wave_in, x-half_window, x+half_window)
End
Function Wave_getLastX(wave_in)
Wave wave_in
return pnt2x(wave_in, Wave_getRowCount(wave_in)-1)
End
Function Wave_getFirstX(wave_in)
Wave wave_in
return DimOffset(wave_in, 0)
End
// Return a clipped copy of wave *wave_in* in a wave named
// *waveout_name* with values limited to the minimum value *min_y* and
// maximum value *max_y*. Values outside this range are clipped to
// *min_y* and *max_y*.
Function Wave_clip(wave_in, min_y, max_y, waveout_name)
Wave wave_in
Variable min_y, max_y
String waveout_name
Duplicate/O wave_in, $(waveout_name)
Wave wave_out = $(waveout_name)
wave_out = limit(wave_out, min_y, max_y)
End
// Return a clipped copy of wave *wave_in* in a wave named
// *waveout_name* with values limited to the minimum value *min_y* and
// maximum value *max_y*. Values outside this range are replaced with NaN.
Function Wave_clipToNaN(wave_in, min_y, max_y, waveout_name)
Wave wave_in
Variable min_y, max_y
String waveout_name
WaveSlice_clipToNaN(wave_in, 0, Wave_getRowCount(wave_in), min_y, max_y, waveout_name)
End
Function WaveSlice_clipToNaN(wave_in, start_pt, end_pt, min_y, max_y, waveout_name)
Wave wave_in
Variable start_pt, end_pt
Variable min_y, max_y
String waveout_name
Wave_saveSlice(wave_in, start_pt, end_pt, waveout_name)
Wave wave_out = $(waveout_name)
wave_out = wave_out[p] < min_y ? NaN : wave_out[p]
wave_out = wave_out[p] > max_y ? NaN : wave_out[p]
End
Function Wave_subtract(waveA, waveB, waveout_name)
Wave waveA, waveB
String waveout_name
Duplicate/O waveA, $(waveout_name)
Wave wave_out = $(waveout_name)
wave_out = waveA - waveB
End
Function/S Wave_NumsToList(wave_in)
Wave wave_in
String new_list = ""
Variable row_count = Wave_getRowCount(wave_in)
Variable i
for (i=0; i<row_count; i+=1)
new_list = List_addItem(new_list, num2str(wave_in[i]))
endfor
return new_list
End
// apply full wave rectification to wave_in (in-place)
// essentially flips all negative values to be positive
Function Wave_rectifyFull(wave_in, cut, [pol])
Wave wave_in
Variable cut
String pol // polarity: "pos" (default) or "neg"
if (ParamIsDefault(pol))
pol = "pos"
endif
if (cmpstr("neg", pol) == 0) // flip positive values
wave_in = wave_in < cut ? wave_in : -wave_in
else // flip negative values
wave_in = wave_in > cut ? wave_in : -wave_in
endif
End
// apply half-wave rectification to wave_in (in-place)
Function Wave_rectifyHalf(wave_in, cut, [pol])
Wave wave_in
Variable cut
String pol // polarity: "pos" (default) or "neg"
if (ParamIsDefault(pol))
pol = "pos"
endif
if (cmpstr("neg", pol) == 0) // no positive values
wave_in = wave_in > cut ? cut : wave_in
else // no negative values
wave_in = wave_in < cut ? cut : wave_in
endif
End
// return the area under the input wave with respect to a given
// baseline (and between two points)
Function Wave_integrateWRT(wave_in, baseline, [start_pt, end_pt, polarity])
Wave wave_in
Variable baseline
Variable start_pt, end_pt
String polarity
if (ParamIsDefault(start_pt))
start_pt = 0
endif
if (ParamIsDefault(end_pt))
end_pt = Wave_getLastRowIndex(wave_in)
endif
if (ParamIsDefault(polarity))
polarity = "all"
endif
Duplicate/FREE/O/R=[start_pt,end_pt] wave_in, wave_work
wave_work -= baseline // zero at baseline
if (cmpstr(polarity, "neg") == 0 || cmpstr(polarity, "pos") == 0)
Wave_rectifyHalf(wave_work, 0, pol=polarity)
endif
return area(wave_work)
End
Function Wave_getRangeBounds(wave_in, inc, waveout_name, [start_y, end_y, start_pt, end_pt])
// Return wave with `n` x-values indicating where `wave_in`
// crosses a value `start_y+(p*inc)` (p is a point = 0..n).
Wave wave_in
Variable inc
String waveout_name
Variable start_y, end_y
Variable start_pt, end_pt
// use full x range, if none specified
if (ParamIsDefault(start_pt))
start_pt = 0
endif
if (ParamIsDefault(end_pt))
end_pt = Wave_getLastRowIndex(wave_in)
endif
Variable start_x = pnt2x(wave_in, start_pt)
Variable end_x = pnt2x(wave_in, end_pt)
// find full y range, if none specified
WaveStats/Q/R=[start_pt, end_pt] wave_in
if (ParamIsDefault(start_y))
start_y = V_min
endif
if (ParamIsDefault(end_y))
end_y = V_max
endif
// evenly divide range
Variable npnts = ((end_y - start_y) / inc)
npnts += 1 // add end point
Make/O/N=(npnts) $(waveout_name)
Wave wave_out = $(waveout_name)
Variable i=0
Variable iy
Variable ix = start_x
for (iy=start_y; iy<end_y; iy+=inc)
FindLevel/Q/R=(ix,end_x) wave_in, iy
wave_out[i] = V_LevelX
i+=1
ix = V_LevelX
endfor
wave_out[i] = V_maxLoc // add end point
End
Function/WAVE Wave_union(a, b)
Wave a
Wave b
Variable a_len = Wave_getRowCount(a)
Variable b_len = Wave_getRowCount(b)
Variable max_len = a_len + b_len
Make/FREE/N=(max_len) res
res = a // fill result with all a values
Variable i = 0
Variable n = a_len
for (i=0; i<b_len; i+=1) // fill result with new b values
FindValue/V=(b[i]) a
if (V_value == -1) // novel value
res[n] = b[i]
n += 1
endif
endfor
Redimension/N=(n) res
Sort res, res
return res
End
Function/WAVE Wave_intersect(a, b)
Wave a
Wave b
Variable a_len = Wave_getRowCount(a)
Variable b_len = Wave_getRowCount(b)
Variable max_len = max(a_len, b_len)
Make/FREE/N=(max_len) res
Variable other_len
if (a_len == max_len)
Wave this = a
Wave other = b
other_len = b_len
else
Wave this = b
Wave other = a
other_len = a_len
endif
Variable n = 0
Variable i
for (i=0; i<other_len; i+=1)
Variable val = other[i]
FindValue/V=(val) this
if (V_value != -1)
res[n] = val
n += 1
endif
endfor
Redimension/N=(n) res
Sort res, res
return res
End
Function Wave_pruneNaN(wave_in, outwave_name)
Wave wave_in
String outwave_name
Extract/O wave_in, $(outwave_name), (!isNaN(wave_in))
End
Function/WAVE Wave_indexNonNaN(wave_in)
Wave wave_in
Extract/FREE/INDX wave_in, res, (!isNaN(wave_in))
return res
End
Function Wave_pruneValue(wave_in, prune_val, outwave_name)
Wave wave_in
Variable prune_val
String outwave_name
Extract/O wave_in, $(outwave_name), (wave_in != prune_val)
End
Function Wave_averageNonNaN(wave_in)
Wave wave_in
Extract/FREE wave_in, res, (!isNaN(wave_in))
return mean(res)
End
Function Wave_count(wave_in, val)
Wave wave_in
Variable val
Extract/FREE wave_in, res, (wave_in == val)
return numpnts(res)
End
#endif
| IGOR Pro | 5 | ajnavarro/language-dataset | data/github.com/comptech/Igor-Pro-procedures/d565b7222eecdae735d404382cc7955fcb9ae635/igorutils/waveutils.ipf | [
"MIT"
] |
set terminal epslatex standalone size 12cm, 8cm
set output "out.tex"
p exp(x)
| Gnuplot | 2 | Iinguistics/algorithm-archivists.github.io | contents/plotting/code/gnuplot/example_tex.gp | [
"MIT"
] |
extends LinkButton
func _on_LinkButton_pressed():
OS.shell_open("https://github.com/godotengine/webrtc-native/releases")
| GDScript | 4 | jonbonazza/godot-demo-projects | networking/webrtc_minimal/link_button.gd | [
"MIT"
] |
. "$(dirname "$0")/functions.sh"
setup
install
f=".husky/pre-commit"
npx --no-install husky install
npx --no-install husky add $f "foo"
grep -m 1 _ $f && grep foo $f && ok
npx --no-install husky add .husky/pre-commit "bar"
grep -m 1 _ $f && grep foo $f && grep bar $f && ok
npx --no-install husky set .husky/pre-commit "baz"
grep -m 1 _ $f && grep foo $f || grep bar $f || grep baz $f && ok
| Shell | 2 | david-tomson/husky | test/5_set-add.sh | [
"MIT"
] |
USING: accessors alien alien.c-types alien.private kernel
kernel.private literals math namespaces stack-checker.alien
stack-checker.state stack-checker.values system threads.private
tools.test ;
IN: stack-checker.alien.tests
! alien-inputs/outputs
{
V{ 31 32 }
{ 33 }
} [
0 inner-d-index set
V{ } clone (meta-d) set
H{ } clone known-values set
V{ } clone literals set
30 \ <value> set-global
alien-node-params new int >>return { int int } >>parameters
inputs/outputs
] unit-test
{
V{ 31 32 33 }
{ 34 }
} [
0 inner-d-index set
V{ } clone (meta-d) set
H{ } clone known-values set
V{ } clone literals set
30 \ <value> set-global
alien-indirect-params new int >>return { int int } >>parameters
inputs/outputs
] unit-test
! wrap-callback-quot
${
cpu x86.32?
[
[
{ integer integer } declare [ [ ] dip ] dip
"hello" >integer
] [
dup current-callback eq?
[ drop ] [ wait-for-callback ] if
] do-callback
]
[
[
{ fixnum fixnum } declare [ [ ] dip ] dip
"hello" >fixnum
] [
dup current-callback eq?
[ drop ] [ wait-for-callback ] if
] do-callback
] ?
} [
int { int int } cdecl f alien-node-params boa
[ "hello" ] wrap-callback-quot
] unit-test
| Factor | 3 | alex-ilin/factor | basis/stack-checker/alien/alien-tests.factor | [
"BSD-2-Clause"
] |
module DateTime exposing (DateTime, dateTimeDecoder, dateTimeEncoder)
import Date
import Date.Extra exposing (fromIsoString, toIsoString)
import Json.Decode as Decode exposing (Decoder)
import Json.Encode as Encode
type alias DateTime =
Date.Date
dateTimeDecoder : Decoder DateTime
dateTimeDecoder =
Decode.string
|> Decode.andThen decodeIsoString
dateTimeEncoder : DateTime -> Encode.Value
dateTimeEncoder model =
Encode.string <| toIsoString model
decodeIsoString : String -> Decoder DateTime
decodeIsoString str =
case fromIsoString str of
Just date ->
Decode.succeed date
Nothing ->
Decode.fail <|
"Cannot convert "
++ str
++ " to DateTime"
| Elm | 4 | derBiggi/swagger-codegen | samples/client/petstore/elm/src/DateTime.elm | [
"Apache-2.0"
] |
enum State {
# pending state
PENDING
# visible states
VISIBLE
INVISIBLE
# archive state
ARCHIVED
}
| GraphQL | 3 | fuelingtheweb/prettier | tests/graphql_newline/enum.graphql | [
"MIT"
] |
#ifndef PATHS_HPP_
#define PATHS_HPP_
#include <string>
#include "errors.hpp"
#ifdef _WIN32
#define PATH_SEPARATOR "\\"
#else
#define PATH_SEPARATOR "/"
#endif
// Contains the name of the directory in which all data is stored.
class base_path_t {
public:
// Constructs an empty path.
base_path_t() { }
explicit base_path_t(const std::string& path);
const std::string& path() const;
// Make this base_path_t into an absolute path (useful for daemonizing)
// This can only be done if the path already exists, which is why we don't do it at construction
void make_absolute();
private:
std::string path_;
};
static const char *TEMPORARY_DIRECTORY_NAME = "tmp";
class serializer_filepath_t;
namespace unittest {
serializer_filepath_t manual_serializer_filepath(const std::string& permanent_path,
const std::string& temporary_path);
} // namespace unittest
// Contains the name of a serializer file.
class serializer_filepath_t {
public:
serializer_filepath_t(const base_path_t& directory, const std::string& relative_path)
: permanent_path_(directory.path() + PATH_SEPARATOR + relative_path),
temporary_path_(directory.path() + PATH_SEPARATOR + TEMPORARY_DIRECTORY_NAME + PATH_SEPARATOR + relative_path + ".create") {
guarantee(!relative_path.empty());
}
// A serializer_file_opener_t will first open the file in a temporary location, then move it to
// the permanent location when it's finished being created. These give the names of those
// locations.
std::string permanent_path() const { return permanent_path_; }
std::string temporary_path() const { return temporary_path_; }
private:
friend serializer_filepath_t unittest::manual_serializer_filepath(const std::string& permanent_path,
const std::string& temporary_path);
serializer_filepath_t(const std::string& _permanent_path, const std::string& _temporary_path)
: permanent_path_(_permanent_path), temporary_path_(_temporary_path) { }
const std::string permanent_path_;
const std::string temporary_path_;
};
void recreate_temporary_directory(const base_path_t& base_path);
void remove_directory_recursive(const char *path);
std::string blocking_read_file(const char *path);
bool blocking_read_file(const char *path, std::string *contents_out);
#endif // PATHS_HPP_
| C++ | 5 | zadcha/rethinkdb | src/paths.hpp | [
"Apache-2.0"
] |
%%% Programming Systems Lab, DFKI Saarbruecken,
%%% Stuhlsatzenhausweg 3, D-66123 Saarbruecken, Phone (+49) 681 302-5312
%%% Author: Joerg Wuertz
%%% Email: wuertz@dfki.uni-sb.de
%%% Last modified: $Date$ by $Author$
%%% Version: $Revision$
local
GetMin = FD.reflect.min
GetMax = FD.reflect.max
fun {FindPaths o(Task UB Dur ResSuccs JobSuccs Path OccCrit#Paths)}
JobS = JobSuccs.Task.1
ResS = ResSuccs.Task.1
in
%% ResS = pe means that Task is last on that resource. Nevertheless,
%% Task needs not to be last in the graph!
if JobS==pe andthen ResS==pe then
{Store Path UB Dur OccCrit#Paths}
else
Tmp
in
if JobS\=pe andthen OccCrit.JobS.crit then
Tmp = {FindPaths o(JobS UB Dur ResSuccs JobSuccs
JobS|Path OccCrit#Paths)}
else Tmp = OccCrit#Paths
end
if ResS\=pe andthen OccCrit.ResS.crit then
{FindPaths o(ResS UB Dur ResSuccs JobSuccs ResS|Path Tmp)}
else
Tmp
end
end
end
fun {Store Path UB Dur OccCrit#Paths}
if UB=={FoldL Path fun{$ I T} Dur.T+I end 0}
then
NewOcc = {FoldL Path fun{$ I Task}
Entry = I.Task
in
{AdjoinAt I Task r(occ: Entry.occ+1
crit: Entry.crit)}
end OccCrit}
in
NewOcc#({Reverse Path}|Paths)
else OccCrit#Paths
end
end
fun {MakeSwap Task ResSuccs PertProblem SortedRes Tasks UB}
%% Swap Task and its successor
Succ = ResSuccs.Task.1
in
{Search.one.depthP
proc{$ X}
{PertProblem.1 X}
Dur = X.dur
Start = X.start
in
{Record.forAll SortedRes
proc{$ Tasks}
{ForAllTail Tasks proc{$ T1|Ts}
case Ts of nil then skip
else
T2=Ts.1
in
if T1==Task then
Start.Succ+Dur.Succ =<: Start.Task
elseif T1==Succ then
Start.Task+Dur.Task =<: Start.T2
elseif T2==Task then
Start.T1+Dur.T1 =<: Start.Succ
else
Start.T1+Dur.T1 =<: Start.T2
end
end
end}
end}
end 1 _}
end
in
fun {Paths o(Start Dur ResSuccs JobSuccs JobPreds Sorted Tasks)}
%% critical paths are only those for which length = MakeSpan
OccCrit = {MakeRecord occCrit Tasks}
UB = Start.pe
in
{ForAll Tasks proc{$ Task}
case Task of pa
then OccCrit.pa = r(occ: 0
crit: false)
[] pe
then OccCrit.pe = r(occ: 0
crit: false)
else
case {FD.reflect.size Start.Task} of 1
then OccCrit.Task = r(occ: 0
crit: true)
else OccCrit.Task = r(occ:0
crit: false)
end
end
end}
{Record.foldL Sorted fun{$ In Resource}
First = Resource.1
in
if OccCrit.First.crit
andthen JobPreds.First==[pa]
then
{FindPaths o(First UB Dur ResSuccs
JobSuccs [First] In)}
else In
end
end OccCrit#nil}
end
fun {AnalyzeSwaps o(Occ _ ResSuccs JobSuccs ResPreds
JobPreds Tasks Start Dur)}
{FoldL Tasks
fun{$ I Task}
if Task==pe orelse Task==pa then I
else
U = ResSuccs.Task.1
in
if U\=pe andthen (Occ.Task.crit andthen Occ.U.crit)
then
S = ResPreds.Task.1
V = ResSuccs.U.1
TP = JobPreds.Task.1
UP = JobPreds.U.1
TPP = JobSuccs.Task.1
UPP = JobSuccs.U.1
ULow = {Max {GetMin Start.S}+Dur.S {GetMin Start.UP}+Dur.UP}
TLow = {Max {GetMin Start.TP}+Dur.TP ULow+Dur.U}
TUp = {Min {GetMax Start.V} {GetMax Start.TPP}}
UUp = {Min {GetMax Start.UPP} TUp-Dur.Task}
Gain = {Min UUp-ULow-Dur.U TUp-TLow-Dur.Task}
Occ0 = 0
Occ1 Occ2
in
{Trace Task#U#Gain}
if TUp-ULow >= Dur.Task+Dur.U andthen Gain > 0
then
if Occ.UPP.crit then Occ1 = {Max Occ0 Occ.UPP.occ}
else Occ1=Occ0
end
if Occ.TP.crit then Occ2 = {Max Occ1 Occ.TP.occ}
else Occ2=Occ1
end
if Occ2 > 0
then (Task#Occ2#Gain)|I
else I
end
else I
end
else I
end
end
end nil}
end
fun {Repair o(_ Paths Swaps PertProblem ResSuccs SortedRes
Tasks UB ?NewSol)}
NumberOfCrits = {Length Paths}
BestSwap = {FoldL Swaps fun{$ I Task#O#Gain}
if O==NumberOfCrits andthen
%% the better is Gain > I.2 end noTask#0}
Gain > I.2
then Task#Gain
else I
end
end noTask#0}
in
case BestSwap.1 of noTask then false
else
{Trace 'swapping '#BestSwap.1#' and '#ResSuccs.(BestSwap.1).1}
NewSol={MakeSwap BestSwap.1 ResSuccs PertProblem SortedRes Tasks UB}
true
end
end
end
| Oz | 4 | Ahzed11/mozart2 | platform-test/scheduling/swaps.oz | [
"BSD-2-Clause"
] |
⍝ Mandelbrot
⍝ grid-size in left argument (e.g., (1024 768))
⍝ X-range, Y-range in right argument
mandelbrot ← {
X ← ⊃⍺ ⍝ e.g., 1024
Y ← ⊃1↓⍺ ⍝ e.g., 768
xRng ← 2↑⍵
yRng ← 2↓⍵
dx ← ((xRng[2])-xRng[1]) ÷ X
dy ← ((yRng[2])-yRng[1]) ÷ Y
cxA ← Y X ⍴ (xRng[1]) + dx × ⍳X ⍝ real plane
cyA ← ⍉ X Y ⍴ (yRng[1]) + dy × ⍳Y ⍝ img plane
N ← 90 ⍝ iterations
mandel1 ← {
cx ← ⍺
cy ← ⍵
f ← {
arg ← 3 ⍴ ⍵
x ← arg[1] ⍝ real value
y ← arg[2] ⍝ imaginary value
count ← arg[3]
zx ← cx+(x×x)-(y×y)
zy ← cy+(x×y)+(x×y)
conv ← 4 > (zx × zx) + zy × zy
count2 ← count + 1 - conv
(zx zy count2)
}
res ← (f ⍣ N) (0 0 0) ⍝ perform N iteration of a single mandelbrot point
res[3]
}
res ← cxA mandel1¨ cyA
res ÷ N
}
layout ← {
arr ← '$#Oo*=+:- '
arr[⍵+1]
}
norm ← { layout¨ ⌈9 × ⍵ }
mandelWrap ← {
⎕ ← norm (⌽⍵) ⍴ ⍵ mandelbrot ¯2 0.75 ¯0.75 0.75
}
mandelWrap 20 12
0 | APL | 5 | melsman/apltail | tests/mandelbrotInnerPower.apl | [
"MIT"
] |
FUNCTION FileSizeString(uBytes, lTrim)
LOCAL cResult AS STRING
LOCAL nBytes AS INT
// returns bytes, KB or MB but returns valid strings
Default(@lTrim, FALSE)
DO CASE
CASE IsString(uBytes)
cResult := uBytes // return this anyway - might be "<Dir>" etc
CASE uBytes < 1024
cResult := Str(uBytes,7,0)
CASE uBytes < 10485760
nBytes := INT(uBytes)/1024
cResult := Str(nBytes,5,0) + "KB"
OTHERWISE
// for 10MB and up
nBytes := INT(uBytes)/1048576
cResult := Str(nBytes,5,0) + "MB"
ENDCASE
IF lTrim
cResult := AllTrim(cResult)
ENDIF
RETURN cResult
FUNCTION FullDate (dInDate AS DATE) AS STRING STRICT
RETURN Left(DToC(dInDate),2)+" "+CMonth(dIndate)+" "+Left(DToS(dInDate),4)
FUNCTION GetAssociatedIcon( cFile AS STRING , lLarge := TRUE AS LOGIC ) AS Icon PASCAL
LOCAL strucSHFileInfo IS _winSHFILEINFO
LOCAL hImage AS PTR
LOCAL oIcon AS Icon
LOCAL dwStyle AS DWORD
// Code thanks to Karl-Heinz Rauscher 14/01/02
// Other info parameters possible, of course
dwStyle := _or ( SHGFI_ICON , SHGFI_USEFILEATTRIBUTES )
IF lLarge
dwStyle := _or ( dwStyle , SHGFI_LARGEICON )
ELSE
dwStyle := _or ( dwStyle , SHGFI_SMALLICON )
ENDIF
hImage := SHGetFileInfo( Cast2Psz ( cFile ) ,;
0,;
@strucSHFileInfo,;
_sizeof( _winSHFILEINFO),;
dwStyle )
IF hImage != NULL_PTR
oIcon := Icon{strucSHFileInfo.hIcon}
ENDIF
RETURN oIcon
FUNCTION GetTempFilePath() AS STRING PASCAL
LOCAL ptrName AS PTR
LOCAL cResult AS STRING
ptrName := MemAlloc(250)
GetTempPath(250,ptrName)
cResult := Psz2String(ptrName)
MemFree(ptrName)
RETURN cResult
FUNCTION SetUserInfo() AS VOID PASCAL
LOCAL oReg AS RegSetup
aMailInfo := ArrayCreate(14)
oReg := RegSetup{}
aMailInfo[DEF_ADDRESS] := oReg:QueryString("Email_Address")
aMailInfo[DEF_SMTPSERVER] := oReg:QueryString("Email_SmtpServer")
aMailInfo[DEF_POPSERVER] := oReg:QueryString("Email_PopServer")
aMailInfo[DEF_FULLNAME] := oReg:QueryString("Email_Fullname")
aMailInfo[DEF_ACCOUNT] := oReg:QueryString("Email_Account")
aMailInfo[DEF_PASSWORD] := Crypt(oReg:QueryString("Email_Password"),"VO SO GOOD")
aMailInfo[DEF_ATTACHPATH] := oReg:QueryString("Email_Directory")
aMailInfo[DEF_HEADERS] := (oReg:QueryInt("Email_InspectPopHeaders") = 1)
aMailInfo[DEF_DELETEMAIL] := (oReg:QueryInt("Email_DeleteDownloads") = 1)
aMailInfo[DEF_DELAY] := oReg:QueryInt("Email_CheckDelay")
aMailInfo[DEF_SMTPAUTH] := (oReg:QueryInt("Email_SmtpAuthentication") = 1)
aMailInfo[DEF_SMTPNAME] := oReg:QueryString("Email_SmtpUserName")
aMailInfo[DEF_SMTPPASSWD] := Crypt(oReg:QueryString("Email_SmtpPassword"),"VO SO GOOD")
aMailInfo[DEF_STARTINBOX] := oReg:QueryInt("Email_StartupInbox") = 1
RETURN
FUNCTION TempFilename (cExt AS STRING) AS STRING PASCAL
LOCAL cTemp, cPath AS STRING
cPath := GetTempFilePath()
DO WHILE .T.
cTemp := cPath+"VO_"+SubStr2(StrZero(Rand(0)*99999.,6,0),2)+"."+cExt
IF ! File(cTemp)
EXIT
ENDIF
ENDDO
RETURN cTemp
| xBase | 4 | JohanNel/XSharpPublic | Samples/VOExporterExamples/Before/Email/Functions.prg | [
"Apache-2.0"
] |
unit Deck;
{$IFDEF FPC}
{$mode objfpc}{$H+}
{$ENDIF}
interface
uses
Classes
, SysUtils
;
type
{ TDeck }
TDeck = class
private
FDealerLow: Integer;
FDealerHigh: Integer;
FPlayer: Integer;
procedure PrintCard(const ACard: Integer);
protected
public
property DealerLow: Integer
read FDealerLow;
property DealerHigh: Integer
read FDealerHigh;
property Player: Integer
read FPlayer;
procedure DrawCards;
procedure ShowDealerCards;
procedure ShowPlayerCard;
function PlayerWins: Boolean;
published
end;
implementation
{ TDeck }
procedure TDeck.PrintCard(const ACard: Integer);
begin
if ACard < 11 then
begin
Write(ACard);
end;
if ACard = 11 then
begin
Write('JACK');
end;
if ACard = 12 then
begin
Write('QUEEN');
end;
if ACard = 13 then
begin
Write('KING');
end;
if ACard = 14 then
begin
Write('ACE');
end;
end;
procedure TDeck.DrawCards;
var
tmp: Integer;
begin
repeat
FDealerLow:= Random(14) + 2;
until (FDealerLow >= 2) and (FDealerLow <= 14);
repeat
FDealerHigh:= Random(14) + 2;
until (FDealerHigh >= 2) and (FDealerHigh <= 14) and (FDealerLow <> FDealerHigh);
if FDealerLow > FDealerHigh then
begin
tmp:= FDealerHigh;
FDealerHigh:= FDealerLow;
FDealerLow:= tmp;
end;
repeat
FPlayer:= Random(14) + 2;
until (FPlayer >= 2) and (FPlayer <= 14);
end;
procedure TDeck.ShowDealerCards;
begin
Write('HERE ARE YOUR NEXT TWO CARDS: ');
PrintCard(FDealerLow);
Write(' ');
PrintCard(FDealerHigh);
WriteLN;
WriteLN;
end;
procedure TDeck.ShowPlayerCard;
begin
PrintCard(FPlayer);
WriteLN;
WriteLN;
end;
function TDeck.PlayerWins: Boolean;
begin
Result:= (FPlayer > FDealerLow) and (FPlayer < FDealerHigh);
end;
end.
| Pascal | 4 | jcoehoorn/basic-computer-games | 01_Acey_Ducey/pascal/object-pascal/deck.pas | [
"Unlicense"
] |
{
field
... XYZ
... on TheType {
...AFragment
... {
noTypeCondition
}
}
}
fragment XYZ on ABC {
field
...AFragment
}
| GraphQL | 1 | fuelingtheweb/prettier | tests/graphql_fragments/fragments.graphql | [
"MIT"
] |
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon"));
var _jsxRuntime = require("react/jsx-runtime");
var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M4 5c0 .55.45 1 1 1h4v2H6c-.55 0-1 .45-1 1s.45 1 1 1h3v2H5c-.55 0-1 .45-1 1s.45 1 1 1h4c1.1 0 2-.9 2-2v-1.5c0-.83-.17-1.5-1-1.5.83 0 1-.67 1-1.5V6c0-1.1-.9-2-2-2H5c-.55 0-1 .45-1 1zm14-1c1.1 0 2 .9 2 2v6c0 1.1-.9 2-2 2h-3c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h3zm0 2h-3v6h3V6zM4 22c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm8 0h-4c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1z"
}), 'ThirtyFpsSelectRounded');
exports.default = _default; | JavaScript | 3 | good-gym/material-ui | packages/material-ui-icons/lib/ThirtyFpsSelectRounded.js | [
"MIT"
] |
domain: "[M, N] -> { S1[i0] : i0 >= 1 and i0 <= M; S2[i0, i1] : i0 >= 1 and i0 <= N and i1 >= 1 and i1 <= M }"
child:
context: "[M, N] -> { [] : M >= 1 and N >= 1 }"
child:
schedule: "[M, N] -> [{ S2[i0, i1] -> [(i0)]; S1[i0] -> [(i0)] }, { S2[i0, i1] -> [(i1)]; S1[i0] -> [(0)] }]"
options: "[M, N] -> { separate[i0] }"
child:
sequence:
- filter: "[M, N] -> { S1[i0] }"
- filter: "[M, N] -> { S2[i0, i1] }"
| Smalltalk | 2 | chelini/isl-haystack | test_inputs/codegen/cloog/dot2.st | [
"MIT"
] |
unit SpawnClient;
{
Inno Setup
Copyright (C) 1997-2007 Jordan Russell
Portions by Martijn Laan
For conditions of distribution and use, see LICENSE.TXT.
Spawn client
NOTE: These functions are NOT thread-safe. Do not call them from multiple
threads simultaneously.
$jrsoftware: issrc/Projects/SpawnClient.pas,v 1.5 2007/09/05 02:07:35 jr Exp $
}
interface
uses
Windows, SysUtils, Messages, InstFunc;
procedure InitializeSpawnClient(const AServerWnd: HWND);
function InstExecEx(const RunAsOriginalUser: Boolean;
const DisableFsRedir: Boolean; const Filename, Params, WorkingDir: String;
const Wait: TExecWait; const ShowCmd: Integer;
const ProcessMessagesProc: TProcedure; var ResultCode: Integer): Boolean;
function InstShellExecEx(const RunAsOriginalUser: Boolean;
const Verb, Filename, Params, WorkingDir: String;
const Wait: TExecWait; const ShowCmd: Integer;
const ProcessMessagesProc: TProcedure; var ResultCode: Integer): Boolean;
implementation
uses
Classes, CmnFunc2, SpawnCommon;
var
SpawnServerPresent: Boolean;
SpawnServerWnd: HWND;
procedure WriteLongintToStream(const M: TMemoryStream; const Value: Longint);
begin
M.WriteBuffer(Value, SizeOf(Value));
end;
procedure WriteStringToStream(const M: TMemoryStream; const Value: String);
var
Len: Integer;
begin
Len := Length(Value);
if Len > $FFFF then
InternalError('WriteStringToStream: Length limit exceeded');
WriteLongintToStream(M, Len);
M.WriteBuffer(Value[1], Len * SizeOf(Value[1]));
end;
procedure AllowSpawnServerToSetForegroundWindow;
{ This is called to allow processes started by the spawn server process to
come to the foreground, above the current process's windows. The effect
normally lasts until new input is generated (a keystroke or click, not
simply mouse movement).
Note: If the spawn server process has no visible windows, it seems this
isn't needed (on 2000 & Vista); the process can set the foreground window
as it pleases. If it does have a visible window, though, it definitely is
needed (e.g. in the /DebugSpawnServer case). Let's not rely on any
undocumented behavior and call AllowSetForegroundWindow unconditionally. }
var
PID: DWORD;
AllowSetForegroundWindowFunc: function(dwProcessId: DWORD): BOOL; stdcall;
begin
if GetWindowThreadProcessId(SpawnServerWnd, @PID) <> 0 then begin
AllowSetForegroundWindowFunc := GetProcAddress(GetModuleHandle(user32),
'AllowSetForegroundWindow');
if Assigned(AllowSetForegroundWindowFunc) then
AllowSetForegroundWindowFunc(PID);
end;
end;
function QuerySpawnServer(const SequenceNumber: Word;
const Operation: Integer): Word;
var
MsgResult: LRESULT;
begin
MsgResult := SendMessage(SpawnServerWnd, WM_SpawnServer_Query, Operation,
SequenceNumber);
if MsgResult and not $FFFF <> SPAWN_MSGRESULT_SUCCESS_BITS then
InternalErrorFmt('QuerySpawnServer: Unexpected response: $%x', [MsgResult]);
Result := Word(MsgResult);
end;
function CallSpawnServer(const CopyDataMsg: DWORD; var M: TMemoryStream;
const ProcessMessagesProc: TProcedure; var ResultCode: Integer): Boolean;
var
CopyDataStruct: TCopyDataStruct;
MsgResult: LRESULT;
SequenceNumber: Word;
Status: Word;
LastQueryTime, NowTime: DWORD;
begin
CopyDataStruct.dwData := CopyDataMsg;
CopyDataStruct.cbData := M.Size;
CopyDataStruct.lpData := M.Memory;
AllowSpawnServerToSetForegroundWindow;
MsgResult := SendMessage(SpawnServerWnd, WM_COPYDATA, 0, LPARAM(@CopyDataStruct));
FreeAndNil(M); { it isn't needed anymore, might as well free now }
if MsgResult = SPAWN_MSGRESULT_OUT_OF_MEMORY then
OutOfMemoryError;
if MsgResult and not $FFFF <> SPAWN_MSGRESULT_SUCCESS_BITS then
InternalErrorFmt('CallSpawnServer: Unexpected response: $%x', [MsgResult]);
SequenceNumber := Word(MsgResult);
LastQueryTime := GetTickCount;
repeat
ProcessMessagesProc;
{ Now that the queue is empty (we mustn't break without first processing
messages found by a previous MsgWaitForMultipleObjects call), see if
the status changed, but only if at least 10 ms has elapsed since the
last query }
NowTime := GetTickCount;
if Cardinal(NowTime - LastQueryTime) >= Cardinal(10) then begin
LastQueryTime := NowTime;
Status := QuerySpawnServer(SequenceNumber, SPAWN_QUERY_STATUS);
case Status of
SPAWN_STATUS_RUNNING: ;
SPAWN_STATUS_RETURNED_TRUE, SPAWN_STATUS_RETURNED_FALSE: Break;
else
InternalErrorFmt('CallSpawnServer: Unexpected status: %d', [Status]);
end;
end;
{ Delay for 10 ms, or until a message arrives }
MsgWaitForMultipleObjects(0, THandle(nil^), False, 10, QS_ALLINPUT);
until False;
ResultCode := QuerySpawnServer(SequenceNumber, SPAWN_QUERY_RESULTCODE_LO) or
(QuerySpawnServer(SequenceNumber, SPAWN_QUERY_RESULTCODE_HI) shl 16);
Result := (Status = SPAWN_STATUS_RETURNED_TRUE);
end;
function InstExecEx(const RunAsOriginalUser: Boolean;
const DisableFsRedir: Boolean; const Filename, Params, WorkingDir: String;
const Wait: TExecWait; const ShowCmd: Integer;
const ProcessMessagesProc: TProcedure; var ResultCode: Integer): Boolean;
var
M: TMemoryStream;
begin
if not RunAsOriginalUser or not SpawnServerPresent then begin
Result := InstExec(DisableFsRedir, Filename, Params, WorkingDir,
Wait, ShowCmd, ProcessMessagesProc, ResultCode);
Exit;
end;
M := TMemoryStream.Create;
try
WriteLongintToStream(M, Ord(DisableFsRedir));
WriteStringToStream(M, Filename);
WriteStringToStream(M, Params);
WriteStringToStream(M, WorkingDir);
WriteLongintToStream(M, Ord(Wait));
WriteLongintToStream(M, ShowCmd);
WriteStringToStream(M, GetCurrentDir);
Result := CallSpawnServer(CD_SpawnServer_Exec, M, ProcessMessagesProc,
ResultCode);
finally
M.Free;
end;
end;
function InstShellExecEx(const RunAsOriginalUser: Boolean;
const Verb, Filename, Params, WorkingDir: String;
const Wait: TExecWait; const ShowCmd: Integer;
const ProcessMessagesProc: TProcedure; var ResultCode: Integer): Boolean;
var
M: TMemoryStream;
begin
if not RunAsOriginalUser or not SpawnServerPresent then begin
Result := InstShellExec(Verb, Filename, Params, WorkingDir,
Wait, ShowCmd, ProcessMessagesProc, ResultCode);
Exit;
end;
M := TMemoryStream.Create;
try
WriteStringToStream(M, Verb);
WriteStringToStream(M, Filename);
WriteStringToStream(M, Params);
WriteStringToStream(M, WorkingDir);
WriteLongintToStream(M, Ord(Wait));
WriteLongintToStream(M, ShowCmd);
WriteStringToStream(M, GetCurrentDir);
Result := CallSpawnServer(CD_SpawnServer_ShellExec, M, ProcessMessagesProc,
ResultCode);
finally
M.Free;
end;
end;
procedure InitializeSpawnClient(const AServerWnd: HWND);
begin
SpawnServerWnd := AServerWnd;
SpawnServerPresent := True;
end;
end.
| Pascal | 5 | Patriccollu/issrc | Projects/SpawnClient.pas | [
"FSFAP"
] |
#N canvas 672 25 448 396 10;
#X obj 11 240 nbx 5 14 -1e+37 1e+37 0 0 empty empty empty 0 0 0 10
-262144 -1 -1 0 256;
#X obj 11 262 outlet;
#X obj 78 267 s \$1-out;
#X obj 189 49 r \$1-in;
#X obj 191 130 r \$2-in;
#X obj 191 177 route \$1 -record-;
#X obj 191 205 f;
#X obj 245 289 pack s 0;
#X obj 248 203 b;
#X obj 245 340 s \$2-out;
#X msg 245 315 add list \$1 \$2;
#X obj 248 228 symbol \$1-in;
#X connect 0 0 1 0;
#X connect 0 0 2 0;
#X connect 0 0 7 1;
#X connect 3 0 0 0;
#X connect 4 0 5 0;
#X connect 5 0 6 0;
#X connect 5 1 8 0;
#X connect 6 0 0 0;
#X connect 7 0 10 0;
#X connect 8 0 11 0;
#X connect 10 0 9 0;
#X connect 11 0 7 0;
#X coords 0 0 1 1 80 24 1;
| Pure Data | 1 | mxa/pure-data | doc/7.stuff/synth/numset.pd | [
"TCL"
] |
(let ((lastpwd (path.cwd)))
(path.cwd (cadr *argv*))
(load (caddr *argv*))
(path.cwd lastpwd))
(make-system-image (cadddr *argv*))
| Scheme | 3 | vanillajonathan/julia | src/mk_julia_flisp_boot.scm | [
"Zlib"
] |
class CommonType {
**
** Map the list of expressions into their list of types
**
static CType[] ctypes(Expr[] exprs)
{
return exprs.map |Expr e->CType| { e.ctype }
}
**
** Given a list of Expr instances, find the common base type
** they all share. This method does not take into account
** the null literal. It is used for type inference for lists
** and maps.
**
static CType commonType(CNamespace ns, Expr[] exprs)
{
hasNull := false
exprs = exprs.exclude |Expr e->Bool|
{
if (e.id !== ExprId.nullLiteral) return false
hasNull = true
return true
}
t := common(ns, ctypes(exprs))
if (hasNull) t = t.toNullable
return t
}
**
** Given a list of types, compute the most specific type which they
** all share, or at worst return sys::Obj. This method does not take
** into account mixins, only extends class inheritance.
**
public static CType common(CNamespace ns, CType[] types)
{
// special handling for nothing
if (types.size == 2)
{
if (types[0].isNothing) return types[1]
if (types[1].isNothing) return types[0]
}
// special handling for zero or one types
if (types.size == 0) return ns.objType.toNullable
if (types.size == 1) return types.first
// first-pass iteration is used to:
// - check if any one of the types is nullable
// - check if any of the types is a parameterized generic
// - normalize our types to non-nullable
mixins := false
nullable := false
parameterized := false
types = types.dup
types.each |t, i|
{
if (t.isParameterized) parameterized = true
if (t.isNullable) nullable = true
if (t.isMixin) mixins = true
types[i] = t.toNonNullable
}
// if any one of the items is parameterized then we handle it
// specially, otherwise we find the most common class
CType? best
// if (parameterized)
// best = commonParameterized(ns, types)
// else
if (mixins)
best = commonMixin(ns, types)
else
best = commonClass(ns, types)
// if any one of the items was nullable, then whole result is nullable
return nullable ? best.toNullable : best
}
private static CType commonClass(CNamespace ns, CType[] types)
{
best := types[0]
for (Int i:=1; i<types.size; ++i)
{
t := types[i]
while (!t.fits(best))
{
bestBase := best.base
if (bestBase == null) return ns.objType
best = bestBase
}
}
return best
}
private static CType commonMixin(CNamespace ns, CType[] types)
{
// mixins must all be same type or else we fallback to Obj
first := types[0]
allSame := types.all |t| { t == first }
return allSame ? first : ns.objType
}
// private static CType commonParameterized(CNamespace ns, CType[] types)
// {
// // we only support common inference on parameterized lists
// // since they are one dimensional in their parameterization,
// // all other inference is based strictly on exact type
// allList := true
// allMap := true
// allFunc := true
// types.each |t|
// {
// allList = allList && t is ListType
// allMap = allMap && t is MapType
// allFunc = allFunc && t is FuncType
// }
// if (allList) return commonList(ns, types)
// if (allMap) return commonExact(ns, types, ns.mapType)
// if (allFunc) return commonExact(ns, types, ns.funcType)
// return ns.objType
// }
//
// private static CType commonList(CNamespace ns, ListType[] types)
// {
// vTypes := types.map |t->CType| { t.v }
// return common(ns, vTypes).toListOf
// }
//
// private static CType commonExact(CNamespace ns, CType[] types, CType fallback)
// {
// // we only infer func types based strictly on exact type
// first := types[0]
// exact := types.all |t| { first == t }
// return exact ? first : fallback
// }
}
| Fantom | 4 | fanx-dev/fanx | compiler/compilerx/fan/checkType/CommonType.fan | [
"AFL-3.0"
] |
<script>
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
else if(typeof define === 'function' && define.amd)
define("JSONFormatter", [], factory);
else if(typeof exports === 'object')
exports["JSONFormatter"] = factory();
else
root["JSONFormatter"] = factory();
})(this, function() {
return /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId])
/******/ return installedModules[moduleId].exports;
/******/
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ exports: {},
/******/ id: moduleId,
/******/ loaded: false
/******/ };
/******/
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ // Flag the module as loaded
/******/ module.loaded = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "dist";
/******/
/******/ // Load entry module and return exports
/******/ return __webpack_require__(0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ function(module, exports, __webpack_require__) {
module.exports = __webpack_require__(1);
/***/ },
/* 1 */
/***/ function(module, exports, __webpack_require__) {
"use strict";
__webpack_require__(2);
var helpers_ts_1 = __webpack_require__(6);
var DATE_STRING_REGEX = /(^\d{1,4}[\.|\\/|-]\d{1,2}[\.|\\/|-]\d{1,4})(\s*(?:0?[1-9]:[0-5]|1(?=[012])\d:[0-5])\d\s*[ap]m)?$/;
var PARTIAL_DATE_REGEX = /\d{2}:\d{2}:\d{2} GMT-\d{4}/;
var JSON_DATE_REGEX = /\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z/;
// When toggleing, don't animated removal or addition of more than a few items
var MAX_ANIMATED_TOGGLE_ITEMS = 10;
var requestAnimationFrame = window.requestAnimationFrame || function (cb) { cb(); return 0; };
;
var _defaultConfig = {
hoverPreviewEnabled: false,
hoverPreviewArrayCount: 100,
hoverPreviewFieldCount: 5,
animateOpen: true,
animateClose: true,
theme: null
};
module.exports = (function () {
/**
* @param {object} json The JSON object you want to render. It has to be an
* object or array. Do NOT pass raw JSON string.
*
* @param {number} [open=1] his number indicates up to how many levels the
* rendered tree should expand. Set it to `0` to make the whole tree collapsed
* or set it to `Infinity` to expand the tree deeply
*
* @param {object} [config=defaultConfig] -
* defaultConfig = {
* hoverPreviewEnabled: false,
* hoverPreviewArrayCount: 100,
* hoverPreviewFieldCount: 5
* }
*
* Available configurations:
* #####Hover Preview
* * `hoverPreviewEnabled`: enable preview on hover
* * `hoverPreviewArrayCount`: number of array items to show in preview Any
* array larger than this number will be shown as `Array[XXX]` where `XXX`
* is length of the array.
* * `hoverPreviewFieldCount`: number of object properties to show for object
* preview. Any object with more properties that thin number will be
* truncated.
*
* @param {string} [key=undefined] The key that this object in it's parent
* context
*/
function JSONFormatter(json, open, config, key) {
if (open === void 0) { open = 1; }
if (config === void 0) { config = _defaultConfig; }
this.json = json;
this.open = open;
this.config = config;
this.key = key;
// Hold the open state after the toggler is used
this._isOpen = null;
// Setting default values for config object
if (this.config.hoverPreviewEnabled === undefined) {
this.config.hoverPreviewEnabled = _defaultConfig.hoverPreviewEnabled;
}
if (this.config.hoverPreviewArrayCount === undefined) {
this.config.hoverPreviewArrayCount = _defaultConfig.hoverPreviewArrayCount;
}
if (this.config.hoverPreviewFieldCount === undefined) {
this.config.hoverPreviewFieldCount = _defaultConfig.hoverPreviewFieldCount;
}
}
Object.defineProperty(JSONFormatter.prototype, "isOpen", {
/*
* is formatter open?
*/
get: function () {
if (this._isOpen !== null) {
return this._isOpen;
}
else {
return this.open > 0;
}
},
/*
* set open state (from toggler)
*/
set: function (value) {
this._isOpen = value;
},
enumerable: true,
configurable: true
});
Object.defineProperty(JSONFormatter.prototype, "isDate", {
/*
* is this a date string?
*/
get: function () {
return (this.type === 'string') &&
(DATE_STRING_REGEX.test(this.json) ||
JSON_DATE_REGEX.test(this.json) ||
PARTIAL_DATE_REGEX.test(this.json));
},
enumerable: true,
configurable: true
});
Object.defineProperty(JSONFormatter.prototype, "isUrl", {
/*
* is this a URL string?
*/
get: function () {
return this.type === 'string' && (this.json.indexOf('http') === 0);
},
enumerable: true,
configurable: true
});
Object.defineProperty(JSONFormatter.prototype, "isArray", {
/*
* is this an array?
*/
get: function () {
return Array.isArray(this.json);
},
enumerable: true,
configurable: true
});
Object.defineProperty(JSONFormatter.prototype, "isObject", {
/*
* is this an object?
* Note: In this context arrays are object as well
*/
get: function () {
return helpers_ts_1.isObject(this.json);
},
enumerable: true,
configurable: true
});
Object.defineProperty(JSONFormatter.prototype, "isEmptyObject", {
/*
* is this an empty object with no properties?
*/
get: function () {
return !this.keys.length && !this.isArray;
},
enumerable: true,
configurable: true
});
Object.defineProperty(JSONFormatter.prototype, "isEmpty", {
/*
* is this an empty object or array?
*/
get: function () {
return this.isEmptyObject || (this.keys && !this.keys.length && this.isArray);
},
enumerable: true,
configurable: true
});
Object.defineProperty(JSONFormatter.prototype, "hasKey", {
/*
* did we receive a key argument?
* This means that the formatter was called as a sub formatter of a parent formatter
*/
get: function () {
return typeof this.key !== 'undefined';
},
enumerable: true,
configurable: true
});
Object.defineProperty(JSONFormatter.prototype, "constructorName", {
/*
* if this is an object, get constructor function name
*/
get: function () {
return helpers_ts_1.getObjectName(this.json);
},
enumerable: true,
configurable: true
});
Object.defineProperty(JSONFormatter.prototype, "type", {
/*
* get type of this value
* Possible values: all JavaScript primitive types plus "array" and "null"
*/
get: function () {
return helpers_ts_1.getType(this.json);
},
enumerable: true,
configurable: true
});
Object.defineProperty(JSONFormatter.prototype, "keys", {
/*
* get object keys
* If there is an empty key we pad it wit quotes to make it visible
*/
get: function () {
if (this.isObject) {
return Object.keys(this.json).map(function (key) { return key ? key : '""'; });
}
else {
return [];
}
},
enumerable: true,
configurable: true
});
/**
* Toggles `isOpen` state
*
*/
JSONFormatter.prototype.toggleOpen = function () {
this.isOpen = !this.isOpen;
if (this.element) {
if (this.isOpen) {
this.appendChildren(this.config.animateOpen);
}
else {
this.removeChildren(this.config.animateClose);
}
this.element.classList.toggle(helpers_ts_1.cssClass('open'));
}
};
/**
* Open all children up to a certain depth.
* Allows actions such as expand all/collapse all
*
*/
JSONFormatter.prototype.openAtDepth = function (depth) {
if (depth === void 0) { depth = 1; }
if (depth < 0) {
return;
}
this.open = depth;
this.isOpen = (depth !== 0);
if (this.element) {
this.removeChildren(false);
if (depth === 0) {
this.element.classList.remove(helpers_ts_1.cssClass('open'));
}
else {
this.appendChildren(this.config.animateOpen);
this.element.classList.add(helpers_ts_1.cssClass('open'));
}
}
};
/**
* Generates inline preview
*
* @returns {string}
*/
JSONFormatter.prototype.getInlinepreview = function () {
var _this = this;
if (this.isArray) {
// if array length is greater then 100 it shows "Array[101]"
if (this.json.length > this.config.hoverPreviewArrayCount) {
return "Array[" + this.json.length + "]";
}
else {
return "[" + this.json.map(helpers_ts_1.getPreview).join(', ') + "]";
}
}
else {
var keys = this.keys;
// the first five keys (like Chrome Developer Tool)
var narrowKeys = keys.slice(0, this.config.hoverPreviewFieldCount);
// json value schematic information
var kvs = narrowKeys.map(function (key) { return (key + ":" + helpers_ts_1.getPreview(_this.json[key])); });
// if keys count greater then 5 then show ellipsis
var ellipsis = keys.length >= this.config.hoverPreviewFieldCount ? '…' : '';
return "{" + kvs.join(', ') + ellipsis + "}";
}
};
/**
* Renders an HTML element and installs event listeners
*
* @returns {HTMLDivElement}
*/
JSONFormatter.prototype.render = function () {
// construct the root element and assign it to this.element
this.element = helpers_ts_1.createElement('div', 'row');
// construct the toggler link
var togglerLink = helpers_ts_1.createElement('a', 'toggler-link');
// if this is an object we need a wrapper span (toggler)
if (this.isObject) {
togglerLink.appendChild(helpers_ts_1.createElement('span', 'toggler'));
}
// if this is child of a parent formatter we need to append the key
if (this.hasKey) {
togglerLink.appendChild(helpers_ts_1.createElement('span', 'key', this.key + ":"));
}
// Value for objects and arrays
if (this.isObject) {
// construct the value holder element
var value = helpers_ts_1.createElement('span', 'value');
// we need a wrapper span for objects
var objectWrapperSpan = helpers_ts_1.createElement('span');
// get constructor name and append it to wrapper span
var constructorName = helpers_ts_1.createElement('span', 'constructor-name', this.constructorName);
objectWrapperSpan.appendChild(constructorName);
// if it's an array append the array specific elements like brackets and length
if (this.isArray) {
var arrayWrapperSpan = helpers_ts_1.createElement('span');
arrayWrapperSpan.appendChild(helpers_ts_1.createElement('span', 'bracket', '['));
arrayWrapperSpan.appendChild(helpers_ts_1.createElement('span', 'number', (this.json.length)));
arrayWrapperSpan.appendChild(helpers_ts_1.createElement('span', 'bracket', ']'));
objectWrapperSpan.appendChild(arrayWrapperSpan);
}
// append object wrapper span to toggler link
value.appendChild(objectWrapperSpan);
togglerLink.appendChild(value);
}
else {
// make a value holder element
var value = this.isUrl ? helpers_ts_1.createElement('a') : helpers_ts_1.createElement('span');
// add type and other type related CSS classes
value.classList.add(helpers_ts_1.cssClass(this.type));
if (this.isDate) {
value.classList.add(helpers_ts_1.cssClass('date'));
}
if (this.isUrl) {
value.classList.add(helpers_ts_1.cssClass('url'));
value.setAttribute('href', this.json);
}
// Append value content to value element
var valuePreview = helpers_ts_1.getValuePreview(this.json, this.json);
value.appendChild(document.createTextNode(valuePreview));
// append the value element to toggler link
togglerLink.appendChild(value);
}
// if hover preview is enabled, append the inline preview element
if (this.isObject && this.config.hoverPreviewEnabled) {
var preview = helpers_ts_1.createElement('span', 'preview-text');
preview.appendChild(document.createTextNode(this.getInlinepreview()));
togglerLink.appendChild(preview);
}
// construct a children element
var children = helpers_ts_1.createElement('div', 'children');
// set CSS classes for children
if (this.isObject) {
children.classList.add(helpers_ts_1.cssClass('object'));
}
if (this.isArray) {
children.classList.add(helpers_ts_1.cssClass('array'));
}
if (this.isEmpty) {
children.classList.add(helpers_ts_1.cssClass('empty'));
}
// set CSS classes for root element
if (this.config && this.config.theme) {
this.element.classList.add(helpers_ts_1.cssClass(this.config.theme));
}
if (this.isOpen) {
this.element.classList.add(helpers_ts_1.cssClass('open'));
}
// append toggler and children elements to root element
this.element.appendChild(togglerLink);
this.element.appendChild(children);
// if formatter is set to be open call appendChildren
if (this.isObject && this.isOpen) {
this.appendChildren();
}
// add event listener for toggling
if (this.isObject) {
togglerLink.addEventListener('click', this.toggleOpen.bind(this));
}
return this.element;
};
/**
* Appends all the children to children element
* Animated option is used when user triggers this via a click
*/
JSONFormatter.prototype.appendChildren = function (animated) {
var _this = this;
if (animated === void 0) { animated = false; }
var children = this.element.querySelector("div." + helpers_ts_1.cssClass('children'));
if (!children || this.isEmpty) {
return;
}
if (animated) {
var index_1 = 0;
var addAChild_1 = function () {
var key = _this.keys[index_1];
var formatter = new JSONFormatter(_this.json[key], _this.open - 1, _this.config, key);
children.appendChild(formatter.render());
index_1 += 1;
if (index_1 < _this.keys.length) {
if (index_1 > MAX_ANIMATED_TOGGLE_ITEMS) {
addAChild_1();
}
else {
requestAnimationFrame(addAChild_1);
}
}
};
requestAnimationFrame(addAChild_1);
}
else {
this.keys.forEach(function (key) {
var formatter = new JSONFormatter(_this.json[key], _this.open - 1, _this.config, key);
children.appendChild(formatter.render());
});
}
};
/**
* Removes all the children from children element
* Animated option is used when user triggers this via a click
*/
JSONFormatter.prototype.removeChildren = function (animated) {
if (animated === void 0) { animated = false; }
var childrenElement = this.element.querySelector("div." + helpers_ts_1.cssClass('children'));
if (animated) {
var childrenRemoved_1 = 0;
var removeAChild_1 = function () {
if (childrenElement && childrenElement.children.length) {
childrenElement.removeChild(childrenElement.children[0]);
childrenRemoved_1 += 1;
if (childrenRemoved_1 > MAX_ANIMATED_TOGGLE_ITEMS) {
removeAChild_1();
}
else {
requestAnimationFrame(removeAChild_1);
}
}
};
requestAnimationFrame(removeAChild_1);
}
else {
if (childrenElement) {
childrenElement.innerHTML = '';
}
}
};
return JSONFormatter;
}());
/***/ },
/* 2 */
/***/ function(module, exports, __webpack_require__) {
// style-loader: Adds some css to the DOM by adding a <style> tag
// load the styles
var content = __webpack_require__(3);
if(typeof content === 'string') content = [[module.id, content, '']];
// add the styles to the DOM
var update = __webpack_require__(5)(content, {"sourceMap":true});
if(content.locals) module.exports = content.locals;
// Hot Module Replacement
if(false) {
// When the styles change, update the <style> tags
if(!content.locals) {
module.hot.accept("!!./../node_modules/css-loader/index.js?sourceMap!./../node_modules/less-loader/index.js?sourceMap!./style.less", function() {
var newContent = require("!!./../node_modules/css-loader/index.js?sourceMap!./../node_modules/less-loader/index.js?sourceMap!./style.less");
if(typeof newContent === 'string') newContent = [[module.id, newContent, '']];
update(newContent);
});
}
// When the module is disposed, remove the <style> tags
module.hot.dispose(function() { update(); });
}
/***/ },
/* 3 */
/***/ function(module, exports, __webpack_require__) {
exports = module.exports = __webpack_require__(4)();
// imports
// module
exports.push([module.id, ".json-formatter-row {\n font-family: monospace;\n}\n.json-formatter-row,\n.json-formatter-row a,\n.json-formatter-row a:hover {\n color: black;\n text-decoration: none;\n}\n.json-formatter-row .json-formatter-row {\n margin-left: 1rem;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty {\n opacity: 0.5;\n margin-left: 1rem;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty:after {\n display: none;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\n content: \"No properties\";\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\n content: \"[]\";\n}\n.json-formatter-row .json-formatter-string {\n color: green;\n white-space: pre;\n word-wrap: break-word;\n}\n.json-formatter-row .json-formatter-number {\n color: blue;\n}\n.json-formatter-row .json-formatter-boolean {\n color: red;\n}\n.json-formatter-row .json-formatter-null {\n color: #855A00;\n}\n.json-formatter-row .json-formatter-undefined {\n color: #ca0b69;\n}\n.json-formatter-row .json-formatter-function {\n color: #FF20ED;\n}\n.json-formatter-row .json-formatter-date {\n background-color: rgba(0, 0, 0, 0.05);\n}\n.json-formatter-row .json-formatter-url {\n text-decoration: underline;\n color: blue;\n cursor: pointer;\n}\n.json-formatter-row .json-formatter-bracket {\n color: blue;\n}\n.json-formatter-row .json-formatter-key {\n color: #00008B;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-row .json-formatter-constructor-name {\n cursor: pointer;\n}\n.json-formatter-row .json-formatter-toggler {\n line-height: 1.2rem;\n font-size: 0.7rem;\n vertical-align: middle;\n opacity: 0.6;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-row .json-formatter-toggler:after {\n display: inline-block;\n transition: transform 100ms ease-in;\n content: \"\\25BA\";\n}\n.json-formatter-row > a > .json-formatter-preview-text {\n opacity: 0;\n transition: opacity 0.15s ease-in;\n font-style: italic;\n}\n.json-formatter-row:hover > a > .json-formatter-preview-text {\n opacity: 0.6;\n}\n.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\n transform: rotate(90deg);\n}\n.json-formatter-row.json-formatter-open > .json-formatter-children:after {\n display: inline-block;\n}\n.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\n display: none;\n}\n.json-formatter-row.json-formatter-open.json-formatter-empty:after {\n display: block;\n}\n.json-formatter-dark.json-formatter-row {\n font-family: monospace;\n}\n.json-formatter-dark.json-formatter-row,\n.json-formatter-dark.json-formatter-row a,\n.json-formatter-dark.json-formatter-row a:hover {\n color: white;\n text-decoration: none;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-row {\n margin-left: 1rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty {\n opacity: 0.5;\n margin-left: 1rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty:after {\n display: none;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\n content: \"No properties\";\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\n content: \"[]\";\n}\n.json-formatter-dark.json-formatter-row .json-formatter-string {\n color: #31F031;\n white-space: pre;\n word-wrap: break-word;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-number {\n color: #66C2FF;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-boolean {\n color: #EC4242;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-null {\n color: #EEC97D;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-undefined {\n color: #ef8fbe;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-function {\n color: #FD48CB;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-date {\n background-color: rgba(255, 255, 255, 0.05);\n}\n.json-formatter-dark.json-formatter-row .json-formatter-url {\n text-decoration: underline;\n color: #027BFF;\n cursor: pointer;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-bracket {\n color: #9494FF;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-key {\n color: #23A0DB;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-constructor-name {\n cursor: pointer;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler {\n line-height: 1.2rem;\n font-size: 0.7rem;\n vertical-align: middle;\n opacity: 0.6;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler:after {\n display: inline-block;\n transition: transform 100ms ease-in;\n content: \"\\25BA\";\n}\n.json-formatter-dark.json-formatter-row > a > .json-formatter-preview-text {\n opacity: 0;\n transition: opacity 0.15s ease-in;\n font-style: italic;\n}\n.json-formatter-dark.json-formatter-row:hover > a > .json-formatter-preview-text {\n opacity: 0.6;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\n transform: rotate(90deg);\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-children:after {\n display: inline-block;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\n display: none;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open.json-formatter-empty:after {\n display: block;\n}\n", "", {"version":3,"sources":["/./src/style.less","/./src/style.less"],"names":[],"mappings":"AA0GA;EA3FE,uBAAA;CCbD;ADcC;;;EACE,aAAA;EACA,sBAAA;CCVH;ADkGD;EApFI,kBAAA;CCXH;ADeG;EACE,aAAA;EACA,kBAAA;CCbL;ADeK;EAAU,cAAA;CCZf;ADaK;EAAgC,yBAAA;CCVrC;ADWK;EAA+B,cAAA;CCRpC;ADkFD;EArEI,aAAA;EACA,iBAAA;EACA,sBAAA;CCVH;AD6ED;EAjE2B,YAAA;CCT1B;AD0ED;EAhE4B,WAAA;CCP3B;ADuED;EA/DyB,eAAA;CCLxB;ADoED;EA9D8B,eAAA;CCH7B;ADiED;EA7D6B,eAAA;CCD5B;AD8DD;EA5DyB,sCAAA;CCCxB;AD2DD;EA1DI,2BAAA;EACA,YAAA;EACA,gBAAA;CCEH;ADsDD;EArD4B,YAAA;CCE3B;ADmDD;EAnDI,eAAA;EACA,gBAAA;EACA,sBAAA;CCGH;AD8CD;EA9CI,gBAAA;CCGH;AD2CD;EA1CI,oBAAA;EACA,kBAAA;EACA,uBAAA;EACA,aAAA;EACA,gBAAA;EACA,sBAAA;CCEH;ADAG;EACE,sBAAA;EACA,oCAAA;EACA,iBAAA;CCEL;AD8BD;EA1BI,WAAA;EACA,kCAAA;EACA,mBAAA;CCDH;ADGC;EACE,aAAA;CCDH;ADKC;EAEI,yBAAA;CCJL;ADEC;EAKI,sBAAA;CCJL;ADDC;EAQI,cAAA;CCJL;ADMG;EACE,eAAA;CCJL;ADeD;EAhGE,uBAAA;CCoFD;ADnFC;;;EACE,aAAA;EACA,sBAAA;CCuFH;ADMD;EAzFI,kBAAA;CCsFH;ADlFG;EACE,aAAA;EACA,kBAAA;CCoFL;ADlFK;EAAU,cAAA;CCqFf;ADpFK;EAAgC,yBAAA;CCuFrC;ADtFK;EAA+B,cAAA;CCyFpC;ADVD;EA1EI,eAAA;EACA,iBAAA;EACA,sBAAA;CCuFH;ADfD;EAtE2B,eAAA;CCwF1B;ADlBD;EArE4B,eAAA;CC0F3B;ADrBD;EApEyB,eAAA;CC4FxB;ADxBD;EAnE8B,eAAA;CC8F7B;AD3BD;EAlE6B,eAAA;CCgG5B;AD9BD;EAjEyB,4CAAA;CCkGxB;ADjCD;EA/DI,2BAAA;EACA,eAAA;EACA,gBAAA;CCmGH;ADtCD;EA1D4B,eAAA;CCmG3B;ADzCD;EAxDI,eAAA;EACA,gBAAA;EACA,sBAAA;CCoGH;AD9CD;EAnDI,gBAAA;CCoGH;ADjDD;EA/CI,oBAAA;EACA,kBAAA;EACA,uBAAA;EACA,aAAA;EACA,gBAAA;EACA,sBAAA;CCmGH;ADjGG;EACE,sBAAA;EACA,oCAAA;EACA,iBAAA;CCmGL;AD9DD;EA/BI,WAAA;EACA,kCAAA;EACA,mBAAA;CCgGH;AD9FC;EACE,aAAA;CCgGH;AD5FC;EAEI,yBAAA;CC6FL;AD/FC;EAKI,sBAAA;CC6FL;ADlGC;EAQI,cAAA;CC6FL;AD3FG;EACE,eAAA;CC6FL","file":"style.less","sourcesContent":[".theme(\n @default-color: black,\n @string-color: green,\n @number-color: blue,\n @boolean-color: red,\n @null-color: #855A00,\n @undefined-color: rgb(202, 11, 105),\n @function-color: #FF20ED,\n @rotate-time: 100ms,\n @toggler-opacity: 0.6,\n @toggler-color: #45376F,\n @bracket-color: blue,\n @key-color: #00008B,\n @url-color: blue ){\n\n font-family: monospace;\n &, a, a:hover {\n color: @default-color;\n text-decoration: none;\n }\n\n .json-formatter-row {\n margin-left: 1rem;\n }\n\n .json-formatter-children {\n &.json-formatter-empty {\n opacity: 0.5;\n margin-left: 1rem;\n\n &:after { display: none; }\n &.json-formatter-object:after { content: \"No properties\"; }\n &.json-formatter-array:after { content: \"[]\"; }\n }\n }\n\n .json-formatter-string {\n color: @string-color;\n white-space: pre;\n word-wrap: break-word;\n }\n .json-formatter-number { color: @number-color; }\n .json-formatter-boolean { color: @boolean-color; }\n .json-formatter-null { color: @null-color; }\n .json-formatter-undefined { color: @undefined-color; }\n .json-formatter-function { color: @function-color; }\n .json-formatter-date { background-color: fade(@default-color, 5%); }\n .json-formatter-url {\n text-decoration: underline;\n color: @url-color;\n cursor: pointer;\n }\n\n .json-formatter-bracket { color: @bracket-color; }\n .json-formatter-key {\n color: @key-color;\n cursor: pointer;\n padding-right: 0.2rem;\n }\n .json-formatter-constructor-name {\n cursor: pointer;\n }\n\n .json-formatter-toggler {\n line-height: 1.2rem;\n font-size: 0.7rem;\n vertical-align: middle;\n opacity: @toggler-opacity;\n cursor: pointer;\n padding-right: 0.2rem;\n\n &:after {\n display: inline-block;\n transition: transform @rotate-time ease-in;\n content: \"►\";\n }\n }\n\n // Inline preview on hover (optional)\n > a > .json-formatter-preview-text {\n opacity: 0;\n transition: opacity .15s ease-in;\n font-style: italic;\n }\n &:hover > a > .json-formatter-preview-text {\n opacity: 0.6;\n }\n\n // Open state\n &.json-formatter-open {\n > .json-formatter-toggler-link .json-formatter-toggler:after{\n transform: rotate(90deg);\n }\n > .json-formatter-children:after {\n display: inline-block;\n }\n > a > .json-formatter-preview-text {\n display: none;\n }\n &.json-formatter-empty:after {\n display: block;\n }\n }\n}\n\n// Default theme\n.json-formatter-row {\n .theme();\n}\n\n// Dark theme\n.json-formatter-dark.json-formatter-row {\n .theme(\n @default-color: white,\n @string-color: #31F031,\n @number-color: #66C2FF,\n @boolean-color: #EC4242,\n @null-color: #EEC97D,\n @undefined-color: rgb(239, 143, 190),\n @function-color: #FD48CB,\n @rotate-time: 100ms,\n @toggler-opacity: 0.6,\n @toggler-color: #45376F,\n @bracket-color: #9494FF,\n @key-color: #23A0DB,\n @url-color: #027BFF);\n}\n",".json-formatter-row {\n font-family: monospace;\n}\n.json-formatter-row,\n.json-formatter-row a,\n.json-formatter-row a:hover {\n color: black;\n text-decoration: none;\n}\n.json-formatter-row .json-formatter-row {\n margin-left: 1rem;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty {\n opacity: 0.5;\n margin-left: 1rem;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty:after {\n display: none;\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\n content: \"No properties\";\n}\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\n content: \"[]\";\n}\n.json-formatter-row .json-formatter-string {\n color: green;\n white-space: pre;\n word-wrap: break-word;\n}\n.json-formatter-row .json-formatter-number {\n color: blue;\n}\n.json-formatter-row .json-formatter-boolean {\n color: red;\n}\n.json-formatter-row .json-formatter-null {\n color: #855A00;\n}\n.json-formatter-row .json-formatter-undefined {\n color: #ca0b69;\n}\n.json-formatter-row .json-formatter-function {\n color: #FF20ED;\n}\n.json-formatter-row .json-formatter-date {\n background-color: rgba(0, 0, 0, 0.05);\n}\n.json-formatter-row .json-formatter-url {\n text-decoration: underline;\n color: blue;\n cursor: pointer;\n}\n.json-formatter-row .json-formatter-bracket {\n color: blue;\n}\n.json-formatter-row .json-formatter-key {\n color: #00008B;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-row .json-formatter-constructor-name {\n cursor: pointer;\n}\n.json-formatter-row .json-formatter-toggler {\n line-height: 1.2rem;\n font-size: 0.7rem;\n vertical-align: middle;\n opacity: 0.6;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-row .json-formatter-toggler:after {\n display: inline-block;\n transition: transform 100ms ease-in;\n content: \"►\";\n}\n.json-formatter-row > a > .json-formatter-preview-text {\n opacity: 0;\n transition: opacity 0.15s ease-in;\n font-style: italic;\n}\n.json-formatter-row:hover > a > .json-formatter-preview-text {\n opacity: 0.6;\n}\n.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\n transform: rotate(90deg);\n}\n.json-formatter-row.json-formatter-open > .json-formatter-children:after {\n display: inline-block;\n}\n.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\n display: none;\n}\n.json-formatter-row.json-formatter-open.json-formatter-empty:after {\n display: block;\n}\n.json-formatter-dark.json-formatter-row {\n font-family: monospace;\n}\n.json-formatter-dark.json-formatter-row,\n.json-formatter-dark.json-formatter-row a,\n.json-formatter-dark.json-formatter-row a:hover {\n color: white;\n text-decoration: none;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-row {\n margin-left: 1rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty {\n opacity: 0.5;\n margin-left: 1rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty:after {\n display: none;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\n content: \"No properties\";\n}\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\n content: \"[]\";\n}\n.json-formatter-dark.json-formatter-row .json-formatter-string {\n color: #31F031;\n white-space: pre;\n word-wrap: break-word;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-number {\n color: #66C2FF;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-boolean {\n color: #EC4242;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-null {\n color: #EEC97D;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-undefined {\n color: #ef8fbe;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-function {\n color: #FD48CB;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-date {\n background-color: rgba(255, 255, 255, 0.05);\n}\n.json-formatter-dark.json-formatter-row .json-formatter-url {\n text-decoration: underline;\n color: #027BFF;\n cursor: pointer;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-bracket {\n color: #9494FF;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-key {\n color: #23A0DB;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-constructor-name {\n cursor: pointer;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler {\n line-height: 1.2rem;\n font-size: 0.7rem;\n vertical-align: middle;\n opacity: 0.6;\n cursor: pointer;\n padding-right: 0.2rem;\n}\n.json-formatter-dark.json-formatter-row .json-formatter-toggler:after {\n display: inline-block;\n transition: transform 100ms ease-in;\n content: \"►\";\n}\n.json-formatter-dark.json-formatter-row > a > .json-formatter-preview-text {\n opacity: 0;\n transition: opacity 0.15s ease-in;\n font-style: italic;\n}\n.json-formatter-dark.json-formatter-row:hover > a > .json-formatter-preview-text {\n opacity: 0.6;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\n transform: rotate(90deg);\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-children:after {\n display: inline-block;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\n display: none;\n}\n.json-formatter-dark.json-formatter-row.json-formatter-open.json-formatter-empty:after {\n display: block;\n}\n"],"sourceRoot":"webpack://"}]);
// exports
/***/ },
/* 4 */
/***/ function(module, exports) {
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
// css base code, injected by the css-loader
module.exports = function() {
var list = [];
// return the list of modules as css string
list.toString = function toString() {
var result = [];
for(var i = 0; i < this.length; i++) {
var item = this[i];
if(item[2]) {
result.push("@media " + item[2] + "{" + item[1] + "}");
} else {
result.push(item[1]);
}
}
return result.join("");
};
// import a list of modules into the list
list.i = function(modules, mediaQuery) {
if(typeof modules === "string")
modules = [[null, modules, ""]];
var alreadyImportedModules = {};
for(var i = 0; i < this.length; i++) {
var id = this[i][0];
if(typeof id === "number")
alreadyImportedModules[id] = true;
}
for(i = 0; i < modules.length; i++) {
var item = modules[i];
// skip already imported module
// this implementation is not 100% perfect for weird media query combinations
// when a module is imported multiple times with different media queries.
// I hope this will never occur (Hey this way we have smaller bundles)
if(typeof item[0] !== "number" || !alreadyImportedModules[item[0]]) {
if(mediaQuery && !item[2]) {
item[2] = mediaQuery;
} else if(mediaQuery) {
item[2] = "(" + item[2] + ") and (" + mediaQuery + ")";
}
list.push(item);
}
}
};
return list;
};
/***/ },
/* 5 */
/***/ function(module, exports, __webpack_require__) {
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
var stylesInDom = {},
memoize = function(fn) {
var memo;
return function () {
if (typeof memo === "undefined") memo = fn.apply(this, arguments);
return memo;
};
},
isOldIE = memoize(function() {
return /msie [6-9]\b/.test(window.navigator.userAgent.toLowerCase());
}),
getHeadElement = memoize(function () {
return document.head || document.getElementsByTagName("head")[0];
}),
singletonElement = null,
singletonCounter = 0,
styleElementsInsertedAtTop = [];
module.exports = function(list, options) {
if(false) {
if(typeof document !== "object") throw new Error("The style-loader cannot be used in a non-browser environment");
}
options = options || {};
// Force single-tag solution on IE6-9, which has a hard limit on the # of <style>
// tags it will allow on a page
if (typeof options.singleton === "undefined") options.singleton = isOldIE();
// By default, add <style> tags to the bottom of <head>.
if (typeof options.insertAt === "undefined") options.insertAt = "bottom";
var styles = listToStyles(list);
addStylesToDom(styles, options);
return function update(newList) {
var mayRemove = [];
for(var i = 0; i < styles.length; i++) {
var item = styles[i];
var domStyle = stylesInDom[item.id];
domStyle.refs--;
mayRemove.push(domStyle);
}
if(newList) {
var newStyles = listToStyles(newList);
addStylesToDom(newStyles, options);
}
for(var i = 0; i < mayRemove.length; i++) {
var domStyle = mayRemove[i];
if(domStyle.refs === 0) {
for(var j = 0; j < domStyle.parts.length; j++)
domStyle.parts[j]();
delete stylesInDom[domStyle.id];
}
}
};
}
function addStylesToDom(styles, options) {
for(var i = 0; i < styles.length; i++) {
var item = styles[i];
var domStyle = stylesInDom[item.id];
if(domStyle) {
domStyle.refs++;
for(var j = 0; j < domStyle.parts.length; j++) {
domStyle.parts[j](item.parts[j]);
}
for(; j < item.parts.length; j++) {
domStyle.parts.push(addStyle(item.parts[j], options));
}
} else {
var parts = [];
for(var j = 0; j < item.parts.length; j++) {
parts.push(addStyle(item.parts[j], options));
}
stylesInDom[item.id] = {id: item.id, refs: 1, parts: parts};
}
}
}
function listToStyles(list) {
var styles = [];
var newStyles = {};
for(var i = 0; i < list.length; i++) {
var item = list[i];
var id = item[0];
var css = item[1];
var media = item[2];
var sourceMap = item[3];
var part = {css: css, media: media, sourceMap: sourceMap};
if(!newStyles[id])
styles.push(newStyles[id] = {id: id, parts: [part]});
else
newStyles[id].parts.push(part);
}
return styles;
}
function insertStyleElement(options, styleElement) {
var head = getHeadElement();
var lastStyleElementInsertedAtTop = styleElementsInsertedAtTop[styleElementsInsertedAtTop.length - 1];
if (options.insertAt === "top") {
if(!lastStyleElementInsertedAtTop) {
head.insertBefore(styleElement, head.firstChild);
} else if(lastStyleElementInsertedAtTop.nextSibling) {
head.insertBefore(styleElement, lastStyleElementInsertedAtTop.nextSibling);
} else {
head.appendChild(styleElement);
}
styleElementsInsertedAtTop.push(styleElement);
} else if (options.insertAt === "bottom") {
head.appendChild(styleElement);
} else {
throw new Error("Invalid value for parameter 'insertAt'. Must be 'top' or 'bottom'.");
}
}
function removeStyleElement(styleElement) {
styleElement.parentNode.removeChild(styleElement);
var idx = styleElementsInsertedAtTop.indexOf(styleElement);
if(idx >= 0) {
styleElementsInsertedAtTop.splice(idx, 1);
}
}
function createStyleElement(options) {
var styleElement = document.createElement("style");
styleElement.type = "text/css";
insertStyleElement(options, styleElement);
return styleElement;
}
function createLinkElement(options) {
var linkElement = document.createElement("link");
linkElement.rel = "stylesheet";
insertStyleElement(options, linkElement);
return linkElement;
}
function addStyle(obj, options) {
var styleElement, update, remove;
if (options.singleton) {
var styleIndex = singletonCounter++;
styleElement = singletonElement || (singletonElement = createStyleElement(options));
update = applyToSingletonTag.bind(null, styleElement, styleIndex, false);
remove = applyToSingletonTag.bind(null, styleElement, styleIndex, true);
} else if(obj.sourceMap &&
typeof URL === "function" &&
typeof URL.createObjectURL === "function" &&
typeof URL.revokeObjectURL === "function" &&
typeof Blob === "function" &&
typeof btoa === "function") {
styleElement = createLinkElement(options);
update = updateLink.bind(null, styleElement);
remove = function() {
removeStyleElement(styleElement);
if(styleElement.href)
URL.revokeObjectURL(styleElement.href);
};
} else {
styleElement = createStyleElement(options);
update = applyToTag.bind(null, styleElement);
remove = function() {
removeStyleElement(styleElement);
};
}
update(obj);
return function updateStyle(newObj) {
if(newObj) {
if(newObj.css === obj.css && newObj.media === obj.media && newObj.sourceMap === obj.sourceMap)
return;
update(obj = newObj);
} else {
remove();
}
};
}
var replaceText = (function () {
var textStore = [];
return function (index, replacement) {
textStore[index] = replacement;
return textStore.filter(Boolean).join('\n');
};
})();
function applyToSingletonTag(styleElement, index, remove, obj) {
var css = remove ? "" : obj.css;
if (styleElement.styleSheet) {
styleElement.styleSheet.cssText = replaceText(index, css);
} else {
var cssNode = document.createTextNode(css);
var childNodes = styleElement.childNodes;
if (childNodes[index]) styleElement.removeChild(childNodes[index]);
if (childNodes.length) {
styleElement.insertBefore(cssNode, childNodes[index]);
} else {
styleElement.appendChild(cssNode);
}
}
}
function applyToTag(styleElement, obj) {
var css = obj.css;
var media = obj.media;
if(media) {
styleElement.setAttribute("media", media)
}
if(styleElement.styleSheet) {
styleElement.styleSheet.cssText = css;
} else {
while(styleElement.firstChild) {
styleElement.removeChild(styleElement.firstChild);
}
styleElement.appendChild(document.createTextNode(css));
}
}
function updateLink(linkElement, obj) {
var css = obj.css;
var sourceMap = obj.sourceMap;
if(sourceMap) {
// https://developer.mozilla.org/en/docs/Web/API/WindowBase64/Base64_encoding_and_decoding
css += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))) + " */";
}
var blob = new Blob([css], { type: "text/css" });
var oldSrc = linkElement.href;
linkElement.href = URL.createObjectURL(blob);
if(oldSrc)
URL.revokeObjectURL(oldSrc);
}
/***/ },
/* 6 */
/***/ function(module, exports) {
"use strict";
/*
* Escapes `"` characters from string
*/
function escapeString(str) {
return str.replace('"', '\"');
}
/*
* Determines if a value is an object
*/
function isObject(value) {
var type = typeof value;
return !!value && (type == 'object');
}
exports.isObject = isObject;
/*
* Gets constructor name of an object.
*
*/
function getObjectName(object) {
if (object === undefined) {
return '';
}
if (object === null || (typeof object === 'object' && !object.constructor)) {
return 'Object';
}
var funcNameRegex = /function ([^(]*)/;
var results = (funcNameRegex).exec((object).constructor.toString());
if (results && results.length > 1) {
return results[1];
} else {
return '';
}
}
exports.getObjectName = getObjectName;
/*
* Gets type of an object. Returns "null" for null objects
*/
function getType(object) {
if (object === null) {
return 'null';
}
return typeof object;
}
exports.getType = getType;
/*
* Generates inline preview for a JavaScript object based on a value
*/
function getValuePreview(object, value) {
var type = getType(object);
if (type === 'null' || type === 'undefined') {
return type;
}
if (type === 'string') {
value = '"' + escapeString(value) + '"';
}
if (type === 'function') {
// Remove content of the function
return object.toString()
.replace(/[\r\n]/g, '')
.replace(/\{.*\}/, '') + '{…}';
}
return value;
}
exports.getValuePreview = getValuePreview;
/*
* Generates inline preview for a JavaScript object
*/
function getPreview(object) {
var value = '';
if (isObject(object)) {
value = getObjectName(object);
if (Array.isArray(object))
value += '[' + object.length + ']';
}
else {
value = getValuePreview(object, object);
}
return value;
}
exports.getPreview = getPreview;
/*
* Generates a prefixed CSS class name
*/
function cssClass(className) {
return "json-formatter-" + className;
}
exports.cssClass = cssClass;
/*
* Creates a new DOM element with given type and class
* TODO: move me to helpers
*/
function createElement(type, className, content) {
var el = document.createElement(type);
if (className) {
el.classList.add(cssClass(className));
}
if (content !== undefined) {
if (content instanceof Node) {
el.appendChild(content);
}
else {
el.appendChild(document.createTextNode(String(content)));
}
}
return el;
}
exports.createElement = createElement;
/***/ }
/******/ ])
});
;
//# sourceMappingURL=json-formatter.js.map
</script>
| HTML+Django | 5 | MalcolmScoffable/openapi-generator | modules/openapi-generator/src/main/resources/htmlDocs2/js_jsonformatter.mustache | [
"Apache-2.0"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.