forked from paulgray/exml
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathbench.exs
More file actions
3774 lines (3753 loc) · 185 KB
/
bench.exs
File metadata and controls
3774 lines (3753 loc) · 185 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Usage:
# elixir bench.exs
# Optional:
# BENCH_TIME=3 BENCH_WARMUP=1 elixir bench.exs
#
# Requires Elixir with Hex (Mix.install fetches Benchee).
Mix.install([
{:benchee, "~> 1.5"},
{:exml, path: "."}
])
bench_time =
System.get_env("BENCH_TIME", "5")
|> String.to_integer()
bench_warmup =
System.get_env("BENCH_WARMUP", "2")
|> String.to_integer()
# --- Payloads: widely varying structure (size kept moderate so default time budget finishes) ---
# Minimal self-closing
xml_tiny = ~s(<z/>)
# Deep nesting (stack-heavy)
xml_deep =
String.duplicate("<n>", 180) <>
"txt" <>
String.duplicate("</n>", 180)
# Wide siblings (many elements, shallow)
xml_wide =
"<root>" <>
String.duplicate("<leaf i=\"x\"/>", 400) <>
"</root>"
# Few nodes, many attributes per open tag (scan-heavy attribute regions)
xml_attr_heavy =
"<m " <>
Enum.map_join(1..120, " ", fn i -> "a#{i}=\"v#{i}\"" end) <>
"><x/></m>"
# Large CDATA block
xml_big_cdata =
"<doc><![CDATA[" <>
String.duplicate("Lorem ipsum dolor sit amet. ", 400) <>
"]]></doc>"
# Long PCDATA with entities only (no raw `<` — that would be invalid XML)
xml_long_pcdata =
"<p>" <>
String.duplicate("word & space <tag> ' ", 250) <>
"</p>"
# XMPP-ish single root: prefixed names, many attrs, nested children (single line — multiline broke rapidxml)
xml_xmpp_like =
"<stream:stream xmlns:stream=\"http://etherx.jabber.org/streams\" xmlns=\"jabber:client\" version=\"1.0\" id=\"s1\">" <>
"<message type=\"chat\" to=\"a@b\" from=\"c@d\" xml:lang=\"en\">" <>
"<subject>Re: hi</subject>" <>
"<body>" <>
String.duplicate("Hello world. ", 80) <>
"</body>" <>
"<thread>t1</thread>" <>
"<active xmlns=\"http://jabber.org/protocol/chatstates\"/>" <>
"</message></stream:stream>"
# Repetitive items (similar to cache-friendly microbench)
xml_repetitive =
<<"<batch>">> <>
String.duplicate(
"<item n=\"1\"><t>hello</t><![CDATA[x]]></item>",
80
) <>
<<"</batch>">>
# Whitespace between tags (parser still tokenizes structure)
xml_whitespacey =
String.duplicate(" \n <e/> \t ", 150) |> then(&("<r>" <> &1 <> "</r>"))
lots_of_nesting = """
<root>
<result>forward</result>
<naturally>matter</naturally>
<draw>rule</draw>
<easy>2110631293</easy>
<darkness>
<twenty>-1123668053</twenty>
<leader>inch</leader>
<circle>shirt</circle>
<unhappy>mother</unhappy>
<flew>
<object>1932798666.2718558</object>
<strike>correctly</strike>
<market>-432222347</market>
<fruit>curve</fruit>
<at>discover</at>
<thumb>1949532824</thumb>
</flew>
<future>wild</future>
</darkness>
<hurried>purple</hurried>
</root>
"""
big_and_nested = """
<root>
<cast mean="weather">
<little>plain</little>
<page army="finally">excitement</page>
<breeze cover="hunt">massage</breeze>
<mental home="sister">
<flat>
<famous>248031970</famous>
<directly>direct</directly>
<another slope="inside">railroad</another>
<locate canal="label">-1904208365.368702</locate>
<man>
<busy except="eleven">1204206517.8670857</busy>
<doctor safety="select">
<tears congress="mass">846369162</tears>
<experience sing="poetry">
<metal dear="bet">substance</metal>
<score social="bare">
<widely>made</widely>
<plain first="stiff">
<ice held="hard">till</ice>
<musical heard="shake">song</musical>
<vapor>-830222508</vapor>
<social pale="safety">
<sold>871879663.2784119</sold>
<harder>1756201904.5565512</harder>
<four>-775308125.6553111</four>
<flag tool="mouse">-1199885119.9381433</flag>
<already>lion</already>
<present daily="plenty">-1149774051.5707827</present>
<layers>pocket</layers>
<speak>-15237884</speak>
<deep vapor="nearest">
<of cloud="tropical">
<imagine>498135283</imagine>
<connected>although</connected>
<per morning="believed">651650590.9088402</per>
<kill>
<month dried="sun">2054632053</month>
<settle>pink</settle>
<value>variety</value>
<air act="not">
<land>-854644132.5029886</land>
<thick>damage</thick>
<until leaf="no">1225780963.7471526</until>
<characteristic>637990387.7079465</characteristic>
<occasionally>
<paragraph level="include">warm</paragraph>
<according>
<realize>living</realize>
<shot clear="already">962678864</shot>
<dear>scientific</dear>
<war information="related">-876964569</war>
<lamp press="brought">-2103942109.5152795</lamp>
<concerned>sent</concerned>
<blue buried="industrial">1823946742.0374508</blue>
<smell lying="either">rise</smell>
<new essential="shot">102891159.02190733</new>
<balance push="broken">own</balance>
<while>-1755615907.8532484</while>
<happened see="since">-1016250118</happened>
<dull>-1872451707.0957427</dull>
<wealth>1062129572.9839873</wealth>
<studied grandfather="remarkable">few</studied>
<catch>880418005.1643605</catch>
<straw>-452925058.6215837</straw>
<basket during="trap">say</basket>
<somehow large="describe">1109698275</somehow>
<blood>press</blood>
<safe>1758713974</safe>
<partly climate="ask">call</partly>
<palace>1363116726</palace>
<wherever report="grandfather">tight</wherever>
<victory stranger="better">-1134567020</victory>
<easier>228005372.9304161</easier>
<body chest="community">interest</body>
<jump>1540875252</jump>
<still area="coach">-1252910441.3734071</still>
<fine understanding="speech">1973685276.2826002</fine>
<native hundred="climb">directly</native>
<independent family="did">686125574.6102927</independent>
<bowl now="telephone">fastened</bowl>
<eventually>-1327143002</eventually>
<fed>gray</fed>
<least>-1504258454.3263366</least>
<cloud>went</cloud>
<research toward="flies">101736431.4167602</research>
<became rhythm="similar">-381501617.3336005</became>
<disease cool="comfortable">young</disease>
<spin>1998660039.029206</spin>
<where meat="cheese">wash</where>
<speak eleven="biggest">magic</speak>
<noted saw="slide">appropriate</noted>
<middle>-626211795</middle>
<three vessels="name">monkey</three>
<lower dull="aware">bound</lower>
<inch>family</inch>
<roll>little</roll>
<fog kind="said">gone</fog>
<wind>1183970258.3877625</wind>
<is upon="spin">-478135121</is>
<someone fix="pride">527753275.58941364</someone>
<salmon man="helpful">-1053347225.8018963</salmon>
<laugh>more</laugh>
<rocky>1153166283.6410666</rocky>
<completely step="rhythm">were</completely>
<angle>saddle</angle>
<hunter edge="pictured">961853908.4581466</hunter>
<send>1975821088</send>
<atomic notice="base">-968821737.2972679</atomic>
<contrast gulf="arrow">-1141407988</contrast>
<pocket>1333384997</pocket>
<clear>772801977.8351998</clear>
<score>somebody</score>
<total>after</total>
<brass related="fought">-1912638815</brass>
<late bet="smallest">ought</late>
<current>76227975.6777358</current>
<breathing beyond="original">1231105758.4655128</breathing>
<mother>-11226951</mother>
<garden>fly</garden>
<driving>shade</driving>
<eaten>929209108.5133643</eaten>
<kids>-1592492219.9688952</kids>
<experiment officer="thank">1900710599.7051265</experiment>
<seems>306339417</seems>
<due slight="job">1800063892</due>
<do>-263860098</do>
<whispered kill="rule">2003514589</whispered>
<jar>cannot</jar>
<meal>log</meal>
<something>cake</something>
<slept>happen</slept>
<worry>storm</worry>
<highest>288334263.1331117</highest>
<diagram rubbed="move">-375486092.81676507</diagram>
<usual>natural</usual>
<pride>mix</pride>
<mass>concerned</mass>
<try>tobacco</try>
<brick>running</brick>
<boat>-323649048.9883454</boat>
<sister>young</sister>
<likely mice="pool">on</likely>
<molecular>tired</molecular>
<same>695893071.7946362</same>
<conversation>886373919</conversation>
<account sail="present">baby</account>
<aware>school</aware>
<finger>observe</finger>
<military>-505115601.2492347</military>
<than watch="arrange">rhythm</than>
<near>-1933558360</near>
<damage>nose</damage>
<scientist useful="village">-1211281329.708237</scientist>
<western given="hall">let</western>
<discover>stuck</discover>
<seven whispered="blew">such</seven>
<suggest>1615070470</suggest>
<shoe till="never">using</shoe>
<upon>deer</upon>
<beauty dug="price">427113596.74442744</beauty>
<men ice="tip">quickly</men>
<count plane="introduced">-1156081949</count>
<factor>four</factor>
<single forty="storm">-576660426.6742616</single>
<throughout bit="pretty">changing</throughout>
<mouse>684685285.9497375</mouse>
<saved>owner</saved>
<week spin="life">belt</week>
<bus sunlight="living">storm</bus>
<cloth opportunity="disappear">619657415</cloth>
<reader>1717638611.3010535</reader>
<subject lie="front">dull</subject>
<train>659872708.3534236</train>
<doubt>-1526655335.3969603</doubt>
<simplest jack="prepare">901484050</simplest>
<gulf>place</gulf>
<store climb="brain">locate</store>
<throat establish="model">-1368648925</throat>
<property rays="western">problem</property>
<suddenly dug="least">-1553848137</suddenly>
<sent sick="practical">throughout</sent>
<already hat="fireplace">agree</already>
<tears easily="language">-1809354102.7802866</tears>
<selection snake="child">possibly</selection>
<struggle party="finger">particular</struggle>
<freedom movement="shine">857106896.3754554</freedom>
<or universe="picture">-1625105900.038957</or>
<planning>1605720345.3680284</planning>
<team>1450817798</team>
<wide>nervous</wide>
<pot feet="her">-866805590</pot>
<including spoken="its">450080675.9234855</including>
<together>-265555501</together>
<pencil>wagon</pencil>
<rhyme>short</rhyme>
<thin>829140437.0858846</thin>
<church pass="wonderful">accept</church>
<bear>silver</bear>
<power>-2105871328</power>
<later>pupil</later>
<finish>2000347473</finish>
<thick mountain="far">2045975639.793102</thick>
<careful>experience</careful>
<himself between="red">fifth</himself>
<nearly>380092748</nearly>
<imagine pine="sun">interest</imagine>
<guess>-1559022630.0728285</guess>
<stronger>-661437863</stronger>
<from>-886270507</from>
<choose shells="swept">throat</choose>
<family>pie</family>
<examine>1826306206</examine>
<lead>southern</lead>
<position>affect</position>
<union knife="eleven">rubbed</union>
<master telephone="during">-1009555430</master>
<give milk="world">diagram</give>
<nation>903572117</nation>
<bee thou="firm">newspaper</bee>
<skill poetry="giant">-1661233109</skill>
<taught four="toy">1372024774.447657</taught>
<nine>individual</nine>
<pipe torn="enough">remember</pipe>
<collect kitchen="frighten">1749933967.6763613</collect>
<space>541872725.104429</space>
<everybody>819177225.1968687</everybody>
<busy>properly</busy>
<mean warn="finest">diameter</mean>
<advice know="stand">-1452572929</advice>
<settlers>this</settlers>
<therefore fear="castle">1266588714</therefore>
<split bet="judge">replace</split>
<fall guess="bush">-1238985443</fall>
<evening>proud</evening>
<folks compass="rocky">alive</folks>
<refused statement="brick">exciting</refused>
<every memory="terrible">-1191574095.2960596</every>
<spring>287423998</spring>
<cell>-1628576520.5761998</cell>
<suppose>beginning</suppose>
<look those="hardly">1354710794</look>
<seen prepare="rhyme">1887958047</seen>
<effort opinion="bread">hurried</effort>
<planet outside="lay">-2138900081</planet>
<sight>therefore</sight>
<seeing twelve="possibly">shells</seeing>
<government frequently="education">101380974</government>
<cry garden="acres">-1555093611.2513075</cry>
<coal value="why">-1960560149</coal>
<almost difficult="either">row</almost>
<vowel heart="black">tool</vowel>
<slave more="while">teach</slave>
<symbol>-1321099757.2251685</symbol>
<active pile="late">1463136680.1950788</active>
<forget throat="column">615314948</forget>
<closer some="flight">-2067363940.2517595</closer>
<barn review="tonight">grandmother</barn>
<mathematics shoe="another">-1311565689</mathematics>
<nature>-1566417632.0599673</nature>
<win>540077666.7925794</win>
<sunlight island="press">flower</sunlight>
<show plural="quickly">278867929</show>
<itself>1643997536</itself>
<earth forget="pure">1630722728</earth>
<writing friendly="take">sick</writing>
<off who="eye">1633521670.460056</off>
<plenty>836707548</plenty>
<wall>1895782155.0370026</wall>
<observe>here</observe>
<saw>-32502513</saw>
<dropped>toward</dropped>
<younger>-824243688</younger>
<author they="tight">556834938</author>
<seed>local</seed>
<lack graph="everybody">1437096146.04218</lack>
</according>
<means>sort</means>
<about began="social">-1127191198</about>
<top>-1672795447.8713162</top>
<compound business="stop">hung</compound>
<border south="taught">-1127361942.1941385</border>
<lead>twice</lead>
<proud smaller="belt">mirror</proud>
<sheep>pan</sheep>
<men>-365060913</men>
<baby wear="individual">species</baby>
<market>travel</market>
<feed>examine</feed>
<folks>-1916347167</folks>
<behind brass="pupil">2031132689</behind>
<previous>275486650.11145425</previous>
<natural>tears</natural>
<palace nails="buried">-1500567782.50344</palace>
<rapidly>-173951575.89761782</rapidly>
<hung ought="furniture">-705950944</hung>
<library most="driving">jump</library>
<before ahead="stiff">-692651701.1083031</before>
<whose>931051255.8409944</whose>
<away disease="mice">-1912526153.7949557</away>
<clean according="office">author</clean>
<box>-1645045723.5434425</box>
<goes wire="sold">war</goes>
<lot>1445494770.5255249</lot>
<forty been="general">-717969703</forty>
<fierce>busy</fierce>
<during>song</during>
<steep oil="away">fact</steep>
<degree dug="health">118334765</degree>
<hand>1821872297</hand>
<unless>scientific</unless>
<coffee strength="increase">have</coffee>
<industry across="action">1953533956</industry>
<path>717490449</path>
<seldom>got</seldom>
<they>movie</they>
<ability>explanation</ability>
<flame broke="underline">choose</flame>
<include mad="additional">1536427087.5744205</include>
<weather>1232778530.494471</weather>
<accept>dried</accept>
<compare proper="lunch">herd</compare>
<whole stopped="not">kept</whole>
<wagon collect="range">-790190101</wagon>
<sing>reach</sing>
<way>689395510</way>
<hour>society</hour>
<word>1407764267.3275037</word>
<complete>rock</complete>
<establish twenty="wooden">693502035</establish>
<fought form="hearing">grain</fought>
<off>rubbed</off>
<cream>-1446920124.2737288</cream>
<handsome also="shown">food</handsome>
<exciting chain="amount">141619198</exciting>
<bank rising="carefully">behavior</bank>
<want>happen</want>
<grabbed>1071607569.0733886</grabbed>
<such>1933948271.3956237</such>
<bark series="history">627059256</bark>
<camp gentle="near">-1504476846.9121978</camp>
<pleasure>live</pleasure>
<dirty cloth="habit">character</dirty>
<prepare>future</prepare>
<opposite led="changing">carried</opposite>
<harder forth="underline">spread</harder>
<shoot>information</shoot>
<creature>research</creature>
<keep>blanket</keep>
<brick>5652062.228485107</brick>
<answer>-871418964</answer>
<few statement="military">wood</few>
<queen object="vessels">511052262</queen>
<theory station="horn">-597896982.2674756</theory>
<hill right="correctly">floor</hill>
<forgot>especially</forgot>
<later tonight="ship">widely</later>
<swam supply="complete">-962584252</swam>
<perfect>small</perfect>
<card>1465880972.6825907</card>
<breakfast red="struck">-1717745271.1656532</breakfast>
<good>-1216278753</good>
<widely pull="metal">-2081349035</widely>
<was creature="contain">characteristic</was>
<snow>2036816348</snow>
<fewer escape="sky">-213520947</fewer>
<sea chosen="opinion">-2082895518</sea>
<unit>national</unit>
<thing twenty="properly">1514198411.0731506</thing>
<education anybody="government">-187760795.5191524</education>
<frog>mathematics</frog>
<sitting>-521312306.3129189</sitting>
<travel uncle="bar">1161400435</travel>
<anyway dark="paper">-1632299431.619916</anyway>
<special event="concerned">1095654153</special>
<rather essential="hidden">560910551</rather>
<arm certain="powerful">arrange</arm>
<perfectly sound="kept">temperature</perfectly>
<failed promised="correctly">aid</failed>
<possibly result="load">41935565</possibly>
<soap government="basis">-796378350.2916353</soap>
<mental visitor="supper">determine</mental>
<night daily="science">-689902290</night>
<anyone fairly="gently">402398005</anyone>
<leave>1871284165.5726492</leave>
<alive>feed</alive>
<steam>dust</steam>
<lost>safe</lost>
<grandfather notice="stopped">minute</grandfather>
<say>situation</say>
<raise coffee="why">children</raise>
<ten noise="rest">poetry</ten>
<diagram>807744373</diagram>
<adult lamp="central">276121146</adult>
<consist>1308832954.8201156</consist>
<coming>life</coming>
<gift say="strike">-2017229423.4964023</gift>
<thank>1813711329</thank>
<read rate="off">-1557371165.0572593</read>
<rain>sugar</rain>
<atom>-1307473993.0936742</atom>
<slow>toward</slow>
<swim>-723736791</swim>
<brave>bend</brave>
<below>split</below>
<tree low="fairly">mouse</tree>
<go>charge</go>
<itself>nature</itself>
<older flower="negative">-2024239456.8037837</older>
<clay>happily</clay>
<wide pack="stopped">smell</wide>
<hearing>-2028767625</hearing>
<beyond luck="score">colony</beyond>
<personal cage="limited">someone</personal>
<shop soft="car">heart</shop>
<three>funny</three>
<married>1273057746.7119408</married>
<just find="particularly">current</just>
<swung>combination</swung>
<different>323655097</different>
<mistake fear="discover">-1003422426</mistake>
<generally fact="rhyme">paragraph</generally>
<prove>1412899792.103135</prove>
<grow>pack</grow>
<voice>account</voice>
<turn>-1019512365</turn>
<park>438009875.90596914</park>
<quite>view</quite>
<five smell="anyway">lady</five>
<be>1522431762.2898834</be>
<instance>-2017106986.912309</instance>
<blind>popular</blind>
<acres>compare</acres>
<almost>paid</almost>
<soon>-1960094359</soon>
<knew bound="fence">friend</knew>
<gather>eight</gather>
<piece deer="region">town</piece>
<opinion making="planning">these</opinion>
<bowl>clear</bowl>
<result darkness="grandmother">1205010606</result>
<family speed="direction">1419785367.1304686</family>
<test escape="dream">lost</test>
<weak>fruit</weak>
<joined behind="nearest">310738157</joined>
<hunt automobile="feel">there</hunt>
<neighbor>west</neighbor>
<primitive>sentence</primitive>
<me program="passage">-1683074605.0786905</me>
<feature which="mouth">-2074032983</feature>
<position quiet="struck">-1837004266.3519957</position>
<section>618008876.8869331</section>
<accurate metal="needle">69479667</accurate>
<pie>continued</pie>
<parallel>1873895277.1202757</parallel>
<shut>-962156253</shut>
<child repeat="ring">characteristic</child>
<house dish="rocket">than</house>
<seven certain="pink">216422193</seven>
<poem distant="pure">bus</poem>
<case step="necessary">easily</case>
<cattle>spend</cattle>
<exclaimed fifteen="combination">-251373118.96641922</exclaimed>
<your date="situation">show</your>
<rule fox="fly">50075535.26827264</rule>
<yes himself="fewer">scared</yes>
<push route="corn">scale</push>
<sail>during</sail>
<partly>nature</partly>
<experience brick="excitement">fought</experience>
<farm>blood</farm>
<remember native="perfectly">writer</remember>
<rubber substance="everybody">905237280</rubber>
<very>633106280.1930418</very>
<over tie="wood">become</over>
<gate fat="shoe">friendly</gate>
<character>-459154528</character>
<sell>whom</sell>
<flower son="getting">284146776.28901124</flower>
<scientist>neighbor</scientist>
<discuss>-180762212.32585287</discuss>
<them yesterday="record">remember</them>
<tobacco>differ</tobacco>
<forgotten>-159087450.96293616</forgotten>
<thought>-1796576297</thought>
<brought baseball="solid">-1069715907</brought>
<beauty furniture="when">-2083267752.2540617</beauty>
<silly dry="egg">-833997860</silly>
<snake>-835822502</snake>
<paid>1215891148</paid>
<fallen>fast</fallen>
<gravity>train</gravity>
<direction wife="cover">-1154564665</direction>
<tip century="silly">-580154611.6805096</tip>
<written gate="sort">dear</written>
<or although="listen">-1630242832</or>
<edge>121994699.92742634</edge>
<grain>-1254301756.2024167</grain>
<world>somebody</world>
</occasionally>
<doing frog="instrument">solution</doing>
<birthday>1988022154.1521096</birthday>
<object material="shine">527354649</object>
<clothes animal="camera">377231194</clothes>
<reader combination="silver">604746863.7320173</reader>
<this act="chance">574632018</this>
<eleven building="send">-1197415258.3753626</eleven>
<from>-1877460658.2268403</from>
<label aboard="accurate">pencil</label>
<sell>-1746860985.1897883</sell>
<floor label="belt">1785891320</floor>
<fed>592765080.8270361</fed>
<usually>plastic</usually>
<letter setting="bound">hide</letter>
<feature>claws</feature>
<natural contrast="correctly">1743144450</natural>
<already>1768130322.6526127</already>
<hole>almost</hole>
<sea us="recent">-1492186307.6649282</sea>
<waste valley="favorite">skill</waste>
<wall signal="good">649313855</wall>
<written thought="part">mighty</written>
<different money="year">-1267662884.562007</different>
<lady simply="shinning">office</lady>
<week itself="small">203544461.2928307</week>
<exercise soft="climate">said</exercise>
<wheat>-227352637</wheat>
<warm>-569892105.4462306</warm>
<range>136340453</range>
<memory>-1294704440.465119</memory>
<soldier station="together">-1803509669</soldier>
<doll mind="toy">milk</doll>
<twelve>1783419013</twelve>
<down pure="magic">coal</down>
<strip worth="spoken">clothing</strip>
<raw>morning</raw>
<system although="rose">126586788.92366171</system>
<pound>using</pound>
<gift>296727124.15577006</gift>
<appearance southern="scene">698696303.9103653</appearance>
<bar studying="solve">any</bar>
<key valley="death">forget</key>
<related was="youth">289042142.80123925</related>
<slow>394746251</slow>
<officer>steep</officer>
<blue>38303075.499222755</blue>
<aware neighbor="attempt">brass</aware>
<keep note="nine">1830078583</keep>
<floating>produce</floating>
<grew>-771395951.1078265</grew>
<column value="personal">-2042223519.543579</column>
<process>-426755981.1647382</process>
<freedom spent="out">-870357467.5473199</freedom>
<sky>-1662124586</sky>
<scale>-176957683</scale>
<during home="farmer">1258256716.5363667</during>
<explanation>whole</explanation>
<belt>660330798</belt>
<breathe minerals="history">anything</breathe>
<final>three</final>
<cage>-1435612615</cage>
<goose smile="land">2062787204.1024718</goose>
<detail coal="southern">-1524984512</detail>
<receive desk="heart">when</receive>
<repeat>157619751.87516475</repeat>
<vowel few="shinning">age</vowel>
<important>silence</important>
<travel>operation</travel>
<blew>1711641936</blew>
<giant lesson="been">-1659944664</giant>
<short alike="hay">seeing</short>
<exact day="string">49545960.71279144</exact>
<court enjoy="independent">further</court>
<tax>-695906438.3315275</tax>
<saved month="electric">-770122338</saved>
<bowl>787772368.2162037</bowl>
<aside>former</aside>
<exciting>magnet</exciting>
<crowd unit="doing">-2079175297</crowd>
<clean percent="oxygen">-1342278766.5145783</clean>
<bet star="man">must</bet>
<stairs basket="strong">7631606</stairs>
<leader>again</leader>
<old travel="gate">-563579137.6120164</old>
<construction biggest="rear">bar</construction>
<animal fighting="reason">meat</animal>
<ship>-144971527</ship>
<should protection="mark">1174521106.8503342</should>
<graph>climate</graph>
<mean>decide</mean>
<owner>1975726049.513473</owner>
<pull thumb="obtain">526515423</pull>
<everything>469981026</everything>
<later>951827094</later>
<show>process</show>
<everybody>1124305038.6964388</everybody>
<grabbed>-847956241.2078195</grabbed>
<fairly>-407036059</fairly>
<corner>effect</corner>
<unhappy>physical</unhappy>
<barn winter="from">1246754322</barn>
<low musical="drew">1211679752</low>
<making>994410363.5255353</making>
<carried>-141425665</carried>
<elephant>-1547195552</elephant>
<spite pain="already">743068433</spite>
<combination>59353078</combination>
<shaking rich="clock">especially</shaking>
<tank>800566897</tank>
<off itself="sea">third</off>
<double early="finally">its</double>
<neighbor>-1710472819.4934978</neighbor>
<would>both</would>
<buried>580966617</buried>
<company mixture="means">-600236647</company>
<long>728785095</long>
<ever race="nine">back</ever>
<division>were</division>
<divide keep="strange">huge</divide>
<school>-255284696</school>
<seems appropriate="still">lift</seems>
<bound>ocean</bound>
<headed model="signal">-666099074</headed>
<acres divide="people">-498868181.1243937</acres>
<list>436722262</list>
<hold cold="teeth">-732625578.3602326</hold>
<answer>return</answer>
<hang bridge="getting">-206942646.86864352</hang>
<perfect occur="felt">-1859303119</perfect>
<depend what="pilot">birds</depend>
<fight>561265871.6079533</fight>
<bicycle>1167898337</bicycle>
<were>task</were>
<chose>refused</chose>
<lack floor="field">-1629837223</lack>
<shorter>flew</shorter>
<single yard="sick">-180958952.7524917</single>
<life official="flew">1620685226</life>
<desert>-1924675984</desert>
<laid wood="fierce">affect</laid>
<meant>950420658.4553981</meant>
<chamber everything="lay">-642469440.1103938</chamber>
<longer sign="children">shot</longer>
<bottom did="am">film</bottom>
<color>mail</color>
<rest course="pine">furniture</rest>
<account>pleasant</account>
<rabbit>discovery</rabbit>
<tropical>-901829802.3289065</tropical>
<herself>hospital</herself>
<chain molecular="week">1198064411.0458071</chain>
<us>path</us>
<chosen>1180988527.140988</chosen>
<example>football</example>
<president>student</president>
<hay happily="identity">-1552947570</hay>
<rich>won</rich>
<proud simply="sit">990031349.1258047</proud>
<automobile money="traffic">hour</automobile>
<factory>-1258145336</factory>
<properly>1986082576.1166036</properly>
<even physical="effect">557087664.4769039</even>
<shore center="mission">-662661687.4988682</shore>
<seen fact="kept">275852357</seen>
<make save="action">composition</make>
<mistake>measure</mistake>
<spell>wrapped</spell>
<together gravity="happened">jump</together>
<probably>stick</probably>
<broke>1086065707</broke>
<telephone>1013610450</telephone>
<concerned>-716850877.5599711</concerned>
<few>2122110996.733401</few>
<soil needed="case">chicken</soil>
<pocket>487805118</pocket>
<swimming>-2132058569.9239058</swimming>
<kids>-890412484.5666134</kids>
<large>adult</large>
<hall charge="was">hour</hall>
<remember>image</remember>
<spent shadow="phrase">whistle</spent>
<body>-1643126003</body>
<wife>gently</wife>
<cannot case="either">connected</cannot>
<shoulder exercise="bush">163259605</shoulder>
<hundred joy="shine">-496300495</hundred>
<industry saved="wife">-454949462</industry>
<cookies>882426119.6188514</cookies>
<wagon>-325692877.5229137</wagon>
<rising>461989077.3889797</rising>
<finally>cowboy</finally>
<stared eaten="pay">-1557342991.0958502</stared>
<tide>250221470</tide>
<root>1058596958</root>
<highest poetry="more">though</highest>
<degree>right</degree>
<skill>cut</skill>
<between>immediately</between>
<muscle curious="exactly">-1313583711.6152802</muscle>
<affect born="blind">-586268750</affect>
<sleep river="far">interest</sleep>
<beyond>gave</beyond>
<machinery>-1908469238</machinery>
<storm gradually="west">-2056855632.6119552</storm>
<hurt>-1711624510.6887927</hurt>
<equally century="or">mad</equally>
<stronger range="even">401624863</stronger>
<article quietly="usually">755922595</article>
<breakfast thrown="passage">562696083</breakfast>
<sent>-980668038.3897276</sent>
<church once="storm">-732690509.9915614</church>
<save private="say">manner</save>
<vegetable very="proper">hung</vegetable>
<alone>were</alone>
</air>
<magic>27533749.613889933</magic>
<wool>-545650022</wool>
<clock drive="something">society</clock>
<region selection="colony">nose</region>
<youth guard="pie">1811525159</youth>
<contrast>954710689</contrast>
<alphabet>-1172950358</alphabet>
<realize discover="route">street</realize>
<quickly afraid="basis">-734325886</quickly>
<topic drop="clock">planned</topic>
<cloth>1105576277.5606291</cloth>
<greatest warn="human">floating</greatest>
<simply>swim</simply>
<mostly>477503599.66002464</mostly>
<long develop="season">1108607441.1688864</long>
<afraid>arm</afraid>
<own various="perfect">basis</own>
<population won="trace">1630681657.981659</population>
<clean>wool</clean>
<refer myself="sunlight">176246900</refer>
<rise>flow</rise>
<stopped hurried="boat">pony</stopped>
<won win="discover">try</won>
<wagon>-440848572.53439426</wagon>
<worth>student</worth>
<cap>865562245.2366338</cap>
<teach were="learn">shut</teach>
<college>-535886315.4454045</college>
<than please="crew">293868986.0001421</than>
<write>highest</write>
<noted battle="funny">-683362694.5266016</noted>
<gather nuts="paper">112416504</gather>
<fish farmer="check">terrible</fish>
<oil>sheep</oil>
<while wooden="lying">slept</while>
<salmon>1434479661</salmon>
<cabin>rubbed</cabin>
<wheel>1823209339</wheel>
<parallel nine="business">-646826025.5290451</parallel>
<best stock="orbit">-1763042862.9769852</best>
<report>mental</report>
<natural loose="its">wood</natural>
<breathe>-167399108</breathe>
<size ice="fighting">-1761609084.9279025</size>
<effect science="mother">hardly</effect>
<establish child="worth">silver</establish>
<final complex="plant">51790451.74904466</final>
<explanation>thou</explanation>
<pink>-442912210.02267456</pink>
<let closely="between">-1137761464.132539</let>
<likely>form</likely>
<correct>-419477471.3477006</correct>
<nest select="nearest">-1283263439</nest>
<north>car</north>
<grow>melted</grow>
<copy section="loud">-1992769442</copy>
<straw where="when">811703285.589196</straw>
<swimming known="recognize">552630579</swimming>
<labor>-376250756</labor>
<telephone stairs="wave">-807181033.2384744</telephone>
<cream>950426141.9111123</cream>
<molecular>-29943227.427378654</molecular>
<occur unless="lie">925485489</occur>
<twice>share</twice>
<cake large="unit">-1229420696.0573933</cake>
<us>-190517568</us>
<golden>-1926670200.7075052</golden>
<system table="phrase">bell</system>
<understanding>-906021588.3991783</understanding>
<appropriate electric="team">1209724080.0392227</appropriate>
<flew>1168620668</flew>
<beginning>1850762671.2434244</beginning>
<observe carefully="composition">correctly</observe>
<scale>letter</scale>
<there>if</there>
<average construction="military">successful</average>
<dug>drive</dug>
<hospital gas="other">2110285514.4173355</hospital>
<proper stems="tell">not</proper>
<show>birthday</show>
<book stared="cave">replied</book>
<series view="transportation">seldom</series>
<near>1402591791</near>
<food>earth</food>
<answer give="obtain">-585503212</answer>
<ice gave="noted">1312459605.655246</ice>
<family correct="east">still</family>
<necessary closely="imagine">173452064.26132822</necessary>
<recall took="average">-572899455.2208884</recall>
<represent rain="son">1172276655.9326375</represent>
<on similar="out">62955904.795648575</on>
<roof>surface</roof>
<complex>1961294797.5546715</complex>
<battle>women</battle>
<composition station="service">-41818177.26597357</composition>
<coach try="closer">industry</coach>
<frozen>eye</frozen>
<kept>-1059666817.0356605</kept>
<colony planet="wheel">-2089198637.4583118</colony>
<bright jungle="remember">1397000423</bright>
<list>-251803178</list>
<stood night="train">wrong</stood>
<stop night="planet">jar</stop>
<good death="feed">smoke</good>
<between>thing</between>
<government>-764820039</government>
<son>doll</son>
<daily>enemy</daily>
<barn>corn</barn>
<swim>-1986057114.7505434</swim>
<certain declared="show">wood</certain>
<guess example="handle">770393272.1225951</guess>
<ahead upon="similar">1256886478</ahead>
<angle deer="mostly">1313142795.7970848</angle>
<human excitement="learn">show</human>
<over>addition</over>
<poem course="author">willing</poem>
<large slightly="cast">manner</large>
<exact>buffalo</exact>
<draw plate="search">mood</draw>
<feature>768455243.0914087</feature>
<frog state="beauty">-599396753</frog>
<box empty="wish">1291372499</box>
<that wrapped="there">982659776</that>
<harbor>top</harbor>
<porch pool="difference">833413899.5762005</porch>
<hay surprise="agree">broke</hay>
<range tip="sugar">-699350147</range>
<care though="advice">-654165301</care>
<strip bet="mountain">atomic</strip>
<farther>during</farther>
<congress brick="balloon">-1718531921</congress>
<baby morning="heart">-488803518.74614096</baby>
<time>establish</time>
<hold boat="sand">party</hold>
<product flower="fill">523812821</product>
<floor>list</floor>
<situation>engine</situation>
<basic>upward</basic>
<identity dollar="since">me</identity>
<replied perfectly="cream">he</replied>
<climb>734339332</climb>
<bridge>remember</bridge>
<said applied="should">1900859006.930949</said>
<proud>fence</proud>
<moment grown="completely">-531085552</moment>
<dead iron="industrial">news</dead>
<compass>2120413919.4551644</compass>
<bite flame="suggest">-346733110.78626084</bite>
<according tribe="spirit">404255224.7956972</according>
<effort pencil="smaller">-1601684897</effort>
<breathing heavy="die">agree</breathing>
<television feature="final">371924704.6404884</television>
<electricity claws="body">later</electricity>
<possible full="chemical">writing</possible>
<fully factor="strip">visit</fully>
<rays>poetry</rays>
<path bare="proud">sudden</path>
<chain>which</chain>
<matter brass="blanket">make</matter>
<rule habit="through">697189298.6121564</rule>
<hunt begun="recognize">1790490970</hunt>
<move>touch</move>
<thy name="library">399711596.26874685</thy>
<everybody route="cow">over</everybody>
<share floating="church">acres</share>
<both cloud="right">ran</both>
<instant truth="truth">666109242</instant>
<pictured>rose</pictured>
<pen>sitting</pen>
<written tight="aloud">2123403956</written>
<ants related="struck">solve</ants>
<winter shall="am">than</winter>
<spring>report</spring>
<instrument bean="poor">-129407435</instrument>
<pride>unit</pride>
<stage>middle</stage>
<pattern mysterious="gun">-937328959</pattern>