alessandro trinca tornidor commited on
Commit
734545f
·
1 Parent(s): 000cfc3

test: add test cases for My Ghost Writer integration within lite.koboldai.net

Browse files
Files changed (15) hide show
  1. static/tests/test-classic-0-lite.koboldai.net.spec.ts +69 -0
  2. static/tests/test-classic-0-lite.koboldai.net.spec.ts-snapshots/test-My-Ghost-Writer-navigate-between-the-value-list-tables-1-chromium-linux.png +3 -0
  3. static/tests/test-classic-0-lite.koboldai.net.spec.ts-snapshots/test-My-Ghost-Writer-navigate-between-the-value-list-tables-2-chromium-linux.png +3 -0
  4. static/tests/test-classic-0-lite.koboldai.net.spec.ts-snapshots/test-My-Ghost-Writer-navigate-between-the-value-list-tables-3-chromium-linux.png +3 -0
  5. static/tests/test-classic-0-lite.koboldai.net.spec.ts-snapshots/test-My-Ghost-Writer-navigate-between-the-value-list-tables-4-chromium-linux.png +3 -0
  6. static/tests/test-classic-1-lite.koboldai.net.spec.ts +60 -0
  7. static/tests/test-classic-1-lite.koboldai.net.spec.ts-snapshots/test-classic-1--asc-count.txt +1702 -0
  8. static/tests/test-classic-1-lite.koboldai.net.spec.ts-snapshots/test-classic-1--asc-n-words-ngram.txt +1702 -0
  9. static/tests/test-classic-1-lite.koboldai.net.spec.ts-snapshots/test-classic-1--asc-name.txt +1702 -0
  10. static/tests/test-classic-1-lite.koboldai.net.spec.ts-snapshots/test-classic-1--asc-word-prefix.txt +1702 -0
  11. static/tests/test-classic-1-lite.koboldai.net.spec.ts-snapshots/test-classic-1--desc-count.txt +1702 -0
  12. static/tests/test-classic-1-lite.koboldai.net.spec.ts-snapshots/test-classic-1--desc-n-words-ngram.txt +1702 -0
  13. static/tests/test-classic-1-lite.koboldai.net.spec.ts-snapshots/test-classic-1--desc-word-prefix.txt +1702 -0
  14. static/tests/test-classic-lite-1.koboldai.net.spec copy.ts +93 -0
  15. static/tests/test-helper.ts +12 -2
static/tests/test-classic-0-lite.koboldai.net.spec.ts ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { test, expect } from '@playwright/test';
2
+ import { assertCellAndLink } from './test-helper'
3
+
4
+ const testStoryJsonTxt = `${import.meta.dirname}/../../tests/events/very_long_text.json`
5
+
6
+ test('test My Ghost Writer: navigate between the value list/tables', async ({ page }) => {
7
+ await page.goto('http://localhost:8000/');
8
+ await page.getByRole('button', { name: 'Set UI' }).click();
9
+
10
+ console.log(`preparing uploading of file '${testStoryJsonTxt}'!`)
11
+ await page.getByRole('link', { name: 'Save / Load' }).click();
12
+ await page.waitForTimeout(100)
13
+ const fileChooserPromise = page.waitForEvent('filechooser');
14
+ await page.getByRole('button', { name: '📁 Open File' }).click();
15
+ const fileChooser = await fileChooserPromise;
16
+ await fileChooser.setFiles(testStoryJsonTxt);
17
+ await page.waitForTimeout(300)
18
+ console.log(`file '${testStoryJsonTxt}' uploaded!`)
19
+
20
+ await page.getByRole('link', { name: 'Settings' }).click();
21
+ await page.getByRole('link', { name: 'Tokens' }).click();
22
+ await page.waitForTimeout(100)
23
+ await page.getByRole('button', { name: 'id-expand-wordsfreqstats' }).click();
24
+ await page.getByRole('checkbox', { name: 'id-col2-words-frequency-enable' }).check();
25
+ // assert checkbox checked
26
+ await expect(page.getByRole('checkbox', { name: 'id-col2-words-frequency-enable' })).toBeChecked();
27
+
28
+ await page.getByRole('button', { name: 'OK' }).click();
29
+ await page.waitForTimeout(100)
30
+ console.log("#")
31
+
32
+ await page.getByRole('searchbox', { name: 'filter-words-frequency' }).fill('th');
33
+ await page.getByRole('searchbox', { name: 'filter-words-frequency' }).press('Enter');
34
+ await page.waitForTimeout(100)
35
+
36
+ await expect(page.getByLabel('id-filtered-value')).toContainText('\'th\', 1701');
37
+ let currentTitleTableOfWords = page.getByLabel('id-current-table-of-words-title')
38
+ await expect(currentTitleTableOfWords).not.toContainText('the: 734');
39
+
40
+ let listOfWordsList = page.getByLabel('id-list-of-words-container').locator('list')
41
+ let listOfWordsListElNth0 = listOfWordsList.getByLabel(`id-list-of-words-${0}-nth`)
42
+ await expect(listOfWordsListElNth0).toMatchAriaSnapshot("- text: \"the: 734 repetitions\"");
43
+ await expect(listOfWordsListElNth0).toHaveAttribute("title", "stem: 'the'")
44
+
45
+ let gameEditor = page.locator('#gametext')
46
+ await page.getByText('the: 734').click();
47
+ await page.waitForTimeout(100)
48
+
49
+ await expect(currentTitleTableOfWords).toContainText('the: 734');
50
+ await expect(currentTitleTableOfWords).toHaveAttribute("title", "stem: 'the'")
51
+
52
+ await assertCellAndLink(page, gameEditor, 'id-table-0-row-0-nth', "THE BOY WHO");
53
+ await assertCellAndLink(page, gameEditor, 'id-table-0-row-733-nth', "early the next");
54
+ await assertCellAndLink(page, gameEditor, 'id-table-0-row-1-nth', "were the last");
55
+
56
+ await page.getByText('the Dursleys:').click();
57
+ await page.waitForTimeout(100)
58
+ await expect(page.getByLabel('id-current-table-of-words-title')).toContainText('the Dursleys: 32');
59
+
60
+ await page.getByLabel('id-list-of-words-11-nth').click();
61
+ await page.waitForTimeout(100)
62
+
63
+ await assertCellAndLink(page, gameEditor, 'id-table-11-row-2-nth', "to be. The Dursleys", false);
64
+
65
+ let col2wordsFreq = page.getByLabel('id-col2-words-frequency', { exact: true })
66
+ await expect(col2wordsFreq).toHaveScreenshot()
67
+ console.log("end!")
68
+ });
69
+
static/tests/test-classic-0-lite.koboldai.net.spec.ts-snapshots/test-My-Ghost-Writer-navigate-between-the-value-list-tables-1-chromium-linux.png ADDED

Git LFS Details

  • SHA256: e8c4f84a43086c3569d01d0c4c08f6e3777f206dfac9728715a6fe6d56b113e1
  • Pointer size: 131 Bytes
  • Size of remote file: 227 kB
static/tests/test-classic-0-lite.koboldai.net.spec.ts-snapshots/test-My-Ghost-Writer-navigate-between-the-value-list-tables-2-chromium-linux.png ADDED

Git LFS Details

  • SHA256: 9ad371619e9093df415afee8ec2e56516254dea6256589b3d424600cb45d588e
  • Pointer size: 131 Bytes
  • Size of remote file: 225 kB
static/tests/test-classic-0-lite.koboldai.net.spec.ts-snapshots/test-My-Ghost-Writer-navigate-between-the-value-list-tables-3-chromium-linux.png ADDED

Git LFS Details

  • SHA256: d409bae1206cb3b9e64694387ecabdce92c476fa773afb503269515c87253f62
  • Pointer size: 131 Bytes
  • Size of remote file: 228 kB
static/tests/test-classic-0-lite.koboldai.net.spec.ts-snapshots/test-My-Ghost-Writer-navigate-between-the-value-list-tables-4-chromium-linux.png ADDED

Git LFS Details

  • SHA256: 88bb1f2d0d2ce824fddbc3d730a2068002f8a751222be16dca66f8e8a7e27281
  • Pointer size: 131 Bytes
  • Size of remote file: 118 kB
static/tests/test-classic-1-lite.koboldai.net.spec.ts ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { test, expect } from '@playwright/test';
2
+
3
+ const testStoryJsonTxt = `${import.meta.dirname}/../../tests/events/very_long_text.json`
4
+ const orderSelectionValues = ["asc", "desc"]
5
+ const sortSelectionValues = ["word_prefix", "n_words_ngram", "count"]
6
+
7
+ test('test My Ghost Writer: order/sort', async ({ page }) => {
8
+ await page.goto('http://localhost:8000/');
9
+ await page.getByRole('button', { name: 'Set UI' }).click();
10
+
11
+ console.log(`preparing uploading of file '${testStoryJsonTxt}'!`)
12
+ await page.getByRole('link', { name: 'Save / Load' }).click();
13
+ await page.waitForTimeout(100)
14
+ const fileChooserPromise = page.waitForEvent('filechooser');
15
+ await page.getByRole('button', { name: '📁 Open File' }).click();
16
+ const fileChooser = await fileChooserPromise;
17
+ await fileChooser.setFiles(testStoryJsonTxt);
18
+ await page.waitForTimeout(300)
19
+ console.log(`file '${testStoryJsonTxt}' uploaded!`)
20
+
21
+ await page.getByRole('link', { name: 'Settings' }).click();
22
+ await page.getByRole('link', { name: 'Tokens' }).click();
23
+ await page.waitForTimeout(100)
24
+ await page.getByRole('button', { name: 'id-expand-wordsfreqstats' }).click();
25
+ await page.getByRole('checkbox', { name: 'id-col2-words-frequency-enable' }).check();
26
+ // assert checkbox checked
27
+ await expect(page.getByRole('checkbox', { name: 'id-col2-words-frequency-enable' })).toBeChecked();
28
+
29
+ await page.getByRole('button', { name: 'OK' }).click();
30
+ await page.waitForTimeout(100)
31
+ console.log("#")
32
+
33
+ await page.getByRole('searchbox', { name: 'filter-words-frequency' }).fill('th');
34
+ await page.getByRole('searchbox', { name: 'filter-words-frequency' }).press('Enter');
35
+ await page.waitForTimeout(100)
36
+ await expect(page.getByLabel('id-filtered-value')).toContainText('\'th\', 1701');
37
+
38
+ let listOfWordsList = page.getByLabel('id-list-of-words-container').locator('list')
39
+ let listOfWordsListChildren = listOfWordsList.getByRole('listitem')
40
+ await page.getByRole('searchbox', { name: 'filter-words-frequency' }).press('Enter');
41
+ await page.waitForTimeout(100)
42
+ expect(listOfWordsListChildren).toHaveCount(1701)
43
+
44
+
45
+ for (let currentOrderSelectionValueIdx in orderSelectionValues) {
46
+ let currentOrderSelectionValue = orderSelectionValues[currentOrderSelectionValueIdx]
47
+ for (let currentSortSelectionValueIdx in sortSelectionValues) {
48
+ let currentSortSelectionValue = sortSelectionValues[currentSortSelectionValueIdx]
49
+ console.log(`currentOrderSelectionValue:${currentOrderSelectionValue}, currentSelectionValue:${currentSortSelectionValue}.`)
50
+
51
+ await page.getByLabel('id-select-order-by').selectOption(currentOrderSelectionValue);
52
+ await page.getByLabel('id-select-sort-by').selectOption(currentSortSelectionValue);
53
+ await page.getByRole('searchbox', { name: 'filter-words-frequency' }).fill('th');
54
+ await page.getByRole('searchbox', { name: 'filter-words-frequency' }).press('Enter');
55
+ await page.waitForTimeout(300)
56
+ await expect(page.getByLabel('id-list-of-words-container')).toMatchAriaSnapshot({ name: `test-classic-1--${currentOrderSelectionValue}-${currentSortSelectionValue}.txt` });
57
+ }
58
+ }
59
+ console.log("end!")
60
+ });
static/tests/test-classic-1-lite.koboldai.net.spec.ts-snapshots/test-classic-1--asc-count.txt ADDED
@@ -0,0 +1,1702 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - text: /'th', \d+ occurrences/
2
+ - listitem: "anything strange: 1 repetitions"
3
+ - listitem: "because they: 1 repetitions"
4
+ - listitem: "they just: 1 repetitions"
5
+ - listitem: "hold with: 1 repetitions"
6
+ - listitem: "the director: 1 repetitions"
7
+ - listitem: "man with: 1 repetitions"
8
+ - listitem: "with hardly: 1 repetitions"
9
+ - listitem: "was thin: 1 repetitions"
10
+ - listitem: "thin and: 1 repetitions"
11
+ - listitem: "twice the: 1 repetitions"
12
+ - listitem: "their opinion: 1 repetitions"
13
+ - listitem: "opinion there: 1 repetitions"
14
+ - listitem: "had everything: 1 repetitions"
15
+ - listitem: "everything they: 1 repetitions"
16
+ - listitem: "they wanted: 1 repetitions"
17
+ - listitem: "their greatest: 1 repetitions"
18
+ - listitem: "that somebody: 1 repetitions"
19
+ - listitem: "they hadn: 1 repetitions"
20
+ - listitem: "good-for-nothing: 1 repetitions"
21
+ - listitem: "her good-for-nothing: 1 repetitions"
22
+ - listitem: "good-for-nothing husband: 1 repetitions"
23
+ - listitem: "think what: 1 repetitions"
24
+ - listitem: "what the: 1 repetitions"
25
+ - listitem: "was another: 1 repetitions"
26
+ - listitem: "another good: 1 repetitions"
27
+ - listitem: "keeping the: 1 repetitions"
28
+ - listitem: "mixing with: 1 repetitions"
29
+ - listitem: "the dull: 1 repetitions"
30
+ - listitem: "nothing about: 1 repetitions"
31
+ - listitem: "the cloudy: 1 repetitions"
32
+ - listitem: "suggest that: 1 repetitions"
33
+ - listitem: "that strange: 1 repetitions"
34
+ - listitem: "mysterious things: 1 repetitions"
35
+ - listitem: "things would: 1 repetitions"
36
+ - listitem: "them noticed: 1 repetitions"
37
+ - listitem: "past the: 1 repetitions"
38
+ - listitem: "throwing: 1 repetitions"
39
+ - listitem: "the cheek: 1 repetitions"
40
+ - listitem: "and throwing: 1 repetitions"
41
+ - listitem: "throwing his: 1 repetitions"
42
+ - listitem: "street that: 1 repetitions"
43
+ - listitem: "noticed the: 1 repetitions"
44
+ - listitem: "something peculiar: 1 repetitions"
45
+ - listitem: "sign that: 1 repetitions"
46
+ - listitem: "thought of: 1 repetitions"
47
+ - listitem: "of nothing: 1 repetitions"
48
+ - listitem: "nothing except: 1 repetitions"
49
+ - listitem: "by something: 1 repetitions"
50
+ - listitem: "noticing that: 1 repetitions"
51
+ - listitem: "that there: 1 repetitions"
52
+ - listitem: "there seemed: 1 repetitions"
53
+ - listitem: "funny clothes: 1 repetitions"
54
+ - listitem: "clothes —: 1 repetitions"
55
+ - listitem: "the getups: 1 repetitions"
56
+ - listitem: "supposed this: 1 repetitions"
57
+ - listitem: "the steering: 1 repetitions"
58
+ - listitem: "these weirdos: 1 repetitions"
59
+ - listitem: "excitedly together: 1 repetitions"
60
+ - listitem: "see that: 1 repetitions"
61
+ - listitem: "that a: 1 repetitions"
62
+ - listitem: "them weren: 1 repetitions"
63
+ - listitem: "that man: 1 repetitions"
64
+ - listitem: "older than: 1 repetitions"
65
+ - listitem: "! The: 1 repetitions"
66
+ - listitem: "The nerve: 1 repetitions"
67
+ - listitem: "But then: 1 repetitions"
68
+ - listitem: "then it: 1 repetitions"
69
+ - listitem: "Dursley that: 1 repetitions"
70
+ - listitem: "— these: 1 repetitions"
71
+ - listitem: "something ...: 1 repetitions"
72
+ - listitem: "that would: 1 repetitions"
73
+ - listitem: "The traffic: 1 repetitions"
74
+ - listitem: "the Grunnings: 1 repetitions"
75
+ - listitem: "ninth: 1 repetitions"
76
+ - listitem: "open-mouthed: 1 repetitions"
77
+ - listitem: "sat with: 1 repetitions"
78
+ - listitem: "the ninth: 1 repetitions"
79
+ - listitem: "ninth floor: 1 repetitions"
80
+ - listitem: "though people: 1 repetitions"
81
+ - listitem: "they pointed: 1 repetitions"
82
+ - listitem: "gazed open-mouthed: 1 repetitions"
83
+ - listitem: "open-mouthed as: 1 repetitions"
84
+ - listitem: "them had: 1 repetitions"
85
+ - listitem: "the bakery: 1 repetitions"
86
+ - listitem: "them next: 1 repetitions"
87
+ - listitem: "the baker: 1 repetitions"
88
+ - listitem: "eyed them: 1 repetitions"
89
+ - listitem: "them angrily: 1 repetitions"
90
+ - listitem: "they made: 1 repetitions"
91
+ - listitem: "This bunch: 1 repetitions"
92
+ - listitem: "past them: 1 repetitions"
93
+ - listitem: ", their: 1 repetitions"
94
+ - listitem: "the whisperers: 1 repetitions"
95
+ - listitem: "thought better: 1 repetitions"
96
+ - listitem: "the receiver: 1 repetitions"
97
+ - listitem: ", thinking: 1 repetitions"
98
+ - listitem: "seen the: 1 repetitions"
99
+ - listitem: "that ...: 1 repetitions"
100
+ - listitem: ", those: 1 repetitions"
101
+ - listitem: "those people: 1 repetitions"
102
+ - listitem: "the building: 1 repetitions"
103
+ - listitem: "worried that: 1 repetitions"
104
+ - listitem: "the tiny: 1 repetitions"
105
+ - listitem: "the contrary: 1 repetitions"
106
+ - listitem: "for nothing: 1 repetitions"
107
+ - listitem: "nothing could: 1 repetitions"
108
+ - listitem: "this happy: 1 repetitions"
109
+ - listitem: "the old: 1 repetitions"
110
+ - listitem: "also thought: 1 repetitions"
111
+ - listitem: "whatever that: 1 repetitions"
112
+ - listitem: "the driveway: 1 repetitions"
113
+ - listitem: "first thing: 1 repetitions"
114
+ - listitem: "thing he: 1 repetitions"
115
+ - listitem: "spotted that: 1 repetitions"
116
+ - listitem: "this normal: 1 repetitions"
117
+ - listitem: "himself together: 1 repetitions"
118
+ - listitem: "mention anything: 1 repetitions"
119
+ - listitem: "problems with: 1 repetitions"
120
+ - listitem: "catch the: 1 repetitions"
121
+ - listitem: "the evening: 1 repetitions"
122
+ - listitem: "reported that: 1 repetitions"
123
+ - listitem: "the nation: 1 repetitions"
124
+ - listitem: "Although owls: 1 repetitions"
125
+ - listitem: "there have: 1 repetitions"
126
+ - listitem: "these birds: 1 repetitions"
127
+ - listitem: "why the: 1 repetitions"
128
+ - listitem: "changed their: 1 repetitions"
129
+ - listitem: "their sleeping: 1 repetitions"
130
+ - listitem: "The newscaster: 1 repetitions"
131
+ - listitem: "McGuffin with: 1 repetitions"
132
+ - listitem: "the weather: 1 repetitions"
133
+ - listitem: "weather.: 1 repetitions"
134
+ - listitem: "weatherman: 1 repetitions"
135
+ - listitem: "the weatherman: 1 repetitions"
136
+ - listitem: "weatherman,: 1 repetitions"
137
+ - listitem: "owls that: 1 repetitions"
138
+ - listitem: "that have: 1 repetitions"
139
+ - listitem: "me that: 1 repetitions"
140
+ - listitem: "that instead: 1 repetitions"
141
+ - listitem: "the rain: 1 repetitions"
142
+ - listitem: "his throat: 1 repetitions"
143
+ - listitem: "throat nervously: 1 repetitions"
144
+ - listitem: "they normally: 1 repetitions"
145
+ - listitem: "and there: 1 repetitions"
146
+ - listitem: "just thought: 1 repetitions"
147
+ - listitem: "thought ...: 1 repetitions"
148
+ - listitem: "with ...: 1 repetitions"
149
+ - listitem: "whether: 1 repetitions"
150
+ - listitem: "tea through: 1 repetitions"
151
+ - listitem: "through pursed: 1 repetitions"
152
+ - listitem: "wondered whether: 1 repetitions"
153
+ - listitem: "whether he: 1 repetitions"
154
+ - listitem: "\"Their: 1 repetitions"
155
+ - listitem: "say another: 1 repetitions"
156
+ - listitem: "another word: 1 repetitions"
157
+ - listitem: "the subject: 1 repetitions"
158
+ - listitem: "the bathroom: 1 repetitions"
159
+ - listitem: "bathroom,: 1 repetitions"
160
+ - listitem: "the bedroom: 1 repetitions"
161
+ - listitem: "things?: 1 repetitions"
162
+ - listitem: "this have: 1 repetitions"
163
+ - listitem: "have anything: 1 repetitions"
164
+ - listitem: "comforting thought: 1 repetitions"
165
+ - listitem: "thought before: 1 repetitions"
166
+ - listitem: "for them: 1 repetitions"
167
+ - listitem: "them to: 1 repetitions"
168
+ - listitem: "Petunia thought: 1 repetitions"
169
+ - listitem: "thought about: 1 repetitions"
170
+ - listitem: "their kind: 1 repetitions"
171
+ - listitem: "that might: 1 repetitions"
172
+ - listitem: "affect them: 1 repetitions"
173
+ - listitem: "the far: 1 repetitions"
174
+ - listitem: "corner the: 1 repetitions"
175
+ - listitem: "have thought: 1 repetitions"
176
+ - listitem: "Nothing like: 1 repetitions"
177
+ - listitem: "thin,: 1 repetitions"
178
+ - listitem: "were both: 1 repetitions"
179
+ - listitem: "both long: 1 repetitions"
180
+ - listitem: "cloak that: 1 repetitions"
181
+ - listitem: "that swept: 1 repetitions"
182
+ - listitem: "swept the: 1 repetitions"
183
+ - listitem: "where everything: 1 repetitions"
184
+ - listitem: "everything from: 1 repetitions"
185
+ - listitem: "the sight: 1 repetitions"
186
+ - listitem: "clicked the: 1 repetitions"
187
+ - listitem: "the Put-Outer: 1 repetitions"
188
+ - listitem: "until the: 1 repetitions"
189
+ - listitem: "the distance: 1 repetitions"
190
+ - listitem: "the eyes: 1 repetitions"
191
+ - listitem: "their window: 1 repetitions"
192
+ - listitem: "they wouldn: 1 repetitions"
193
+ - listitem: "see anything: 1 repetitions"
194
+ - listitem: "the pavement: 1 repetitions"
195
+ - listitem: "slipped the: 1 repetitions"
196
+ - listitem: "the Put-: 1 repetitions"
197
+ - listitem: "rather severe-looking: 1 repetitions"
198
+ - listitem: "the shape: 1 repetitions"
199
+ - listitem: "the markings: 1 repetitions"
200
+ - listitem: "markings the: 1 repetitions"
201
+ - listitem: "d think: 1 repetitions"
202
+ - listitem: "even the: 1 repetitions"
203
+ - listitem: "something': 1 repetitions"
204
+ - listitem: "their news: 1 repetitions"
205
+ - listitem: "bet that: 1 repetitions"
206
+ - listitem: "blame them: 1 repetitions"
207
+ - listitem: "But that: 1 repetitions"
208
+ - listitem: "Muggle clothes: 1 repetitions"
209
+ - listitem: "clothes,: 1 repetitions"
210
+ - listitem: "She threw: 1 repetitions"
211
+ - listitem: "though hoping: 1 repetitions"
212
+ - listitem: "her something: 1 repetitions"
213
+ - listitem: "something,: 1 repetitions"
214
+ - listitem: "fine thing: 1 repetitions"
215
+ - listitem: "thing it: 1 repetitions"
216
+ - listitem: "be thankful: 1 repetitions"
217
+ - listitem: "thankful for: 1 repetitions"
218
+ - listitem: "m rather: 1 repetitions"
219
+ - listitem: "rather fond: 1 repetitions"
220
+ - listitem: "think this: 1 repetitions"
221
+ - listitem: "this You-: 1 repetitions"
222
+ - listitem: "use them: 1 repetitions"
223
+ - listitem: "are nothing: 1 repetitions"
224
+ - listitem: "nothing next: 1 repetitions"
225
+ - listitem: "rumors that: 1 repetitions"
226
+ - listitem: "that are: 1 repetitions"
227
+ - listitem: "neither: 1 repetitions"
228
+ - listitem: "seemed that: 1 repetitions"
229
+ - listitem: "that Professor: 1 repetitions"
230
+ - listitem: "for neither: 1 repetitions"
231
+ - listitem: "neither as: 1 repetitions"
232
+ - listitem: "Dumbledore with: 1 repetitions"
233
+ - listitem: "plain that: 1 repetitions"
234
+ - listitem: "that whatever: 1 repetitions"
235
+ - listitem: "choosing another: 1 repetitions"
236
+ - listitem: "another lemon: 1 repetitions"
237
+ - listitem: "that last: 1 repetitions"
238
+ - listitem: "that Lily: 1 repetitions"
239
+ - listitem: "the shoulder: 1 repetitions"
240
+ - listitem: "kill the: 1 repetitions"
241
+ - listitem: "kill that: 1 repetitions"
242
+ - listitem: "that little: 1 repetitions"
243
+ - listitem: "that when: 1 repetitions"
244
+ - listitem: "eyes beneath: 1 repetitions"
245
+ - listitem: "beneath her: 1 repetitions"
246
+ - listitem: "though,: 1 repetitions"
247
+ - listitem: "mean the: 1 repetitions"
248
+ - listitem: "watching them: 1 repetitions"
249
+ - listitem: "got this: 1 repetitions"
250
+ - listitem: "this son: 1 repetitions"
251
+ - listitem: "mother all: 1 repetitions"
252
+ - listitem: "explain everything: 1 repetitions"
253
+ - listitem: "everything to: 1 repetitions"
254
+ - listitem: "written them: 1 repetitions"
255
+ - listitem: "them a: 1 repetitions"
256
+ - listitem: "this in: 1 repetitions"
257
+ - listitem: "? These: 1 repetitions"
258
+ - listitem: "the future: 1 repetitions"
259
+ - listitem: "there will: 1 repetitions"
260
+ - listitem: "that until: 1 repetitions"
261
+ - listitem: "underneath: 1 repetitions"
262
+ - listitem: "her mouth: 1 repetitions"
263
+ - listitem: "she thought: 1 repetitions"
264
+ - listitem: "Harry underneath: 1 repetitions"
265
+ - listitem: "underneath it: 1 repetitions"
266
+ - listitem: "with something: 1 repetitions"
267
+ - listitem: "something as: 1 repetitions"
268
+ - listitem: "as this: 1 repetitions"
269
+ - listitem: "with my: 1 repetitions"
270
+ - listitem: "broken the: 1 repetitions"
271
+ - listitem: "the silence: 1 repetitions"
272
+ - listitem: "they looked: 1 repetitions"
273
+ - listitem: "they both: 1 repetitions"
274
+ - listitem: "both looked: 1 repetitions"
275
+ - listitem: "the sky: 1 repetitions"
276
+ - listitem: "leather: 1 repetitions"
277
+ - listitem: "nothing to: 1 repetitions"
278
+ - listitem: "hands the: 1 repetitions"
279
+ - listitem: "the size: 1 repetitions"
280
+ - listitem: "their leather: 1 repetitions"
281
+ - listitem: "leather boots: 1 repetitions"
282
+ - listitem: "that motorcycle: 1 repetitions"
283
+ - listitem: "forehead they: 1 repetitions"
284
+ - listitem: "that where: 1 repetitions"
285
+ - listitem: "have that: 1 repetitions"
286
+ - listitem: "that scar: 1 repetitions"
287
+ - listitem: "do something: 1 repetitions"
288
+ - listitem: "something about: 1 repetitions"
289
+ - listitem: "knee that: 1 repetitions"
290
+ - listitem: "that is: 1 repetitions"
291
+ - listitem: "the London: 1 repetitions"
292
+ - listitem: "this over: 1 repetitions"
293
+ - listitem: "over with: 1 repetitions"
294
+ - listitem: "with.: 1 repetitions"
295
+ - listitem: "with Muggles: 1 repetitions"
296
+ - listitem: "the arm: 1 repetitions"
297
+ - listitem: "then came: 1 repetitions"
298
+ - listitem: "other two: 1 repetitions"
299
+ - listitem: "minute the: 1 repetitions"
300
+ - listitem: "the three: 1 repetitions"
301
+ - listitem: "three of: 1 repetitions"
302
+ - listitem: "them stood: 1 repetitions"
303
+ - listitem: "the little: 1 repetitions"
304
+ - listitem: "the twinkling: 1 repetitions"
305
+ - listitem: "light that: 1 repetitions"
306
+ - listitem: "that usually: 1 repetitions"
307
+ - listitem: "join the: 1 repetitions"
308
+ - listitem: "the celebrations: 1 repetitions"
309
+ - listitem: "this bike: 1 repetitions"
310
+ - listitem: "kicked the: 1 repetitions"
311
+ - listitem: "the engine: 1 repetitions"
312
+ - listitem: "; with: 1 repetitions"
313
+ - listitem: "their street: 1 repetitions"
314
+ - listitem: "that Privet: 1 repetitions"
315
+ - listitem: "the step: 1 repetitions"
316
+ - listitem: "ruffled the: 1 repetitions"
317
+ - listitem: "the neat: 1 repetitions"
318
+ - listitem: "the inky: 1 repetitions"
319
+ - listitem: "astonishing things: 1 repetitions"
320
+ - listitem: "blankets without: 1 repetitions"
321
+ - listitem: "without waking: 1 repetitions"
322
+ - listitem: "the milk: 1 repetitions"
323
+ - listitem: "nor that: 1 repetitions"
324
+ - listitem: "that at: 1 repetitions"
325
+ - listitem: "this very: 1 repetitions"
326
+ - listitem: "up their: 1 repetitions"
327
+ - listitem: "their glasses: 1 repetitions"
328
+ - listitem: "THE VANASHIG: 1 repetitions"
329
+ - listitem: "since the: 1 repetitions"
330
+ - listitem: "find their: 1 repetitions"
331
+ - listitem: "their nephew: 1 repetitions"
332
+ - listitem: "The sun: 1 repetitions"
333
+ - listitem: "the brass: 1 repetitions"
334
+ - listitem: "into their: 1 repetitions"
335
+ - listitem: "their living: 1 repetitions"
336
+ - listitem: "seen that: 1 repetitions"
337
+ - listitem: "that fateful: 1 repetitions"
338
+ - listitem: "the mantelpiece: 1 repetitions"
339
+ - listitem: "now the: 1 repetitions"
340
+ - listitem: "the fair: 1 repetitions"
341
+ - listitem: "game with: 1 repetitions"
342
+ - listitem: "that another: 1 repetitions"
343
+ - listitem: "another boy: 1 repetitions"
344
+ - listitem: "made the: 1 repetitions"
345
+ - listitem: "woke with: 1 repetitions"
346
+ - listitem: "then the: 1 repetitions"
347
+ - listitem: "the frying: 1 repetitions"
348
+ - listitem: "the stove: 1 repetitions"
349
+ - listitem: "remember the: 1 repetitions"
350
+ - listitem: "the dream: 1 repetitions"
351
+ - listitem: "after the: 1 repetitions"
352
+ - listitem: "want everything: 1 repetitions"
353
+ - listitem: "everything perfect: 1 repetitions"
354
+ - listitem: "snapped through: 1 repetitions"
355
+ - listitem: "\"Nothing: 1 repetitions"
356
+ - listitem: "Nothing,: 1 repetitions"
357
+ - listitem: "nothing ...: 1 repetitions"
358
+ - listitem: "birthday —: 1 repetitions"
359
+ - listitem: "put them: 1 repetitions"
360
+ - listitem: "them on: 1 repetitions"
361
+ - listitem: "hidden beneath: 1 repetitions"
362
+ - listitem: "beneath all: 1 repetitions"
363
+ - listitem: "birthday presents: 1 repetitions"
364
+ - listitem: "though Dudley: 1 repetitions"
365
+ - listitem: "gotten the: 1 repetitions"
366
+ - listitem: "mention the: 1 repetitions"
367
+ - listitem: "had something: 1 repetitions"
368
+ - listitem: "with living: 1 repetitions"
369
+ - listitem: "skinnier than: 1 repetitions"
370
+ - listitem: "clothes of: 1 repetitions"
371
+ - listitem: "bigger than: 1 repetitions"
372
+ - listitem: "a thin: 1 repetitions"
373
+ - listitem: "thin face: 1 repetitions"
374
+ - listitem: "held together: 1 repetitions"
375
+ - listitem: "together with: 1 repetitions"
376
+ - listitem: "the nose: 1 repetitions"
377
+ - listitem: "thing Harry: 1 repetitions"
378
+ - listitem: "very thin: 1 repetitions"
379
+ - listitem: "thin scar: 1 repetitions"
380
+ - listitem: "forehead that: 1 repetitions"
381
+ - listitem: "life with: 1 repetitions"
382
+ - listitem: "entered the: 1 repetitions"
383
+ - listitem: "shouted that: 1 repetitions"
384
+ - listitem: "haircuts than: 1 repetitions"
385
+ - listitem: "than the: 1 repetitions"
386
+ - listitem: "put together: 1 repetitions"
387
+ - listitem: "grew that: 1 repetitions"
388
+ - listitem: "that way: 1 repetitions"
389
+ - listitem: "smoothly: 1 repetitions"
390
+ - listitem: "kitchen with: 1 repetitions"
391
+ - listitem: "thick blond: 1 repetitions"
392
+ - listitem: "hair that: 1 repetitions"
393
+ - listitem: "that lay: 1 repetitions"
394
+ - listitem: "lay smoothly: 1 repetitions"
395
+ - listitem: "smoothly on: 1 repetitions"
396
+ - listitem: "the plates: 1 repetitions"
397
+ - listitem: "as there: 1 repetitions"
398
+ - listitem: "Thirty-six: 1 repetitions"
399
+ - listitem: "\"Thirty-six: 1 repetitions"
400
+ - listitem: "Thirty-six,: 1 repetitions"
401
+ - listitem: "than last: 1 repetitions"
402
+ - listitem: "under this: 1 repetitions"
403
+ - listitem: "this big: 1 repetitions"
404
+ - listitem: "thirty-seven: 1 repetitions"
405
+ - listitem: ", thirty-seven: 1 repetitions"
406
+ - listitem: "thirty-seven then: 1 repetitions"
407
+ - listitem: "the face: 1 repetitions"
408
+ - listitem: "you another: 1 repetitions"
409
+ - listitem: "another two: 1 repetitions"
410
+ - listitem: "thought for: 1 repetitions"
411
+ - listitem: "have thirty: 1 repetitions"
412
+ - listitem: "... thirty: 1 repetitions"
413
+ - listitem: "Thirty-nine: 1 repetitions"
414
+ - listitem: "\"Thirty-nine: 1 repetitions"
415
+ - listitem: "Thirty-nine,: 1 repetitions"
416
+ - listitem: "right then: 1 repetitions"
417
+ - listitem: "s worth: 1 repetitions"
418
+ - listitem: "worth,: 1 repetitions"
419
+ - listitem: "moment the: 1 repetitions"
420
+ - listitem: "unwrap the: 1 repetitions"
421
+ - listitem: "ripping the: 1 repetitions"
422
+ - listitem: "the paper: 1 repetitions"
423
+ - listitem: "looking both: 1 repetitions"
424
+ - listitem: "both angry: 1 repetitions"
425
+ - listitem: "s mouth: 1 repetitions"
426
+ - listitem: "mouth fell: 1 repetitions"
427
+ - listitem: "birthday,: 1 repetitions"
428
+ - listitem: "or the: 1 repetitions"
429
+ - listitem: "the movies: 1 repetitions"
430
+ - listitem: "behind with: 1 repetitions"
431
+ - listitem: "with Mrs: 1 repetitions"
432
+ - listitem: "it there: 1 repetitions"
433
+ - listitem: "planned this: 1 repetitions"
434
+ - listitem: "sorry that: 1 repetitions"
435
+ - listitem: "that Mrs: 1 repetitions"
436
+ - listitem: "hates the: 1 repetitions"
437
+ - listitem: "t there: 1 repetitions"
438
+ - listitem: "there —: 1 repetitions"
439
+ - listitem: "or rather: 1 repetitions"
440
+ - listitem: "rather,: 1 repetitions"
441
+ - listitem: "nasty that: 1 repetitions"
442
+ - listitem: "that couldn: 1 repetitions"
443
+ - listitem: "understand them: 1 repetitions"
444
+ - listitem: "that if: 1 repetitions"
445
+ - listitem: "mother would: 1 repetitions"
446
+ - listitem: "him anything: 1 repetitions"
447
+ - listitem: "spoils everything: 1 repetitions"
448
+ - listitem: "everything!: 1 repetitions"
449
+ - listitem: "grin through: 1 repetitions"
450
+ - listitem: "mothers arms: 1 repetitions"
451
+ - listitem: "Just then: 1 repetitions"
452
+ - listitem: "the doorbell: 1 repetitions"
453
+ - listitem: "in with: 1 repetitions"
454
+ - listitem: "boy with: 1 repetitions"
455
+ - listitem: "usually the: 1 repetitions"
456
+ - listitem: "the one: 1 repetitions"
457
+ - listitem: "behind their: 1 repetitions"
458
+ - listitem: "their backs: 1 repetitions"
459
+ - listitem: "hit them: 1 repetitions"
460
+ - listitem: "car with: 1 repetitions"
461
+ - listitem: "with Piers: 1 repetitions"
462
+ - listitem: "of anything: 1 repetitions"
463
+ - listitem: "anything else: 1 repetitions"
464
+ - listitem: ", anything: 1 repetitions"
465
+ - listitem: "anything at: 1 repetitions"
466
+ - listitem: "that cupboard: 1 repetitions"
467
+ - listitem: "The problem: 1 repetitions"
468
+ - listitem: "strange things: 1 repetitions"
469
+ - listitem: "things often: 1 repetitions"
470
+ - listitem: "make them: 1 repetitions"
471
+ - listitem: "them happen: 1 repetitions"
472
+ - listitem: "the barbers: 1 repetitions"
473
+ - listitem: "hide that: 1 repetitions"
474
+ - listitem: "that horrible: 1 repetitions"
475
+ - listitem: "school the: 1 repetitions"
476
+ - listitem: "baggy clothes: 1 repetitions"
477
+ - listitem: "for this: 1 repetitions"
478
+ - listitem: "even though: 1 repetitions"
479
+ - listitem: "explain that: 1 repetitions"
480
+ - listitem: "Another time: 1 repetitions"
481
+ - listitem: "brown with: 1 repetitions"
482
+ - listitem: "with orange: 1 repetitions"
483
+ - listitem: "The harder: 1 repetitions"
484
+ - listitem: "the smaller: 1 repetitions"
485
+ - listitem: "the wash: 1 repetitions"
486
+ - listitem: "there he: 1 repetitions"
487
+ - listitem: "the chimney: 1 repetitions"
488
+ - listitem: "them Harry: 1 repetitions"
489
+ - listitem: "Vernon through: 1 repetitions"
490
+ - listitem: "the locked: 1 repetitions"
491
+ - listitem: "supposed that: 1 repetitions"
492
+ - listitem: "nothing was: 1 repetitions"
493
+ - listitem: "even worth: 1 repetitions"
494
+ - listitem: "worth being: 1 repetitions"
495
+ - listitem: "somewhere that: 1 repetitions"
496
+ - listitem: "that wasn: 1 repetitions"
497
+ - listitem: "about things: 1 repetitions"
498
+ - listitem: "things:: 1 repetitions"
499
+ - listitem: "the council: 1 repetitions"
500
+ - listitem: "the bank: 1 repetitions"
501
+ - listitem: "This morning: 1 repetitions"
502
+ - listitem: "the young: 1 repetitions"
503
+ - listitem: "overtook them: 1 repetitions"
504
+ - listitem: "beet with: 1 repetitions"
505
+ - listitem: "know they: 1 repetitions"
506
+ - listitem: "said anything: 1 repetitions"
507
+ - listitem: "If there: 1 repetitions"
508
+ - listitem: "thing the: 1 repetitions"
509
+ - listitem: "more than: 1 repetitions"
510
+ - listitem: "than his: 1 repetitions"
511
+ - listitem: "anything acting: 1 repetitions"
512
+ - listitem: "— they: 1 repetitions"
513
+ - listitem: "crowded with: 1 repetitions"
514
+ - listitem: "with families: 1 repetitions"
515
+ - listitem: "either: 1 repetitions"
516
+ - listitem: "the entrance: 1 repetitions"
517
+ - listitem: "the smiling: 1 repetitions"
518
+ - listitem: "the van: 1 repetitions"
519
+ - listitem: "they bought: 1 repetitions"
520
+ - listitem: ", either: 1 repetitions"
521
+ - listitem: "either,: 1 repetitions"
522
+ - listitem: "thought,: 1 repetitions"
523
+ - listitem: "they watched: 1 repetitions"
524
+ - listitem: "except that: 1 repetitions"
525
+ - listitem: "bored with: 1 repetitions"
526
+ - listitem: "the animals: 1 repetitions"
527
+ - listitem: "their favorite: 1 repetitions"
528
+ - listitem: "him another: 1 repetitions"
529
+ - listitem: "finish the: 1 repetitions"
530
+ - listitem: "pythons: 1 repetitions"
531
+ - listitem: "lunch they: 1 repetitions"
532
+ - listitem: "with lit: 1 repetitions"
533
+ - listitem: "along the: 1 repetitions"
534
+ - listitem: "and slithering: 1 repetitions"
535
+ - listitem: "slithering over: 1 repetitions"
536
+ - listitem: "man-crushing pythons: 1 repetitions"
537
+ - listitem: "pythons.: 1 repetitions"
538
+ - listitem: "the largest: 1 repetitions"
539
+ - listitem: "the mood: 1 repetitions"
540
+ - listitem: "stood with: 1 repetitions"
541
+ - listitem: "the glistening: 1 repetitions"
542
+ - listitem: "rapped the: 1 repetitions"
543
+ - listitem: "smartly with: 1 repetitions"
544
+ - listitem: "\"This: 1 repetitions"
545
+ - listitem: "the tank: 1 repetitions"
546
+ - listitem: "drumming their: 1 repetitions"
547
+ - listitem: "their fingers: 1 repetitions"
548
+ - listitem: "than having: 1 repetitions"
549
+ - listitem: "level with: 1 repetitions"
550
+ - listitem: ", then: 1 repetitions"
551
+ - listitem: "then raised: 1 repetitions"
552
+ - listitem: "look that: 1 repetitions"
553
+ - listitem: "murmured through: 1 repetitions"
554
+ - listitem: "nice there: 1 repetitions"
555
+ - listitem: ": This: 1 repetitions"
556
+ - listitem: "This specimen: 1 repetitions"
557
+ - listitem: "made both: 1 repetitions"
558
+ - listitem: "them jump: 1 repetitions"
559
+ - listitem: "THIS SNAKE: 1 repetitions"
560
+ - listitem: "toward them: 1 repetitions"
561
+ - listitem: "the ribs: 1 repetitions"
562
+ - listitem: "the concrete: 1 repetitions"
563
+ - listitem: "back with: 1 repetitions"
564
+ - listitem: "with howls: 1 repetitions"
565
+ - listitem: "throughout: 1 repetitions"
566
+ - listitem: ", slithering: 1 repetitions"
567
+ - listitem: "slithering out: 1 repetitions"
568
+ - listitem: "People throughout: 1 repetitions"
569
+ - listitem: "throughout the: 1 repetitions"
570
+ - listitem: "the exits: 1 repetitions"
571
+ - listitem: "Thanksss: 1 repetitions"
572
+ - listitem: "... Thanksss: 1 repetitions"
573
+ - listitem: "Thanksss,: 1 repetitions"
574
+ - listitem: "did the: 1 repetitions"
575
+ - listitem: "death: 1 repetitions"
576
+ - listitem: "done anything: 1 repetitions"
577
+ - listitem: "anything except: 1 repetitions"
578
+ - listitem: "at their: 1 repetitions"
579
+ - listitem: "their heels: 1 repetitions"
580
+ - listitem: "them how: 1 repetitions"
581
+ - listitem: "to death: 1 repetitions"
582
+ - listitem: "death.: 1 repetitions"
583
+ - listitem: "Until they: 1 repetitions"
584
+ - listitem: "the crash: 1 repetitions"
585
+ - listitem: "thought (: 1 repetitions"
586
+ - listitem: ") that: 1 repetitions"
587
+ - listitem: "that strangers: 1 repetitions"
588
+ - listitem: "strangers they: 1 repetitions"
589
+ - listitem: "shopping with: 1 repetitions"
590
+ - listitem: "with Aunt: 1 repetitions"
591
+ - listitem: "knew the: 1 repetitions"
592
+ - listitem: "rushed them: 1 repetitions"
593
+ - listitem: "them out: 1 repetitions"
594
+ - listitem: "the shop: 1 repetitions"
595
+ - listitem: "shop without: 1 repetitions"
596
+ - listitem: "without buying: 1 repetitions"
597
+ - listitem: "buying anything: 1 repetitions"
598
+ - listitem: "street the: 1 repetitions"
599
+ - listitem: "other day: 1 repetitions"
600
+ - listitem: "then walked: 1 repetitions"
601
+ - listitem: "away without: 1 repetitions"
602
+ - listitem: "The weirdest: 1 repetitions"
603
+ - listitem: "weirdest thing: 1 repetitions"
604
+ - listitem: "thing about: 1 repetitions"
605
+ - listitem: "way they: 1 repetitions"
606
+ - listitem: "vanish the: 1 repetitions"
607
+ - listitem: "hated that: 1 repetitions"
608
+ - listitem: "that odd: 1 repetitions"
609
+ - listitem: "disagree with: 1 repetitions"
610
+ - listitem: "The escape: 1 repetitions"
611
+ - listitem: "the Brazilian: 1 repetitions"
612
+ - listitem: "the summer: 1 repetitions"
613
+ - listitem: "the lot: 1 repetitions"
614
+ - listitem: "the leader: 1 repetitions"
615
+ - listitem: "them were: 1 repetitions"
616
+ - listitem: "and thinking: 1 repetitions"
617
+ - listitem: "the holidays: 1 repetitions"
618
+ - listitem: "going there: 1 repetitions"
619
+ - listitem: "there too: 1 repetitions"
620
+ - listitem: "the local: 1 repetitions"
621
+ - listitem: "\"They: 1 repetitions"
622
+ - listitem: "They stuff: 1 repetitions"
623
+ - listitem: "the toilet: 1 repetitions"
624
+ - listitem: "toilet the: 1 repetitions"
625
+ - listitem: "thanks,: 1 repetitions"
626
+ - listitem: "The poor: 1 repetitions"
627
+ - listitem: "had anything: 1 repetitions"
628
+ - listitem: "anything as: 1 repetitions"
629
+ - listitem: "cake that: 1 repetitions"
630
+ - listitem: "that tasted: 1 repetitions"
631
+ - listitem: "other while: 1 repetitions"
632
+ - listitem: "the teachers: 1 repetitions"
633
+ - listitem: "gruffly that: 1 repetitions"
634
+ - listitem: "the proudest: 1 repetitions"
635
+ - listitem: "thought two: 1 repetitions"
636
+ - listitem: "kitchen the: 1 repetitions"
637
+ - listitem: "the sink: 1 repetitions"
638
+ - listitem: "The tub: 1 repetitions"
639
+ - listitem: "s this: 1 repetitions"
640
+ - listitem: "they always: 1 repetitions"
641
+ - listitem: "the bowl: 1 repetitions"
642
+ - listitem: "old things: 1 repetitions"
643
+ - listitem: "things gray: 1 repetitions"
644
+ - listitem: "doubted this: 1 repetitions"
645
+ - listitem: "thought it: 1 repetitions"
646
+ - listitem: "both with: 1 repetitions"
647
+ - listitem: "with wrinkled: 1 repetitions"
648
+ - listitem: "the smell: 1 repetitions"
649
+ - listitem: "the click: 1 repetitions"
650
+ - listitem: "him with: 1 repetitions"
651
+ - listitem: "with your: 1 repetitions"
652
+ - listitem: "dodged the: 1 repetitions"
653
+ - listitem: ". Three: 1 repetitions"
654
+ - listitem: "Three things: 1 repetitions"
655
+ - listitem: "things lay: 1 repetitions"
656
+ - listitem: "the Isle: 1 repetitions"
657
+ - listitem: "envelope that: 1 repetitions"
658
+ - listitem: "no other: 1 repetitions"
659
+ - listitem: "other relatives: 1 repetitions"
660
+ - listitem: "the library: 1 repetitions"
661
+ - listitem: "plainly there: 1 repetitions"
662
+ - listitem: "there could: 1 repetitions"
663
+ - listitem: "was thick: 1 repetitions"
664
+ - listitem: "thick and: 1 repetitions"
665
+ - listitem: "Vernon the: 1 repetitions"
666
+ - listitem: "the yellow: 1 repetitions"
667
+ - listitem: "got something: 1 repetitions"
668
+ - listitem: "something!: 1 repetitions"
669
+ - listitem: "Within: 1 repetitions"
670
+ - listitem: "shaking the: 1 repetitions"
671
+ - listitem: "open with: 1 repetitions"
672
+ - listitem: "with one: 1 repetitions"
673
+ - listitem: "faster than: 1 repetitions"
674
+ - listitem: "than a: 1 repetitions"
675
+ - listitem: "stop there: 1 repetitions"
676
+ - listitem: ". Within: 1 repetitions"
677
+ - listitem: "Within seconds: 1 repetitions"
678
+ - listitem: "the grayish: 1 repetitions"
679
+ - listitem: "her throat: 1 repetitions"
680
+ - listitem: "throat and: 1 repetitions"
681
+ - listitem: "They stared: 1 repetitions"
682
+ - listitem: "other,: 1 repetitions"
683
+ - listitem: "father a: 1 repetitions"
684
+ - listitem: "head with: 1 repetitions"
685
+ - listitem: "read that: 1 repetitions"
686
+ - listitem: "stuffing the: 1 repetitions"
687
+ - listitem: "took both: 1 repetitions"
688
+ - listitem: "both Harry: 1 repetitions"
689
+ - listitem: "the scruffs: 1 repetitions"
690
+ - listitem: "threw them: 1 repetitions"
691
+ - listitem: "the keyhole: 1 repetitions"
692
+ - listitem: "could they: 1 repetitions"
693
+ - listitem: "they possibly: 1 repetitions"
694
+ - listitem: "them we: 1 repetitions"
695
+ - listitem: "that dangerous: 1 repetitions"
696
+ - listitem: "did something: 1 repetitions"
697
+ - listitem: "squeezed through: 1 repetitions"
698
+ - listitem: "then forced: 1 repetitions"
699
+ - listitem: "this cupboard: 1 repetitions"
700
+ - listitem: "we think: 1 repetitions"
701
+ - listitem: "Take this: 1 repetitions"
702
+ - listitem: "this stuff: 1 repetitions"
703
+ - listitem: "month-old: 1 repetitions"
704
+ - listitem: "the toys: 1 repetitions"
705
+ - listitem: "and things: 1 repetitions"
706
+ - listitem: "that wouldn: 1 repetitions"
707
+ - listitem: "move everything: 1 repetitions"
708
+ - listitem: "everything he: 1 repetitions"
709
+ - listitem: "to this: 1 repetitions"
710
+ - listitem: "this room: 1 repetitions"
711
+ - listitem: "Nearly everything: 1 repetitions"
712
+ - listitem: "everything in: 1 repetitions"
713
+ - listitem: "The month-old: 1 repetitions"
714
+ - listitem: "month-old video: 1 repetitions"
715
+ - listitem: "foot through: 1 repetitions"
716
+ - listitem: "through when: 1 repetitions"
717
+ - listitem: "; there: 1 repetitions"
718
+ - listitem: "parrot that: 1 repetitions"
719
+ - listitem: "shelf with: 1 repetitions"
720
+ - listitem: ". Other: 1 repetitions"
721
+ - listitem: "Other shelves: 1 repetitions"
722
+ - listitem: "things in: 1 repetitions"
723
+ - listitem: "room that: 1 repetitions"
724
+ - listitem: "though they: 1 repetitions"
725
+ - listitem: "came the: 1 repetitions"
726
+ - listitem: "there ...: 1 repetitions"
727
+ - listitem: "need that: 1 repetitions"
728
+ - listitem: "that room: 1 repetitions"
729
+ - listitem: "given anything: 1 repetitions"
730
+ - listitem: "d rather: 1 repetitions"
731
+ - listitem: "rather be: 1 repetitions"
732
+ - listitem: "cupboard with: 1 repetitions"
733
+ - listitem: "letter than: 1 repetitions"
734
+ - listitem: "than up: 1 repetitions"
735
+ - listitem: "here without: 1 repetitions"
736
+ - listitem: "without it: 1 repetitions"
737
+ - listitem: "thrown: 1 repetitions"
738
+ - listitem: "was rather: 1 repetitions"
739
+ - listitem: "rather quiet: 1 repetitions"
740
+ - listitem: "father with: 1 repetitions"
741
+ - listitem: "and thrown: 1 repetitions"
742
+ - listitem: "thrown his: 1 repetitions"
743
+ - listitem: "tortoise through: 1 repetitions"
744
+ - listitem: "the greenhouse: 1 repetitions"
745
+ - listitem: "was thinking: 1 repetitions"
746
+ - listitem: "other darkly: 1 repetitions"
747
+ - listitem: "banging things: 1 repetitions"
748
+ - listitem: "things with: 1 repetitions"
749
+ - listitem: "\"There: 1 repetitions"
750
+ - listitem: "s another: 1 repetitions"
751
+ - listitem: "The Smallest: 1 repetitions"
752
+ - listitem: "the fact: 1 repetitions"
753
+ - listitem: "fact that: 1 repetitions"
754
+ - listitem: "the neck: 1 repetitions"
755
+ - listitem: "for breath: 1 repetitions"
756
+ - listitem: "breath,: 1 repetitions"
757
+ - listitem: "that meant: 1 repetitions"
758
+ - listitem: "meant they: 1 repetitions"
759
+ - listitem: "sure they: 1 repetitions"
760
+ - listitem: "The repaired: 1 repetitions"
761
+ - listitem: "clock the: 1 repetitions"
762
+ - listitem: "downstairs without: 1 repetitions"
763
+ - listitem: "without turning: 1 repetitions"
764
+ - listitem: "the postman: 1 repetitions"
765
+ - listitem: "on something: 1 repetitions"
766
+ - listitem: "something big: 1 repetitions"
767
+ - listitem: "— something: 1 repetitions"
768
+ - listitem: "something alive: 1 repetitions"
769
+ - listitem: "squashy something: 1 repetitions"
770
+ - listitem: "something had: 1 repetitions"
771
+ - listitem: "the foot: 1 repetitions"
772
+ - listitem: "then told: 1 repetitions"
773
+ - listitem: "see three: 1 repetitions"
774
+ - listitem: "three letters: 1 repetitions"
775
+ - listitem: "tearing the: 1 repetitions"
776
+ - listitem: "work that: 1 repetitions"
777
+ - listitem: "a mouthful: 1 repetitions"
778
+ - listitem: "mouthful of: 1 repetitions"
779
+ - listitem: "they can: 1 repetitions"
780
+ - listitem: "deliver them: 1 repetitions"
781
+ - listitem: "them they: 1 repetitions"
782
+ - listitem: ", these: 1 repetitions"
783
+ - listitem: "nail with: 1 repetitions"
784
+ - listitem: "the piece: 1 repetitions"
785
+ - listitem: "than twelve: 1 repetitions"
786
+ - listitem: "go through: 1 repetitions"
787
+ - listitem: "slot they: 1 repetitions"
788
+ - listitem: "slotted through: 1 repetitions"
789
+ - listitem: "the sides: 1 repetitions"
790
+ - listitem: "forced through: 1 repetitions"
791
+ - listitem: "the small: 1 repetitions"
792
+ - listitem: "the downstairs: 1 repetitions"
793
+ - listitem: "downstairs bathroom: 1 repetitions"
794
+ - listitem: "bathroom.: 1 repetitions"
795
+ - listitem: "Tiptoe Through: 1 repetitions"
796
+ - listitem: "the Tulips: 1 repetitions"
797
+ - listitem: ", things: 1 repetitions"
798
+ - listitem: "things began: 1 repetitions"
799
+ - listitem: "found their: 1 repetitions"
800
+ - listitem: "the two: 1 repetitions"
801
+ - listitem: "eggs that: 1 repetitions"
802
+ - listitem: "that their: 1 repetitions"
803
+ - listitem: "their very: 1 repetitions"
804
+ - listitem: "the post: 1 repetitions"
805
+ - listitem: "the dairy: 1 repetitions"
806
+ - listitem: "shredded the: 1 repetitions"
807
+ - listitem: "earth: 1 repetitions"
808
+ - listitem: "on earth: 1 repetitions"
809
+ - listitem: "earth wants: 1 repetitions"
810
+ - listitem: "you this: 1 repetitions"
811
+ - listitem: "this badly: 1 repetitions"
812
+ - listitem: "the breakfast: 1 repetitions"
813
+ - listitem: "and rather: 1 repetitions"
814
+ - listitem: "rather ill: 1 repetitions"
815
+ - listitem: "reminded them: 1 repetitions"
816
+ - listitem: "them cheerfully: 1 repetitions"
817
+ - listitem: "Something came: 1 repetitions"
818
+ - listitem: ", thirty: 1 repetitions"
819
+ - listitem: "thirty or: 1 repetitions"
820
+ - listitem: "the waist: 1 repetitions"
821
+ - listitem: "threw him: 1 repetitions"
822
+ - listitem: "with their: 1 repetitions"
823
+ - listitem: "their arms: 1 repetitions"
824
+ - listitem: "over their: 1 repetitions"
825
+ - listitem: "hear the: 1 repetitions"
826
+ - listitem: "That does: 1 repetitions"
827
+ - listitem: "some clothes: 1 repetitions"
828
+ - listitem: "clothes.: 1 repetitions"
829
+ - listitem: "dangerous with: 1 repetitions"
830
+ - listitem: "with half: 1 repetitions"
831
+ - listitem: "missing that: 1 repetitions"
832
+ - listitem: "that no: 1 repetitions"
833
+ - listitem: "later they: 1 repetitions"
834
+ - listitem: "wrenched their: 1 repetitions"
835
+ - listitem: "way through: 1 repetitions"
836
+ - listitem: "the boarded-up: 1 repetitions"
837
+ - listitem: "the highway: 1 repetitions"
838
+ - listitem: "father had: 1 repetitions"
839
+ - listitem: "round the: 1 repetitions"
840
+ - listitem: "holding them: 1 repetitions"
841
+ - listitem: "them up: 1 repetitions"
842
+ - listitem: "where they: 1 repetitions"
843
+ - listitem: "then Uncle: 1 repetitions"
844
+ - listitem: "the opposite: 1 repetitions"
845
+ - listitem: "did this: 1 repetitions"
846
+ - listitem: "long without: 1 repetitions"
847
+ - listitem: "without blowing: 1 repetitions"
848
+ - listitem: "the outskirts: 1 repetitions"
849
+ - listitem: "room with: 1 repetitions"
850
+ - listitem: "with twin: 1 repetitions"
851
+ - listitem: "the windowsill: 1 repetitions"
852
+ - listitem: "breakfast the: 1 repetitions"
853
+ - listitem: "the owner: 1 repetitions"
854
+ - listitem: "the hotel: 1 repetitions"
855
+ - listitem: "their table: 1 repetitions"
856
+ - listitem: "these at: 1 repetitions"
857
+ - listitem: "so they: 1 repetitions"
858
+ - listitem: "Cokeworth: 1 repetitions"
859
+ - listitem: "The woman: 1 repetitions"
860
+ - listitem: "take them: 1 repetitions"
861
+ - listitem: "the dining: 1 repetitions"
862
+ - listitem: "them knew: 1 repetitions"
863
+ - listitem: "drove them: 1 repetitions"
864
+ - listitem: "off they: 1 repetitions"
865
+ - listitem: "same thing: 1 repetitions"
866
+ - listitem: "late that: 1 repetitions"
867
+ - listitem: "the coast: 1 repetitions"
868
+ - listitem: "locked them: 1 repetitions"
869
+ - listitem: "somewhere with: 1 repetitions"
870
+ - listitem: "eleventh: 1 repetitions"
871
+ - listitem: "This reminded: 1 repetitions"
872
+ - listitem: "know the: 1 repetitions"
873
+ - listitem: "the week: 1 repetitions"
874
+ - listitem: "then tomorrow: 1 repetitions"
875
+ - listitem: "s eleventh: 1 repetitions"
876
+ - listitem: "eleventh birthday: 1 repetitions"
877
+ - listitem: "birthdays were: 1 repetitions"
878
+ - listitem: "the perfect: 1 repetitions"
879
+ - listitem: "the most: 1 repetitions"
880
+ - listitem: "thing was: 1 repetitions"
881
+ - listitem: "this gentleman: 1 repetitions"
882
+ - listitem: "toothless: 1 repetitions"
883
+ - listitem: "A toothless: 1 repetitions"
884
+ - listitem: "toothless old: 1 repetitions"
885
+ - listitem: "rather wicked: 1 repetitions"
886
+ - listitem: "the iron-gray: 1 repetitions"
887
+ - listitem: "below them: 1 repetitions"
888
+ - listitem: "the boat: 1 repetitions"
889
+ - listitem: "down their: 1 repetitions"
890
+ - listitem: "whipped their: 1 repetitions"
891
+ - listitem: "hours they: 1 repetitions"
892
+ - listitem: "they reached: 1 repetitions"
893
+ - listitem: "led the: 1 repetitions"
894
+ - listitem: "the broken-down: 1 repetitions"
895
+ - listitem: "The inside: 1 repetitions"
896
+ - listitem: "whistled through: 1 repetitions"
897
+ - listitem: "the wooden: 1 repetitions"
898
+ - listitem: "with some: 1 repetitions"
899
+ - listitem: "of those: 1 repetitions"
900
+ - listitem: "thought nobody: 1 repetitions"
901
+ - listitem: "reaching them: 1 repetitions"
902
+ - listitem: "them here: 1 repetitions"
903
+ - listitem: "though the: 1 repetitions"
904
+ - listitem: "the thought: 1 repetitions"
905
+ - listitem: "thought didn: 1 repetitions"
906
+ - listitem: "filthy: 1 repetitions"
907
+ - listitem: "moth-eaten: 1 repetitions"
908
+ - listitem: "thinnest: 1 repetitions"
909
+ - listitem: "the promised: 1 repetitions"
910
+ - listitem: "the high: 1 repetitions"
911
+ - listitem: "splattered the: 1 repetitions"
912
+ - listitem: "rattled the: 1 repetitions"
913
+ - listitem: "the filthy: 1 repetitions"
914
+ - listitem: "filthy windows: 1 repetitions"
915
+ - listitem: "the moth-eaten: 1 repetitions"
916
+ - listitem: "moth-eaten sofa: 1 repetitions"
917
+ - listitem: "the lumpy: 1 repetitions"
918
+ - listitem: "the softest: 1 repetitions"
919
+ - listitem: "the thinnest: 1 repetitions"
920
+ - listitem: "thinnest,: 1 repetitions"
921
+ - listitem: "rumbling with: 1 repetitions"
922
+ - listitem: "with hunger: 1 repetitions"
923
+ - listitem: "of thunder: 1 repetitions"
924
+ - listitem: "thunder that: 1 repetitions"
925
+ - listitem: "that started: 1 repetitions"
926
+ - listitem: "birthday tick: 1 repetitions"
927
+ - listitem: "heard something: 1 repetitions"
928
+ - listitem: "something creak: 1 repetitions"
929
+ - listitem: "hoped the: 1 repetitions"
930
+ - listitem: "Maybe the: 1 repetitions"
931
+ - listitem: "when they: 1 repetitions"
932
+ - listitem: "back that: 1 repetitions"
933
+ - listitem: "Three minutes: 1 repetitions"
934
+ - listitem: "that funny: 1 repetitions"
935
+ - listitem: ". Thirty: 1 repetitions"
936
+ - listitem: "Thirty seconds: 1 repetitions"
937
+ - listitem: "— three: 1 repetitions"
938
+ - listitem: "three ...: 1 repetitions"
939
+ - listitem: "THE KEYS: 1 repetitions"
940
+ - listitem: "They knocked: 1 repetitions"
941
+ - listitem: "the cannon: 1 repetitions"
942
+ - listitem: "now they: 1 repetitions"
943
+ - listitem: "they knew: 1 repetitions"
944
+ - listitem: "the long: 1 repetitions"
945
+ - listitem: "brought with: 1 repetitions"
946
+ - listitem: "with them: 1 repetitions"
947
+ - listitem: "s there: 1 repetitions"
948
+ - listitem: "hit with: 1 repetitions"
949
+ - listitem: "force that: 1 repetitions"
950
+ - listitem: "the doorway: 1 repetitions"
951
+ - listitem: "the hair: 1 repetitions"
952
+ - listitem: "that his: 1 repetitions"
953
+ - listitem: "brushed the: 1 repetitions"
954
+ - listitem: "The noise: 1 repetitions"
955
+ - listitem: "at them: 1 repetitions"
956
+ - listitem: "frozen with: 1 repetitions"
957
+ - listitem: "with fear: 1 repetitions"
958
+ - listitem: "the stranger: 1 repetitions"
959
+ - listitem: "the fierce: 1 repetitions"
960
+ - listitem: "the beetle: 1 repetitions"
961
+ - listitem: "demand that: 1 repetitions"
962
+ - listitem: "jerked the: 1 repetitions"
963
+ - listitem: "the gun: 1 repetitions"
964
+ - listitem: "made another: 1 repetitions"
965
+ - listitem: "another funny: 1 repetitions"
966
+ - listitem: "birthday to: 1 repetitions"
967
+ - listitem: "it with: 1 repetitions"
968
+ - listitem: "with trembling: 1 repetitions"
969
+ - listitem: "cake with: 1 repetitions"
970
+ - listitem: "with Happy: 1 repetitions"
971
+ - listitem: "Birthday Harry: 1 repetitions"
972
+ - listitem: "say thank: 1 repetitions"
973
+ - listitem: "the words: 1 repetitions"
974
+ - listitem: "that tea: 1 repetitions"
975
+ - listitem: "tea then: 1 repetitions"
976
+ - listitem: "bath: 1 repetitions"
977
+ - listitem: "grate with: 1 repetitions"
978
+ - listitem: "the shriveled: 1 repetitions"
979
+ - listitem: "fire there: 1 repetitions"
980
+ - listitem: "hut with: 1 repetitions"
981
+ - listitem: "with flickering: 1 repetitions"
982
+ - listitem: "felt the: 1 repetitions"
983
+ - listitem: "the warmth: 1 repetitions"
984
+ - listitem: "warmth wash: 1 repetitions"
985
+ - listitem: "hot bath: 1 repetitions"
986
+ - listitem: "bath.: 1 repetitions"
987
+ - listitem: "of things: 1 repetitions"
988
+ - listitem: "things out: 1 repetitions"
989
+ - listitem: "liquid that: 1 repetitions"
990
+ - listitem: "Soon the: 1 repetitions"
991
+ - listitem: "a thing: 1 repetitions"
992
+ - listitem: "thing while: 1 repetitions"
993
+ - listitem: "slid the: 1 repetitions"
994
+ - listitem: "the poker: 1 repetitions"
995
+ - listitem: "touch anything: 1 repetitions"
996
+ - listitem: "passed the: 1 repetitions"
997
+ - listitem: "the sausages: 1 repetitions"
998
+ - listitem: "tasted anything: 1 repetitions"
999
+ - listitem: "anything so: 1 repetitions"
1000
+ - listitem: "explain anything: 1 repetitions"
1001
+ - listitem: "mouth with: 1 repetitions"
1002
+ - listitem: "the shadows: 1 repetitions"
1003
+ - listitem: "never thought: 1 repetitions"
1004
+ - listitem: "thought yeh: 1 repetitions"
1005
+ - listitem: "Hagrid thundered: 1 repetitions"
1006
+ - listitem: "thundered.: 1 repetitions"
1007
+ - listitem: "nothin: 1 repetitions"
1008
+ - listitem: "knows nothin: 1 repetitions"
1009
+ - listitem: "nothin': 1 repetitions"
1010
+ - listitem: "ANYTHING?: 1 repetitions"
1011
+ - listitem: "math: 1 repetitions"
1012
+ - listitem: "some things: 1 repetitions"
1013
+ - listitem: "do math: 1 repetitions"
1014
+ - listitem: "math and: 1 repetitions"
1015
+ - listitem: "whispered something: 1 repetitions"
1016
+ - listitem: "something that: 1 repetitions"
1017
+ - listitem: "that sounded: 1 repetitions"
1018
+ - listitem: "were they: 1 repetitions"
1019
+ - listitem: "they?: 1 repetitions"
1020
+ - listitem: "fingers through: 1 repetitions"
1021
+ - listitem: "through his: 1 repetitions"
1022
+ - listitem: "right there: 1 repetitions"
1023
+ - listitem: "boy anything: 1 repetitions"
1024
+ - listitem: "anything!: 1 repetitions"
1025
+ - listitem: "man than: 1 repetitions"
1026
+ - listitem: "than Vernon: 1 repetitions"
1027
+ - listitem: "the furious: 1 repetitions"
1028
+ - listitem: "trembled with: 1 repetitions"
1029
+ - listitem: "with rage: 1 repetitions"
1030
+ - listitem: "was there: 1 repetitions"
1031
+ - listitem: "there!: 1 repetitions"
1032
+ - listitem: "these years: 1 repetitions"
1033
+ - listitem: "the whistling: 1 repetitions"
1034
+ - listitem: "thumpin: 1 repetitions"
1035
+ - listitem: "a thumpin: 1 repetitions"
1036
+ - listitem: "thumpin': 1 repetitions"
1037
+ - listitem: "Hut-on-the-Rock: 1 repetitions"
1038
+ - listitem: "take the: 1 repetitions"
1039
+ - listitem: "the yellowish: 1 repetitions"
1040
+ - listitem: ", Hut-on-the-Rock: 1 repetitions"
1041
+ - listitem: "Hut-on-the-Rock,: 1 repetitions"
1042
+ - listitem: "you that: 1 repetitions"
1043
+ - listitem: "later than: 1 repetitions"
1044
+ - listitem: "than July: 1 repetitions"
1045
+ - listitem: "they await: 1 repetitions"
1046
+ - listitem: "teeth: 1 repetitions"
1047
+ - listitem: "that reminds: 1 repetitions"
1048
+ - listitem: "forehead with: 1 repetitions"
1049
+ - listitem: "with enough: 1 repetitions"
1050
+ - listitem: "yet another: 1 repetitions"
1051
+ - listitem: "another pocket: 1 repetitions"
1052
+ - listitem: ", rather: 1 repetitions"
1053
+ - listitem: "rather ruffled-looking: 1 repetitions"
1054
+ - listitem: "his teeth: 1 repetitions"
1055
+ - listitem: "teeth he: 1 repetitions"
1056
+ - listitem: "note that: 1 repetitions"
1057
+ - listitem: "his things: 1 repetitions"
1058
+ - listitem: "things tomorrow: 1 repetitions"
1059
+ - listitem: "Weather': 1 repetitions"
1060
+ - listitem: "the note: 1 repetitions"
1061
+ - listitem: "threw the: 1 repetitions"
1062
+ - listitem: "though this: 1 repetitions"
1063
+ - listitem: "mouth was: 1 repetitions"
1064
+ - listitem: "the firelight: 1 repetitions"
1065
+ - listitem: "like them: 1 repetitions"
1066
+ - listitem: "that rubbish: 1 repetitions"
1067
+ - listitem: "that and: 1 repetitions"
1068
+ - listitem: "that —: 1 repetitions"
1069
+ - listitem: "that school: 1 repetitions"
1070
+ - listitem: "vacation with: 1 repetitions"
1071
+ - listitem: "my mother: 1 repetitions"
1072
+ - listitem: "Lily this: 1 repetitions"
1073
+ - listitem: "this and: 1 repetitions"
1074
+ - listitem: "Lily that: 1 repetitions"
1075
+ - listitem: "then went: 1 repetitions"
1076
+ - listitem: "this for: 1 repetitions"
1077
+ - listitem: "Then she: 1 repetitions"
1078
+ - listitem: "met that: 1 repetitions"
1079
+ - listitem: "that Potter: 1 repetitions"
1080
+ - listitem: "they left: 1 repetitions"
1081
+ - listitem: "just the: 1 repetitions"
1082
+ - listitem: "landed with: 1 repetitions"
1083
+ - listitem: "with you: 1 repetitions"
1084
+ - listitem: "me they: 1 repetitions"
1085
+ - listitem: "they died: 1 repetitions"
1086
+ - listitem: "angrily that: 1 repetitions"
1087
+ - listitem: "their corner: 1 repetitions"
1088
+ - listitem: "The anger: 1 repetitions"
1089
+ - listitem: "expected this: 1 repetitions"
1090
+ - listitem: "me there: 1 repetitions"
1091
+ - listitem: "there might: 1 repetitions"
1092
+ - listitem: "m the: 1 repetitions"
1093
+ - listitem: "He threw: 1 repetitions"
1094
+ - listitem: "everythin: 1 repetitions"
1095
+ - listitem: "yeh everythin: 1 repetitions"
1096
+ - listitem: "everythin': 1 repetitions"
1097
+ - listitem: "with —: 1 repetitions"
1098
+ - listitem: "— with: 1 repetitions"
1099
+ - listitem: "than worse: 1 repetitions"
1100
+ - listitem: "this —: 1 repetitions"
1101
+ - listitem: "friendly with: 1 repetitions"
1102
+ - listitem: "with strange: 1 repetitions"
1103
+ - listitem: "terrible things: 1 repetitions"
1104
+ - listitem: "anythin: 1 repetitions"
1105
+ - listitem: "their day: 1 repetitions"
1106
+ - listitem: "Suppose the: 1 repetitions"
1107
+ - listitem: "the myst: 1 repetitions"
1108
+ - listitem: "want anythin: 1 repetitions"
1109
+ - listitem: "anythin': 1 repetitions"
1110
+ - listitem: "outta the: 1 repetitions"
1111
+ - listitem: "the village: 1 repetitions"
1112
+ - listitem: "nose with: 1 repetitions"
1113
+ - listitem: "that sad: 1 repetitions"
1114
+ - listitem: "' this: 1 repetitions"
1115
+ - listitem: "thing —: 1 repetitions"
1116
+ - listitem: "by then: 1 repetitions"
1117
+ - listitem: "got that: 1 repetitions"
1118
+ - listitem: "that mark: 1 repetitions"
1119
+ - listitem: "? That: 1 repetitions"
1120
+ - listitem: "the age: 1 repetitions"
1121
+ - listitem: "the McKinnons: 1 repetitions"
1122
+ - listitem: "the Bones: 1 repetitions"
1123
+ - listitem: "the Prewetts: 1 repetitions"
1124
+ - listitem: "again the: 1 repetitions"
1125
+ - listitem: "the blinding: 1 repetitions"
1126
+ - listitem: "clearly than: 1 repetitions"
1127
+ - listitem: "remembered something: 1 repetitions"
1128
+ - listitem: "the ruined: 1 repetitions"
1129
+ - listitem: "ter this: 1 repetitions"
1130
+ - listitem: "this lot: 1 repetitions"
1131
+ - listitem: "accept there: 1 repetitions"
1132
+ - listitem: "s something: 1 repetitions"
1133
+ - listitem: "something strange: 1 repetitions"
1134
+ - listitem: "nothing a: 1 repetitions"
1135
+ - listitem: "this about: 1 repetitions"
1136
+ - listitem: "off without: 1 repetitions"
1137
+ - listitem: "without them: 1 repetitions"
1138
+ - listitem: "all they: 1 repetitions"
1139
+ - listitem: "with these: 1 repetitions"
1140
+ - listitem: "these wizarding: 1 repetitions"
1141
+ - listitem: "Pointing this: 1 repetitions"
1142
+ - listitem: "this at: 1 repetitions"
1143
+ - listitem: ", breathing: 1 repetitions"
1144
+ - listitem: "breathing heavily: 1 repetitions"
1145
+ - listitem: "which this: 1 repetitions"
1146
+ - listitem: "reckon they: 1 repetitions"
1147
+ - listitem: "there somewhere: 1 repetitions"
1148
+ - listitem: "Cause somethin: 1 repetitions"
1149
+ - listitem: "was somethin: 1 repetitions"
1150
+ - listitem: "on that: 1 repetitions"
1151
+ - listitem: "that night: 1 repetitions"
1152
+ - listitem: "but somethin: 1 repetitions"
1153
+ - listitem: "with warmth: 1 repetitions"
1154
+ - listitem: "warmth and: 1 repetitions"
1155
+ - listitem: "t they: 1 repetitions"
1156
+ - listitem: "they been: 1 repetitions"
1157
+ - listitem: "defeated the: 1 repetitions"
1158
+ - listitem: "made things: 1 repetitions"
1159
+ - listitem: "odd thing: 1 repetitions"
1160
+ - listitem: "that had: 1 repetitions"
1161
+ - listitem: "furious with: 1 repetitions"
1162
+ - listitem: "their reach: 1 repetitions"
1163
+ - listitem: "school with: 1 repetitions"
1164
+ - listitem: "that ridiculous: 1 repetitions"
1165
+ - listitem: ", without: 1 repetitions"
1166
+ - listitem: "without even: 1 repetitions"
1167
+ - listitem: "that Hagrid: 1 repetitions"
1168
+ - listitem: "in without: 1 repetitions"
1169
+ - listitem: "read those: 1 repetitions"
1170
+ - listitem: "ter the: 1 repetitions"
1171
+ - listitem: "the finest: 1 repetitions"
1172
+ - listitem: "years there: 1 repetitions"
1173
+ - listitem: "there and: 1 repetitions"
1174
+ - listitem: "with youngsters: 1 repetitions"
1175
+ - listitem: "he thundered: 1 repetitions"
1176
+ - listitem: "thundered,: 1 repetitions"
1177
+ - listitem: "brought the: 1 repetitions"
1178
+ - listitem: "the umbrella: 1 repetitions"
1179
+ - listitem: "down through: 1 repetitions"
1180
+ - listitem: "spot with: 1 repetitions"
1181
+ - listitem: "on them: 1 repetitions"
1182
+ - listitem: "poking through: 1 repetitions"
1183
+ - listitem: "other room: 1 repetitions"
1184
+ - listitem: "anyway there: 1 repetitions"
1185
+ - listitem: "mention that: 1 repetitions"
1186
+ - listitem: "that ter: 1 repetitions"
1187
+ - listitem: "the reasons: 1 repetitions"
1188
+ - listitem: "the job: 1 repetitions"
1189
+ - listitem: "truth: 1 repetitions"
1190
+ - listitem: "third: 1 repetitions"
1191
+ - listitem: "yeh the: 1 repetitions"
1192
+ - listitem: "the truth: 1 repetitions"
1193
+ - listitem: "truth.: 1 repetitions"
1194
+ - listitem: "me third: 1 repetitions"
1195
+ - listitem: "third year: 1 repetitions"
1196
+ - listitem: "They snapped: 1 repetitions"
1197
+ - listitem: "' everything: 1 repetitions"
1198
+ - listitem: "everything.: 1 repetitions"
1199
+ - listitem: "thick black: 1 repetitions"
1200
+ - listitem: "under that: 1 repetitions"
1201
+ - listitem: "early the: 1 repetitions"
1202
+ - listitem: "say that: 2 repetitions"
1203
+ - listitem: "the last: 2 repetitions"
1204
+ - listitem: "in anything: 2 repetitions"
1205
+ - listitem: ", although: 2 repetitions"
1206
+ - listitem: "the usual: 2 repetitions"
1207
+ - listitem: "the neighbors: 2 repetitions"
1208
+ - listitem: "they also: 2 repetitions"
1209
+ - listitem: "and their: 2 repetitions"
1210
+ - listitem: "was nothing: 2 repetitions"
1211
+ - listitem: "the country: 2 repetitions"
1212
+ - listitem: "the window: 2 repetitions"
1213
+ - listitem: "left the: 2 repetitions"
1214
+ - listitem: "of something: 2 repetitions"
1215
+ - listitem: "— then: 2 repetitions"
1216
+ - listitem: "but there: 2 repetitions"
1217
+ - listitem: "been thinking: 2 repetitions"
1218
+ - listitem: "watched the: 2 repetitions"
1219
+ - listitem: "that said: 2 repetitions"
1220
+ - listitem: "that day: 2 repetitions"
1221
+ - listitem: "something else: 2 repetitions"
1222
+ - listitem: "that this: 2 repetitions"
1223
+ - listitem: "drills that: 2 repetitions"
1224
+ - listitem: "that morning: 2 repetitions"
1225
+ - listitem: "see the: 2 repetitions"
1226
+ - listitem: "what they: 2 repetitions"
1227
+ - listitem: "their son: 2 repetitions"
1228
+ - listitem: "say something: 2 repetitions"
1229
+ - listitem: "to them: 2 repetitions"
1230
+ - listitem: "but thought: 2 repetitions"
1231
+ - listitem: "thinking ...: 2 repetitions"
1232
+ - listitem: "sure there: 2 repetitions"
1233
+ - listitem: "that afternoon: 2 repetitions"
1234
+ - listitem: "voice that: 2 repetitions"
1235
+ - listitem: "that made: 2 repetitions"
1236
+ - listitem: "the spot: 2 repetitions"
1237
+ - listitem: "imagining things: 2 repetitions"
1238
+ - listitem: "things,: 2 repetitions"
1239
+ - listitem: "the tabby: 2 repetitions"
1240
+ - listitem: "Was this: 2 repetitions"
1241
+ - listitem: "together,: 2 repetitions"
1242
+ - listitem: "with her: 2 repetitions"
1243
+ - listitem: "weather: 2 repetitions"
1244
+ - listitem: ". Although: 2 repetitions"
1245
+ - listitem: "about that: 2 repetitions"
1246
+ - listitem: "throat: 2 repetitions"
1247
+ - listitem: "the news: 2 repetitions"
1248
+ - listitem: "was something: 2 repetitions"
1249
+ - listitem: "heard the: 2 repetitions"
1250
+ - listitem: "bathroom: 2 repetitions"
1251
+ - listitem: "still there: 2 repetitions"
1252
+ - listitem: "though it: 2 repetitions"
1253
+ - listitem: "out that: 2 repetitions"
1254
+ - listitem: "think he: 2 repetitions"
1255
+ - listitem: "about them: 2 repetitions"
1256
+ - listitem: "them and: 2 repetitions"
1257
+ - listitem: "anything that: 2 repetitions"
1258
+ - listitem: "before the: 2 repetitions"
1259
+ - listitem: "like this: 2 repetitions"
1260
+ - listitem: "this man: 2 repetitions"
1261
+ - listitem: "the silver: 2 repetitions"
1262
+ - listitem: "other end: 2 repetitions"
1263
+ - listitem: "The nearest: 2 repetitions"
1264
+ - listitem: "out with: 2 repetitions"
1265
+ - listitem: "a rather: 2 repetitions"
1266
+ - listitem: "exactly the: 2 repetitions"
1267
+ - listitem: "noticed something: 2 repetitions"
1268
+ - listitem: "on their: 2 repetitions"
1269
+ - listitem: "know that: 2 repetitions"
1270
+ - listitem: "threw a: 2 repetitions"
1271
+ - listitem: "re the: 2 repetitions"
1272
+ - listitem: "the rumors: 2 repetitions"
1273
+ - listitem: "reached the: 2 repetitions"
1274
+ - listitem: "the point: 2 repetitions"
1275
+ - listitem: "the real: 2 repetitions"
1276
+ - listitem: "and that: 2 repetitions"
1277
+ - listitem: "the things: 2 repetitions"
1278
+ - listitem: "things to: 2 repetitions"
1279
+ - listitem: "beneath: 2 repetitions"
1280
+ - listitem: "you think: 2 repetitions"
1281
+ - listitem: "think you: 2 repetitions"
1282
+ - listitem: "— there: 2 repetitions"
1283
+ - listitem: "something he: 2 repetitions"
1284
+ - listitem: "all that: 2 repetitions"
1285
+ - listitem: "mouth,: 2 repetitions"
1286
+ - listitem: "then said: 2 repetitions"
1287
+ - listitem: "is the: 2 repetitions"
1288
+ - listitem: "think it: 2 repetitions"
1289
+ - listitem: "Hagrid with: 2 repetitions"
1290
+ - listitem: "this?: 2 repetitions"
1291
+ - listitem: "the right: 2 repetitions"
1292
+ - listitem: "that?: 2 repetitions"
1293
+ - listitem: "around them: 2 repetitions"
1294
+ - listitem: "were there: 2 repetitions"
1295
+ - listitem: "the bundle: 2 repetitions"
1296
+ - listitem: "get this: 2 repetitions"
1297
+ - listitem: "wake the: 2 repetitions"
1298
+ - listitem: "live with: 2 repetitions"
1299
+ - listitem: "the low: 2 repetitions"
1300
+ - listitem: "onto the: 2 repetitions"
1301
+ - listitem: "and with: 2 repetitions"
1302
+ - listitem: "spend the: 2 repetitions"
1303
+ - listitem: "at this: 2 repetitions"
1304
+ - listitem: "the photographs: 2 repetitions"
1305
+ - listitem: "father,: 2 repetitions"
1306
+ - listitem: "the bacon: 2 repetitions"
1307
+ - listitem: "birthday.: 2 repetitions"
1308
+ - listitem: ", nothing: 2 repetitions"
1309
+ - listitem: "because the: 2 repetitions"
1310
+ - listitem: "the stairs: 2 repetitions"
1311
+ - listitem: "the racing: 2 repetitions"
1312
+ - listitem: "old clothes: 2 repetitions"
1313
+ - listitem: "only thing: 2 repetitions"
1314
+ - listitem: "and thick: 2 repetitions"
1315
+ - listitem: "his thick: 2 repetitions"
1316
+ - listitem: "thick,: 2 repetitions"
1317
+ - listitem: "said that: 2 repetitions"
1318
+ - listitem: "mother and: 2 repetitions"
1319
+ - listitem: "and father: 2 repetitions"
1320
+ - listitem: "less than: 2 repetitions"
1321
+ - listitem: "turned the: 2 repetitions"
1322
+ - listitem: "that all: 2 repetitions"
1323
+ - listitem: "Dudley thought: 2 repetitions"
1324
+ - listitem: "thirty ...: 2 repetitions"
1325
+ - listitem: "grabbed the: 2 repetitions"
1326
+ - listitem: "then.: 2 repetitions"
1327
+ - listitem: "worth: 2 repetitions"
1328
+ - listitem: "this.: 2 repetitions"
1329
+ - listitem: "something very: 2 repetitions"
1330
+ - listitem: "they weren: 2 repetitions"
1331
+ - listitem: "That cars: 2 repetitions"
1332
+ - listitem: "anything he: 2 repetitions"
1333
+ - listitem: "the gap: 2 repetitions"
1334
+ - listitem: "with him: 2 repetitions"
1335
+ - listitem: "before they: 2 repetitions"
1336
+ - listitem: "in that: 2 repetitions"
1337
+ - listitem: "do anything: 2 repetitions"
1338
+ - listitem: "anything,: 2 repetitions"
1339
+ - listitem: "telling the: 2 repetitions"
1340
+ - listitem: "clothes and: 2 repetitions"
1341
+ - listitem: "other hand: 2 repetitions"
1342
+ - listitem: "the school: 2 repetitions"
1343
+ - listitem: "behind the: 2 repetitions"
1344
+ - listitem: "the big: 2 repetitions"
1345
+ - listitem: "the wind: 2 repetitions"
1346
+ - listitem: "they don: 2 repetitions"
1347
+ - listitem: "one thing: 2 repetitions"
1348
+ - listitem: "about anything: 2 repetitions"
1349
+ - listitem: "Harry thought: 2 repetitions"
1350
+ - listitem: "They ate: 2 repetitions"
1351
+ - listitem: "another one: 2 repetitions"
1352
+ - listitem: "slithering: 2 repetitions"
1353
+ - listitem: "found the: 2 repetitions"
1354
+ - listitem: "worse than: 2 repetitions"
1355
+ - listitem: "where the: 2 repetitions"
1356
+ - listitem: "visit the: 2 repetitions"
1357
+ - listitem: "with Harry: 2 repetitions"
1358
+ - listitem: "sure the: 2 repetitions"
1359
+ - listitem: "The boa: 2 repetitions"
1360
+ - listitem: "; the: 2 repetitions"
1361
+ - listitem: "The great: 2 repetitions"
1362
+ - listitem: "The keeper: 2 repetitions"
1363
+ - listitem: "time they: 2 repetitions"
1364
+ - listitem: "up with: 2 repetitions"
1365
+ - listitem: "the green: 2 repetitions"
1366
+ - listitem: "them in: 2 repetitions"
1367
+ - listitem: "without a: 2 repetitions"
1368
+ - listitem: "all these: 2 repetitions"
1369
+ - listitem: "thought this: 2 repetitions"
1370
+ - listitem: "\" Then: 2 repetitions"
1371
+ - listitem: "the family: 2 repetitions"
1372
+ - listitem: "while the: 2 repetitions"
1373
+ - listitem: "They heard: 2 repetitions"
1374
+ - listitem: "the Smelting: 2 repetitions"
1375
+ - listitem: "that looked: 2 repetitions"
1376
+ - listitem: "the address: 2 repetitions"
1377
+ - listitem: "the bill: 2 repetitions"
1378
+ - listitem: "the postcard: 2 repetitions"
1379
+ - listitem: "forgotten that: 2 repetitions"
1380
+ - listitem: "that letter: 2 repetitions"
1381
+ - listitem: "their necks: 2 repetitions"
1382
+ - listitem: "them into: 2 repetitions"
1383
+ - listitem: "the crack: 2 repetitions"
1384
+ - listitem: "If they: 2 repetitions"
1385
+ - listitem: "deep breaths: 2 repetitions"
1386
+ - listitem: "breaths and: 2 repetitions"
1387
+ - listitem: "about this: 2 repetitions"
1388
+ - listitem: "things that: 2 repetitions"
1389
+ - listitem: "the bed: 2 repetitions"
1390
+ - listitem: "with that: 2 repetitions"
1391
+ - listitem: "When the: 2 repetitions"
1392
+ - listitem: "There': 2 repetitions"
1393
+ - listitem: "And this: 2 repetitions"
1394
+ - listitem: "the dark: 2 repetitions"
1395
+ - listitem: "Petunia through: 2 repetitions"
1396
+ - listitem: "through a: 2 repetitions"
1397
+ - listitem: "they couldn: 2 repetitions"
1398
+ - listitem: "their way: 2 repetitions"
1399
+ - listitem: "their faces: 2 repetitions"
1400
+ - listitem: "They drove: 2 repetitions"
1401
+ - listitem: "inside the: 2 repetitions"
1402
+ - listitem: "his birthdays: 2 repetitions"
1403
+ - listitem: "thin package: 2 repetitions"
1404
+ - listitem: "hands together: 2 repetitions"
1405
+ - listitem: "the empty: 2 repetitions"
1406
+ - listitem: "those letters: 2 repetitions"
1407
+ - listitem: "they got: 2 repetitions"
1408
+ - listitem: "Then —: 2 repetitions"
1409
+ - listitem: "saw that: 2 repetitions"
1410
+ - listitem: "that you: 2 repetitions"
1411
+ - listitem: "threw it: 2 repetitions"
1412
+ - listitem: "happy birthday: 2 repetitions"
1413
+ - listitem: "warmth: 2 repetitions"
1414
+ - listitem: "filled the: 2 repetitions"
1415
+ - listitem: "the pockets: 2 repetitions"
1416
+ - listitem: "— this: 2 repetitions"
1417
+ - listitem: "Harry with: 2 repetitions"
1418
+ - listitem: ". With: 2 repetitions"
1419
+ - listitem: "to that: 2 repetitions"
1420
+ - listitem: "the fire: 2 repetitions"
1421
+ - listitem: "this wizard: 2 repetitions"
1422
+ - listitem: "' then: 2 repetitions"
1423
+ - listitem: "knew they: 2 repetitions"
1424
+ - listitem: ". That: 2 repetitions"
1425
+ - listitem: "' that: 2 repetitions"
1426
+ - listitem: "out there: 2 repetitions"
1427
+ - listitem: "the greatest: 2 repetitions"
1428
+ - listitem: "I think: 2 repetitions"
1429
+ - listitem: "think I: 2 repetitions"
1430
+ - listitem: "that they: 3 repetitions"
1431
+ - listitem: ", thank: 3 repetitions"
1432
+ - listitem: "thank you: 3 repetitions"
1433
+ - listitem: "were the: 3 repetitions"
1434
+ - listitem: "with such: 3 repetitions"
1435
+ - listitem: "although he: 3 repetitions"
1436
+ - listitem: "in their: 3 repetitions"
1437
+ - listitem: "think they: 3 repetitions"
1438
+ - listitem: "knew that: 3 repetitions"
1439
+ - listitem: "this boy: 3 repetitions"
1440
+ - listitem: "; they: 3 repetitions"
1441
+ - listitem: "that.: 3 repetitions"
1442
+ - listitem: "there wasn: 3 repetitions"
1443
+ - listitem: "think of: 3 repetitions"
1444
+ - listitem: "read the: 3 repetitions"
1445
+ - listitem: "the sign: 3 repetitions"
1446
+ - listitem: "put the: 3 repetitions"
1447
+ - listitem: "get that: 3 repetitions"
1448
+ - listitem: "the edge: 3 repetitions"
1449
+ - listitem: "of these: 3 repetitions"
1450
+ - listitem: "together.: 3 repetitions"
1451
+ - listitem: "across the: 3 repetitions"
1452
+ - listitem: "the people: 3 repetitions"
1453
+ - listitem: "those: 3 repetitions"
1454
+ - listitem: "realized that: 3 repetitions"
1455
+ - listitem: "the man: 3 repetitions"
1456
+ - listitem: ", this: 3 repetitions"
1457
+ - listitem: "the middle: 3 repetitions"
1458
+ - listitem: "had the: 3 repetitions"
1459
+ - listitem: "anything to: 3 repetitions"
1460
+ - listitem: "Only the: 3 repetitions"
1461
+ - listitem: "the place: 3 repetitions"
1462
+ - listitem: "the name: 3 repetitions"
1463
+ - listitem: "they went: 3 repetitions"
1464
+ - listitem: "That evening: 3 repetitions"
1465
+ - listitem: ", thin: 3 repetitions"
1466
+ - listitem: "of their: 3 repetitions"
1467
+ - listitem: "the very: 3 repetitions"
1468
+ - listitem: "find the: 3 repetitions"
1469
+ - listitem: "— that: 3 repetitions"
1470
+ - listitem: "them all: 3 repetitions"
1471
+ - listitem: "the best: 3 repetitions"
1472
+ - listitem: "the top: 3 repetitions"
1473
+ - listitem: "the motorcycle: 3 repetitions"
1474
+ - listitem: "off the: 3 repetitions"
1475
+ - listitem: "there?: 3 repetitions"
1476
+ - listitem: "s that: 3 repetitions"
1477
+ - listitem: "the night: 3 repetitions"
1478
+ - listitem: "out the: 3 repetitions"
1479
+ - listitem: "to their: 3 repetitions"
1480
+ - listitem: "so that: 3 repetitions"
1481
+ - listitem: "there had: 3 repetitions"
1482
+ - listitem: "the sound: 3 repetitions"
1483
+ - listitem: "the cupboard: 3 repetitions"
1484
+ - listitem: "the second: 3 repetitions"
1485
+ - listitem: "the rest: 3 repetitions"
1486
+ - listitem: "father.: 3 repetitions"
1487
+ - listitem: "at that: 3 repetitions"
1488
+ - listitem: "that moment: 3 repetitions"
1489
+ - listitem: "the telephone: 3 repetitions"
1490
+ - listitem: "the roof: 3 repetitions"
1491
+ - listitem: "telling them: 3 repetitions"
1492
+ - listitem: "be with: 3 repetitions"
1493
+ - listitem: "with Dudley: 3 repetitions"
1494
+ - listitem: "anything.: 3 repetitions"
1495
+ - listitem: "they seemed: 3 repetitions"
1496
+ - listitem: "that it: 3 repetitions"
1497
+ - listitem: "the reptile: 3 repetitions"
1498
+ - listitem: "in there: 3 repetitions"
1499
+ - listitem: "against the: 3 repetitions"
1500
+ - listitem: "this is: 3 repetitions"
1501
+ - listitem: "the ceiling: 3 repetitions"
1502
+ - listitem: "both of: 3 repetitions"
1503
+ - listitem: "them as: 3 repetitions"
1504
+ - listitem: "the biggest: 3 repetitions"
1505
+ - listitem: "the end: 3 repetitions"
1506
+ - listitem: "each other: 3 repetitions"
1507
+ - listitem: ", both: 3 repetitions"
1508
+ - listitem: "the doormat: 3 repetitions"
1509
+ - listitem: "the envelope: 3 repetitions"
1510
+ - listitem: "the head: 3 repetitions"
1511
+ - listitem: "slammed the: 3 repetitions"
1512
+ - listitem: "behind them: 3 repetitions"
1513
+ - listitem: "mother,: 3 repetitions"
1514
+ - listitem: "this time: 3 repetitions"
1515
+ - listitem: "sure that: 3 repetitions"
1516
+ - listitem: "the fireplace: 3 repetitions"
1517
+ - listitem: "thing happened: 3 repetitions"
1518
+ - listitem: "thundered: 3 repetitions"
1519
+ - listitem: "the storm: 3 repetitions"
1520
+ - listitem: "his mouth: 3 repetitions"
1521
+ - listitem: "the world: 3 repetitions"
1522
+ - listitem: "somethin: 3 repetitions"
1523
+ - listitem: "somethin': 3 repetitions"
1524
+ - listitem: "although: 4 repetitions"
1525
+ - listitem: "they didn: 4 repetitions"
1526
+ - listitem: "if the: 4 repetitions"
1527
+ - listitem: "like that: 4 repetitions"
1528
+ - listitem: "the lights: 4 repetitions"
1529
+ - listitem: "the road: 4 repetitions"
1530
+ - listitem: "— the: 4 repetitions"
1531
+ - listitem: "than he: 4 repetitions"
1532
+ - listitem: "these people: 4 repetitions"
1533
+ - listitem: "for something: 4 repetitions"
1534
+ - listitem: "something to: 4 repetitions"
1535
+ - listitem: "there were: 4 repetitions"
1536
+ - listitem: "outside the: 4 repetitions"
1537
+ - listitem: "the ground: 4 repetitions"
1538
+ - listitem: "the living: 4 repetitions"
1539
+ - listitem: "something.: 4 repetitions"
1540
+ - listitem: "the Muggles: 4 repetitions"
1541
+ - listitem: "the moment: 4 repetitions"
1542
+ - listitem: "is that: 4 repetitions"
1543
+ - listitem: "And they: 4 repetitions"
1544
+ - listitem: "s the: 4 repetitions"
1545
+ - listitem: "toward the: 4 repetitions"
1546
+ - listitem: "open the: 4 repetitions"
1547
+ - listitem: "mother.: 4 repetitions"
1548
+ - listitem: "there,: 4 repetitions"
1549
+ - listitem: "the day: 4 repetitions"
1550
+ - listitem: "s birthday: 4 repetitions"
1551
+ - listitem: "thirty: 4 repetitions"
1552
+ - listitem: ", with: 4 repetitions"
1553
+ - listitem: "the floor: 4 repetitions"
1554
+ - listitem: "thinking about: 4 repetitions"
1555
+ - listitem: "breath: 4 repetitions"
1556
+ - listitem: "the rock: 4 repetitions"
1557
+ - listitem: "the hut: 4 repetitions"
1558
+ - listitem: "the sea: 4 repetitions"
1559
+ - listitem: "thank: 5 repetitions"
1560
+ - listitem: "was that: 5 repetitions"
1561
+ - listitem: "t think: 5 repetitions"
1562
+ - listitem: "they had: 5 repetitions"
1563
+ - listitem: "Then he: 5 repetitions"
1564
+ - listitem: ", though: 5 repetitions"
1565
+ - listitem: "thought he: 5 repetitions"
1566
+ - listitem: "\"The: 5 repetitions"
1567
+ - listitem: "as the: 5 repetitions"
1568
+ - listitem: "that,: 5 repetitions"
1569
+ - listitem: "all this: 5 repetitions"
1570
+ - listitem: "the whole: 5 repetitions"
1571
+ - listitem: "though she: 5 repetitions"
1572
+ - listitem: ". Then: 5 repetitions"
1573
+ - listitem: "three: 5 repetitions"
1574
+ - listitem: "the table: 5 repetitions"
1575
+ - listitem: "that Harry: 5 repetitions"
1576
+ - listitem: "thick: 5 repetitions"
1577
+ - listitem: "that Dudley: 5 repetitions"
1578
+ - listitem: "this,: 5 repetitions"
1579
+ - listitem: "the back: 5 repetitions"
1580
+ - listitem: "get the: 5 repetitions"
1581
+ - listitem: "and threw: 5 repetitions"
1582
+ - listitem: "thin: 6 repetitions"
1583
+ - listitem: "but they: 6 repetitions"
1584
+ - listitem: "they could: 6 repetitions"
1585
+ - listitem: "about the: 6 repetitions"
1586
+ - listitem: "to think: 6 repetitions"
1587
+ - listitem: "he thought: 6 repetitions"
1588
+ - listitem: "clothes: 6 repetitions"
1589
+ - listitem: "together: 6 repetitions"
1590
+ - listitem: ". This: 6 repetitions"
1591
+ - listitem: "do with: 6 repetitions"
1592
+ - listitem: "as they: 6 repetitions"
1593
+ - listitem: "there.: 6 repetitions"
1594
+ - listitem: "but the: 6 repetitions"
1595
+ - listitem: "the air: 6 repetitions"
1596
+ - listitem: "mouth: 6 repetitions"
1597
+ - listitem: "his father: 6 repetitions"
1598
+ - listitem: "the room: 6 repetitions"
1599
+ - listitem: "the hall: 6 repetitions"
1600
+ - listitem: "the time: 6 repetitions"
1601
+ - listitem: "the zoo: 6 repetitions"
1602
+ - listitem: "the boy: 7 repetitions"
1603
+ - listitem: ". There: 7 repetitions"
1604
+ - listitem: "the owls: 7 repetitions"
1605
+ - listitem: "that was: 7 repetitions"
1606
+ - listitem: "said the: 7 repetitions"
1607
+ - listitem: "the other: 7 repetitions"
1608
+ - listitem: "threw: 7 repetitions"
1609
+ - listitem: "then,: 7 repetitions"
1610
+ - listitem: "under the: 7 repetitions"
1611
+ - listitem: "the sofa: 7 repetitions"
1612
+ - listitem: "' the: 7 repetitions"
1613
+ - listitem: "everything: 8 repetitions"
1614
+ - listitem: ", there: 8 repetitions"
1615
+ - listitem: "the corner: 8 repetitions"
1616
+ - listitem: "around the: 8 repetitions"
1617
+ - listitem: "up the: 8 repetitions"
1618
+ - listitem: "this was: 8 repetitions"
1619
+ - listitem: ", that: 8 repetitions"
1620
+ - listitem: "the front: 8 repetitions"
1621
+ - listitem: "both: 8 repetitions"
1622
+ - listitem: "rather: 8 repetitions"
1623
+ - listitem: "\"That: 8 repetitions"
1624
+ - listitem: "father: 8 repetitions"
1625
+ - listitem: "for the: 8 repetitions"
1626
+ - listitem: "though he: 8 repetitions"
1627
+ - listitem: "the mail: 8 repetitions"
1628
+ - listitem: "that the: 9 repetitions"
1629
+ - listitem: "the wall: 9 repetitions"
1630
+ - listitem: "that he: 9 repetitions"
1631
+ - listitem: "these: 9 repetitions"
1632
+ - listitem: "the only: 9 repetitions"
1633
+ - listitem: "down the: 9 repetitions"
1634
+ - listitem: "without: 9 repetitions"
1635
+ - listitem: "birthday: 9 repetitions"
1636
+ - listitem: "the car: 9 repetitions"
1637
+ - listitem: "/another: \\d+ repetitions/"
1638
+ - listitem: "/nothing: \\d+ repetitions/"
1639
+ - listitem: "/them,: \\d+ repetitions/"
1640
+ - listitem: "/the same: \\d+ repetitions/"
1641
+ - listitem: "/with the: \\d+ repetitions/"
1642
+ - listitem: "/by the: \\d+ repetitions/"
1643
+ - listitem: "/the way: \\d+ repetitions/"
1644
+ - listitem: "/the Potters: \\d+ repetitions/"
1645
+ - listitem: "/with his: \\d+ repetitions/"
1646
+ - listitem: "/the next: \\d+ repetitions/"
1647
+ - listitem: "/his mother: \\d+ repetitions/"
1648
+ - listitem: "/and then: \\d+ repetitions/"
1649
+ - listitem: "/the glass: \\d+ repetitions/"
1650
+ - listitem: "/the street: \\d+ repetitions/"
1651
+ - listitem: "/the first: \\d+ repetitions/"
1652
+ - listitem: "/all the: \\d+ repetitions/"
1653
+ - listitem: "/and the: \\d+ repetitions/"
1654
+ - listitem: "/, they: \\d+ repetitions/"
1655
+ - listitem: "/other: \\d+ repetitions/"
1656
+ - listitem: "/mother: \\d+ repetitions/"
1657
+ - listitem: "/the snake: \\d+ repetitions/"
1658
+ - listitem: "/the house: \\d+ repetitions/"
1659
+ - listitem: "/from the: \\d+ repetitions/"
1660
+ - listitem: "/the door: \\d+ repetitions/"
1661
+ - listitem: "/them\\.: \\d+ repetitions/"
1662
+ - listitem: "/the giant: \\d+ repetitions/"
1663
+ - listitem: "/the kitchen: \\d+ repetitions/"
1664
+ - listitem: "/they were: \\d+ repetitions/"
1665
+ - listitem: "/was the: \\d+ repetitions/"
1666
+ - listitem: "/over the: \\d+ repetitions/"
1667
+ - listitem: "/of them: \\d+ repetitions/"
1668
+ - listitem: "/than: \\d+ repetitions/"
1669
+ - listitem: "/that': \\d+ repetitions/"
1670
+ - listitem: "/through the: \\d+ repetitions/"
1671
+ - listitem: "/the cat: \\d+ repetitions/"
1672
+ - listitem: "/\\. They: \\d+ repetitions/"
1673
+ - listitem: "/as though: \\d+ repetitions/"
1674
+ - listitem: "/the letter: \\d+ repetitions/"
1675
+ - listitem: "/with a: \\d+ repetitions/"
1676
+ - listitem: "/there was: \\d+ repetitions/"
1677
+ - listitem: "/through: \\d+ repetitions/"
1678
+ - listitem: "/thought: \\d+ repetitions/"
1679
+ - listitem: "/they': \\d+ repetitions/"
1680
+ - listitem: "/anything: \\d+ repetitions/"
1681
+ - listitem: "/think: \\d+ repetitions/"
1682
+ - listitem: "/though: \\d+ repetitions/"
1683
+ - listitem: "/, the: \\d+ repetitions/"
1684
+ - listitem: "/to the: \\d+ repetitions/"
1685
+ - listitem: "/into the: \\d+ repetitions/"
1686
+ - listitem: "/\\. The: \\d+ repetitions/"
1687
+ - listitem: "/things: \\d+ repetitions/"
1688
+ - listitem: "/something: \\d+ repetitions/"
1689
+ - listitem: "/their: \\d+ repetitions/"
1690
+ - listitem: "/then: \\d+ repetitions/"
1691
+ - listitem: "/the Dursleys: \\d+ repetitions/"
1692
+ - listitem: "/at the: \\d+ repetitions/"
1693
+ - listitem: "/of the: \\d+ repetitions/"
1694
+ - listitem: "/in the: \\d+ repetitions/"
1695
+ - listitem: "/there: \\d+ repetitions/"
1696
+ - listitem: "/this: \\d+ repetitions/"
1697
+ - listitem: "/them: \\d+ repetitions/"
1698
+ - listitem: "/on the: \\d+ repetitions/"
1699
+ - listitem: "/with: \\d+ repetitions/"
1700
+ - listitem: "/they: \\d+ repetitions/"
1701
+ - listitem: "/that: \\d+ repetitions/"
1702
+ - listitem: "/the: \\d+ repetitions/"
static/tests/test-classic-1-lite.koboldai.net.spec.ts-snapshots/test-classic-1--asc-n-words-ngram.txt ADDED
@@ -0,0 +1,1702 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - text: /'th', \d+ occurrences/
2
+ - listitem: "/the: \\d+ repetitions/"
3
+ - listitem: "/that: \\d+ repetitions/"
4
+ - listitem: "/they: \\d+ repetitions/"
5
+ - listitem: "thank: 5 repetitions"
6
+ - listitem: "/anything: \\d+ repetitions/"
7
+ - listitem: "/with: \\d+ repetitions/"
8
+ - listitem: "although: 4 repetitions"
9
+ - listitem: "thin: 6 repetitions"
10
+ - listitem: "/their: \\d+ repetitions/"
11
+ - listitem: "/there: \\d+ repetitions/"
12
+ - listitem: "everything: 8 repetitions"
13
+ - listitem: "/think: \\d+ repetitions/"
14
+ - listitem: "good-for-nothing: 1 repetitions"
15
+ - listitem: "/this: \\d+ repetitions/"
16
+ - listitem: "/another: \\d+ repetitions/"
17
+ - listitem: "/nothing: \\d+ repetitions/"
18
+ - listitem: "/things: \\d+ repetitions/"
19
+ - listitem: "/them: \\d+ repetitions/"
20
+ - listitem: "throwing: 1 repetitions"
21
+ - listitem: "/something: \\d+ repetitions/"
22
+ - listitem: "/then: \\d+ repetitions/"
23
+ - listitem: "/thought: \\d+ repetitions/"
24
+ - listitem: "clothes: 6 repetitions"
25
+ - listitem: "these: 9 repetitions"
26
+ - listitem: "together: 6 repetitions"
27
+ - listitem: "/than: \\d+ repetitions/"
28
+ - listitem: "ninth: 1 repetitions"
29
+ - listitem: "/though: \\d+ repetitions/"
30
+ - listitem: "open-mouthed: 1 repetitions"
31
+ - listitem: "those: 3 repetitions"
32
+ - listitem: "weather: 2 repetitions"
33
+ - listitem: "weatherman: 1 repetitions"
34
+ - listitem: "throat: 2 repetitions"
35
+ - listitem: "/through: \\d+ repetitions/"
36
+ - listitem: "whether: 1 repetitions"
37
+ - listitem: "bathroom: 2 repetitions"
38
+ - listitem: "both: 8 repetitions"
39
+ - listitem: "/other: \\d+ repetitions/"
40
+ - listitem: "rather: 8 repetitions"
41
+ - listitem: "threw: 7 repetitions"
42
+ - listitem: "neither: 1 repetitions"
43
+ - listitem: "beneath: 2 repetitions"
44
+ - listitem: "/mother: \\d+ repetitions/"
45
+ - listitem: "mouth: 6 repetitions"
46
+ - listitem: "underneath: 1 repetitions"
47
+ - listitem: "leather: 1 repetitions"
48
+ - listitem: "three: 5 repetitions"
49
+ - listitem: "without: 9 repetitions"
50
+ - listitem: "father: 8 repetitions"
51
+ - listitem: "birthday: 9 repetitions"
52
+ - listitem: "thick: 5 repetitions"
53
+ - listitem: "smoothly: 1 repetitions"
54
+ - listitem: "Thirty-six: 1 repetitions"
55
+ - listitem: "thirty-seven: 1 repetitions"
56
+ - listitem: "thirty: 4 repetitions"
57
+ - listitem: "Thirty-nine: 1 repetitions"
58
+ - listitem: "worth: 2 repetitions"
59
+ - listitem: "either: 1 repetitions"
60
+ - listitem: "slithering: 2 repetitions"
61
+ - listitem: "pythons: 1 repetitions"
62
+ - listitem: "throughout: 1 repetitions"
63
+ - listitem: "Thanksss: 1 repetitions"
64
+ - listitem: "death: 1 repetitions"
65
+ - listitem: "Within: 1 repetitions"
66
+ - listitem: "breath: 4 repetitions"
67
+ - listitem: "month-old: 1 repetitions"
68
+ - listitem: "thrown: 1 repetitions"
69
+ - listitem: "earth: 1 repetitions"
70
+ - listitem: "Cokeworth: 1 repetitions"
71
+ - listitem: "eleventh: 1 repetitions"
72
+ - listitem: "toothless: 1 repetitions"
73
+ - listitem: "filthy: 1 repetitions"
74
+ - listitem: "moth-eaten: 1 repetitions"
75
+ - listitem: "thinnest: 1 repetitions"
76
+ - listitem: "thundered: 3 repetitions"
77
+ - listitem: "warmth: 2 repetitions"
78
+ - listitem: "bath: 1 repetitions"
79
+ - listitem: "nothin: 1 repetitions"
80
+ - listitem: "math: 1 repetitions"
81
+ - listitem: "thumpin: 1 repetitions"
82
+ - listitem: "Hut-on-the-Rock: 1 repetitions"
83
+ - listitem: "teeth: 1 repetitions"
84
+ - listitem: "everythin: 1 repetitions"
85
+ - listitem: "anythin: 1 repetitions"
86
+ - listitem: "somethin: 3 repetitions"
87
+ - listitem: "truth: 1 repetitions"
88
+ - listitem: "third: 1 repetitions"
89
+ - listitem: "the boy: 7 repetitions"
90
+ - listitem: "say that: 2 repetitions"
91
+ - listitem: "that they: 3 repetitions"
92
+ - listitem: "/they were: \\d+ repetitions/"
93
+ - listitem: ", thank: 3 repetitions"
94
+ - listitem: "thank you: 3 repetitions"
95
+ - listitem: "/\\. They: \\d+ repetitions/"
96
+ - listitem: "were the: 3 repetitions"
97
+ - listitem: "the last: 2 repetitions"
98
+ - listitem: "in anything: 2 repetitions"
99
+ - listitem: "anything strange: 1 repetitions"
100
+ - listitem: "because they: 1 repetitions"
101
+ - listitem: "they just: 1 repetitions"
102
+ - listitem: "hold with: 1 repetitions"
103
+ - listitem: "with such: 3 repetitions"
104
+ - listitem: "/was the: \\d+ repetitions/"
105
+ - listitem: "the director: 1 repetitions"
106
+ - listitem: "man with: 1 repetitions"
107
+ - listitem: "with hardly: 1 repetitions"
108
+ - listitem: ", although: 2 repetitions"
109
+ - listitem: "although he: 3 repetitions"
110
+ - listitem: "was thin: 1 repetitions"
111
+ - listitem: "thin and: 1 repetitions"
112
+ - listitem: "twice the: 1 repetitions"
113
+ - listitem: "the usual: 2 repetitions"
114
+ - listitem: "/on the: \\d+ repetitions/"
115
+ - listitem: "the neighbors: 2 repetitions"
116
+ - listitem: "/\\. The: \\d+ repetitions/"
117
+ - listitem: "/the Dursleys: \\d+ repetitions/"
118
+ - listitem: "in their: 3 repetitions"
119
+ - listitem: "their opinion: 1 repetitions"
120
+ - listitem: "opinion there: 1 repetitions"
121
+ - listitem: "/there was: \\d+ repetitions/"
122
+ - listitem: "had everything: 1 repetitions"
123
+ - listitem: "everything they: 1 repetitions"
124
+ - listitem: "they wanted: 1 repetitions"
125
+ - listitem: "but they: 6 repetitions"
126
+ - listitem: "they also: 2 repetitions"
127
+ - listitem: "and their: 2 repetitions"
128
+ - listitem: "their greatest: 1 repetitions"
129
+ - listitem: "was that: 5 repetitions"
130
+ - listitem: "that somebody: 1 repetitions"
131
+ - listitem: "they didn: 4 repetitions"
132
+ - listitem: "t think: 5 repetitions"
133
+ - listitem: "think they: 3 repetitions"
134
+ - listitem: "they could: 6 repetitions"
135
+ - listitem: "about the: 6 repetitions"
136
+ - listitem: "/the Potters: \\d+ repetitions/"
137
+ - listitem: "they hadn: 1 repetitions"
138
+ - listitem: "her good-for-nothing: 1 repetitions"
139
+ - listitem: "good-for-nothing husband: 1 repetitions"
140
+ - listitem: "to think: 6 repetitions"
141
+ - listitem: "think what: 1 repetitions"
142
+ - listitem: "what the: 1 repetitions"
143
+ - listitem: "if the: 4 repetitions"
144
+ - listitem: "/in the: \\d+ repetitions/"
145
+ - listitem: "/the street: \\d+ repetitions/"
146
+ - listitem: "knew that: 3 repetitions"
147
+ - listitem: "that the: 9 repetitions"
148
+ - listitem: "they had: 5 repetitions"
149
+ - listitem: "this boy: 3 repetitions"
150
+ - listitem: "was another: 1 repetitions"
151
+ - listitem: "another good: 1 repetitions"
152
+ - listitem: "keeping the: 1 repetitions"
153
+ - listitem: "; they: 3 repetitions"
154
+ - listitem: "mixing with: 1 repetitions"
155
+ - listitem: "/with a: \\d+ repetitions/"
156
+ - listitem: "like that: 4 repetitions"
157
+ - listitem: "that.: 3 repetitions"
158
+ - listitem: "the dull: 1 repetitions"
159
+ - listitem: ", there: 8 repetitions"
160
+ - listitem: "was nothing: 2 repetitions"
161
+ - listitem: "nothing about: 1 repetitions"
162
+ - listitem: "the cloudy: 1 repetitions"
163
+ - listitem: "suggest that: 1 repetitions"
164
+ - listitem: "that strange: 1 repetitions"
165
+ - listitem: "mysterious things: 1 repetitions"
166
+ - listitem: "things would: 1 repetitions"
167
+ - listitem: "/over the: \\d+ repetitions/"
168
+ - listitem: "the country: 2 repetitions"
169
+ - listitem: "/of them: \\d+ repetitions/"
170
+ - listitem: "them noticed: 1 repetitions"
171
+ - listitem: "past the: 1 repetitions"
172
+ - listitem: "the window: 2 repetitions"
173
+ - listitem: "the cheek: 1 repetitions"
174
+ - listitem: "and throwing: 1 repetitions"
175
+ - listitem: "throwing his: 1 repetitions"
176
+ - listitem: "/at the: \\d+ repetitions/"
177
+ - listitem: "the wall: 9 repetitions"
178
+ - listitem: "left the: 2 repetitions"
179
+ - listitem: "/the house: \\d+ repetitions/"
180
+ - listitem: "the corner: 8 repetitions"
181
+ - listitem: "/of the: \\d+ repetitions/"
182
+ - listitem: "street that: 1 repetitions"
183
+ - listitem: "that he: 9 repetitions"
184
+ - listitem: "noticed the: 1 repetitions"
185
+ - listitem: "/the first: \\d+ repetitions/"
186
+ - listitem: "of something: 2 repetitions"
187
+ - listitem: "something peculiar: 1 repetitions"
188
+ - listitem: "— then: 2 repetitions"
189
+ - listitem: "Then he: 5 repetitions"
190
+ - listitem: ". There: 7 repetitions"
191
+ - listitem: "but there: 2 repetitions"
192
+ - listitem: "there wasn: 3 repetitions"
193
+ - listitem: "been thinking: 2 repetitions"
194
+ - listitem: "think of: 3 repetitions"
195
+ - listitem: "the lights: 4 repetitions"
196
+ - listitem: "/the cat: \\d+ repetitions/"
197
+ - listitem: "around the: 8 repetitions"
198
+ - listitem: "up the: 8 repetitions"
199
+ - listitem: "the road: 4 repetitions"
200
+ - listitem: "watched the: 2 repetitions"
201
+ - listitem: "read the: 3 repetitions"
202
+ - listitem: "the sign: 3 repetitions"
203
+ - listitem: "sign that: 1 repetitions"
204
+ - listitem: "that said: 2 repetitions"
205
+ - listitem: "put the: 3 repetitions"
206
+ - listitem: "he thought: 6 repetitions"
207
+ - listitem: "thought of: 1 repetitions"
208
+ - listitem: "of nothing: 1 repetitions"
209
+ - listitem: "nothing except: 1 repetitions"
210
+ - listitem: "get that: 3 repetitions"
211
+ - listitem: "that day: 2 repetitions"
212
+ - listitem: "the edge: 3 repetitions"
213
+ - listitem: "by something: 1 repetitions"
214
+ - listitem: "something else: 2 repetitions"
215
+ - listitem: "noticing that: 1 repetitions"
216
+ - listitem: "that there: 1 repetitions"
217
+ - listitem: "there seemed: 1 repetitions"
218
+ - listitem: "funny clothes: 1 repetitions"
219
+ - listitem: "clothes —: 1 repetitions"
220
+ - listitem: "— the: 4 repetitions"
221
+ - listitem: "the getups: 1 repetitions"
222
+ - listitem: "supposed this: 1 repetitions"
223
+ - listitem: "this was: 8 repetitions"
224
+ - listitem: "the steering: 1 repetitions"
225
+ - listitem: "of these: 3 repetitions"
226
+ - listitem: "these weirdos: 1 repetitions"
227
+ - listitem: "excitedly together: 1 repetitions"
228
+ - listitem: "together.: 3 repetitions"
229
+ - listitem: "see that: 1 repetitions"
230
+ - listitem: "that a: 1 repetitions"
231
+ - listitem: "them weren: 1 repetitions"
232
+ - listitem: ", that: 8 repetitions"
233
+ - listitem: "that man: 1 repetitions"
234
+ - listitem: "older than: 1 repetitions"
235
+ - listitem: "than he: 4 repetitions"
236
+ - listitem: "! The: 1 repetitions"
237
+ - listitem: "The nerve: 1 repetitions"
238
+ - listitem: "But then: 1 repetitions"
239
+ - listitem: "then it: 1 repetitions"
240
+ - listitem: "Dursley that: 1 repetitions"
241
+ - listitem: "that this: 2 repetitions"
242
+ - listitem: "— these: 1 repetitions"
243
+ - listitem: "these people: 4 repetitions"
244
+ - listitem: "for something: 4 repetitions"
245
+ - listitem: "something ...: 1 repetitions"
246
+ - listitem: "that would: 1 repetitions"
247
+ - listitem: "The traffic: 1 repetitions"
248
+ - listitem: "the Grunnings: 1 repetitions"
249
+ - listitem: "sat with: 1 repetitions"
250
+ - listitem: "/with his: \\d+ repetitions/"
251
+ - listitem: "/to the: \\d+ repetitions/"
252
+ - listitem: "the ninth: 1 repetitions"
253
+ - listitem: "ninth floor: 1 repetitions"
254
+ - listitem: "drills that: 2 repetitions"
255
+ - listitem: "that morning: 2 repetitions"
256
+ - listitem: "see the: 2 repetitions"
257
+ - listitem: "the owls: 7 repetitions"
258
+ - listitem: ", though: 5 repetitions"
259
+ - listitem: "though people: 1 repetitions"
260
+ - listitem: "they pointed: 1 repetitions"
261
+ - listitem: "gazed open-mouthed: 1 repetitions"
262
+ - listitem: "open-mouthed as: 1 repetitions"
263
+ - listitem: "them had: 1 repetitions"
264
+ - listitem: "thought he: 5 repetitions"
265
+ - listitem: "across the: 3 repetitions"
266
+ - listitem: "/from the: \\d+ repetitions/"
267
+ - listitem: "the bakery: 1 repetitions"
268
+ - listitem: "the people: 3 repetitions"
269
+ - listitem: "them next: 1 repetitions"
270
+ - listitem: "the baker: 1 repetitions"
271
+ - listitem: "eyed them: 1 repetitions"
272
+ - listitem: "them angrily: 1 repetitions"
273
+ - listitem: "they made: 1 repetitions"
274
+ - listitem: ". This: 6 repetitions"
275
+ - listitem: "This bunch: 1 repetitions"
276
+ - listitem: "past them: 1 repetitions"
277
+ - listitem: "/them,: \\d+ repetitions/"
278
+ - listitem: "what they: 2 repetitions"
279
+ - listitem: "\"The: 5 repetitions"
280
+ - listitem: "/that': \\d+ repetitions/"
281
+ - listitem: ", their: 1 repetitions"
282
+ - listitem: "their son: 2 repetitions"
283
+ - listitem: "the whisperers: 1 repetitions"
284
+ - listitem: "say something: 2 repetitions"
285
+ - listitem: "something to: 4 repetitions"
286
+ - listitem: "to them: 2 repetitions"
287
+ - listitem: "but thought: 2 repetitions"
288
+ - listitem: "thought better: 1 repetitions"
289
+ - listitem: "the receiver: 1 repetitions"
290
+ - listitem: ", thinking: 1 repetitions"
291
+ - listitem: "thinking ...: 2 repetitions"
292
+ - listitem: "sure there: 2 repetitions"
293
+ - listitem: "there were: 4 repetitions"
294
+ - listitem: "seen the: 1 repetitions"
295
+ - listitem: "that ...: 1 repetitions"
296
+ - listitem: "/all the: \\d+ repetitions/"
297
+ - listitem: "/the same: \\d+ repetitions/"
298
+ - listitem: ", those: 1 repetitions"
299
+ - listitem: "those people: 1 repetitions"
300
+ - listitem: "that afternoon: 2 repetitions"
301
+ - listitem: "the building: 1 repetitions"
302
+ - listitem: "worried that: 1 repetitions"
303
+ - listitem: "outside the: 4 repetitions"
304
+ - listitem: "/the door: \\d+ repetitions/"
305
+ - listitem: "as the: 5 repetitions"
306
+ - listitem: "the tiny: 1 repetitions"
307
+ - listitem: "realized that: 3 repetitions"
308
+ - listitem: "the man: 3 repetitions"
309
+ - listitem: "the ground: 4 repetitions"
310
+ - listitem: "the contrary: 1 repetitions"
311
+ - listitem: "voice that: 2 repetitions"
312
+ - listitem: "that made: 2 repetitions"
313
+ - listitem: "for nothing: 1 repetitions"
314
+ - listitem: "nothing could: 1 repetitions"
315
+ - listitem: ", this: 3 repetitions"
316
+ - listitem: "this happy: 1 repetitions"
317
+ - listitem: "/and the: \\d+ repetitions/"
318
+ - listitem: "the old: 1 repetitions"
319
+ - listitem: "the middle: 3 repetitions"
320
+ - listitem: "the spot: 2 repetitions"
321
+ - listitem: "also thought: 1 repetitions"
322
+ - listitem: "whatever that: 1 repetitions"
323
+ - listitem: "that was: 7 repetitions"
324
+ - listitem: "imagining things: 2 repetitions"
325
+ - listitem: "things,: 2 repetitions"
326
+ - listitem: "/into the: \\d+ repetitions/"
327
+ - listitem: "the driveway: 1 repetitions"
328
+ - listitem: "/, the: \\d+ repetitions/"
329
+ - listitem: "first thing: 1 repetitions"
330
+ - listitem: "thing he: 1 repetitions"
331
+ - listitem: "the tabby: 2 repetitions"
332
+ - listitem: "spotted that: 1 repetitions"
333
+ - listitem: "had the: 3 repetitions"
334
+ - listitem: "Was this: 2 repetitions"
335
+ - listitem: "this normal: 1 repetitions"
336
+ - listitem: "himself together: 1 repetitions"
337
+ - listitem: "together,: 2 repetitions"
338
+ - listitem: "mention anything: 1 repetitions"
339
+ - listitem: "anything to: 3 repetitions"
340
+ - listitem: "problems with: 1 repetitions"
341
+ - listitem: "with her: 2 repetitions"
342
+ - listitem: "the living: 4 repetitions"
343
+ - listitem: "catch the: 1 repetitions"
344
+ - listitem: "the evening: 1 repetitions"
345
+ - listitem: "reported that: 1 repetitions"
346
+ - listitem: "the nation: 1 repetitions"
347
+ - listitem: ". Although: 2 repetitions"
348
+ - listitem: "Although owls: 1 repetitions"
349
+ - listitem: "there have: 1 repetitions"
350
+ - listitem: "these birds: 1 repetitions"
351
+ - listitem: "why the: 1 repetitions"
352
+ - listitem: "changed their: 1 repetitions"
353
+ - listitem: "their sleeping: 1 repetitions"
354
+ - listitem: "The newscaster: 1 repetitions"
355
+ - listitem: "McGuffin with: 1 repetitions"
356
+ - listitem: "/with the: \\d+ repetitions/"
357
+ - listitem: "the weather: 1 repetitions"
358
+ - listitem: "weather.: 1 repetitions"
359
+ - listitem: "said the: 7 repetitions"
360
+ - listitem: "the weatherman: 1 repetitions"
361
+ - listitem: "weatherman,: 1 repetitions"
362
+ - listitem: "about that: 2 repetitions"
363
+ - listitem: "that,: 5 repetitions"
364
+ - listitem: "Only the: 3 repetitions"
365
+ - listitem: "owls that: 1 repetitions"
366
+ - listitem: "that have: 1 repetitions"
367
+ - listitem: "me that: 1 repetitions"
368
+ - listitem: "that instead: 1 repetitions"
369
+ - listitem: "the rain: 1 repetitions"
370
+ - listitem: "/, they: \\d+ repetitions/"
371
+ - listitem: "/they': \\d+ repetitions/"
372
+ - listitem: "the place: 3 repetitions"
373
+ - listitem: "his throat: 1 repetitions"
374
+ - listitem: "throat nervously: 1 repetitions"
375
+ - listitem: "they normally: 1 repetitions"
376
+ - listitem: "the news: 2 repetitions"
377
+ - listitem: "and there: 1 repetitions"
378
+ - listitem: "just thought: 1 repetitions"
379
+ - listitem: "thought ...: 1 repetitions"
380
+ - listitem: "was something: 2 repetitions"
381
+ - listitem: "do with: 6 repetitions"
382
+ - listitem: "with ...: 1 repetitions"
383
+ - listitem: "tea through: 1 repetitions"
384
+ - listitem: "through pursed: 1 repetitions"
385
+ - listitem: "wondered whether: 1 repetitions"
386
+ - listitem: "whether he: 1 repetitions"
387
+ - listitem: "heard the: 2 repetitions"
388
+ - listitem: "the name: 3 repetitions"
389
+ - listitem: "\"Their: 1 repetitions"
390
+ - listitem: "say another: 1 repetitions"
391
+ - listitem: "another word: 1 repetitions"
392
+ - listitem: "the subject: 1 repetitions"
393
+ - listitem: "as they: 6 repetitions"
394
+ - listitem: "they went: 3 repetitions"
395
+ - listitem: "the bathroom: 1 repetitions"
396
+ - listitem: "bathroom,: 1 repetitions"
397
+ - listitem: "the bedroom: 1 repetitions"
398
+ - listitem: "the front: 8 repetitions"
399
+ - listitem: "still there: 2 repetitions"
400
+ - listitem: "there.: 6 repetitions"
401
+ - listitem: "/as though: \\d+ repetitions/"
402
+ - listitem: "though it: 2 repetitions"
403
+ - listitem: "something.: 4 repetitions"
404
+ - listitem: "things?: 1 repetitions"
405
+ - listitem: "all this: 5 repetitions"
406
+ - listitem: "this have: 1 repetitions"
407
+ - listitem: "have anything: 1 repetitions"
408
+ - listitem: "out that: 2 repetitions"
409
+ - listitem: "think he: 2 repetitions"
410
+ - listitem: "comforting thought: 1 repetitions"
411
+ - listitem: "thought before: 1 repetitions"
412
+ - listitem: "That evening: 3 repetitions"
413
+ - listitem: "for them: 1 repetitions"
414
+ - listitem: "them to: 1 repetitions"
415
+ - listitem: "Petunia thought: 1 repetitions"
416
+ - listitem: "thought about: 1 repetitions"
417
+ - listitem: "about them: 2 repetitions"
418
+ - listitem: "them and: 2 repetitions"
419
+ - listitem: "their kind: 1 repetitions"
420
+ - listitem: "anything that: 2 repetitions"
421
+ - listitem: "that might: 1 repetitions"
422
+ - listitem: "affect them: 1 repetitions"
423
+ - listitem: "/them\\.: \\d+ repetitions/"
424
+ - listitem: "but the: 6 repetitions"
425
+ - listitem: "the far: 1 repetitions"
426
+ - listitem: "/the next: \\d+ repetitions/"
427
+ - listitem: "before the: 2 repetitions"
428
+ - listitem: "corner the: 1 repetitions"
429
+ - listitem: "have thought: 1 repetitions"
430
+ - listitem: "Nothing like: 1 repetitions"
431
+ - listitem: "like this: 2 repetitions"
432
+ - listitem: "this man: 2 repetitions"
433
+ - listitem: ", thin: 3 repetitions"
434
+ - listitem: "thin,: 1 repetitions"
435
+ - listitem: "/by the: \\d+ repetitions/"
436
+ - listitem: "the silver: 2 repetitions"
437
+ - listitem: "were both: 1 repetitions"
438
+ - listitem: "both long: 1 repetitions"
439
+ - listitem: "cloak that: 1 repetitions"
440
+ - listitem: "that swept: 1 repetitions"
441
+ - listitem: "swept the: 1 repetitions"
442
+ - listitem: "where everything: 1 repetitions"
443
+ - listitem: "everything from: 1 repetitions"
444
+ - listitem: "the other: 7 repetitions"
445
+ - listitem: "other end: 2 repetitions"
446
+ - listitem: "the sight: 1 repetitions"
447
+ - listitem: "the air: 6 repetitions"
448
+ - listitem: "The nearest: 2 repetitions"
449
+ - listitem: "out with: 2 repetitions"
450
+ - listitem: "clicked the: 1 repetitions"
451
+ - listitem: "the Put-Outer: 1 repetitions"
452
+ - listitem: "until the: 1 repetitions"
453
+ - listitem: "the only: 9 repetitions"
454
+ - listitem: "the whole: 5 repetitions"
455
+ - listitem: "the distance: 1 repetitions"
456
+ - listitem: "the eyes: 1 repetitions"
457
+ - listitem: "of their: 3 repetitions"
458
+ - listitem: "their window: 1 repetitions"
459
+ - listitem: "they wouldn: 1 repetitions"
460
+ - listitem: "see anything: 1 repetitions"
461
+ - listitem: "the pavement: 1 repetitions"
462
+ - listitem: "slipped the: 1 repetitions"
463
+ - listitem: "the Put-: 1 repetitions"
464
+ - listitem: "down the: 9 repetitions"
465
+ - listitem: "a rather: 2 repetitions"
466
+ - listitem: "rather severe-looking: 1 repetitions"
467
+ - listitem: "exactly the: 2 repetitions"
468
+ - listitem: "the shape: 1 repetitions"
469
+ - listitem: "the markings: 1 repetitions"
470
+ - listitem: "markings the: 1 repetitions"
471
+ - listitem: "d think: 1 repetitions"
472
+ - listitem: "even the: 1 repetitions"
473
+ - listitem: "the Muggles: 4 repetitions"
474
+ - listitem: "noticed something: 2 repetitions"
475
+ - listitem: "something': 1 repetitions"
476
+ - listitem: "on their: 2 repetitions"
477
+ - listitem: "their news: 1 repetitions"
478
+ - listitem: "bet that: 1 repetitions"
479
+ - listitem: "blame them: 1 repetitions"
480
+ - listitem: "know that: 2 repetitions"
481
+ - listitem: "But that: 1 repetitions"
482
+ - listitem: "Muggle clothes: 1 repetitions"
483
+ - listitem: "clothes,: 1 repetitions"
484
+ - listitem: "She threw: 1 repetitions"
485
+ - listitem: "threw a: 2 repetitions"
486
+ - listitem: "though hoping: 1 repetitions"
487
+ - listitem: "her something: 1 repetitions"
488
+ - listitem: "something,: 1 repetitions"
489
+ - listitem: "fine thing: 1 repetitions"
490
+ - listitem: "thing it: 1 repetitions"
491
+ - listitem: "the very: 3 repetitions"
492
+ - listitem: "be thankful: 1 repetitions"
493
+ - listitem: "thankful for: 1 repetitions"
494
+ - listitem: "m rather: 1 repetitions"
495
+ - listitem: "rather fond: 1 repetitions"
496
+ - listitem: "though she: 5 repetitions"
497
+ - listitem: "think this: 1 repetitions"
498
+ - listitem: "the moment: 4 repetitions"
499
+ - listitem: "this You-: 1 repetitions"
500
+ - listitem: "re the: 2 repetitions"
501
+ - listitem: "use them: 1 repetitions"
502
+ - listitem: "are nothing: 1 repetitions"
503
+ - listitem: "nothing next: 1 repetitions"
504
+ - listitem: "the rumors: 2 repetitions"
505
+ - listitem: "rumors that: 1 repetitions"
506
+ - listitem: "that are: 1 repetitions"
507
+ - listitem: "seemed that: 1 repetitions"
508
+ - listitem: "that Professor: 1 repetitions"
509
+ - listitem: "reached the: 2 repetitions"
510
+ - listitem: "the point: 2 repetitions"
511
+ - listitem: "the real: 2 repetitions"
512
+ - listitem: "for neither: 1 repetitions"
513
+ - listitem: "neither as: 1 repetitions"
514
+ - listitem: "Dumbledore with: 1 repetitions"
515
+ - listitem: "plain that: 1 repetitions"
516
+ - listitem: "that whatever: 1 repetitions"
517
+ - listitem: "choosing another: 1 repetitions"
518
+ - listitem: "another lemon: 1 repetitions"
519
+ - listitem: "is that: 4 repetitions"
520
+ - listitem: "that last: 1 repetitions"
521
+ - listitem: "find the: 3 repetitions"
522
+ - listitem: "that Lily: 1 repetitions"
523
+ - listitem: "— that: 3 repetitions"
524
+ - listitem: "the shoulder: 1 repetitions"
525
+ - listitem: "\"That: 8 repetitions"
526
+ - listitem: "kill the: 1 repetitions"
527
+ - listitem: "kill that: 1 repetitions"
528
+ - listitem: "that little: 1 repetitions"
529
+ - listitem: "that when: 1 repetitions"
530
+ - listitem: "and that: 2 repetitions"
531
+ - listitem: "the things: 2 repetitions"
532
+ - listitem: "things to: 2 repetitions"
533
+ - listitem: "eyes beneath: 1 repetitions"
534
+ - listitem: "beneath her: 1 repetitions"
535
+ - listitem: "though,: 1 repetitions"
536
+ - listitem: "/the way: \\d+ repetitions/"
537
+ - listitem: "mean the: 1 repetitions"
538
+ - listitem: "watching them: 1 repetitions"
539
+ - listitem: "them all: 3 repetitions"
540
+ - listitem: "And they: 4 repetitions"
541
+ - listitem: "got this: 1 repetitions"
542
+ - listitem: "this son: 1 repetitions"
543
+ - listitem: "/his mother: \\d+ repetitions/"
544
+ - listitem: "mother all: 1 repetitions"
545
+ - listitem: "s the: 4 repetitions"
546
+ - listitem: "the best: 3 repetitions"
547
+ - listitem: "explain everything: 1 repetitions"
548
+ - listitem: "everything to: 1 repetitions"
549
+ - listitem: "written them: 1 repetitions"
550
+ - listitem: "them a: 1 repetitions"
551
+ - listitem: "you think: 2 repetitions"
552
+ - listitem: "think you: 2 repetitions"
553
+ - listitem: "this in: 1 repetitions"
554
+ - listitem: "? These: 1 repetitions"
555
+ - listitem: "the future: 1 repetitions"
556
+ - listitem: "— there: 2 repetitions"
557
+ - listitem: "there will: 1 repetitions"
558
+ - listitem: "the top: 3 repetitions"
559
+ - listitem: "something he: 2 repetitions"
560
+ - listitem: "all that: 2 repetitions"
561
+ - listitem: "that until: 1 repetitions"
562
+ - listitem: "her mouth: 1 repetitions"
563
+ - listitem: "mouth,: 2 repetitions"
564
+ - listitem: "/and then: \\d+ repetitions/"
565
+ - listitem: "then said: 2 repetitions"
566
+ - listitem: "is the: 2 repetitions"
567
+ - listitem: "she thought: 1 repetitions"
568
+ - listitem: "Harry underneath: 1 repetitions"
569
+ - listitem: "underneath it: 1 repetitions"
570
+ - listitem: "think it: 2 repetitions"
571
+ - listitem: "Hagrid with: 2 repetitions"
572
+ - listitem: "with something: 1 repetitions"
573
+ - listitem: "something as: 1 repetitions"
574
+ - listitem: "as this: 1 repetitions"
575
+ - listitem: "this?: 2 repetitions"
576
+ - listitem: "with my: 1 repetitions"
577
+ - listitem: "the right: 2 repetitions"
578
+ - listitem: "that?: 2 repetitions"
579
+ - listitem: "broken the: 1 repetitions"
580
+ - listitem: "the silence: 1 repetitions"
581
+ - listitem: "around them: 2 repetitions"
582
+ - listitem: "they looked: 1 repetitions"
583
+ - listitem: "they both: 1 repetitions"
584
+ - listitem: "both looked: 1 repetitions"
585
+ - listitem: "the sky: 1 repetitions"
586
+ - listitem: "the motorcycle: 3 repetitions"
587
+ - listitem: "nothing to: 1 repetitions"
588
+ - listitem: "hands the: 1 repetitions"
589
+ - listitem: "the size: 1 repetitions"
590
+ - listitem: "their leather: 1 repetitions"
591
+ - listitem: "leather boots: 1 repetitions"
592
+ - listitem: "that motorcycle: 1 repetitions"
593
+ - listitem: "/the giant: \\d+ repetitions/"
594
+ - listitem: "off the: 3 repetitions"
595
+ - listitem: "were there: 2 repetitions"
596
+ - listitem: "there?: 3 repetitions"
597
+ - listitem: "the bundle: 2 repetitions"
598
+ - listitem: "forehead they: 1 repetitions"
599
+ - listitem: "that where: 1 repetitions"
600
+ - listitem: "have that: 1 repetitions"
601
+ - listitem: "that scar: 1 repetitions"
602
+ - listitem: "do something: 1 repetitions"
603
+ - listitem: "something about: 1 repetitions"
604
+ - listitem: "knee that: 1 repetitions"
605
+ - listitem: "that is: 1 repetitions"
606
+ - listitem: "the London: 1 repetitions"
607
+ - listitem: "get this: 2 repetitions"
608
+ - listitem: "this over: 1 repetitions"
609
+ - listitem: "over with: 1 repetitions"
610
+ - listitem: "with.: 1 repetitions"
611
+ - listitem: "toward the: 4 repetitions"
612
+ - listitem: ". Then: 5 repetitions"
613
+ - listitem: "then,: 7 repetitions"
614
+ - listitem: "wake the: 2 repetitions"
615
+ - listitem: "live with: 2 repetitions"
616
+ - listitem: "with Muggles: 1 repetitions"
617
+ - listitem: "the arm: 1 repetitions"
618
+ - listitem: "the low: 2 repetitions"
619
+ - listitem: "then came: 1 repetitions"
620
+ - listitem: "other two: 1 repetitions"
621
+ - listitem: "minute the: 1 repetitions"
622
+ - listitem: "the three: 1 repetitions"
623
+ - listitem: "three of: 1 repetitions"
624
+ - listitem: "them stood: 1 repetitions"
625
+ - listitem: "the little: 1 repetitions"
626
+ - listitem: "the twinkling: 1 repetitions"
627
+ - listitem: "light that: 1 repetitions"
628
+ - listitem: "that usually: 1 repetitions"
629
+ - listitem: "s that: 3 repetitions"
630
+ - listitem: "join the: 1 repetitions"
631
+ - listitem: "the celebrations: 1 repetitions"
632
+ - listitem: "this bike: 1 repetitions"
633
+ - listitem: "onto the: 2 repetitions"
634
+ - listitem: "kicked the: 1 repetitions"
635
+ - listitem: "the engine: 1 repetitions"
636
+ - listitem: "; with: 1 repetitions"
637
+ - listitem: "the night: 3 repetitions"
638
+ - listitem: "out the: 3 repetitions"
639
+ - listitem: "to their: 3 repetitions"
640
+ - listitem: "their street: 1 repetitions"
641
+ - listitem: "so that: 3 repetitions"
642
+ - listitem: "that Privet: 1 repetitions"
643
+ - listitem: "the step: 1 repetitions"
644
+ - listitem: "and with: 2 repetitions"
645
+ - listitem: "ruffled the: 1 repetitions"
646
+ - listitem: "the neat: 1 repetitions"
647
+ - listitem: "under the: 7 repetitions"
648
+ - listitem: "the inky: 1 repetitions"
649
+ - listitem: "astonishing things: 1 repetitions"
650
+ - listitem: "blankets without: 1 repetitions"
651
+ - listitem: "without waking: 1 repetitions"
652
+ - listitem: "/the letter: \\d+ repetitions/"
653
+ - listitem: "open the: 4 repetitions"
654
+ - listitem: "the milk: 1 repetitions"
655
+ - listitem: "nor that: 1 repetitions"
656
+ - listitem: "spend the: 2 repetitions"
657
+ - listitem: "that at: 1 repetitions"
658
+ - listitem: "at this: 2 repetitions"
659
+ - listitem: "this very: 1 repetitions"
660
+ - listitem: "up their: 1 repetitions"
661
+ - listitem: "their glasses: 1 repetitions"
662
+ - listitem: "THE VANASHIG: 1 repetitions"
663
+ - listitem: "since the: 1 repetitions"
664
+ - listitem: "find their: 1 repetitions"
665
+ - listitem: "their nephew: 1 repetitions"
666
+ - listitem: "The sun: 1 repetitions"
667
+ - listitem: "the brass: 1 repetitions"
668
+ - listitem: "into their: 1 repetitions"
669
+ - listitem: "their living: 1 repetitions"
670
+ - listitem: "seen that: 1 repetitions"
671
+ - listitem: "that fateful: 1 repetitions"
672
+ - listitem: "the photographs: 2 repetitions"
673
+ - listitem: "the mantelpiece: 1 repetitions"
674
+ - listitem: "there had: 3 repetitions"
675
+ - listitem: "now the: 1 repetitions"
676
+ - listitem: "the fair: 1 repetitions"
677
+ - listitem: "game with: 1 repetitions"
678
+ - listitem: "his father: 6 repetitions"
679
+ - listitem: "father,: 2 repetitions"
680
+ - listitem: "mother.: 4 repetitions"
681
+ - listitem: "the room: 6 repetitions"
682
+ - listitem: "that another: 1 repetitions"
683
+ - listitem: "another boy: 1 repetitions"
684
+ - listitem: "there,: 4 repetitions"
685
+ - listitem: "made the: 1 repetitions"
686
+ - listitem: "the day: 4 repetitions"
687
+ - listitem: "woke with: 1 repetitions"
688
+ - listitem: "/the kitchen: \\d+ repetitions/"
689
+ - listitem: "then the: 1 repetitions"
690
+ - listitem: "the sound: 3 repetitions"
691
+ - listitem: "the frying: 1 repetitions"
692
+ - listitem: "the stove: 1 repetitions"
693
+ - listitem: "remember the: 1 repetitions"
694
+ - listitem: "the dream: 1 repetitions"
695
+ - listitem: "after the: 1 repetitions"
696
+ - listitem: "the bacon: 2 repetitions"
697
+ - listitem: "want everything: 1 repetitions"
698
+ - listitem: "everything perfect: 1 repetitions"
699
+ - listitem: "s birthday: 4 repetitions"
700
+ - listitem: "birthday.: 2 repetitions"
701
+ - listitem: "snapped through: 1 repetitions"
702
+ - listitem: "/through the: \\d+ repetitions/"
703
+ - listitem: "\"Nothing: 1 repetitions"
704
+ - listitem: "Nothing,: 1 repetitions"
705
+ - listitem: ", nothing: 2 repetitions"
706
+ - listitem: "nothing ...: 1 repetitions"
707
+ - listitem: "birthday —: 1 repetitions"
708
+ - listitem: "put them: 1 repetitions"
709
+ - listitem: "them on: 1 repetitions"
710
+ - listitem: "because the: 2 repetitions"
711
+ - listitem: "the cupboard: 3 repetitions"
712
+ - listitem: "the stairs: 2 repetitions"
713
+ - listitem: "the hall: 6 repetitions"
714
+ - listitem: "the table: 5 repetitions"
715
+ - listitem: "hidden beneath: 1 repetitions"
716
+ - listitem: "beneath all: 1 repetitions"
717
+ - listitem: "birthday presents: 1 repetitions"
718
+ - listitem: "though Dudley: 1 repetitions"
719
+ - listitem: "gotten the: 1 repetitions"
720
+ - listitem: "mention the: 1 repetitions"
721
+ - listitem: "the second: 3 repetitions"
722
+ - listitem: "the racing: 2 repetitions"
723
+ - listitem: "had something: 1 repetitions"
724
+ - listitem: "with living: 1 repetitions"
725
+ - listitem: "skinnier than: 1 repetitions"
726
+ - listitem: "old clothes: 2 repetitions"
727
+ - listitem: "clothes of: 1 repetitions"
728
+ - listitem: "bigger than: 1 repetitions"
729
+ - listitem: "a thin: 1 repetitions"
730
+ - listitem: "thin face: 1 repetitions"
731
+ - listitem: "held together: 1 repetitions"
732
+ - listitem: "together with: 1 repetitions"
733
+ - listitem: "the time: 6 repetitions"
734
+ - listitem: "the nose: 1 repetitions"
735
+ - listitem: "only thing: 2 repetitions"
736
+ - listitem: "thing Harry: 1 repetitions"
737
+ - listitem: "very thin: 1 repetitions"
738
+ - listitem: "thin scar: 1 repetitions"
739
+ - listitem: "forehead that: 1 repetitions"
740
+ - listitem: "the car: 9 repetitions"
741
+ - listitem: "life with: 1 repetitions"
742
+ - listitem: "entered the: 1 repetitions"
743
+ - listitem: "shouted that: 1 repetitions"
744
+ - listitem: "that Harry: 5 repetitions"
745
+ - listitem: "haircuts than: 1 repetitions"
746
+ - listitem: "than the: 1 repetitions"
747
+ - listitem: "the rest: 3 repetitions"
748
+ - listitem: "put together: 1 repetitions"
749
+ - listitem: "grew that: 1 repetitions"
750
+ - listitem: "that way: 1 repetitions"
751
+ - listitem: "kitchen with: 1 repetitions"
752
+ - listitem: "and thick: 2 repetitions"
753
+ - listitem: "thick blond: 1 repetitions"
754
+ - listitem: "hair that: 1 repetitions"
755
+ - listitem: "that lay: 1 repetitions"
756
+ - listitem: "lay smoothly: 1 repetitions"
757
+ - listitem: "smoothly on: 1 repetitions"
758
+ - listitem: "his thick: 2 repetitions"
759
+ - listitem: "thick,: 2 repetitions"
760
+ - listitem: "said that: 2 repetitions"
761
+ - listitem: "that Dudley: 5 repetitions"
762
+ - listitem: "the plates: 1 repetitions"
763
+ - listitem: "as there: 1 repetitions"
764
+ - listitem: "\"Thirty-six: 1 repetitions"
765
+ - listitem: "Thirty-six,: 1 repetitions"
766
+ - listitem: "mother and: 2 repetitions"
767
+ - listitem: "and father: 2 repetitions"
768
+ - listitem: "father.: 3 repetitions"
769
+ - listitem: "less than: 2 repetitions"
770
+ - listitem: "than last: 1 repetitions"
771
+ - listitem: "under this: 1 repetitions"
772
+ - listitem: "this big: 1 repetitions"
773
+ - listitem: ", thirty-seven: 1 repetitions"
774
+ - listitem: "thirty-seven then: 1 repetitions"
775
+ - listitem: "the face: 1 repetitions"
776
+ - listitem: "turned the: 2 repetitions"
777
+ - listitem: "you another: 1 repetitions"
778
+ - listitem: "another two: 1 repetitions"
779
+ - listitem: "that all: 2 repetitions"
780
+ - listitem: "Dudley thought: 2 repetitions"
781
+ - listitem: "thought for: 1 repetitions"
782
+ - listitem: "have thirty: 1 repetitions"
783
+ - listitem: "thirty ...: 2 repetitions"
784
+ - listitem: "... thirty: 1 repetitions"
785
+ - listitem: "\"Thirty-nine: 1 repetitions"
786
+ - listitem: "Thirty-nine,: 1 repetitions"
787
+ - listitem: "grabbed the: 2 repetitions"
788
+ - listitem: "right then: 1 repetitions"
789
+ - listitem: "then.: 2 repetitions"
790
+ - listitem: "s worth: 1 repetitions"
791
+ - listitem: "worth,: 1 repetitions"
792
+ - listitem: "at that: 3 repetitions"
793
+ - listitem: "that moment: 3 repetitions"
794
+ - listitem: "moment the: 1 repetitions"
795
+ - listitem: "the telephone: 3 repetitions"
796
+ - listitem: "unwrap the: 1 repetitions"
797
+ - listitem: "ripping the: 1 repetitions"
798
+ - listitem: "the paper: 1 repetitions"
799
+ - listitem: "looking both: 1 repetitions"
800
+ - listitem: "both angry: 1 repetitions"
801
+ - listitem: "s mouth: 1 repetitions"
802
+ - listitem: "mouth fell: 1 repetitions"
803
+ - listitem: "birthday,: 1 repetitions"
804
+ - listitem: "for the: 8 repetitions"
805
+ - listitem: "or the: 1 repetitions"
806
+ - listitem: "the movies: 1 repetitions"
807
+ - listitem: "behind with: 1 repetitions"
808
+ - listitem: "with Mrs: 1 repetitions"
809
+ - listitem: "it there: 1 repetitions"
810
+ - listitem: "though he: 8 repetitions"
811
+ - listitem: "planned this: 1 repetitions"
812
+ - listitem: "this.: 2 repetitions"
813
+ - listitem: "sorry that: 1 repetitions"
814
+ - listitem: "that Mrs: 1 repetitions"
815
+ - listitem: "hates the: 1 repetitions"
816
+ - listitem: "this,: 5 repetitions"
817
+ - listitem: "t there: 1 repetitions"
818
+ - listitem: "there —: 1 repetitions"
819
+ - listitem: "or rather: 1 repetitions"
820
+ - listitem: "rather,: 1 repetitions"
821
+ - listitem: "something very: 2 repetitions"
822
+ - listitem: "nasty that: 1 repetitions"
823
+ - listitem: "that couldn: 1 repetitions"
824
+ - listitem: "understand them: 1 repetitions"
825
+ - listitem: "they weren: 2 repetitions"
826
+ - listitem: "the zoo: 6 repetitions"
827
+ - listitem: "That cars: 2 repetitions"
828
+ - listitem: "that if: 1 repetitions"
829
+ - listitem: "mother would: 1 repetitions"
830
+ - listitem: "him anything: 1 repetitions"
831
+ - listitem: "anything he: 2 repetitions"
832
+ - listitem: "spoils everything: 1 repetitions"
833
+ - listitem: "everything!: 1 repetitions"
834
+ - listitem: "grin through: 1 repetitions"
835
+ - listitem: "the gap: 2 repetitions"
836
+ - listitem: "mothers arms: 1 repetitions"
837
+ - listitem: "Just then: 1 repetitions"
838
+ - listitem: "the doorbell: 1 repetitions"
839
+ - listitem: "in with: 1 repetitions"
840
+ - listitem: "boy with: 1 repetitions"
841
+ - listitem: "usually the: 1 repetitions"
842
+ - listitem: "the one: 1 repetitions"
843
+ - listitem: "behind their: 1 repetitions"
844
+ - listitem: "their backs: 1 repetitions"
845
+ - listitem: "hit them: 1 repetitions"
846
+ - listitem: "the back: 5 repetitions"
847
+ - listitem: "car with: 1 repetitions"
848
+ - listitem: "with Piers: 1 repetitions"
849
+ - listitem: "of anything: 1 repetitions"
850
+ - listitem: "anything else: 1 repetitions"
851
+ - listitem: "with him: 2 repetitions"
852
+ - listitem: "before they: 2 repetitions"
853
+ - listitem: ", anything: 1 repetitions"
854
+ - listitem: "anything at: 1 repetitions"
855
+ - listitem: "in that: 2 repetitions"
856
+ - listitem: "that cupboard: 1 repetitions"
857
+ - listitem: "do anything: 2 repetitions"
858
+ - listitem: "anything,: 2 repetitions"
859
+ - listitem: "The problem: 1 repetitions"
860
+ - listitem: "strange things: 1 repetitions"
861
+ - listitem: "things often: 1 repetitions"
862
+ - listitem: "telling the: 2 repetitions"
863
+ - listitem: "make them: 1 repetitions"
864
+ - listitem: "them happen: 1 repetitions"
865
+ - listitem: "the barbers: 1 repetitions"
866
+ - listitem: "hide that: 1 repetitions"
867
+ - listitem: "that horrible: 1 repetitions"
868
+ - listitem: "school the: 1 repetitions"
869
+ - listitem: "baggy clothes: 1 repetitions"
870
+ - listitem: "clothes and: 2 repetitions"
871
+ - listitem: "for this: 1 repetitions"
872
+ - listitem: "even though: 1 repetitions"
873
+ - listitem: "explain that: 1 repetitions"
874
+ - listitem: "Another time: 1 repetitions"
875
+ - listitem: "brown with: 1 repetitions"
876
+ - listitem: "with orange: 1 repetitions"
877
+ - listitem: "The harder: 1 repetitions"
878
+ - listitem: "the smaller: 1 repetitions"
879
+ - listitem: "the wash: 1 repetitions"
880
+ - listitem: "other hand: 2 repetitions"
881
+ - listitem: "the roof: 3 repetitions"
882
+ - listitem: "the school: 2 repetitions"
883
+ - listitem: "there he: 1 repetitions"
884
+ - listitem: "the chimney: 1 repetitions"
885
+ - listitem: "telling them: 3 repetitions"
886
+ - listitem: "them Harry: 1 repetitions"
887
+ - listitem: "Vernon through: 1 repetitions"
888
+ - listitem: "the locked: 1 repetitions"
889
+ - listitem: "behind the: 2 repetitions"
890
+ - listitem: "the big: 2 repetitions"
891
+ - listitem: "supposed that: 1 repetitions"
892
+ - listitem: "the wind: 2 repetitions"
893
+ - listitem: "nothing was: 1 repetitions"
894
+ - listitem: "even worth: 1 repetitions"
895
+ - listitem: "worth being: 1 repetitions"
896
+ - listitem: "be with: 3 repetitions"
897
+ - listitem: "with Dudley: 3 repetitions"
898
+ - listitem: "somewhere that: 1 repetitions"
899
+ - listitem: "that wasn: 1 repetitions"
900
+ - listitem: "about things: 1 repetitions"
901
+ - listitem: "things:: 1 repetitions"
902
+ - listitem: "the council: 1 repetitions"
903
+ - listitem: "the bank: 1 repetitions"
904
+ - listitem: "This morning: 1 repetitions"
905
+ - listitem: "the young: 1 repetitions"
906
+ - listitem: "overtook them: 1 repetitions"
907
+ - listitem: "beet with: 1 repetitions"
908
+ - listitem: "know they: 1 repetitions"
909
+ - listitem: "they don: 2 repetitions"
910
+ - listitem: "said anything: 1 repetitions"
911
+ - listitem: "anything.: 3 repetitions"
912
+ - listitem: "If there: 1 repetitions"
913
+ - listitem: "one thing: 2 repetitions"
914
+ - listitem: "thing the: 1 repetitions"
915
+ - listitem: "more than: 1 repetitions"
916
+ - listitem: "than his: 1 repetitions"
917
+ - listitem: "about anything: 2 repetitions"
918
+ - listitem: "anything acting: 1 repetitions"
919
+ - listitem: "— they: 1 repetitions"
920
+ - listitem: "they seemed: 3 repetitions"
921
+ - listitem: "crowded with: 1 repetitions"
922
+ - listitem: "with families: 1 repetitions"
923
+ - listitem: "the entrance: 1 repetitions"
924
+ - listitem: "the smiling: 1 repetitions"
925
+ - listitem: "the van: 1 repetitions"
926
+ - listitem: "they bought: 1 repetitions"
927
+ - listitem: ", either: 1 repetitions"
928
+ - listitem: "either,: 1 repetitions"
929
+ - listitem: "Harry thought: 2 repetitions"
930
+ - listitem: "thought,: 1 repetitions"
931
+ - listitem: "they watched: 1 repetitions"
932
+ - listitem: "except that: 1 repetitions"
933
+ - listitem: "that it: 3 repetitions"
934
+ - listitem: "bored with: 1 repetitions"
935
+ - listitem: "the animals: 1 repetitions"
936
+ - listitem: "their favorite: 1 repetitions"
937
+ - listitem: "They ate: 2 repetitions"
938
+ - listitem: "him another: 1 repetitions"
939
+ - listitem: "another one: 2 repetitions"
940
+ - listitem: "finish the: 1 repetitions"
941
+ - listitem: "lunch they: 1 repetitions"
942
+ - listitem: "the reptile: 3 repetitions"
943
+ - listitem: "in there: 3 repetitions"
944
+ - listitem: ", with: 4 repetitions"
945
+ - listitem: "with lit: 1 repetitions"
946
+ - listitem: "along the: 1 repetitions"
947
+ - listitem: "/the glass: \\d+ repetitions/"
948
+ - listitem: "and slithering: 1 repetitions"
949
+ - listitem: "slithering over: 1 repetitions"
950
+ - listitem: "man-crushing pythons: 1 repetitions"
951
+ - listitem: "pythons.: 1 repetitions"
952
+ - listitem: "found the: 2 repetitions"
953
+ - listitem: "the largest: 1 repetitions"
954
+ - listitem: "the mood: 1 repetitions"
955
+ - listitem: "stood with: 1 repetitions"
956
+ - listitem: "against the: 3 repetitions"
957
+ - listitem: "the glistening: 1 repetitions"
958
+ - listitem: "/the snake: \\d+ repetitions/"
959
+ - listitem: "rapped the: 1 repetitions"
960
+ - listitem: "smartly with: 1 repetitions"
961
+ - listitem: "\"This: 1 repetitions"
962
+ - listitem: "this is: 3 repetitions"
963
+ - listitem: "the tank: 1 repetitions"
964
+ - listitem: "drumming their: 1 repetitions"
965
+ - listitem: "their fingers: 1 repetitions"
966
+ - listitem: "worse than: 2 repetitions"
967
+ - listitem: "than having: 1 repetitions"
968
+ - listitem: "where the: 2 repetitions"
969
+ - listitem: "visit the: 2 repetitions"
970
+ - listitem: "level with: 1 repetitions"
971
+ - listitem: "with Harry: 2 repetitions"
972
+ - listitem: ", then: 1 repetitions"
973
+ - listitem: "then raised: 1 repetitions"
974
+ - listitem: "the ceiling: 3 repetitions"
975
+ - listitem: "look that: 1 repetitions"
976
+ - listitem: "murmured through: 1 repetitions"
977
+ - listitem: "sure the: 2 repetitions"
978
+ - listitem: "nice there: 1 repetitions"
979
+ - listitem: "The boa: 2 repetitions"
980
+ - listitem: ": This: 1 repetitions"
981
+ - listitem: "This specimen: 1 repetitions"
982
+ - listitem: "made both: 1 repetitions"
983
+ - listitem: "both of: 3 repetitions"
984
+ - listitem: "them jump: 1 repetitions"
985
+ - listitem: "THIS SNAKE: 1 repetitions"
986
+ - listitem: "toward them: 1 repetitions"
987
+ - listitem: "them as: 3 repetitions"
988
+ - listitem: "the ribs: 1 repetitions"
989
+ - listitem: "the concrete: 1 repetitions"
990
+ - listitem: "back with: 1 repetitions"
991
+ - listitem: "with howls: 1 repetitions"
992
+ - listitem: "; the: 2 repetitions"
993
+ - listitem: "The great: 2 repetitions"
994
+ - listitem: ", slithering: 1 repetitions"
995
+ - listitem: "slithering out: 1 repetitions"
996
+ - listitem: "the floor: 4 repetitions"
997
+ - listitem: "People throughout: 1 repetitions"
998
+ - listitem: "throughout the: 1 repetitions"
999
+ - listitem: "the exits: 1 repetitions"
1000
+ - listitem: "... Thanksss: 1 repetitions"
1001
+ - listitem: "Thanksss,: 1 repetitions"
1002
+ - listitem: "The keeper: 2 repetitions"
1003
+ - listitem: "did the: 1 repetitions"
1004
+ - listitem: "done anything: 1 repetitions"
1005
+ - listitem: "anything except: 1 repetitions"
1006
+ - listitem: "at their: 1 repetitions"
1007
+ - listitem: "their heels: 1 repetitions"
1008
+ - listitem: "time they: 2 repetitions"
1009
+ - listitem: "them how: 1 repetitions"
1010
+ - listitem: "to death: 1 repetitions"
1011
+ - listitem: "death.: 1 repetitions"
1012
+ - listitem: "Until they: 1 repetitions"
1013
+ - listitem: "up with: 2 repetitions"
1014
+ - listitem: "the crash: 1 repetitions"
1015
+ - listitem: "the green: 2 repetitions"
1016
+ - listitem: "them in: 2 repetitions"
1017
+ - listitem: "thought (: 1 repetitions"
1018
+ - listitem: ") that: 1 repetitions"
1019
+ - listitem: "that strangers: 1 repetitions"
1020
+ - listitem: "strangers they: 1 repetitions"
1021
+ - listitem: "shopping with: 1 repetitions"
1022
+ - listitem: "with Aunt: 1 repetitions"
1023
+ - listitem: "knew the: 1 repetitions"
1024
+ - listitem: "rushed them: 1 repetitions"
1025
+ - listitem: "them out: 1 repetitions"
1026
+ - listitem: "the shop: 1 repetitions"
1027
+ - listitem: "shop without: 1 repetitions"
1028
+ - listitem: "without buying: 1 repetitions"
1029
+ - listitem: "buying anything: 1 repetitions"
1030
+ - listitem: "street the: 1 repetitions"
1031
+ - listitem: "other day: 1 repetitions"
1032
+ - listitem: "then walked: 1 repetitions"
1033
+ - listitem: "away without: 1 repetitions"
1034
+ - listitem: "without a: 2 repetitions"
1035
+ - listitem: "The weirdest: 1 repetitions"
1036
+ - listitem: "weirdest thing: 1 repetitions"
1037
+ - listitem: "thing about: 1 repetitions"
1038
+ - listitem: "all these: 2 repetitions"
1039
+ - listitem: "way they: 1 repetitions"
1040
+ - listitem: "vanish the: 1 repetitions"
1041
+ - listitem: "hated that: 1 repetitions"
1042
+ - listitem: "that odd: 1 repetitions"
1043
+ - listitem: "disagree with: 1 repetitions"
1044
+ - listitem: "The escape: 1 repetitions"
1045
+ - listitem: "the Brazilian: 1 repetitions"
1046
+ - listitem: "the summer: 1 repetitions"
1047
+ - listitem: "the biggest: 3 repetitions"
1048
+ - listitem: "the lot: 1 repetitions"
1049
+ - listitem: "the leader: 1 repetitions"
1050
+ - listitem: "them were: 1 repetitions"
1051
+ - listitem: "and thinking: 1 repetitions"
1052
+ - listitem: "thinking about: 4 repetitions"
1053
+ - listitem: "the end: 3 repetitions"
1054
+ - listitem: "the holidays: 1 repetitions"
1055
+ - listitem: "going there: 1 repetitions"
1056
+ - listitem: "there too: 1 repetitions"
1057
+ - listitem: "the local: 1 repetitions"
1058
+ - listitem: "thought this: 2 repetitions"
1059
+ - listitem: "\"They: 1 repetitions"
1060
+ - listitem: "They stuff: 1 repetitions"
1061
+ - listitem: "the toilet: 1 repetitions"
1062
+ - listitem: "toilet the: 1 repetitions"
1063
+ - listitem: "thanks,: 1 repetitions"
1064
+ - listitem: "The poor: 1 repetitions"
1065
+ - listitem: "had anything: 1 repetitions"
1066
+ - listitem: "anything as: 1 repetitions"
1067
+ - listitem: "\" Then: 2 repetitions"
1068
+ - listitem: "cake that: 1 repetitions"
1069
+ - listitem: "that tasted: 1 repetitions"
1070
+ - listitem: "the family: 2 repetitions"
1071
+ - listitem: "each other: 3 repetitions"
1072
+ - listitem: "other while: 1 repetitions"
1073
+ - listitem: "while the: 2 repetitions"
1074
+ - listitem: "the teachers: 1 repetitions"
1075
+ - listitem: "gruffly that: 1 repetitions"
1076
+ - listitem: "the proudest: 1 repetitions"
1077
+ - listitem: "thought two: 1 repetitions"
1078
+ - listitem: "kitchen the: 1 repetitions"
1079
+ - listitem: "the sink: 1 repetitions"
1080
+ - listitem: "The tub: 1 repetitions"
1081
+ - listitem: "s this: 1 repetitions"
1082
+ - listitem: "they always: 1 repetitions"
1083
+ - listitem: "the bowl: 1 repetitions"
1084
+ - listitem: "old things: 1 repetitions"
1085
+ - listitem: "things gray: 1 repetitions"
1086
+ - listitem: "doubted this: 1 repetitions"
1087
+ - listitem: "thought it: 1 repetitions"
1088
+ - listitem: ", both: 3 repetitions"
1089
+ - listitem: "both with: 1 repetitions"
1090
+ - listitem: "with wrinkled: 1 repetitions"
1091
+ - listitem: "the smell: 1 repetitions"
1092
+ - listitem: "They heard: 2 repetitions"
1093
+ - listitem: "the click: 1 repetitions"
1094
+ - listitem: "the mail: 8 repetitions"
1095
+ - listitem: "the doormat: 3 repetitions"
1096
+ - listitem: "get the: 5 repetitions"
1097
+ - listitem: "him with: 1 repetitions"
1098
+ - listitem: "with your: 1 repetitions"
1099
+ - listitem: "dodged the: 1 repetitions"
1100
+ - listitem: "the Smelting: 2 repetitions"
1101
+ - listitem: ". Three: 1 repetitions"
1102
+ - listitem: "Three things: 1 repetitions"
1103
+ - listitem: "things lay: 1 repetitions"
1104
+ - listitem: "the Isle: 1 repetitions"
1105
+ - listitem: "envelope that: 1 repetitions"
1106
+ - listitem: "that looked: 2 repetitions"
1107
+ - listitem: "no other: 1 repetitions"
1108
+ - listitem: "other relatives: 1 repetitions"
1109
+ - listitem: "the library: 1 repetitions"
1110
+ - listitem: "plainly there: 1 repetitions"
1111
+ - listitem: "there could: 1 repetitions"
1112
+ - listitem: "the envelope: 3 repetitions"
1113
+ - listitem: "was thick: 1 repetitions"
1114
+ - listitem: "thick and: 1 repetitions"
1115
+ - listitem: "the address: 2 repetitions"
1116
+ - listitem: "Vernon the: 1 repetitions"
1117
+ - listitem: "the bill: 2 repetitions"
1118
+ - listitem: "the postcard: 2 repetitions"
1119
+ - listitem: "the yellow: 1 repetitions"
1120
+ - listitem: "got something: 1 repetitions"
1121
+ - listitem: "something!: 1 repetitions"
1122
+ - listitem: "shaking the: 1 repetitions"
1123
+ - listitem: "open with: 1 repetitions"
1124
+ - listitem: "with one: 1 repetitions"
1125
+ - listitem: "faster than: 1 repetitions"
1126
+ - listitem: "than a: 1 repetitions"
1127
+ - listitem: "stop there: 1 repetitions"
1128
+ - listitem: ". Within: 1 repetitions"
1129
+ - listitem: "Within seconds: 1 repetitions"
1130
+ - listitem: "the grayish: 1 repetitions"
1131
+ - listitem: "her throat: 1 repetitions"
1132
+ - listitem: "throat and: 1 repetitions"
1133
+ - listitem: "They stared: 1 repetitions"
1134
+ - listitem: "other,: 1 repetitions"
1135
+ - listitem: "forgotten that: 2 repetitions"
1136
+ - listitem: "father a: 1 repetitions"
1137
+ - listitem: "the head: 3 repetitions"
1138
+ - listitem: "head with: 1 repetitions"
1139
+ - listitem: "read that: 1 repetitions"
1140
+ - listitem: "that letter: 2 repetitions"
1141
+ - listitem: "stuffing the: 1 repetitions"
1142
+ - listitem: "took both: 1 repetitions"
1143
+ - listitem: "both Harry: 1 repetitions"
1144
+ - listitem: "the scruffs: 1 repetitions"
1145
+ - listitem: "their necks: 2 repetitions"
1146
+ - listitem: "and threw: 5 repetitions"
1147
+ - listitem: "threw them: 1 repetitions"
1148
+ - listitem: "them into: 2 repetitions"
1149
+ - listitem: "slammed the: 3 repetitions"
1150
+ - listitem: "behind them: 3 repetitions"
1151
+ - listitem: "the keyhole: 1 repetitions"
1152
+ - listitem: "the crack: 2 repetitions"
1153
+ - listitem: "could they: 1 repetitions"
1154
+ - listitem: "they possibly: 1 repetitions"
1155
+ - listitem: "them we: 1 repetitions"
1156
+ - listitem: "If they: 2 repetitions"
1157
+ - listitem: "that dangerous: 1 repetitions"
1158
+ - listitem: "did something: 1 repetitions"
1159
+ - listitem: "squeezed through: 1 repetitions"
1160
+ - listitem: "deep breaths: 2 repetitions"
1161
+ - listitem: "breaths and: 2 repetitions"
1162
+ - listitem: "then forced: 1 repetitions"
1163
+ - listitem: "about this: 2 repetitions"
1164
+ - listitem: "this cupboard: 1 repetitions"
1165
+ - listitem: "we think: 1 repetitions"
1166
+ - listitem: "Take this: 1 repetitions"
1167
+ - listitem: "this stuff: 1 repetitions"
1168
+ - listitem: "the toys: 1 repetitions"
1169
+ - listitem: "and things: 1 repetitions"
1170
+ - listitem: "things that: 2 repetitions"
1171
+ - listitem: "that wouldn: 1 repetitions"
1172
+ - listitem: "move everything: 1 repetitions"
1173
+ - listitem: "everything he: 1 repetitions"
1174
+ - listitem: "to this: 1 repetitions"
1175
+ - listitem: "this room: 1 repetitions"
1176
+ - listitem: "the bed: 2 repetitions"
1177
+ - listitem: "Nearly everything: 1 repetitions"
1178
+ - listitem: "everything in: 1 repetitions"
1179
+ - listitem: "The month-old: 1 repetitions"
1180
+ - listitem: "month-old video: 1 repetitions"
1181
+ - listitem: "foot through: 1 repetitions"
1182
+ - listitem: "through when: 1 repetitions"
1183
+ - listitem: "; there: 1 repetitions"
1184
+ - listitem: "parrot that: 1 repetitions"
1185
+ - listitem: "shelf with: 1 repetitions"
1186
+ - listitem: ". Other: 1 repetitions"
1187
+ - listitem: "Other shelves: 1 repetitions"
1188
+ - listitem: "things in: 1 repetitions"
1189
+ - listitem: "room that: 1 repetitions"
1190
+ - listitem: "though they: 1 repetitions"
1191
+ - listitem: "came the: 1 repetitions"
1192
+ - listitem: "mother,: 3 repetitions"
1193
+ - listitem: "there ...: 1 repetitions"
1194
+ - listitem: "need that: 1 repetitions"
1195
+ - listitem: "that room: 1 repetitions"
1196
+ - listitem: "given anything: 1 repetitions"
1197
+ - listitem: "d rather: 1 repetitions"
1198
+ - listitem: "rather be: 1 repetitions"
1199
+ - listitem: "cupboard with: 1 repetitions"
1200
+ - listitem: "with that: 2 repetitions"
1201
+ - listitem: "letter than: 1 repetitions"
1202
+ - listitem: "than up: 1 repetitions"
1203
+ - listitem: "here without: 1 repetitions"
1204
+ - listitem: "without it: 1 repetitions"
1205
+ - listitem: "was rather: 1 repetitions"
1206
+ - listitem: "rather quiet: 1 repetitions"
1207
+ - listitem: "father with: 1 repetitions"
1208
+ - listitem: "and thrown: 1 repetitions"
1209
+ - listitem: "thrown his: 1 repetitions"
1210
+ - listitem: "tortoise through: 1 repetitions"
1211
+ - listitem: "the greenhouse: 1 repetitions"
1212
+ - listitem: "was thinking: 1 repetitions"
1213
+ - listitem: "this time: 3 repetitions"
1214
+ - listitem: "other darkly: 1 repetitions"
1215
+ - listitem: "When the: 2 repetitions"
1216
+ - listitem: "banging things: 1 repetitions"
1217
+ - listitem: "things with: 1 repetitions"
1218
+ - listitem: "\"There: 1 repetitions"
1219
+ - listitem: "There': 2 repetitions"
1220
+ - listitem: "s another: 1 repetitions"
1221
+ - listitem: "The Smallest: 1 repetitions"
1222
+ - listitem: "the fact: 1 repetitions"
1223
+ - listitem: "fact that: 1 repetitions"
1224
+ - listitem: "the neck: 1 repetitions"
1225
+ - listitem: "for breath: 1 repetitions"
1226
+ - listitem: "breath,: 1 repetitions"
1227
+ - listitem: "sure that: 3 repetitions"
1228
+ - listitem: "that meant: 1 repetitions"
1229
+ - listitem: "meant they: 1 repetitions"
1230
+ - listitem: "And this: 2 repetitions"
1231
+ - listitem: "sure they: 1 repetitions"
1232
+ - listitem: "The repaired: 1 repetitions"
1233
+ - listitem: "clock the: 1 repetitions"
1234
+ - listitem: "downstairs without: 1 repetitions"
1235
+ - listitem: "without turning: 1 repetitions"
1236
+ - listitem: "the postman: 1 repetitions"
1237
+ - listitem: "the dark: 2 repetitions"
1238
+ - listitem: "on something: 1 repetitions"
1239
+ - listitem: "something big: 1 repetitions"
1240
+ - listitem: "— something: 1 repetitions"
1241
+ - listitem: "something alive: 1 repetitions"
1242
+ - listitem: "squashy something: 1 repetitions"
1243
+ - listitem: "something had: 1 repetitions"
1244
+ - listitem: "the foot: 1 repetitions"
1245
+ - listitem: "then told: 1 repetitions"
1246
+ - listitem: "see three: 1 repetitions"
1247
+ - listitem: "three letters: 1 repetitions"
1248
+ - listitem: "tearing the: 1 repetitions"
1249
+ - listitem: "work that: 1 repetitions"
1250
+ - listitem: "Petunia through: 2 repetitions"
1251
+ - listitem: "through a: 2 repetitions"
1252
+ - listitem: "a mouthful: 1 repetitions"
1253
+ - listitem: "mouthful of: 1 repetitions"
1254
+ - listitem: "they can: 1 repetitions"
1255
+ - listitem: "deliver them: 1 repetitions"
1256
+ - listitem: "them they: 1 repetitions"
1257
+ - listitem: ", these: 1 repetitions"
1258
+ - listitem: "nail with: 1 repetitions"
1259
+ - listitem: "the piece: 1 repetitions"
1260
+ - listitem: "than twelve: 1 repetitions"
1261
+ - listitem: "they couldn: 2 repetitions"
1262
+ - listitem: "go through: 1 repetitions"
1263
+ - listitem: "slot they: 1 repetitions"
1264
+ - listitem: "slotted through: 1 repetitions"
1265
+ - listitem: "the sides: 1 repetitions"
1266
+ - listitem: "forced through: 1 repetitions"
1267
+ - listitem: "the small: 1 repetitions"
1268
+ - listitem: "the downstairs: 1 repetitions"
1269
+ - listitem: "downstairs bathroom: 1 repetitions"
1270
+ - listitem: "bathroom.: 1 repetitions"
1271
+ - listitem: "Tiptoe Through: 1 repetitions"
1272
+ - listitem: "the Tulips: 1 repetitions"
1273
+ - listitem: ", things: 1 repetitions"
1274
+ - listitem: "things began: 1 repetitions"
1275
+ - listitem: "found their: 1 repetitions"
1276
+ - listitem: "their way: 2 repetitions"
1277
+ - listitem: "the two: 1 repetitions"
1278
+ - listitem: "eggs that: 1 repetitions"
1279
+ - listitem: "that their: 1 repetitions"
1280
+ - listitem: "their very: 1 repetitions"
1281
+ - listitem: "the post: 1 repetitions"
1282
+ - listitem: "the dairy: 1 repetitions"
1283
+ - listitem: "shredded the: 1 repetitions"
1284
+ - listitem: "on earth: 1 repetitions"
1285
+ - listitem: "earth wants: 1 repetitions"
1286
+ - listitem: "you this: 1 repetitions"
1287
+ - listitem: "this badly: 1 repetitions"
1288
+ - listitem: "the breakfast: 1 repetitions"
1289
+ - listitem: "and rather: 1 repetitions"
1290
+ - listitem: "rather ill: 1 repetitions"
1291
+ - listitem: "reminded them: 1 repetitions"
1292
+ - listitem: "them cheerfully: 1 repetitions"
1293
+ - listitem: "Something came: 1 repetitions"
1294
+ - listitem: ", thirty: 1 repetitions"
1295
+ - listitem: "thirty or: 1 repetitions"
1296
+ - listitem: "the fireplace: 3 repetitions"
1297
+ - listitem: "the waist: 1 repetitions"
1298
+ - listitem: "threw him: 1 repetitions"
1299
+ - listitem: "with their: 1 repetitions"
1300
+ - listitem: "their arms: 1 repetitions"
1301
+ - listitem: "over their: 1 repetitions"
1302
+ - listitem: "their faces: 2 repetitions"
1303
+ - listitem: "hear the: 1 repetitions"
1304
+ - listitem: "That does: 1 repetitions"
1305
+ - listitem: "some clothes: 1 repetitions"
1306
+ - listitem: "clothes.: 1 repetitions"
1307
+ - listitem: "dangerous with: 1 repetitions"
1308
+ - listitem: "with half: 1 repetitions"
1309
+ - listitem: "missing that: 1 repetitions"
1310
+ - listitem: "that no: 1 repetitions"
1311
+ - listitem: "later they: 1 repetitions"
1312
+ - listitem: "wrenched their: 1 repetitions"
1313
+ - listitem: "way through: 1 repetitions"
1314
+ - listitem: "the boarded-up: 1 repetitions"
1315
+ - listitem: "the highway: 1 repetitions"
1316
+ - listitem: "father had: 1 repetitions"
1317
+ - listitem: "round the: 1 repetitions"
1318
+ - listitem: "holding them: 1 repetitions"
1319
+ - listitem: "them up: 1 repetitions"
1320
+ - listitem: "They drove: 2 repetitions"
1321
+ - listitem: "where they: 1 repetitions"
1322
+ - listitem: "then Uncle: 1 repetitions"
1323
+ - listitem: "the opposite: 1 repetitions"
1324
+ - listitem: "did this: 1 repetitions"
1325
+ - listitem: "long without: 1 repetitions"
1326
+ - listitem: "without blowing: 1 repetitions"
1327
+ - listitem: "the outskirts: 1 repetitions"
1328
+ - listitem: "room with: 1 repetitions"
1329
+ - listitem: "with twin: 1 repetitions"
1330
+ - listitem: "the windowsill: 1 repetitions"
1331
+ - listitem: "breakfast the: 1 repetitions"
1332
+ - listitem: "the owner: 1 repetitions"
1333
+ - listitem: "the hotel: 1 repetitions"
1334
+ - listitem: "their table: 1 repetitions"
1335
+ - listitem: "these at: 1 repetitions"
1336
+ - listitem: "so they: 1 repetitions"
1337
+ - listitem: "The woman: 1 repetitions"
1338
+ - listitem: "take them: 1 repetitions"
1339
+ - listitem: "the dining: 1 repetitions"
1340
+ - listitem: "them knew: 1 repetitions"
1341
+ - listitem: "drove them: 1 repetitions"
1342
+ - listitem: "off they: 1 repetitions"
1343
+ - listitem: "same thing: 1 repetitions"
1344
+ - listitem: "thing happened: 3 repetitions"
1345
+ - listitem: "late that: 1 repetitions"
1346
+ - listitem: "the coast: 1 repetitions"
1347
+ - listitem: "locked them: 1 repetitions"
1348
+ - listitem: "inside the: 2 repetitions"
1349
+ - listitem: "somewhere with: 1 repetitions"
1350
+ - listitem: "This reminded: 1 repetitions"
1351
+ - listitem: "know the: 1 repetitions"
1352
+ - listitem: "the week: 1 repetitions"
1353
+ - listitem: "then tomorrow: 1 repetitions"
1354
+ - listitem: "s eleventh: 1 repetitions"
1355
+ - listitem: "eleventh birthday: 1 repetitions"
1356
+ - listitem: "his birthdays: 2 repetitions"
1357
+ - listitem: "birthdays were: 1 repetitions"
1358
+ - listitem: "thin package: 2 repetitions"
1359
+ - listitem: "the perfect: 1 repetitions"
1360
+ - listitem: "the rock: 4 repetitions"
1361
+ - listitem: "the most: 1 repetitions"
1362
+ - listitem: "thing was: 1 repetitions"
1363
+ - listitem: "hands together: 2 repetitions"
1364
+ - listitem: "this gentleman: 1 repetitions"
1365
+ - listitem: "A toothless: 1 repetitions"
1366
+ - listitem: "toothless old: 1 repetitions"
1367
+ - listitem: "rather wicked: 1 repetitions"
1368
+ - listitem: "the iron-gray: 1 repetitions"
1369
+ - listitem: "below them: 1 repetitions"
1370
+ - listitem: "the boat: 1 repetitions"
1371
+ - listitem: "down their: 1 repetitions"
1372
+ - listitem: "whipped their: 1 repetitions"
1373
+ - listitem: "hours they: 1 repetitions"
1374
+ - listitem: "they reached: 1 repetitions"
1375
+ - listitem: "led the: 1 repetitions"
1376
+ - listitem: "the broken-down: 1 repetitions"
1377
+ - listitem: "The inside: 1 repetitions"
1378
+ - listitem: "whistled through: 1 repetitions"
1379
+ - listitem: "the wooden: 1 repetitions"
1380
+ - listitem: "the empty: 2 repetitions"
1381
+ - listitem: "with some: 1 repetitions"
1382
+ - listitem: "of those: 1 repetitions"
1383
+ - listitem: "those letters: 2 repetitions"
1384
+ - listitem: "thought nobody: 1 repetitions"
1385
+ - listitem: "reaching them: 1 repetitions"
1386
+ - listitem: "them here: 1 repetitions"
1387
+ - listitem: "though the: 1 repetitions"
1388
+ - listitem: "the thought: 1 repetitions"
1389
+ - listitem: "thought didn: 1 repetitions"
1390
+ - listitem: "the promised: 1 repetitions"
1391
+ - listitem: "the high: 1 repetitions"
1392
+ - listitem: "splattered the: 1 repetitions"
1393
+ - listitem: "the hut: 4 repetitions"
1394
+ - listitem: "rattled the: 1 repetitions"
1395
+ - listitem: "the filthy: 1 repetitions"
1396
+ - listitem: "filthy windows: 1 repetitions"
1397
+ - listitem: "the moth-eaten: 1 repetitions"
1398
+ - listitem: "moth-eaten sofa: 1 repetitions"
1399
+ - listitem: "the lumpy: 1 repetitions"
1400
+ - listitem: "the softest: 1 repetitions"
1401
+ - listitem: "the thinnest: 1 repetitions"
1402
+ - listitem: "thinnest,: 1 repetitions"
1403
+ - listitem: "the storm: 3 repetitions"
1404
+ - listitem: "rumbling with: 1 repetitions"
1405
+ - listitem: "with hunger: 1 repetitions"
1406
+ - listitem: "of thunder: 1 repetitions"
1407
+ - listitem: "thunder that: 1 repetitions"
1408
+ - listitem: "that started: 1 repetitions"
1409
+ - listitem: "the sofa: 7 repetitions"
1410
+ - listitem: "birthday tick: 1 repetitions"
1411
+ - listitem: "heard something: 1 repetitions"
1412
+ - listitem: "something creak: 1 repetitions"
1413
+ - listitem: "hoped the: 1 repetitions"
1414
+ - listitem: "Maybe the: 1 repetitions"
1415
+ - listitem: "when they: 1 repetitions"
1416
+ - listitem: "they got: 2 repetitions"
1417
+ - listitem: "back that: 1 repetitions"
1418
+ - listitem: "Three minutes: 1 repetitions"
1419
+ - listitem: "the sea: 4 repetitions"
1420
+ - listitem: "that funny: 1 repetitions"
1421
+ - listitem: ". Thirty: 1 repetitions"
1422
+ - listitem: "Thirty seconds: 1 repetitions"
1423
+ - listitem: "— three: 1 repetitions"
1424
+ - listitem: "three ...: 1 repetitions"
1425
+ - listitem: "THE KEYS: 1 repetitions"
1426
+ - listitem: "They knocked: 1 repetitions"
1427
+ - listitem: "the cannon: 1 repetitions"
1428
+ - listitem: "now they: 1 repetitions"
1429
+ - listitem: "they knew: 1 repetitions"
1430
+ - listitem: "the long: 1 repetitions"
1431
+ - listitem: "brought with: 1 repetitions"
1432
+ - listitem: "with them: 1 repetitions"
1433
+ - listitem: "s there: 1 repetitions"
1434
+ - listitem: "Then —: 2 repetitions"
1435
+ - listitem: "hit with: 1 repetitions"
1436
+ - listitem: "force that: 1 repetitions"
1437
+ - listitem: "the doorway: 1 repetitions"
1438
+ - listitem: "the hair: 1 repetitions"
1439
+ - listitem: "that his: 1 repetitions"
1440
+ - listitem: "brushed the: 1 repetitions"
1441
+ - listitem: "The noise: 1 repetitions"
1442
+ - listitem: "at them: 1 repetitions"
1443
+ - listitem: "frozen with: 1 repetitions"
1444
+ - listitem: "with fear: 1 repetitions"
1445
+ - listitem: "the stranger: 1 repetitions"
1446
+ - listitem: "the fierce: 1 repetitions"
1447
+ - listitem: "saw that: 2 repetitions"
1448
+ - listitem: "the beetle: 1 repetitions"
1449
+ - listitem: "demand that: 1 repetitions"
1450
+ - listitem: "that you: 2 repetitions"
1451
+ - listitem: "jerked the: 1 repetitions"
1452
+ - listitem: "the gun: 1 repetitions"
1453
+ - listitem: "threw it: 2 repetitions"
1454
+ - listitem: "made another: 1 repetitions"
1455
+ - listitem: "another funny: 1 repetitions"
1456
+ - listitem: "happy birthday: 2 repetitions"
1457
+ - listitem: "birthday to: 1 repetitions"
1458
+ - listitem: "it with: 1 repetitions"
1459
+ - listitem: "with trembling: 1 repetitions"
1460
+ - listitem: "cake with: 1 repetitions"
1461
+ - listitem: "with Happy: 1 repetitions"
1462
+ - listitem: "Birthday Harry: 1 repetitions"
1463
+ - listitem: "say thank: 1 repetitions"
1464
+ - listitem: "the words: 1 repetitions"
1465
+ - listitem: "his mouth: 3 repetitions"
1466
+ - listitem: "that tea: 1 repetitions"
1467
+ - listitem: "tea then: 1 repetitions"
1468
+ - listitem: "grate with: 1 repetitions"
1469
+ - listitem: "the shriveled: 1 repetitions"
1470
+ - listitem: "fire there: 1 repetitions"
1471
+ - listitem: "filled the: 2 repetitions"
1472
+ - listitem: "hut with: 1 repetitions"
1473
+ - listitem: "with flickering: 1 repetitions"
1474
+ - listitem: "felt the: 1 repetitions"
1475
+ - listitem: "the warmth: 1 repetitions"
1476
+ - listitem: "warmth wash: 1 repetitions"
1477
+ - listitem: "hot bath: 1 repetitions"
1478
+ - listitem: "bath.: 1 repetitions"
1479
+ - listitem: "of things: 1 repetitions"
1480
+ - listitem: "things out: 1 repetitions"
1481
+ - listitem: "the pockets: 2 repetitions"
1482
+ - listitem: "liquid that: 1 repetitions"
1483
+ - listitem: "Soon the: 1 repetitions"
1484
+ - listitem: "a thing: 1 repetitions"
1485
+ - listitem: "thing while: 1 repetitions"
1486
+ - listitem: "slid the: 1 repetitions"
1487
+ - listitem: "the poker: 1 repetitions"
1488
+ - listitem: "touch anything: 1 repetitions"
1489
+ - listitem: "passed the: 1 repetitions"
1490
+ - listitem: "the sausages: 1 repetitions"
1491
+ - listitem: "tasted anything: 1 repetitions"
1492
+ - listitem: "anything so: 1 repetitions"
1493
+ - listitem: "explain anything: 1 repetitions"
1494
+ - listitem: "mouth with: 1 repetitions"
1495
+ - listitem: "the shadows: 1 repetitions"
1496
+ - listitem: "never thought: 1 repetitions"
1497
+ - listitem: "thought yeh: 1 repetitions"
1498
+ - listitem: "Hagrid thundered: 1 repetitions"
1499
+ - listitem: "thundered.: 1 repetitions"
1500
+ - listitem: "— this: 2 repetitions"
1501
+ - listitem: "knows nothin: 1 repetitions"
1502
+ - listitem: "nothin': 1 repetitions"
1503
+ - listitem: "ANYTHING?: 1 repetitions"
1504
+ - listitem: "some things: 1 repetitions"
1505
+ - listitem: "do math: 1 repetitions"
1506
+ - listitem: "math and: 1 repetitions"
1507
+ - listitem: "whispered something: 1 repetitions"
1508
+ - listitem: "something that: 1 repetitions"
1509
+ - listitem: "that sounded: 1 repetitions"
1510
+ - listitem: "were they: 1 repetitions"
1511
+ - listitem: "they?: 1 repetitions"
1512
+ - listitem: "fingers through: 1 repetitions"
1513
+ - listitem: "through his: 1 repetitions"
1514
+ - listitem: "Harry with: 2 repetitions"
1515
+ - listitem: "right there: 1 repetitions"
1516
+ - listitem: "boy anything: 1 repetitions"
1517
+ - listitem: "anything!: 1 repetitions"
1518
+ - listitem: "man than: 1 repetitions"
1519
+ - listitem: "than Vernon: 1 repetitions"
1520
+ - listitem: "the furious: 1 repetitions"
1521
+ - listitem: "trembled with: 1 repetitions"
1522
+ - listitem: "with rage: 1 repetitions"
1523
+ - listitem: "was there: 1 repetitions"
1524
+ - listitem: "there!: 1 repetitions"
1525
+ - listitem: "these years: 1 repetitions"
1526
+ - listitem: "the whistling: 1 repetitions"
1527
+ - listitem: "a thumpin: 1 repetitions"
1528
+ - listitem: "thumpin': 1 repetitions"
1529
+ - listitem: ". With: 2 repetitions"
1530
+ - listitem: "take the: 1 repetitions"
1531
+ - listitem: "the yellowish: 1 repetitions"
1532
+ - listitem: ", Hut-on-the-Rock: 1 repetitions"
1533
+ - listitem: "Hut-on-the-Rock,: 1 repetitions"
1534
+ - listitem: "you that: 1 repetitions"
1535
+ - listitem: "later than: 1 repetitions"
1536
+ - listitem: "than July: 1 repetitions"
1537
+ - listitem: "they await: 1 repetitions"
1538
+ - listitem: "that reminds: 1 repetitions"
1539
+ - listitem: "forehead with: 1 repetitions"
1540
+ - listitem: "with enough: 1 repetitions"
1541
+ - listitem: "yet another: 1 repetitions"
1542
+ - listitem: "another pocket: 1 repetitions"
1543
+ - listitem: ", rather: 1 repetitions"
1544
+ - listitem: "rather ruffled-looking: 1 repetitions"
1545
+ - listitem: "his teeth: 1 repetitions"
1546
+ - listitem: "teeth he: 1 repetitions"
1547
+ - listitem: "note that: 1 repetitions"
1548
+ - listitem: "his things: 1 repetitions"
1549
+ - listitem: "things tomorrow: 1 repetitions"
1550
+ - listitem: "Weather': 1 repetitions"
1551
+ - listitem: "the note: 1 repetitions"
1552
+ - listitem: "threw the: 1 repetitions"
1553
+ - listitem: "though this: 1 repetitions"
1554
+ - listitem: "mouth was: 1 repetitions"
1555
+ - listitem: "the firelight: 1 repetitions"
1556
+ - listitem: "like them: 1 repetitions"
1557
+ - listitem: "' the: 7 repetitions"
1558
+ - listitem: "to that: 2 repetitions"
1559
+ - listitem: "that rubbish: 1 repetitions"
1560
+ - listitem: "that and: 1 repetitions"
1561
+ - listitem: "that —: 1 repetitions"
1562
+ - listitem: "that school: 1 repetitions"
1563
+ - listitem: "vacation with: 1 repetitions"
1564
+ - listitem: "my mother: 1 repetitions"
1565
+ - listitem: "Lily this: 1 repetitions"
1566
+ - listitem: "this and: 1 repetitions"
1567
+ - listitem: "Lily that: 1 repetitions"
1568
+ - listitem: "then went: 1 repetitions"
1569
+ - listitem: "this for: 1 repetitions"
1570
+ - listitem: "Then she: 1 repetitions"
1571
+ - listitem: "met that: 1 repetitions"
1572
+ - listitem: "that Potter: 1 repetitions"
1573
+ - listitem: "they left: 1 repetitions"
1574
+ - listitem: "just the: 1 repetitions"
1575
+ - listitem: "landed with: 1 repetitions"
1576
+ - listitem: "with you: 1 repetitions"
1577
+ - listitem: "me they: 1 repetitions"
1578
+ - listitem: "they died: 1 repetitions"
1579
+ - listitem: "angrily that: 1 repetitions"
1580
+ - listitem: "their corner: 1 repetitions"
1581
+ - listitem: "The anger: 1 repetitions"
1582
+ - listitem: "expected this: 1 repetitions"
1583
+ - listitem: "me there: 1 repetitions"
1584
+ - listitem: "there might: 1 repetitions"
1585
+ - listitem: "m the: 1 repetitions"
1586
+ - listitem: "He threw: 1 repetitions"
1587
+ - listitem: "yeh everythin: 1 repetitions"
1588
+ - listitem: "everythin': 1 repetitions"
1589
+ - listitem: "the fire: 2 repetitions"
1590
+ - listitem: "with —: 1 repetitions"
1591
+ - listitem: "— with: 1 repetitions"
1592
+ - listitem: "this wizard: 2 repetitions"
1593
+ - listitem: "than worse: 1 repetitions"
1594
+ - listitem: "this —: 1 repetitions"
1595
+ - listitem: "friendly with: 1 repetitions"
1596
+ - listitem: "with strange: 1 repetitions"
1597
+ - listitem: "terrible things: 1 repetitions"
1598
+ - listitem: "' then: 2 repetitions"
1599
+ - listitem: "their day: 1 repetitions"
1600
+ - listitem: "Suppose the: 1 repetitions"
1601
+ - listitem: "the myst: 1 repetitions"
1602
+ - listitem: "knew they: 2 repetitions"
1603
+ - listitem: "want anythin: 1 repetitions"
1604
+ - listitem: "anythin': 1 repetitions"
1605
+ - listitem: "outta the: 1 repetitions"
1606
+ - listitem: "the village: 1 repetitions"
1607
+ - listitem: "nose with: 1 repetitions"
1608
+ - listitem: "that sad: 1 repetitions"
1609
+ - listitem: "' this: 1 repetitions"
1610
+ - listitem: "thing —: 1 repetitions"
1611
+ - listitem: "by then: 1 repetitions"
1612
+ - listitem: "got that: 1 repetitions"
1613
+ - listitem: "that mark: 1 repetitions"
1614
+ - listitem: "? That: 1 repetitions"
1615
+ - listitem: ". That: 2 repetitions"
1616
+ - listitem: "' that: 2 repetitions"
1617
+ - listitem: "the age: 1 repetitions"
1618
+ - listitem: "the McKinnons: 1 repetitions"
1619
+ - listitem: "the Bones: 1 repetitions"
1620
+ - listitem: "the Prewetts: 1 repetitions"
1621
+ - listitem: "again the: 1 repetitions"
1622
+ - listitem: "the blinding: 1 repetitions"
1623
+ - listitem: "clearly than: 1 repetitions"
1624
+ - listitem: "remembered something: 1 repetitions"
1625
+ - listitem: "the ruined: 1 repetitions"
1626
+ - listitem: "ter this: 1 repetitions"
1627
+ - listitem: "this lot: 1 repetitions"
1628
+ - listitem: "accept there: 1 repetitions"
1629
+ - listitem: "s something: 1 repetitions"
1630
+ - listitem: "something strange: 1 repetitions"
1631
+ - listitem: "nothing a: 1 repetitions"
1632
+ - listitem: "this about: 1 repetitions"
1633
+ - listitem: "the world: 3 repetitions"
1634
+ - listitem: "off without: 1 repetitions"
1635
+ - listitem: "without them: 1 repetitions"
1636
+ - listitem: "all they: 1 repetitions"
1637
+ - listitem: "with these: 1 repetitions"
1638
+ - listitem: "these wizarding: 1 repetitions"
1639
+ - listitem: "Pointing this: 1 repetitions"
1640
+ - listitem: "this at: 1 repetitions"
1641
+ - listitem: ", breathing: 1 repetitions"
1642
+ - listitem: "breathing heavily: 1 repetitions"
1643
+ - listitem: "which this: 1 repetitions"
1644
+ - listitem: "out there: 2 repetitions"
1645
+ - listitem: "reckon they: 1 repetitions"
1646
+ - listitem: "there somewhere: 1 repetitions"
1647
+ - listitem: "Cause somethin: 1 repetitions"
1648
+ - listitem: "somethin': 3 repetitions"
1649
+ - listitem: "was somethin: 1 repetitions"
1650
+ - listitem: "on that: 1 repetitions"
1651
+ - listitem: "that night: 1 repetitions"
1652
+ - listitem: "but somethin: 1 repetitions"
1653
+ - listitem: "with warmth: 1 repetitions"
1654
+ - listitem: "warmth and: 1 repetitions"
1655
+ - listitem: "t they: 1 repetitions"
1656
+ - listitem: "they been: 1 repetitions"
1657
+ - listitem: "defeated the: 1 repetitions"
1658
+ - listitem: "the greatest: 2 repetitions"
1659
+ - listitem: "I think: 2 repetitions"
1660
+ - listitem: "think I: 2 repetitions"
1661
+ - listitem: "made things: 1 repetitions"
1662
+ - listitem: "odd thing: 1 repetitions"
1663
+ - listitem: "that had: 1 repetitions"
1664
+ - listitem: "furious with: 1 repetitions"
1665
+ - listitem: "their reach: 1 repetitions"
1666
+ - listitem: "school with: 1 repetitions"
1667
+ - listitem: "that ridiculous: 1 repetitions"
1668
+ - listitem: ", without: 1 repetitions"
1669
+ - listitem: "without even: 1 repetitions"
1670
+ - listitem: "that Hagrid: 1 repetitions"
1671
+ - listitem: "in without: 1 repetitions"
1672
+ - listitem: "read those: 1 repetitions"
1673
+ - listitem: "ter the: 1 repetitions"
1674
+ - listitem: "the finest: 1 repetitions"
1675
+ - listitem: "years there: 1 repetitions"
1676
+ - listitem: "there and: 1 repetitions"
1677
+ - listitem: "with youngsters: 1 repetitions"
1678
+ - listitem: "he thundered: 1 repetitions"
1679
+ - listitem: "thundered,: 1 repetitions"
1680
+ - listitem: "brought the: 1 repetitions"
1681
+ - listitem: "the umbrella: 1 repetitions"
1682
+ - listitem: "down through: 1 repetitions"
1683
+ - listitem: "spot with: 1 repetitions"
1684
+ - listitem: "on them: 1 repetitions"
1685
+ - listitem: "poking through: 1 repetitions"
1686
+ - listitem: "other room: 1 repetitions"
1687
+ - listitem: "anyway there: 1 repetitions"
1688
+ - listitem: "mention that: 1 repetitions"
1689
+ - listitem: "that ter: 1 repetitions"
1690
+ - listitem: "the reasons: 1 repetitions"
1691
+ - listitem: "the job: 1 repetitions"
1692
+ - listitem: "yeh the: 1 repetitions"
1693
+ - listitem: "the truth: 1 repetitions"
1694
+ - listitem: "truth.: 1 repetitions"
1695
+ - listitem: "me third: 1 repetitions"
1696
+ - listitem: "third year: 1 repetitions"
1697
+ - listitem: "They snapped: 1 repetitions"
1698
+ - listitem: "' everything: 1 repetitions"
1699
+ - listitem: "everything.: 1 repetitions"
1700
+ - listitem: "thick black: 1 repetitions"
1701
+ - listitem: "under that: 1 repetitions"
1702
+ - listitem: "early the: 1 repetitions"
static/tests/test-classic-1-lite.koboldai.net.spec.ts-snapshots/test-classic-1--asc-name.txt ADDED
@@ -0,0 +1,1702 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - text: /'th', \d+ occurrences/
2
+ - listitem: "! The: 1 repetitions"
3
+ - listitem: "\" Then: 2 repetitions"
4
+ - listitem: "\"Nothing: 1 repetitions"
5
+ - listitem: "\"That: 8 repetitions"
6
+ - listitem: "\"The: 5 repetitions"
7
+ - listitem: "\"Their: 1 repetitions"
8
+ - listitem: "\"There: 1 repetitions"
9
+ - listitem: "\"They: 1 repetitions"
10
+ - listitem: "\"Thirty-nine: 1 repetitions"
11
+ - listitem: "\"Thirty-six: 1 repetitions"
12
+ - listitem: "\"This: 1 repetitions"
13
+ - listitem: "' everything: 1 repetitions"
14
+ - listitem: "' that: 2 repetitions"
15
+ - listitem: "' the: 7 repetitions"
16
+ - listitem: "' then: 2 repetitions"
17
+ - listitem: "' this: 1 repetitions"
18
+ - listitem: ") that: 1 repetitions"
19
+ - listitem: ", Hut-on-the-Rock: 1 repetitions"
20
+ - listitem: ", although: 2 repetitions"
21
+ - listitem: ", anything: 1 repetitions"
22
+ - listitem: ", both: 3 repetitions"
23
+ - listitem: ", breathing: 1 repetitions"
24
+ - listitem: ", either: 1 repetitions"
25
+ - listitem: ", nothing: 2 repetitions"
26
+ - listitem: ", rather: 1 repetitions"
27
+ - listitem: ", slithering: 1 repetitions"
28
+ - listitem: ", thank: 3 repetitions"
29
+ - listitem: ", that: 8 repetitions"
30
+ - listitem: "/, the: \\d+ repetitions/"
31
+ - listitem: ", their: 1 repetitions"
32
+ - listitem: ", then: 1 repetitions"
33
+ - listitem: ", there: 8 repetitions"
34
+ - listitem: ", these: 1 repetitions"
35
+ - listitem: "/, they: \\d+ repetitions/"
36
+ - listitem: ", thin: 3 repetitions"
37
+ - listitem: ", things: 1 repetitions"
38
+ - listitem: ", thinking: 1 repetitions"
39
+ - listitem: ", thirty: 1 repetitions"
40
+ - listitem: ", thirty-seven: 1 repetitions"
41
+ - listitem: ", this: 3 repetitions"
42
+ - listitem: ", those: 1 repetitions"
43
+ - listitem: ", though: 5 repetitions"
44
+ - listitem: ", with: 4 repetitions"
45
+ - listitem: ", without: 1 repetitions"
46
+ - listitem: ". Although: 2 repetitions"
47
+ - listitem: ". Other: 1 repetitions"
48
+ - listitem: ". That: 2 repetitions"
49
+ - listitem: "/\\. The: \\d+ repetitions/"
50
+ - listitem: ". Then: 5 repetitions"
51
+ - listitem: ". There: 7 repetitions"
52
+ - listitem: "/\\. They: \\d+ repetitions/"
53
+ - listitem: ". Thirty: 1 repetitions"
54
+ - listitem: ". This: 6 repetitions"
55
+ - listitem: ". Three: 1 repetitions"
56
+ - listitem: ". With: 2 repetitions"
57
+ - listitem: ". Within: 1 repetitions"
58
+ - listitem: "... Thanksss: 1 repetitions"
59
+ - listitem: "... thirty: 1 repetitions"
60
+ - listitem: ": This: 1 repetitions"
61
+ - listitem: "; the: 2 repetitions"
62
+ - listitem: "; there: 1 repetitions"
63
+ - listitem: "; they: 3 repetitions"
64
+ - listitem: "; with: 1 repetitions"
65
+ - listitem: "? That: 1 repetitions"
66
+ - listitem: "? These: 1 repetitions"
67
+ - listitem: "A toothless: 1 repetitions"
68
+ - listitem: "ANYTHING?: 1 repetitions"
69
+ - listitem: "Although owls: 1 repetitions"
70
+ - listitem: "And they: 4 repetitions"
71
+ - listitem: "And this: 2 repetitions"
72
+ - listitem: "Another time: 1 repetitions"
73
+ - listitem: "Birthday Harry: 1 repetitions"
74
+ - listitem: "But that: 1 repetitions"
75
+ - listitem: "But then: 1 repetitions"
76
+ - listitem: "Cause somethin: 1 repetitions"
77
+ - listitem: "Cokeworth: 1 repetitions"
78
+ - listitem: "Dudley thought: 2 repetitions"
79
+ - listitem: "Dumbledore with: 1 repetitions"
80
+ - listitem: "Dursley that: 1 repetitions"
81
+ - listitem: "Hagrid thundered: 1 repetitions"
82
+ - listitem: "Hagrid with: 2 repetitions"
83
+ - listitem: "Harry thought: 2 repetitions"
84
+ - listitem: "Harry underneath: 1 repetitions"
85
+ - listitem: "Harry with: 2 repetitions"
86
+ - listitem: "He threw: 1 repetitions"
87
+ - listitem: "Hut-on-the-Rock: 1 repetitions"
88
+ - listitem: "Hut-on-the-Rock,: 1 repetitions"
89
+ - listitem: "I think: 2 repetitions"
90
+ - listitem: "If there: 1 repetitions"
91
+ - listitem: "If they: 2 repetitions"
92
+ - listitem: "Just then: 1 repetitions"
93
+ - listitem: "Lily that: 1 repetitions"
94
+ - listitem: "Lily this: 1 repetitions"
95
+ - listitem: "Maybe the: 1 repetitions"
96
+ - listitem: "McGuffin with: 1 repetitions"
97
+ - listitem: "Muggle clothes: 1 repetitions"
98
+ - listitem: "Nearly everything: 1 repetitions"
99
+ - listitem: "Nothing like: 1 repetitions"
100
+ - listitem: "Nothing,: 1 repetitions"
101
+ - listitem: "Only the: 3 repetitions"
102
+ - listitem: "Other shelves: 1 repetitions"
103
+ - listitem: "People throughout: 1 repetitions"
104
+ - listitem: "Petunia thought: 1 repetitions"
105
+ - listitem: "Petunia through: 2 repetitions"
106
+ - listitem: "Pointing this: 1 repetitions"
107
+ - listitem: "She threw: 1 repetitions"
108
+ - listitem: "Something came: 1 repetitions"
109
+ - listitem: "Soon the: 1 repetitions"
110
+ - listitem: "Suppose the: 1 repetitions"
111
+ - listitem: "THE KEYS: 1 repetitions"
112
+ - listitem: "THE VANASHIG: 1 repetitions"
113
+ - listitem: "THIS SNAKE: 1 repetitions"
114
+ - listitem: "Take this: 1 repetitions"
115
+ - listitem: "Thanksss: 1 repetitions"
116
+ - listitem: "Thanksss,: 1 repetitions"
117
+ - listitem: "That cars: 2 repetitions"
118
+ - listitem: "That does: 1 repetitions"
119
+ - listitem: "That evening: 3 repetitions"
120
+ - listitem: "The Smallest: 1 repetitions"
121
+ - listitem: "The anger: 1 repetitions"
122
+ - listitem: "The boa: 2 repetitions"
123
+ - listitem: "The escape: 1 repetitions"
124
+ - listitem: "The great: 2 repetitions"
125
+ - listitem: "The harder: 1 repetitions"
126
+ - listitem: "The inside: 1 repetitions"
127
+ - listitem: "The keeper: 2 repetitions"
128
+ - listitem: "The month-old: 1 repetitions"
129
+ - listitem: "The nearest: 2 repetitions"
130
+ - listitem: "The nerve: 1 repetitions"
131
+ - listitem: "The newscaster: 1 repetitions"
132
+ - listitem: "The noise: 1 repetitions"
133
+ - listitem: "The poor: 1 repetitions"
134
+ - listitem: "The problem: 1 repetitions"
135
+ - listitem: "The repaired: 1 repetitions"
136
+ - listitem: "The sun: 1 repetitions"
137
+ - listitem: "The traffic: 1 repetitions"
138
+ - listitem: "The tub: 1 repetitions"
139
+ - listitem: "The weirdest: 1 repetitions"
140
+ - listitem: "The woman: 1 repetitions"
141
+ - listitem: "Then he: 5 repetitions"
142
+ - listitem: "Then she: 1 repetitions"
143
+ - listitem: "Then —: 2 repetitions"
144
+ - listitem: "There': 2 repetitions"
145
+ - listitem: "They ate: 2 repetitions"
146
+ - listitem: "They drove: 2 repetitions"
147
+ - listitem: "They heard: 2 repetitions"
148
+ - listitem: "They knocked: 1 repetitions"
149
+ - listitem: "They snapped: 1 repetitions"
150
+ - listitem: "They stared: 1 repetitions"
151
+ - listitem: "They stuff: 1 repetitions"
152
+ - listitem: "Thirty seconds: 1 repetitions"
153
+ - listitem: "Thirty-nine: 1 repetitions"
154
+ - listitem: "Thirty-nine,: 1 repetitions"
155
+ - listitem: "Thirty-six: 1 repetitions"
156
+ - listitem: "Thirty-six,: 1 repetitions"
157
+ - listitem: "This bunch: 1 repetitions"
158
+ - listitem: "This morning: 1 repetitions"
159
+ - listitem: "This reminded: 1 repetitions"
160
+ - listitem: "This specimen: 1 repetitions"
161
+ - listitem: "Three minutes: 1 repetitions"
162
+ - listitem: "Three things: 1 repetitions"
163
+ - listitem: "Tiptoe Through: 1 repetitions"
164
+ - listitem: "Until they: 1 repetitions"
165
+ - listitem: "Vernon the: 1 repetitions"
166
+ - listitem: "Vernon through: 1 repetitions"
167
+ - listitem: "Was this: 2 repetitions"
168
+ - listitem: "Weather': 1 repetitions"
169
+ - listitem: "When the: 2 repetitions"
170
+ - listitem: "Within: 1 repetitions"
171
+ - listitem: "Within seconds: 1 repetitions"
172
+ - listitem: "a mouthful: 1 repetitions"
173
+ - listitem: "a rather: 2 repetitions"
174
+ - listitem: "a thin: 1 repetitions"
175
+ - listitem: "a thing: 1 repetitions"
176
+ - listitem: "a thumpin: 1 repetitions"
177
+ - listitem: "about anything: 2 repetitions"
178
+ - listitem: "about that: 2 repetitions"
179
+ - listitem: "about the: 6 repetitions"
180
+ - listitem: "about them: 2 repetitions"
181
+ - listitem: "about things: 1 repetitions"
182
+ - listitem: "about this: 2 repetitions"
183
+ - listitem: "accept there: 1 repetitions"
184
+ - listitem: "across the: 3 repetitions"
185
+ - listitem: "affect them: 1 repetitions"
186
+ - listitem: "after the: 1 repetitions"
187
+ - listitem: "again the: 1 repetitions"
188
+ - listitem: "against the: 3 repetitions"
189
+ - listitem: "all that: 2 repetitions"
190
+ - listitem: "/all the: \\d+ repetitions/"
191
+ - listitem: "all these: 2 repetitions"
192
+ - listitem: "all they: 1 repetitions"
193
+ - listitem: "all this: 5 repetitions"
194
+ - listitem: "along the: 1 repetitions"
195
+ - listitem: "also thought: 1 repetitions"
196
+ - listitem: "although: 4 repetitions"
197
+ - listitem: "although he: 3 repetitions"
198
+ - listitem: "and father: 2 repetitions"
199
+ - listitem: "and rather: 1 repetitions"
200
+ - listitem: "and slithering: 1 repetitions"
201
+ - listitem: "and that: 2 repetitions"
202
+ - listitem: "/and the: \\d+ repetitions/"
203
+ - listitem: "and their: 2 repetitions"
204
+ - listitem: "/and then: \\d+ repetitions/"
205
+ - listitem: "and there: 1 repetitions"
206
+ - listitem: "and thick: 2 repetitions"
207
+ - listitem: "and things: 1 repetitions"
208
+ - listitem: "and thinking: 1 repetitions"
209
+ - listitem: "and threw: 5 repetitions"
210
+ - listitem: "and throwing: 1 repetitions"
211
+ - listitem: "and thrown: 1 repetitions"
212
+ - listitem: "and with: 2 repetitions"
213
+ - listitem: "angrily that: 1 repetitions"
214
+ - listitem: "/another: \\d+ repetitions/"
215
+ - listitem: "another boy: 1 repetitions"
216
+ - listitem: "another funny: 1 repetitions"
217
+ - listitem: "another good: 1 repetitions"
218
+ - listitem: "another lemon: 1 repetitions"
219
+ - listitem: "another one: 2 repetitions"
220
+ - listitem: "another pocket: 1 repetitions"
221
+ - listitem: "another two: 1 repetitions"
222
+ - listitem: "another word: 1 repetitions"
223
+ - listitem: "anythin: 1 repetitions"
224
+ - listitem: "anythin': 1 repetitions"
225
+ - listitem: "/anything: \\d+ repetitions/"
226
+ - listitem: "anything acting: 1 repetitions"
227
+ - listitem: "anything as: 1 repetitions"
228
+ - listitem: "anything at: 1 repetitions"
229
+ - listitem: "anything else: 1 repetitions"
230
+ - listitem: "anything except: 1 repetitions"
231
+ - listitem: "anything he: 2 repetitions"
232
+ - listitem: "anything so: 1 repetitions"
233
+ - listitem: "anything strange: 1 repetitions"
234
+ - listitem: "anything that: 2 repetitions"
235
+ - listitem: "anything to: 3 repetitions"
236
+ - listitem: "anything!: 1 repetitions"
237
+ - listitem: "anything,: 2 repetitions"
238
+ - listitem: "anything.: 3 repetitions"
239
+ - listitem: "anyway there: 1 repetitions"
240
+ - listitem: "are nothing: 1 repetitions"
241
+ - listitem: "around the: 8 repetitions"
242
+ - listitem: "around them: 2 repetitions"
243
+ - listitem: "as the: 5 repetitions"
244
+ - listitem: "as there: 1 repetitions"
245
+ - listitem: "as they: 6 repetitions"
246
+ - listitem: "as this: 1 repetitions"
247
+ - listitem: "/as though: \\d+ repetitions/"
248
+ - listitem: "astonishing things: 1 repetitions"
249
+ - listitem: "at that: 3 repetitions"
250
+ - listitem: "/at the: \\d+ repetitions/"
251
+ - listitem: "at their: 1 repetitions"
252
+ - listitem: "at them: 1 repetitions"
253
+ - listitem: "at this: 2 repetitions"
254
+ - listitem: "away without: 1 repetitions"
255
+ - listitem: "back that: 1 repetitions"
256
+ - listitem: "back with: 1 repetitions"
257
+ - listitem: "baggy clothes: 1 repetitions"
258
+ - listitem: "banging things: 1 repetitions"
259
+ - listitem: "bath: 1 repetitions"
260
+ - listitem: "bath.: 1 repetitions"
261
+ - listitem: "bathroom: 2 repetitions"
262
+ - listitem: "bathroom,: 1 repetitions"
263
+ - listitem: "bathroom.: 1 repetitions"
264
+ - listitem: "be thankful: 1 repetitions"
265
+ - listitem: "be with: 3 repetitions"
266
+ - listitem: "because the: 2 repetitions"
267
+ - listitem: "because they: 1 repetitions"
268
+ - listitem: "been thinking: 2 repetitions"
269
+ - listitem: "beet with: 1 repetitions"
270
+ - listitem: "before the: 2 repetitions"
271
+ - listitem: "before they: 2 repetitions"
272
+ - listitem: "behind the: 2 repetitions"
273
+ - listitem: "behind their: 1 repetitions"
274
+ - listitem: "behind them: 3 repetitions"
275
+ - listitem: "behind with: 1 repetitions"
276
+ - listitem: "below them: 1 repetitions"
277
+ - listitem: "beneath: 2 repetitions"
278
+ - listitem: "beneath all: 1 repetitions"
279
+ - listitem: "beneath her: 1 repetitions"
280
+ - listitem: "bet that: 1 repetitions"
281
+ - listitem: "bigger than: 1 repetitions"
282
+ - listitem: "birthday: 9 repetitions"
283
+ - listitem: "birthday presents: 1 repetitions"
284
+ - listitem: "birthday tick: 1 repetitions"
285
+ - listitem: "birthday to: 1 repetitions"
286
+ - listitem: "birthday —: 1 repetitions"
287
+ - listitem: "birthday,: 1 repetitions"
288
+ - listitem: "birthday.: 2 repetitions"
289
+ - listitem: "birthdays were: 1 repetitions"
290
+ - listitem: "blame them: 1 repetitions"
291
+ - listitem: "blankets without: 1 repetitions"
292
+ - listitem: "bored with: 1 repetitions"
293
+ - listitem: "both: 8 repetitions"
294
+ - listitem: "both Harry: 1 repetitions"
295
+ - listitem: "both angry: 1 repetitions"
296
+ - listitem: "both long: 1 repetitions"
297
+ - listitem: "both looked: 1 repetitions"
298
+ - listitem: "both of: 3 repetitions"
299
+ - listitem: "both with: 1 repetitions"
300
+ - listitem: "boy anything: 1 repetitions"
301
+ - listitem: "boy with: 1 repetitions"
302
+ - listitem: "breakfast the: 1 repetitions"
303
+ - listitem: "breath: 4 repetitions"
304
+ - listitem: "breath,: 1 repetitions"
305
+ - listitem: "breathing heavily: 1 repetitions"
306
+ - listitem: "breaths and: 2 repetitions"
307
+ - listitem: "broken the: 1 repetitions"
308
+ - listitem: "brought the: 1 repetitions"
309
+ - listitem: "brought with: 1 repetitions"
310
+ - listitem: "brown with: 1 repetitions"
311
+ - listitem: "brushed the: 1 repetitions"
312
+ - listitem: "but somethin: 1 repetitions"
313
+ - listitem: "but the: 6 repetitions"
314
+ - listitem: "but there: 2 repetitions"
315
+ - listitem: "but they: 6 repetitions"
316
+ - listitem: "but thought: 2 repetitions"
317
+ - listitem: "buying anything: 1 repetitions"
318
+ - listitem: "by something: 1 repetitions"
319
+ - listitem: "/by the: \\d+ repetitions/"
320
+ - listitem: "by then: 1 repetitions"
321
+ - listitem: "cake that: 1 repetitions"
322
+ - listitem: "cake with: 1 repetitions"
323
+ - listitem: "came the: 1 repetitions"
324
+ - listitem: "car with: 1 repetitions"
325
+ - listitem: "catch the: 1 repetitions"
326
+ - listitem: "changed their: 1 repetitions"
327
+ - listitem: "choosing another: 1 repetitions"
328
+ - listitem: "clearly than: 1 repetitions"
329
+ - listitem: "clicked the: 1 repetitions"
330
+ - listitem: "cloak that: 1 repetitions"
331
+ - listitem: "clock the: 1 repetitions"
332
+ - listitem: "clothes: 6 repetitions"
333
+ - listitem: "clothes and: 2 repetitions"
334
+ - listitem: "clothes of: 1 repetitions"
335
+ - listitem: "clothes —: 1 repetitions"
336
+ - listitem: "clothes,: 1 repetitions"
337
+ - listitem: "clothes.: 1 repetitions"
338
+ - listitem: "comforting thought: 1 repetitions"
339
+ - listitem: "corner the: 1 repetitions"
340
+ - listitem: "could they: 1 repetitions"
341
+ - listitem: "crowded with: 1 repetitions"
342
+ - listitem: "cupboard with: 1 repetitions"
343
+ - listitem: "d rather: 1 repetitions"
344
+ - listitem: "d think: 1 repetitions"
345
+ - listitem: "dangerous with: 1 repetitions"
346
+ - listitem: "death: 1 repetitions"
347
+ - listitem: "death.: 1 repetitions"
348
+ - listitem: "deep breaths: 2 repetitions"
349
+ - listitem: "defeated the: 1 repetitions"
350
+ - listitem: "deliver them: 1 repetitions"
351
+ - listitem: "demand that: 1 repetitions"
352
+ - listitem: "did something: 1 repetitions"
353
+ - listitem: "did the: 1 repetitions"
354
+ - listitem: "did this: 1 repetitions"
355
+ - listitem: "disagree with: 1 repetitions"
356
+ - listitem: "do anything: 2 repetitions"
357
+ - listitem: "do math: 1 repetitions"
358
+ - listitem: "do something: 1 repetitions"
359
+ - listitem: "do with: 6 repetitions"
360
+ - listitem: "dodged the: 1 repetitions"
361
+ - listitem: "done anything: 1 repetitions"
362
+ - listitem: "doubted this: 1 repetitions"
363
+ - listitem: "down the: 9 repetitions"
364
+ - listitem: "down their: 1 repetitions"
365
+ - listitem: "down through: 1 repetitions"
366
+ - listitem: "downstairs bathroom: 1 repetitions"
367
+ - listitem: "downstairs without: 1 repetitions"
368
+ - listitem: "drills that: 2 repetitions"
369
+ - listitem: "drove them: 1 repetitions"
370
+ - listitem: "drumming their: 1 repetitions"
371
+ - listitem: "each other: 3 repetitions"
372
+ - listitem: "early the: 1 repetitions"
373
+ - listitem: "earth: 1 repetitions"
374
+ - listitem: "earth wants: 1 repetitions"
375
+ - listitem: "eggs that: 1 repetitions"
376
+ - listitem: "either: 1 repetitions"
377
+ - listitem: "either,: 1 repetitions"
378
+ - listitem: "eleventh: 1 repetitions"
379
+ - listitem: "eleventh birthday: 1 repetitions"
380
+ - listitem: "entered the: 1 repetitions"
381
+ - listitem: "envelope that: 1 repetitions"
382
+ - listitem: "even the: 1 repetitions"
383
+ - listitem: "even though: 1 repetitions"
384
+ - listitem: "even worth: 1 repetitions"
385
+ - listitem: "everythin: 1 repetitions"
386
+ - listitem: "everythin': 1 repetitions"
387
+ - listitem: "everything: 8 repetitions"
388
+ - listitem: "everything from: 1 repetitions"
389
+ - listitem: "everything he: 1 repetitions"
390
+ - listitem: "everything in: 1 repetitions"
391
+ - listitem: "everything perfect: 1 repetitions"
392
+ - listitem: "everything they: 1 repetitions"
393
+ - listitem: "everything to: 1 repetitions"
394
+ - listitem: "everything!: 1 repetitions"
395
+ - listitem: "everything.: 1 repetitions"
396
+ - listitem: "exactly the: 2 repetitions"
397
+ - listitem: "except that: 1 repetitions"
398
+ - listitem: "excitedly together: 1 repetitions"
399
+ - listitem: "expected this: 1 repetitions"
400
+ - listitem: "explain anything: 1 repetitions"
401
+ - listitem: "explain everything: 1 repetitions"
402
+ - listitem: "explain that: 1 repetitions"
403
+ - listitem: "eyed them: 1 repetitions"
404
+ - listitem: "eyes beneath: 1 repetitions"
405
+ - listitem: "fact that: 1 repetitions"
406
+ - listitem: "faster than: 1 repetitions"
407
+ - listitem: "father: 8 repetitions"
408
+ - listitem: "father a: 1 repetitions"
409
+ - listitem: "father had: 1 repetitions"
410
+ - listitem: "father with: 1 repetitions"
411
+ - listitem: "father,: 2 repetitions"
412
+ - listitem: "father.: 3 repetitions"
413
+ - listitem: "felt the: 1 repetitions"
414
+ - listitem: "filled the: 2 repetitions"
415
+ - listitem: "filthy: 1 repetitions"
416
+ - listitem: "filthy windows: 1 repetitions"
417
+ - listitem: "find the: 3 repetitions"
418
+ - listitem: "find their: 1 repetitions"
419
+ - listitem: "fine thing: 1 repetitions"
420
+ - listitem: "fingers through: 1 repetitions"
421
+ - listitem: "finish the: 1 repetitions"
422
+ - listitem: "fire there: 1 repetitions"
423
+ - listitem: "first thing: 1 repetitions"
424
+ - listitem: "foot through: 1 repetitions"
425
+ - listitem: "for breath: 1 repetitions"
426
+ - listitem: "for neither: 1 repetitions"
427
+ - listitem: "for nothing: 1 repetitions"
428
+ - listitem: "for something: 4 repetitions"
429
+ - listitem: "for the: 8 repetitions"
430
+ - listitem: "for them: 1 repetitions"
431
+ - listitem: "for this: 1 repetitions"
432
+ - listitem: "force that: 1 repetitions"
433
+ - listitem: "forced through: 1 repetitions"
434
+ - listitem: "forehead that: 1 repetitions"
435
+ - listitem: "forehead they: 1 repetitions"
436
+ - listitem: "forehead with: 1 repetitions"
437
+ - listitem: "forgotten that: 2 repetitions"
438
+ - listitem: "found the: 2 repetitions"
439
+ - listitem: "found their: 1 repetitions"
440
+ - listitem: "friendly with: 1 repetitions"
441
+ - listitem: "/from the: \\d+ repetitions/"
442
+ - listitem: "frozen with: 1 repetitions"
443
+ - listitem: "funny clothes: 1 repetitions"
444
+ - listitem: "furious with: 1 repetitions"
445
+ - listitem: "game with: 1 repetitions"
446
+ - listitem: "gazed open-mouthed: 1 repetitions"
447
+ - listitem: "get that: 3 repetitions"
448
+ - listitem: "get the: 5 repetitions"
449
+ - listitem: "get this: 2 repetitions"
450
+ - listitem: "given anything: 1 repetitions"
451
+ - listitem: "go through: 1 repetitions"
452
+ - listitem: "going there: 1 repetitions"
453
+ - listitem: "good-for-nothing: 1 repetitions"
454
+ - listitem: "good-for-nothing husband: 1 repetitions"
455
+ - listitem: "got something: 1 repetitions"
456
+ - listitem: "got that: 1 repetitions"
457
+ - listitem: "got this: 1 repetitions"
458
+ - listitem: "gotten the: 1 repetitions"
459
+ - listitem: "grabbed the: 2 repetitions"
460
+ - listitem: "grate with: 1 repetitions"
461
+ - listitem: "grew that: 1 repetitions"
462
+ - listitem: "grin through: 1 repetitions"
463
+ - listitem: "gruffly that: 1 repetitions"
464
+ - listitem: "had anything: 1 repetitions"
465
+ - listitem: "had everything: 1 repetitions"
466
+ - listitem: "had something: 1 repetitions"
467
+ - listitem: "had the: 3 repetitions"
468
+ - listitem: "hair that: 1 repetitions"
469
+ - listitem: "haircuts than: 1 repetitions"
470
+ - listitem: "hands the: 1 repetitions"
471
+ - listitem: "hands together: 2 repetitions"
472
+ - listitem: "happy birthday: 2 repetitions"
473
+ - listitem: "hated that: 1 repetitions"
474
+ - listitem: "hates the: 1 repetitions"
475
+ - listitem: "have anything: 1 repetitions"
476
+ - listitem: "have that: 1 repetitions"
477
+ - listitem: "have thirty: 1 repetitions"
478
+ - listitem: "have thought: 1 repetitions"
479
+ - listitem: "he thought: 6 repetitions"
480
+ - listitem: "he thundered: 1 repetitions"
481
+ - listitem: "head with: 1 repetitions"
482
+ - listitem: "hear the: 1 repetitions"
483
+ - listitem: "heard something: 1 repetitions"
484
+ - listitem: "heard the: 2 repetitions"
485
+ - listitem: "held together: 1 repetitions"
486
+ - listitem: "her good-for-nothing: 1 repetitions"
487
+ - listitem: "her mouth: 1 repetitions"
488
+ - listitem: "her something: 1 repetitions"
489
+ - listitem: "her throat: 1 repetitions"
490
+ - listitem: "here without: 1 repetitions"
491
+ - listitem: "hidden beneath: 1 repetitions"
492
+ - listitem: "hide that: 1 repetitions"
493
+ - listitem: "him another: 1 repetitions"
494
+ - listitem: "him anything: 1 repetitions"
495
+ - listitem: "him with: 1 repetitions"
496
+ - listitem: "himself together: 1 repetitions"
497
+ - listitem: "his birthdays: 2 repetitions"
498
+ - listitem: "his father: 6 repetitions"
499
+ - listitem: "/his mother: \\d+ repetitions/"
500
+ - listitem: "his mouth: 3 repetitions"
501
+ - listitem: "his teeth: 1 repetitions"
502
+ - listitem: "his thick: 2 repetitions"
503
+ - listitem: "his things: 1 repetitions"
504
+ - listitem: "his throat: 1 repetitions"
505
+ - listitem: "hit them: 1 repetitions"
506
+ - listitem: "hit with: 1 repetitions"
507
+ - listitem: "hold with: 1 repetitions"
508
+ - listitem: "holding them: 1 repetitions"
509
+ - listitem: "hoped the: 1 repetitions"
510
+ - listitem: "hot bath: 1 repetitions"
511
+ - listitem: "hours they: 1 repetitions"
512
+ - listitem: "hut with: 1 repetitions"
513
+ - listitem: "if the: 4 repetitions"
514
+ - listitem: "imagining things: 2 repetitions"
515
+ - listitem: "in anything: 2 repetitions"
516
+ - listitem: "in that: 2 repetitions"
517
+ - listitem: "/in the: \\d+ repetitions/"
518
+ - listitem: "in their: 3 repetitions"
519
+ - listitem: "in there: 3 repetitions"
520
+ - listitem: "in with: 1 repetitions"
521
+ - listitem: "in without: 1 repetitions"
522
+ - listitem: "inside the: 2 repetitions"
523
+ - listitem: "/into the: \\d+ repetitions/"
524
+ - listitem: "into their: 1 repetitions"
525
+ - listitem: "is that: 4 repetitions"
526
+ - listitem: "is the: 2 repetitions"
527
+ - listitem: "it there: 1 repetitions"
528
+ - listitem: "it with: 1 repetitions"
529
+ - listitem: "jerked the: 1 repetitions"
530
+ - listitem: "join the: 1 repetitions"
531
+ - listitem: "just the: 1 repetitions"
532
+ - listitem: "just thought: 1 repetitions"
533
+ - listitem: "keeping the: 1 repetitions"
534
+ - listitem: "kicked the: 1 repetitions"
535
+ - listitem: "kill that: 1 repetitions"
536
+ - listitem: "kill the: 1 repetitions"
537
+ - listitem: "kitchen the: 1 repetitions"
538
+ - listitem: "kitchen with: 1 repetitions"
539
+ - listitem: "knee that: 1 repetitions"
540
+ - listitem: "knew that: 3 repetitions"
541
+ - listitem: "knew the: 1 repetitions"
542
+ - listitem: "knew they: 2 repetitions"
543
+ - listitem: "know that: 2 repetitions"
544
+ - listitem: "know the: 1 repetitions"
545
+ - listitem: "know they: 1 repetitions"
546
+ - listitem: "knows nothin: 1 repetitions"
547
+ - listitem: "landed with: 1 repetitions"
548
+ - listitem: "late that: 1 repetitions"
549
+ - listitem: "later than: 1 repetitions"
550
+ - listitem: "later they: 1 repetitions"
551
+ - listitem: "lay smoothly: 1 repetitions"
552
+ - listitem: "leather: 1 repetitions"
553
+ - listitem: "leather boots: 1 repetitions"
554
+ - listitem: "led the: 1 repetitions"
555
+ - listitem: "left the: 2 repetitions"
556
+ - listitem: "less than: 2 repetitions"
557
+ - listitem: "letter than: 1 repetitions"
558
+ - listitem: "level with: 1 repetitions"
559
+ - listitem: "life with: 1 repetitions"
560
+ - listitem: "light that: 1 repetitions"
561
+ - listitem: "like that: 4 repetitions"
562
+ - listitem: "like them: 1 repetitions"
563
+ - listitem: "like this: 2 repetitions"
564
+ - listitem: "liquid that: 1 repetitions"
565
+ - listitem: "live with: 2 repetitions"
566
+ - listitem: "locked them: 1 repetitions"
567
+ - listitem: "long without: 1 repetitions"
568
+ - listitem: "look that: 1 repetitions"
569
+ - listitem: "looking both: 1 repetitions"
570
+ - listitem: "lunch they: 1 repetitions"
571
+ - listitem: "m rather: 1 repetitions"
572
+ - listitem: "m the: 1 repetitions"
573
+ - listitem: "made another: 1 repetitions"
574
+ - listitem: "made both: 1 repetitions"
575
+ - listitem: "made the: 1 repetitions"
576
+ - listitem: "made things: 1 repetitions"
577
+ - listitem: "make them: 1 repetitions"
578
+ - listitem: "man than: 1 repetitions"
579
+ - listitem: "man with: 1 repetitions"
580
+ - listitem: "man-crushing pythons: 1 repetitions"
581
+ - listitem: "markings the: 1 repetitions"
582
+ - listitem: "math: 1 repetitions"
583
+ - listitem: "math and: 1 repetitions"
584
+ - listitem: "me that: 1 repetitions"
585
+ - listitem: "me there: 1 repetitions"
586
+ - listitem: "me they: 1 repetitions"
587
+ - listitem: "me third: 1 repetitions"
588
+ - listitem: "mean the: 1 repetitions"
589
+ - listitem: "meant they: 1 repetitions"
590
+ - listitem: "mention anything: 1 repetitions"
591
+ - listitem: "mention that: 1 repetitions"
592
+ - listitem: "mention the: 1 repetitions"
593
+ - listitem: "met that: 1 repetitions"
594
+ - listitem: "minute the: 1 repetitions"
595
+ - listitem: "missing that: 1 repetitions"
596
+ - listitem: "mixing with: 1 repetitions"
597
+ - listitem: "moment the: 1 repetitions"
598
+ - listitem: "month-old: 1 repetitions"
599
+ - listitem: "month-old video: 1 repetitions"
600
+ - listitem: "more than: 1 repetitions"
601
+ - listitem: "moth-eaten: 1 repetitions"
602
+ - listitem: "moth-eaten sofa: 1 repetitions"
603
+ - listitem: "/mother: \\d+ repetitions/"
604
+ - listitem: "mother all: 1 repetitions"
605
+ - listitem: "mother and: 2 repetitions"
606
+ - listitem: "mother would: 1 repetitions"
607
+ - listitem: "mother,: 3 repetitions"
608
+ - listitem: "mother.: 4 repetitions"
609
+ - listitem: "mothers arms: 1 repetitions"
610
+ - listitem: "mouth: 6 repetitions"
611
+ - listitem: "mouth fell: 1 repetitions"
612
+ - listitem: "mouth was: 1 repetitions"
613
+ - listitem: "mouth with: 1 repetitions"
614
+ - listitem: "mouth,: 2 repetitions"
615
+ - listitem: "mouthful of: 1 repetitions"
616
+ - listitem: "move everything: 1 repetitions"
617
+ - listitem: "murmured through: 1 repetitions"
618
+ - listitem: "my mother: 1 repetitions"
619
+ - listitem: "mysterious things: 1 repetitions"
620
+ - listitem: "nail with: 1 repetitions"
621
+ - listitem: "nasty that: 1 repetitions"
622
+ - listitem: "need that: 1 repetitions"
623
+ - listitem: "neither: 1 repetitions"
624
+ - listitem: "neither as: 1 repetitions"
625
+ - listitem: "never thought: 1 repetitions"
626
+ - listitem: "nice there: 1 repetitions"
627
+ - listitem: "ninth: 1 repetitions"
628
+ - listitem: "ninth floor: 1 repetitions"
629
+ - listitem: "no other: 1 repetitions"
630
+ - listitem: "nor that: 1 repetitions"
631
+ - listitem: "nose with: 1 repetitions"
632
+ - listitem: "note that: 1 repetitions"
633
+ - listitem: "nothin: 1 repetitions"
634
+ - listitem: "nothin': 1 repetitions"
635
+ - listitem: "/nothing: \\d+ repetitions/"
636
+ - listitem: "nothing ...: 1 repetitions"
637
+ - listitem: "nothing a: 1 repetitions"
638
+ - listitem: "nothing about: 1 repetitions"
639
+ - listitem: "nothing could: 1 repetitions"
640
+ - listitem: "nothing except: 1 repetitions"
641
+ - listitem: "nothing next: 1 repetitions"
642
+ - listitem: "nothing to: 1 repetitions"
643
+ - listitem: "nothing was: 1 repetitions"
644
+ - listitem: "noticed something: 2 repetitions"
645
+ - listitem: "noticed the: 1 repetitions"
646
+ - listitem: "noticing that: 1 repetitions"
647
+ - listitem: "now the: 1 repetitions"
648
+ - listitem: "now they: 1 repetitions"
649
+ - listitem: "odd thing: 1 repetitions"
650
+ - listitem: "of anything: 1 repetitions"
651
+ - listitem: "of nothing: 1 repetitions"
652
+ - listitem: "of something: 2 repetitions"
653
+ - listitem: "/of the: \\d+ repetitions/"
654
+ - listitem: "of their: 3 repetitions"
655
+ - listitem: "/of them: \\d+ repetitions/"
656
+ - listitem: "of these: 3 repetitions"
657
+ - listitem: "of things: 1 repetitions"
658
+ - listitem: "of those: 1 repetitions"
659
+ - listitem: "of thunder: 1 repetitions"
660
+ - listitem: "off the: 3 repetitions"
661
+ - listitem: "off they: 1 repetitions"
662
+ - listitem: "off without: 1 repetitions"
663
+ - listitem: "old clothes: 2 repetitions"
664
+ - listitem: "old things: 1 repetitions"
665
+ - listitem: "older than: 1 repetitions"
666
+ - listitem: "on earth: 1 repetitions"
667
+ - listitem: "on something: 1 repetitions"
668
+ - listitem: "on that: 1 repetitions"
669
+ - listitem: "/on the: \\d+ repetitions/"
670
+ - listitem: "on their: 2 repetitions"
671
+ - listitem: "on them: 1 repetitions"
672
+ - listitem: "one thing: 2 repetitions"
673
+ - listitem: "only thing: 2 repetitions"
674
+ - listitem: "onto the: 2 repetitions"
675
+ - listitem: "open the: 4 repetitions"
676
+ - listitem: "open with: 1 repetitions"
677
+ - listitem: "open-mouthed: 1 repetitions"
678
+ - listitem: "open-mouthed as: 1 repetitions"
679
+ - listitem: "opinion there: 1 repetitions"
680
+ - listitem: "or rather: 1 repetitions"
681
+ - listitem: "or the: 1 repetitions"
682
+ - listitem: "/other: \\d+ repetitions/"
683
+ - listitem: "other darkly: 1 repetitions"
684
+ - listitem: "other day: 1 repetitions"
685
+ - listitem: "other end: 2 repetitions"
686
+ - listitem: "other hand: 2 repetitions"
687
+ - listitem: "other relatives: 1 repetitions"
688
+ - listitem: "other room: 1 repetitions"
689
+ - listitem: "other two: 1 repetitions"
690
+ - listitem: "other while: 1 repetitions"
691
+ - listitem: "other,: 1 repetitions"
692
+ - listitem: "out that: 2 repetitions"
693
+ - listitem: "out the: 3 repetitions"
694
+ - listitem: "out there: 2 repetitions"
695
+ - listitem: "out with: 2 repetitions"
696
+ - listitem: "outside the: 4 repetitions"
697
+ - listitem: "outta the: 1 repetitions"
698
+ - listitem: "/over the: \\d+ repetitions/"
699
+ - listitem: "over their: 1 repetitions"
700
+ - listitem: "over with: 1 repetitions"
701
+ - listitem: "overtook them: 1 repetitions"
702
+ - listitem: "owls that: 1 repetitions"
703
+ - listitem: "parrot that: 1 repetitions"
704
+ - listitem: "passed the: 1 repetitions"
705
+ - listitem: "past the: 1 repetitions"
706
+ - listitem: "past them: 1 repetitions"
707
+ - listitem: "plain that: 1 repetitions"
708
+ - listitem: "plainly there: 1 repetitions"
709
+ - listitem: "planned this: 1 repetitions"
710
+ - listitem: "poking through: 1 repetitions"
711
+ - listitem: "problems with: 1 repetitions"
712
+ - listitem: "put the: 3 repetitions"
713
+ - listitem: "put them: 1 repetitions"
714
+ - listitem: "put together: 1 repetitions"
715
+ - listitem: "pythons: 1 repetitions"
716
+ - listitem: "pythons.: 1 repetitions"
717
+ - listitem: "rapped the: 1 repetitions"
718
+ - listitem: "rather: 8 repetitions"
719
+ - listitem: "rather be: 1 repetitions"
720
+ - listitem: "rather fond: 1 repetitions"
721
+ - listitem: "rather ill: 1 repetitions"
722
+ - listitem: "rather quiet: 1 repetitions"
723
+ - listitem: "rather ruffled-looking: 1 repetitions"
724
+ - listitem: "rather severe-looking: 1 repetitions"
725
+ - listitem: "rather wicked: 1 repetitions"
726
+ - listitem: "rather,: 1 repetitions"
727
+ - listitem: "rattled the: 1 repetitions"
728
+ - listitem: "re the: 2 repetitions"
729
+ - listitem: "reached the: 2 repetitions"
730
+ - listitem: "reaching them: 1 repetitions"
731
+ - listitem: "read that: 1 repetitions"
732
+ - listitem: "read the: 3 repetitions"
733
+ - listitem: "read those: 1 repetitions"
734
+ - listitem: "realized that: 3 repetitions"
735
+ - listitem: "reckon they: 1 repetitions"
736
+ - listitem: "remember the: 1 repetitions"
737
+ - listitem: "remembered something: 1 repetitions"
738
+ - listitem: "reminded them: 1 repetitions"
739
+ - listitem: "reported that: 1 repetitions"
740
+ - listitem: "right then: 1 repetitions"
741
+ - listitem: "right there: 1 repetitions"
742
+ - listitem: "ripping the: 1 repetitions"
743
+ - listitem: "room that: 1 repetitions"
744
+ - listitem: "room with: 1 repetitions"
745
+ - listitem: "round the: 1 repetitions"
746
+ - listitem: "ruffled the: 1 repetitions"
747
+ - listitem: "rumbling with: 1 repetitions"
748
+ - listitem: "rumors that: 1 repetitions"
749
+ - listitem: "rushed them: 1 repetitions"
750
+ - listitem: "s another: 1 repetitions"
751
+ - listitem: "s birthday: 4 repetitions"
752
+ - listitem: "s eleventh: 1 repetitions"
753
+ - listitem: "s mouth: 1 repetitions"
754
+ - listitem: "s something: 1 repetitions"
755
+ - listitem: "s that: 3 repetitions"
756
+ - listitem: "s the: 4 repetitions"
757
+ - listitem: "s there: 1 repetitions"
758
+ - listitem: "s this: 1 repetitions"
759
+ - listitem: "s worth: 1 repetitions"
760
+ - listitem: "said anything: 1 repetitions"
761
+ - listitem: "said that: 2 repetitions"
762
+ - listitem: "said the: 7 repetitions"
763
+ - listitem: "same thing: 1 repetitions"
764
+ - listitem: "sat with: 1 repetitions"
765
+ - listitem: "saw that: 2 repetitions"
766
+ - listitem: "say another: 1 repetitions"
767
+ - listitem: "say something: 2 repetitions"
768
+ - listitem: "say thank: 1 repetitions"
769
+ - listitem: "say that: 2 repetitions"
770
+ - listitem: "school the: 1 repetitions"
771
+ - listitem: "school with: 1 repetitions"
772
+ - listitem: "see anything: 1 repetitions"
773
+ - listitem: "see that: 1 repetitions"
774
+ - listitem: "see the: 2 repetitions"
775
+ - listitem: "see three: 1 repetitions"
776
+ - listitem: "seemed that: 1 repetitions"
777
+ - listitem: "seen that: 1 repetitions"
778
+ - listitem: "seen the: 1 repetitions"
779
+ - listitem: "shaking the: 1 repetitions"
780
+ - listitem: "she thought: 1 repetitions"
781
+ - listitem: "shelf with: 1 repetitions"
782
+ - listitem: "shop without: 1 repetitions"
783
+ - listitem: "shopping with: 1 repetitions"
784
+ - listitem: "shouted that: 1 repetitions"
785
+ - listitem: "shredded the: 1 repetitions"
786
+ - listitem: "sign that: 1 repetitions"
787
+ - listitem: "since the: 1 repetitions"
788
+ - listitem: "skinnier than: 1 repetitions"
789
+ - listitem: "slammed the: 3 repetitions"
790
+ - listitem: "slid the: 1 repetitions"
791
+ - listitem: "slipped the: 1 repetitions"
792
+ - listitem: "slithering: 2 repetitions"
793
+ - listitem: "slithering out: 1 repetitions"
794
+ - listitem: "slithering over: 1 repetitions"
795
+ - listitem: "slot they: 1 repetitions"
796
+ - listitem: "slotted through: 1 repetitions"
797
+ - listitem: "smartly with: 1 repetitions"
798
+ - listitem: "smoothly: 1 repetitions"
799
+ - listitem: "smoothly on: 1 repetitions"
800
+ - listitem: "snapped through: 1 repetitions"
801
+ - listitem: "so that: 3 repetitions"
802
+ - listitem: "so they: 1 repetitions"
803
+ - listitem: "some clothes: 1 repetitions"
804
+ - listitem: "some things: 1 repetitions"
805
+ - listitem: "somethin: 3 repetitions"
806
+ - listitem: "somethin': 3 repetitions"
807
+ - listitem: "/something: \\d+ repetitions/"
808
+ - listitem: "something ...: 1 repetitions"
809
+ - listitem: "something about: 1 repetitions"
810
+ - listitem: "something alive: 1 repetitions"
811
+ - listitem: "something as: 1 repetitions"
812
+ - listitem: "something big: 1 repetitions"
813
+ - listitem: "something creak: 1 repetitions"
814
+ - listitem: "something else: 2 repetitions"
815
+ - listitem: "something had: 1 repetitions"
816
+ - listitem: "something he: 2 repetitions"
817
+ - listitem: "something peculiar: 1 repetitions"
818
+ - listitem: "something strange: 1 repetitions"
819
+ - listitem: "something that: 1 repetitions"
820
+ - listitem: "something to: 4 repetitions"
821
+ - listitem: "something very: 2 repetitions"
822
+ - listitem: "something!: 1 repetitions"
823
+ - listitem: "something': 1 repetitions"
824
+ - listitem: "something,: 1 repetitions"
825
+ - listitem: "something.: 4 repetitions"
826
+ - listitem: "somewhere that: 1 repetitions"
827
+ - listitem: "somewhere with: 1 repetitions"
828
+ - listitem: "sorry that: 1 repetitions"
829
+ - listitem: "spend the: 2 repetitions"
830
+ - listitem: "splattered the: 1 repetitions"
831
+ - listitem: "spoils everything: 1 repetitions"
832
+ - listitem: "spot with: 1 repetitions"
833
+ - listitem: "spotted that: 1 repetitions"
834
+ - listitem: "squashy something: 1 repetitions"
835
+ - listitem: "squeezed through: 1 repetitions"
836
+ - listitem: "still there: 2 repetitions"
837
+ - listitem: "stood with: 1 repetitions"
838
+ - listitem: "stop there: 1 repetitions"
839
+ - listitem: "strange things: 1 repetitions"
840
+ - listitem: "strangers they: 1 repetitions"
841
+ - listitem: "street that: 1 repetitions"
842
+ - listitem: "street the: 1 repetitions"
843
+ - listitem: "stuffing the: 1 repetitions"
844
+ - listitem: "suggest that: 1 repetitions"
845
+ - listitem: "supposed that: 1 repetitions"
846
+ - listitem: "supposed this: 1 repetitions"
847
+ - listitem: "sure that: 3 repetitions"
848
+ - listitem: "sure the: 2 repetitions"
849
+ - listitem: "sure there: 2 repetitions"
850
+ - listitem: "sure they: 1 repetitions"
851
+ - listitem: "swept the: 1 repetitions"
852
+ - listitem: "t there: 1 repetitions"
853
+ - listitem: "t they: 1 repetitions"
854
+ - listitem: "t think: 5 repetitions"
855
+ - listitem: "take the: 1 repetitions"
856
+ - listitem: "take them: 1 repetitions"
857
+ - listitem: "tasted anything: 1 repetitions"
858
+ - listitem: "tea then: 1 repetitions"
859
+ - listitem: "tea through: 1 repetitions"
860
+ - listitem: "tearing the: 1 repetitions"
861
+ - listitem: "teeth: 1 repetitions"
862
+ - listitem: "teeth he: 1 repetitions"
863
+ - listitem: "telling the: 2 repetitions"
864
+ - listitem: "telling them: 3 repetitions"
865
+ - listitem: "ter the: 1 repetitions"
866
+ - listitem: "ter this: 1 repetitions"
867
+ - listitem: "terrible things: 1 repetitions"
868
+ - listitem: "/than: \\d+ repetitions/"
869
+ - listitem: "than July: 1 repetitions"
870
+ - listitem: "than Vernon: 1 repetitions"
871
+ - listitem: "than a: 1 repetitions"
872
+ - listitem: "than having: 1 repetitions"
873
+ - listitem: "than he: 4 repetitions"
874
+ - listitem: "than his: 1 repetitions"
875
+ - listitem: "than last: 1 repetitions"
876
+ - listitem: "than the: 1 repetitions"
877
+ - listitem: "than twelve: 1 repetitions"
878
+ - listitem: "than up: 1 repetitions"
879
+ - listitem: "than worse: 1 repetitions"
880
+ - listitem: "thank: 5 repetitions"
881
+ - listitem: "thank you: 3 repetitions"
882
+ - listitem: "thankful for: 1 repetitions"
883
+ - listitem: "thanks,: 1 repetitions"
884
+ - listitem: "/that: \\d+ repetitions/"
885
+ - listitem: "that ...: 1 repetitions"
886
+ - listitem: "that Dudley: 5 repetitions"
887
+ - listitem: "that Hagrid: 1 repetitions"
888
+ - listitem: "that Harry: 5 repetitions"
889
+ - listitem: "that Lily: 1 repetitions"
890
+ - listitem: "that Mrs: 1 repetitions"
891
+ - listitem: "that Potter: 1 repetitions"
892
+ - listitem: "that Privet: 1 repetitions"
893
+ - listitem: "that Professor: 1 repetitions"
894
+ - listitem: "that a: 1 repetitions"
895
+ - listitem: "that afternoon: 2 repetitions"
896
+ - listitem: "that all: 2 repetitions"
897
+ - listitem: "that and: 1 repetitions"
898
+ - listitem: "that another: 1 repetitions"
899
+ - listitem: "that are: 1 repetitions"
900
+ - listitem: "that at: 1 repetitions"
901
+ - listitem: "that couldn: 1 repetitions"
902
+ - listitem: "that cupboard: 1 repetitions"
903
+ - listitem: "that dangerous: 1 repetitions"
904
+ - listitem: "that day: 2 repetitions"
905
+ - listitem: "that fateful: 1 repetitions"
906
+ - listitem: "that funny: 1 repetitions"
907
+ - listitem: "that had: 1 repetitions"
908
+ - listitem: "that have: 1 repetitions"
909
+ - listitem: "that he: 9 repetitions"
910
+ - listitem: "that his: 1 repetitions"
911
+ - listitem: "that horrible: 1 repetitions"
912
+ - listitem: "that if: 1 repetitions"
913
+ - listitem: "that instead: 1 repetitions"
914
+ - listitem: "that is: 1 repetitions"
915
+ - listitem: "that it: 3 repetitions"
916
+ - listitem: "that last: 1 repetitions"
917
+ - listitem: "that lay: 1 repetitions"
918
+ - listitem: "that letter: 2 repetitions"
919
+ - listitem: "that little: 1 repetitions"
920
+ - listitem: "that looked: 2 repetitions"
921
+ - listitem: "that made: 2 repetitions"
922
+ - listitem: "that man: 1 repetitions"
923
+ - listitem: "that mark: 1 repetitions"
924
+ - listitem: "that meant: 1 repetitions"
925
+ - listitem: "that might: 1 repetitions"
926
+ - listitem: "that moment: 3 repetitions"
927
+ - listitem: "that morning: 2 repetitions"
928
+ - listitem: "that motorcycle: 1 repetitions"
929
+ - listitem: "that night: 1 repetitions"
930
+ - listitem: "that no: 1 repetitions"
931
+ - listitem: "that odd: 1 repetitions"
932
+ - listitem: "that reminds: 1 repetitions"
933
+ - listitem: "that ridiculous: 1 repetitions"
934
+ - listitem: "that room: 1 repetitions"
935
+ - listitem: "that rubbish: 1 repetitions"
936
+ - listitem: "that sad: 1 repetitions"
937
+ - listitem: "that said: 2 repetitions"
938
+ - listitem: "that scar: 1 repetitions"
939
+ - listitem: "that school: 1 repetitions"
940
+ - listitem: "that somebody: 1 repetitions"
941
+ - listitem: "that sounded: 1 repetitions"
942
+ - listitem: "that started: 1 repetitions"
943
+ - listitem: "that strange: 1 repetitions"
944
+ - listitem: "that strangers: 1 repetitions"
945
+ - listitem: "that swept: 1 repetitions"
946
+ - listitem: "that tasted: 1 repetitions"
947
+ - listitem: "that tea: 1 repetitions"
948
+ - listitem: "that ter: 1 repetitions"
949
+ - listitem: "that the: 9 repetitions"
950
+ - listitem: "that their: 1 repetitions"
951
+ - listitem: "that there: 1 repetitions"
952
+ - listitem: "that they: 3 repetitions"
953
+ - listitem: "that this: 2 repetitions"
954
+ - listitem: "that until: 1 repetitions"
955
+ - listitem: "that usually: 1 repetitions"
956
+ - listitem: "that was: 7 repetitions"
957
+ - listitem: "that wasn: 1 repetitions"
958
+ - listitem: "that way: 1 repetitions"
959
+ - listitem: "that whatever: 1 repetitions"
960
+ - listitem: "that when: 1 repetitions"
961
+ - listitem: "that where: 1 repetitions"
962
+ - listitem: "that would: 1 repetitions"
963
+ - listitem: "that wouldn: 1 repetitions"
964
+ - listitem: "that you: 2 repetitions"
965
+ - listitem: "that —: 1 repetitions"
966
+ - listitem: "/that': \\d+ repetitions/"
967
+ - listitem: "that,: 5 repetitions"
968
+ - listitem: "that.: 3 repetitions"
969
+ - listitem: "that?: 2 repetitions"
970
+ - listitem: "/the: \\d+ repetitions/"
971
+ - listitem: "the Bones: 1 repetitions"
972
+ - listitem: "the Brazilian: 1 repetitions"
973
+ - listitem: "/the Dursleys: \\d+ repetitions/"
974
+ - listitem: "the Grunnings: 1 repetitions"
975
+ - listitem: "the Isle: 1 repetitions"
976
+ - listitem: "the London: 1 repetitions"
977
+ - listitem: "the McKinnons: 1 repetitions"
978
+ - listitem: "the Muggles: 4 repetitions"
979
+ - listitem: "/the Potters: \\d+ repetitions/"
980
+ - listitem: "the Prewetts: 1 repetitions"
981
+ - listitem: "the Put-: 1 repetitions"
982
+ - listitem: "the Put-Outer: 1 repetitions"
983
+ - listitem: "the Smelting: 2 repetitions"
984
+ - listitem: "the Tulips: 1 repetitions"
985
+ - listitem: "the address: 2 repetitions"
986
+ - listitem: "the age: 1 repetitions"
987
+ - listitem: "the air: 6 repetitions"
988
+ - listitem: "the animals: 1 repetitions"
989
+ - listitem: "the arm: 1 repetitions"
990
+ - listitem: "the back: 5 repetitions"
991
+ - listitem: "the bacon: 2 repetitions"
992
+ - listitem: "the baker: 1 repetitions"
993
+ - listitem: "the bakery: 1 repetitions"
994
+ - listitem: "the bank: 1 repetitions"
995
+ - listitem: "the barbers: 1 repetitions"
996
+ - listitem: "the bathroom: 1 repetitions"
997
+ - listitem: "the bed: 2 repetitions"
998
+ - listitem: "the bedroom: 1 repetitions"
999
+ - listitem: "the beetle: 1 repetitions"
1000
+ - listitem: "the best: 3 repetitions"
1001
+ - listitem: "the big: 2 repetitions"
1002
+ - listitem: "the biggest: 3 repetitions"
1003
+ - listitem: "the bill: 2 repetitions"
1004
+ - listitem: "the blinding: 1 repetitions"
1005
+ - listitem: "the boarded-up: 1 repetitions"
1006
+ - listitem: "the boat: 1 repetitions"
1007
+ - listitem: "the bowl: 1 repetitions"
1008
+ - listitem: "the boy: 7 repetitions"
1009
+ - listitem: "the brass: 1 repetitions"
1010
+ - listitem: "the breakfast: 1 repetitions"
1011
+ - listitem: "the broken-down: 1 repetitions"
1012
+ - listitem: "the building: 1 repetitions"
1013
+ - listitem: "the bundle: 2 repetitions"
1014
+ - listitem: "the cannon: 1 repetitions"
1015
+ - listitem: "the car: 9 repetitions"
1016
+ - listitem: "/the cat: \\d+ repetitions/"
1017
+ - listitem: "the ceiling: 3 repetitions"
1018
+ - listitem: "the celebrations: 1 repetitions"
1019
+ - listitem: "the cheek: 1 repetitions"
1020
+ - listitem: "the chimney: 1 repetitions"
1021
+ - listitem: "the click: 1 repetitions"
1022
+ - listitem: "the cloudy: 1 repetitions"
1023
+ - listitem: "the coast: 1 repetitions"
1024
+ - listitem: "the concrete: 1 repetitions"
1025
+ - listitem: "the contrary: 1 repetitions"
1026
+ - listitem: "the corner: 8 repetitions"
1027
+ - listitem: "the council: 1 repetitions"
1028
+ - listitem: "the country: 2 repetitions"
1029
+ - listitem: "the crack: 2 repetitions"
1030
+ - listitem: "the crash: 1 repetitions"
1031
+ - listitem: "the cupboard: 3 repetitions"
1032
+ - listitem: "the dairy: 1 repetitions"
1033
+ - listitem: "the dark: 2 repetitions"
1034
+ - listitem: "the day: 4 repetitions"
1035
+ - listitem: "the dining: 1 repetitions"
1036
+ - listitem: "the director: 1 repetitions"
1037
+ - listitem: "the distance: 1 repetitions"
1038
+ - listitem: "/the door: \\d+ repetitions/"
1039
+ - listitem: "the doorbell: 1 repetitions"
1040
+ - listitem: "the doormat: 3 repetitions"
1041
+ - listitem: "the doorway: 1 repetitions"
1042
+ - listitem: "the downstairs: 1 repetitions"
1043
+ - listitem: "the dream: 1 repetitions"
1044
+ - listitem: "the driveway: 1 repetitions"
1045
+ - listitem: "the dull: 1 repetitions"
1046
+ - listitem: "the edge: 3 repetitions"
1047
+ - listitem: "the empty: 2 repetitions"
1048
+ - listitem: "the end: 3 repetitions"
1049
+ - listitem: "the engine: 1 repetitions"
1050
+ - listitem: "the entrance: 1 repetitions"
1051
+ - listitem: "the envelope: 3 repetitions"
1052
+ - listitem: "the evening: 1 repetitions"
1053
+ - listitem: "the exits: 1 repetitions"
1054
+ - listitem: "the eyes: 1 repetitions"
1055
+ - listitem: "the face: 1 repetitions"
1056
+ - listitem: "the fact: 1 repetitions"
1057
+ - listitem: "the fair: 1 repetitions"
1058
+ - listitem: "the family: 2 repetitions"
1059
+ - listitem: "the far: 1 repetitions"
1060
+ - listitem: "the fierce: 1 repetitions"
1061
+ - listitem: "the filthy: 1 repetitions"
1062
+ - listitem: "the finest: 1 repetitions"
1063
+ - listitem: "the fire: 2 repetitions"
1064
+ - listitem: "the firelight: 1 repetitions"
1065
+ - listitem: "the fireplace: 3 repetitions"
1066
+ - listitem: "/the first: \\d+ repetitions/"
1067
+ - listitem: "the floor: 4 repetitions"
1068
+ - listitem: "the foot: 1 repetitions"
1069
+ - listitem: "the front: 8 repetitions"
1070
+ - listitem: "the frying: 1 repetitions"
1071
+ - listitem: "the furious: 1 repetitions"
1072
+ - listitem: "the future: 1 repetitions"
1073
+ - listitem: "the gap: 2 repetitions"
1074
+ - listitem: "the getups: 1 repetitions"
1075
+ - listitem: "/the giant: \\d+ repetitions/"
1076
+ - listitem: "/the glass: \\d+ repetitions/"
1077
+ - listitem: "the glistening: 1 repetitions"
1078
+ - listitem: "the grayish: 1 repetitions"
1079
+ - listitem: "the greatest: 2 repetitions"
1080
+ - listitem: "the green: 2 repetitions"
1081
+ - listitem: "the greenhouse: 1 repetitions"
1082
+ - listitem: "the ground: 4 repetitions"
1083
+ - listitem: "the gun: 1 repetitions"
1084
+ - listitem: "the hair: 1 repetitions"
1085
+ - listitem: "the hall: 6 repetitions"
1086
+ - listitem: "the head: 3 repetitions"
1087
+ - listitem: "the high: 1 repetitions"
1088
+ - listitem: "the highway: 1 repetitions"
1089
+ - listitem: "the holidays: 1 repetitions"
1090
+ - listitem: "the hotel: 1 repetitions"
1091
+ - listitem: "/the house: \\d+ repetitions/"
1092
+ - listitem: "the hut: 4 repetitions"
1093
+ - listitem: "the inky: 1 repetitions"
1094
+ - listitem: "the iron-gray: 1 repetitions"
1095
+ - listitem: "the job: 1 repetitions"
1096
+ - listitem: "the keyhole: 1 repetitions"
1097
+ - listitem: "/the kitchen: \\d+ repetitions/"
1098
+ - listitem: "the largest: 1 repetitions"
1099
+ - listitem: "the last: 2 repetitions"
1100
+ - listitem: "the leader: 1 repetitions"
1101
+ - listitem: "/the letter: \\d+ repetitions/"
1102
+ - listitem: "the library: 1 repetitions"
1103
+ - listitem: "the lights: 4 repetitions"
1104
+ - listitem: "the little: 1 repetitions"
1105
+ - listitem: "the living: 4 repetitions"
1106
+ - listitem: "the local: 1 repetitions"
1107
+ - listitem: "the locked: 1 repetitions"
1108
+ - listitem: "the long: 1 repetitions"
1109
+ - listitem: "the lot: 1 repetitions"
1110
+ - listitem: "the low: 2 repetitions"
1111
+ - listitem: "the lumpy: 1 repetitions"
1112
+ - listitem: "the mail: 8 repetitions"
1113
+ - listitem: "the man: 3 repetitions"
1114
+ - listitem: "the mantelpiece: 1 repetitions"
1115
+ - listitem: "the markings: 1 repetitions"
1116
+ - listitem: "the middle: 3 repetitions"
1117
+ - listitem: "the milk: 1 repetitions"
1118
+ - listitem: "the moment: 4 repetitions"
1119
+ - listitem: "the mood: 1 repetitions"
1120
+ - listitem: "the most: 1 repetitions"
1121
+ - listitem: "the moth-eaten: 1 repetitions"
1122
+ - listitem: "the motorcycle: 3 repetitions"
1123
+ - listitem: "the movies: 1 repetitions"
1124
+ - listitem: "the myst: 1 repetitions"
1125
+ - listitem: "the name: 3 repetitions"
1126
+ - listitem: "the nation: 1 repetitions"
1127
+ - listitem: "the neat: 1 repetitions"
1128
+ - listitem: "the neck: 1 repetitions"
1129
+ - listitem: "the neighbors: 2 repetitions"
1130
+ - listitem: "the news: 2 repetitions"
1131
+ - listitem: "/the next: \\d+ repetitions/"
1132
+ - listitem: "the night: 3 repetitions"
1133
+ - listitem: "the ninth: 1 repetitions"
1134
+ - listitem: "the nose: 1 repetitions"
1135
+ - listitem: "the note: 1 repetitions"
1136
+ - listitem: "the old: 1 repetitions"
1137
+ - listitem: "the one: 1 repetitions"
1138
+ - listitem: "the only: 9 repetitions"
1139
+ - listitem: "the opposite: 1 repetitions"
1140
+ - listitem: "the other: 7 repetitions"
1141
+ - listitem: "the outskirts: 1 repetitions"
1142
+ - listitem: "the owls: 7 repetitions"
1143
+ - listitem: "the owner: 1 repetitions"
1144
+ - listitem: "the paper: 1 repetitions"
1145
+ - listitem: "the pavement: 1 repetitions"
1146
+ - listitem: "the people: 3 repetitions"
1147
+ - listitem: "the perfect: 1 repetitions"
1148
+ - listitem: "the photographs: 2 repetitions"
1149
+ - listitem: "the piece: 1 repetitions"
1150
+ - listitem: "the place: 3 repetitions"
1151
+ - listitem: "the plates: 1 repetitions"
1152
+ - listitem: "the pockets: 2 repetitions"
1153
+ - listitem: "the point: 2 repetitions"
1154
+ - listitem: "the poker: 1 repetitions"
1155
+ - listitem: "the post: 1 repetitions"
1156
+ - listitem: "the postcard: 2 repetitions"
1157
+ - listitem: "the postman: 1 repetitions"
1158
+ - listitem: "the promised: 1 repetitions"
1159
+ - listitem: "the proudest: 1 repetitions"
1160
+ - listitem: "the racing: 2 repetitions"
1161
+ - listitem: "the rain: 1 repetitions"
1162
+ - listitem: "the real: 2 repetitions"
1163
+ - listitem: "the reasons: 1 repetitions"
1164
+ - listitem: "the receiver: 1 repetitions"
1165
+ - listitem: "the reptile: 3 repetitions"
1166
+ - listitem: "the rest: 3 repetitions"
1167
+ - listitem: "the ribs: 1 repetitions"
1168
+ - listitem: "the right: 2 repetitions"
1169
+ - listitem: "the road: 4 repetitions"
1170
+ - listitem: "the rock: 4 repetitions"
1171
+ - listitem: "the roof: 3 repetitions"
1172
+ - listitem: "the room: 6 repetitions"
1173
+ - listitem: "the ruined: 1 repetitions"
1174
+ - listitem: "the rumors: 2 repetitions"
1175
+ - listitem: "/the same: \\d+ repetitions/"
1176
+ - listitem: "the sausages: 1 repetitions"
1177
+ - listitem: "the school: 2 repetitions"
1178
+ - listitem: "the scruffs: 1 repetitions"
1179
+ - listitem: "the sea: 4 repetitions"
1180
+ - listitem: "the second: 3 repetitions"
1181
+ - listitem: "the shadows: 1 repetitions"
1182
+ - listitem: "the shape: 1 repetitions"
1183
+ - listitem: "the shop: 1 repetitions"
1184
+ - listitem: "the shoulder: 1 repetitions"
1185
+ - listitem: "the shriveled: 1 repetitions"
1186
+ - listitem: "the sides: 1 repetitions"
1187
+ - listitem: "the sight: 1 repetitions"
1188
+ - listitem: "the sign: 3 repetitions"
1189
+ - listitem: "the silence: 1 repetitions"
1190
+ - listitem: "the silver: 2 repetitions"
1191
+ - listitem: "the sink: 1 repetitions"
1192
+ - listitem: "the size: 1 repetitions"
1193
+ - listitem: "the sky: 1 repetitions"
1194
+ - listitem: "the small: 1 repetitions"
1195
+ - listitem: "the smaller: 1 repetitions"
1196
+ - listitem: "the smell: 1 repetitions"
1197
+ - listitem: "the smiling: 1 repetitions"
1198
+ - listitem: "/the snake: \\d+ repetitions/"
1199
+ - listitem: "the sofa: 7 repetitions"
1200
+ - listitem: "the softest: 1 repetitions"
1201
+ - listitem: "the sound: 3 repetitions"
1202
+ - listitem: "the spot: 2 repetitions"
1203
+ - listitem: "the stairs: 2 repetitions"
1204
+ - listitem: "the steering: 1 repetitions"
1205
+ - listitem: "the step: 1 repetitions"
1206
+ - listitem: "the storm: 3 repetitions"
1207
+ - listitem: "the stove: 1 repetitions"
1208
+ - listitem: "the stranger: 1 repetitions"
1209
+ - listitem: "/the street: \\d+ repetitions/"
1210
+ - listitem: "the subject: 1 repetitions"
1211
+ - listitem: "the summer: 1 repetitions"
1212
+ - listitem: "the tabby: 2 repetitions"
1213
+ - listitem: "the table: 5 repetitions"
1214
+ - listitem: "the tank: 1 repetitions"
1215
+ - listitem: "the teachers: 1 repetitions"
1216
+ - listitem: "the telephone: 3 repetitions"
1217
+ - listitem: "the things: 2 repetitions"
1218
+ - listitem: "the thinnest: 1 repetitions"
1219
+ - listitem: "the thought: 1 repetitions"
1220
+ - listitem: "the three: 1 repetitions"
1221
+ - listitem: "the time: 6 repetitions"
1222
+ - listitem: "the tiny: 1 repetitions"
1223
+ - listitem: "the toilet: 1 repetitions"
1224
+ - listitem: "the top: 3 repetitions"
1225
+ - listitem: "the toys: 1 repetitions"
1226
+ - listitem: "the truth: 1 repetitions"
1227
+ - listitem: "the twinkling: 1 repetitions"
1228
+ - listitem: "the two: 1 repetitions"
1229
+ - listitem: "the umbrella: 1 repetitions"
1230
+ - listitem: "the usual: 2 repetitions"
1231
+ - listitem: "the van: 1 repetitions"
1232
+ - listitem: "the very: 3 repetitions"
1233
+ - listitem: "the village: 1 repetitions"
1234
+ - listitem: "the waist: 1 repetitions"
1235
+ - listitem: "the wall: 9 repetitions"
1236
+ - listitem: "the warmth: 1 repetitions"
1237
+ - listitem: "the wash: 1 repetitions"
1238
+ - listitem: "/the way: \\d+ repetitions/"
1239
+ - listitem: "the weather: 1 repetitions"
1240
+ - listitem: "the weatherman: 1 repetitions"
1241
+ - listitem: "the week: 1 repetitions"
1242
+ - listitem: "the whisperers: 1 repetitions"
1243
+ - listitem: "the whistling: 1 repetitions"
1244
+ - listitem: "the whole: 5 repetitions"
1245
+ - listitem: "the wind: 2 repetitions"
1246
+ - listitem: "the window: 2 repetitions"
1247
+ - listitem: "the windowsill: 1 repetitions"
1248
+ - listitem: "the wooden: 1 repetitions"
1249
+ - listitem: "the words: 1 repetitions"
1250
+ - listitem: "the world: 3 repetitions"
1251
+ - listitem: "the yellow: 1 repetitions"
1252
+ - listitem: "the yellowish: 1 repetitions"
1253
+ - listitem: "the young: 1 repetitions"
1254
+ - listitem: "the zoo: 6 repetitions"
1255
+ - listitem: "/their: \\d+ repetitions/"
1256
+ - listitem: "their arms: 1 repetitions"
1257
+ - listitem: "their backs: 1 repetitions"
1258
+ - listitem: "their corner: 1 repetitions"
1259
+ - listitem: "their day: 1 repetitions"
1260
+ - listitem: "their faces: 2 repetitions"
1261
+ - listitem: "their favorite: 1 repetitions"
1262
+ - listitem: "their fingers: 1 repetitions"
1263
+ - listitem: "their glasses: 1 repetitions"
1264
+ - listitem: "their greatest: 1 repetitions"
1265
+ - listitem: "their heels: 1 repetitions"
1266
+ - listitem: "their kind: 1 repetitions"
1267
+ - listitem: "their leather: 1 repetitions"
1268
+ - listitem: "their living: 1 repetitions"
1269
+ - listitem: "their necks: 2 repetitions"
1270
+ - listitem: "their nephew: 1 repetitions"
1271
+ - listitem: "their news: 1 repetitions"
1272
+ - listitem: "their opinion: 1 repetitions"
1273
+ - listitem: "their reach: 1 repetitions"
1274
+ - listitem: "their sleeping: 1 repetitions"
1275
+ - listitem: "their son: 2 repetitions"
1276
+ - listitem: "their street: 1 repetitions"
1277
+ - listitem: "their table: 1 repetitions"
1278
+ - listitem: "their very: 1 repetitions"
1279
+ - listitem: "their way: 2 repetitions"
1280
+ - listitem: "their window: 1 repetitions"
1281
+ - listitem: "/them: \\d+ repetitions/"
1282
+ - listitem: "them Harry: 1 repetitions"
1283
+ - listitem: "them a: 1 repetitions"
1284
+ - listitem: "them all: 3 repetitions"
1285
+ - listitem: "them and: 2 repetitions"
1286
+ - listitem: "them angrily: 1 repetitions"
1287
+ - listitem: "them as: 3 repetitions"
1288
+ - listitem: "them cheerfully: 1 repetitions"
1289
+ - listitem: "them had: 1 repetitions"
1290
+ - listitem: "them happen: 1 repetitions"
1291
+ - listitem: "them here: 1 repetitions"
1292
+ - listitem: "them how: 1 repetitions"
1293
+ - listitem: "them in: 2 repetitions"
1294
+ - listitem: "them into: 2 repetitions"
1295
+ - listitem: "them jump: 1 repetitions"
1296
+ - listitem: "them knew: 1 repetitions"
1297
+ - listitem: "them next: 1 repetitions"
1298
+ - listitem: "them noticed: 1 repetitions"
1299
+ - listitem: "them on: 1 repetitions"
1300
+ - listitem: "them out: 1 repetitions"
1301
+ - listitem: "them stood: 1 repetitions"
1302
+ - listitem: "them they: 1 repetitions"
1303
+ - listitem: "them to: 1 repetitions"
1304
+ - listitem: "them up: 1 repetitions"
1305
+ - listitem: "them we: 1 repetitions"
1306
+ - listitem: "them were: 1 repetitions"
1307
+ - listitem: "them weren: 1 repetitions"
1308
+ - listitem: "/them,: \\d+ repetitions/"
1309
+ - listitem: "/them\\.: \\d+ repetitions/"
1310
+ - listitem: "/then: \\d+ repetitions/"
1311
+ - listitem: "then Uncle: 1 repetitions"
1312
+ - listitem: "then came: 1 repetitions"
1313
+ - listitem: "then forced: 1 repetitions"
1314
+ - listitem: "then it: 1 repetitions"
1315
+ - listitem: "then raised: 1 repetitions"
1316
+ - listitem: "then said: 2 repetitions"
1317
+ - listitem: "then the: 1 repetitions"
1318
+ - listitem: "then told: 1 repetitions"
1319
+ - listitem: "then tomorrow: 1 repetitions"
1320
+ - listitem: "then walked: 1 repetitions"
1321
+ - listitem: "then went: 1 repetitions"
1322
+ - listitem: "then,: 7 repetitions"
1323
+ - listitem: "then.: 2 repetitions"
1324
+ - listitem: "/there: \\d+ repetitions/"
1325
+ - listitem: "there ...: 1 repetitions"
1326
+ - listitem: "there and: 1 repetitions"
1327
+ - listitem: "there could: 1 repetitions"
1328
+ - listitem: "there had: 3 repetitions"
1329
+ - listitem: "there have: 1 repetitions"
1330
+ - listitem: "there he: 1 repetitions"
1331
+ - listitem: "there might: 1 repetitions"
1332
+ - listitem: "there seemed: 1 repetitions"
1333
+ - listitem: "there somewhere: 1 repetitions"
1334
+ - listitem: "there too: 1 repetitions"
1335
+ - listitem: "/there was: \\d+ repetitions/"
1336
+ - listitem: "there wasn: 3 repetitions"
1337
+ - listitem: "there were: 4 repetitions"
1338
+ - listitem: "there will: 1 repetitions"
1339
+ - listitem: "there —: 1 repetitions"
1340
+ - listitem: "there!: 1 repetitions"
1341
+ - listitem: "there,: 4 repetitions"
1342
+ - listitem: "there.: 6 repetitions"
1343
+ - listitem: "there?: 3 repetitions"
1344
+ - listitem: "these: 9 repetitions"
1345
+ - listitem: "these at: 1 repetitions"
1346
+ - listitem: "these birds: 1 repetitions"
1347
+ - listitem: "these people: 4 repetitions"
1348
+ - listitem: "these weirdos: 1 repetitions"
1349
+ - listitem: "these wizarding: 1 repetitions"
1350
+ - listitem: "these years: 1 repetitions"
1351
+ - listitem: "/they: \\d+ repetitions/"
1352
+ - listitem: "they also: 2 repetitions"
1353
+ - listitem: "they always: 1 repetitions"
1354
+ - listitem: "they await: 1 repetitions"
1355
+ - listitem: "they been: 1 repetitions"
1356
+ - listitem: "they both: 1 repetitions"
1357
+ - listitem: "they bought: 1 repetitions"
1358
+ - listitem: "they can: 1 repetitions"
1359
+ - listitem: "they could: 6 repetitions"
1360
+ - listitem: "they couldn: 2 repetitions"
1361
+ - listitem: "they didn: 4 repetitions"
1362
+ - listitem: "they died: 1 repetitions"
1363
+ - listitem: "they don: 2 repetitions"
1364
+ - listitem: "they got: 2 repetitions"
1365
+ - listitem: "they had: 5 repetitions"
1366
+ - listitem: "they hadn: 1 repetitions"
1367
+ - listitem: "they just: 1 repetitions"
1368
+ - listitem: "they knew: 1 repetitions"
1369
+ - listitem: "they left: 1 repetitions"
1370
+ - listitem: "they looked: 1 repetitions"
1371
+ - listitem: "they made: 1 repetitions"
1372
+ - listitem: "they normally: 1 repetitions"
1373
+ - listitem: "they pointed: 1 repetitions"
1374
+ - listitem: "they possibly: 1 repetitions"
1375
+ - listitem: "they reached: 1 repetitions"
1376
+ - listitem: "they seemed: 3 repetitions"
1377
+ - listitem: "they wanted: 1 repetitions"
1378
+ - listitem: "they watched: 1 repetitions"
1379
+ - listitem: "they went: 3 repetitions"
1380
+ - listitem: "/they were: \\d+ repetitions/"
1381
+ - listitem: "they weren: 2 repetitions"
1382
+ - listitem: "they wouldn: 1 repetitions"
1383
+ - listitem: "/they': \\d+ repetitions/"
1384
+ - listitem: "they?: 1 repetitions"
1385
+ - listitem: "thick: 5 repetitions"
1386
+ - listitem: "thick and: 1 repetitions"
1387
+ - listitem: "thick black: 1 repetitions"
1388
+ - listitem: "thick blond: 1 repetitions"
1389
+ - listitem: "thick,: 2 repetitions"
1390
+ - listitem: "thin: 6 repetitions"
1391
+ - listitem: "thin and: 1 repetitions"
1392
+ - listitem: "thin face: 1 repetitions"
1393
+ - listitem: "thin package: 2 repetitions"
1394
+ - listitem: "thin scar: 1 repetitions"
1395
+ - listitem: "thin,: 1 repetitions"
1396
+ - listitem: "thing Harry: 1 repetitions"
1397
+ - listitem: "thing about: 1 repetitions"
1398
+ - listitem: "thing happened: 3 repetitions"
1399
+ - listitem: "thing he: 1 repetitions"
1400
+ - listitem: "thing it: 1 repetitions"
1401
+ - listitem: "thing the: 1 repetitions"
1402
+ - listitem: "thing was: 1 repetitions"
1403
+ - listitem: "thing while: 1 repetitions"
1404
+ - listitem: "thing —: 1 repetitions"
1405
+ - listitem: "/things: \\d+ repetitions/"
1406
+ - listitem: "things began: 1 repetitions"
1407
+ - listitem: "things gray: 1 repetitions"
1408
+ - listitem: "things in: 1 repetitions"
1409
+ - listitem: "things lay: 1 repetitions"
1410
+ - listitem: "things often: 1 repetitions"
1411
+ - listitem: "things out: 1 repetitions"
1412
+ - listitem: "things that: 2 repetitions"
1413
+ - listitem: "things to: 2 repetitions"
1414
+ - listitem: "things tomorrow: 1 repetitions"
1415
+ - listitem: "things with: 1 repetitions"
1416
+ - listitem: "things would: 1 repetitions"
1417
+ - listitem: "things,: 2 repetitions"
1418
+ - listitem: "things:: 1 repetitions"
1419
+ - listitem: "things?: 1 repetitions"
1420
+ - listitem: "/think: \\d+ repetitions/"
1421
+ - listitem: "think I: 2 repetitions"
1422
+ - listitem: "think he: 2 repetitions"
1423
+ - listitem: "think it: 2 repetitions"
1424
+ - listitem: "think of: 3 repetitions"
1425
+ - listitem: "think they: 3 repetitions"
1426
+ - listitem: "think this: 1 repetitions"
1427
+ - listitem: "think what: 1 repetitions"
1428
+ - listitem: "think you: 2 repetitions"
1429
+ - listitem: "thinking ...: 2 repetitions"
1430
+ - listitem: "thinking about: 4 repetitions"
1431
+ - listitem: "thinnest: 1 repetitions"
1432
+ - listitem: "thinnest,: 1 repetitions"
1433
+ - listitem: "third: 1 repetitions"
1434
+ - listitem: "third year: 1 repetitions"
1435
+ - listitem: "thirty: 4 repetitions"
1436
+ - listitem: "thirty ...: 2 repetitions"
1437
+ - listitem: "thirty or: 1 repetitions"
1438
+ - listitem: "thirty-seven: 1 repetitions"
1439
+ - listitem: "thirty-seven then: 1 repetitions"
1440
+ - listitem: "/this: \\d+ repetitions/"
1441
+ - listitem: "this You-: 1 repetitions"
1442
+ - listitem: "this about: 1 repetitions"
1443
+ - listitem: "this and: 1 repetitions"
1444
+ - listitem: "this at: 1 repetitions"
1445
+ - listitem: "this badly: 1 repetitions"
1446
+ - listitem: "this big: 1 repetitions"
1447
+ - listitem: "this bike: 1 repetitions"
1448
+ - listitem: "this boy: 3 repetitions"
1449
+ - listitem: "this cupboard: 1 repetitions"
1450
+ - listitem: "this for: 1 repetitions"
1451
+ - listitem: "this gentleman: 1 repetitions"
1452
+ - listitem: "this happy: 1 repetitions"
1453
+ - listitem: "this have: 1 repetitions"
1454
+ - listitem: "this in: 1 repetitions"
1455
+ - listitem: "this is: 3 repetitions"
1456
+ - listitem: "this lot: 1 repetitions"
1457
+ - listitem: "this man: 2 repetitions"
1458
+ - listitem: "this normal: 1 repetitions"
1459
+ - listitem: "this over: 1 repetitions"
1460
+ - listitem: "this room: 1 repetitions"
1461
+ - listitem: "this son: 1 repetitions"
1462
+ - listitem: "this stuff: 1 repetitions"
1463
+ - listitem: "this time: 3 repetitions"
1464
+ - listitem: "this very: 1 repetitions"
1465
+ - listitem: "this was: 8 repetitions"
1466
+ - listitem: "this wizard: 2 repetitions"
1467
+ - listitem: "this —: 1 repetitions"
1468
+ - listitem: "this,: 5 repetitions"
1469
+ - listitem: "this.: 2 repetitions"
1470
+ - listitem: "this?: 2 repetitions"
1471
+ - listitem: "those: 3 repetitions"
1472
+ - listitem: "those letters: 2 repetitions"
1473
+ - listitem: "those people: 1 repetitions"
1474
+ - listitem: "/though: \\d+ repetitions/"
1475
+ - listitem: "though Dudley: 1 repetitions"
1476
+ - listitem: "though he: 8 repetitions"
1477
+ - listitem: "though hoping: 1 repetitions"
1478
+ - listitem: "though it: 2 repetitions"
1479
+ - listitem: "though people: 1 repetitions"
1480
+ - listitem: "though she: 5 repetitions"
1481
+ - listitem: "though the: 1 repetitions"
1482
+ - listitem: "though they: 1 repetitions"
1483
+ - listitem: "though this: 1 repetitions"
1484
+ - listitem: "though,: 1 repetitions"
1485
+ - listitem: "/thought: \\d+ repetitions/"
1486
+ - listitem: "thought (: 1 repetitions"
1487
+ - listitem: "thought ...: 1 repetitions"
1488
+ - listitem: "thought about: 1 repetitions"
1489
+ - listitem: "thought before: 1 repetitions"
1490
+ - listitem: "thought better: 1 repetitions"
1491
+ - listitem: "thought didn: 1 repetitions"
1492
+ - listitem: "thought for: 1 repetitions"
1493
+ - listitem: "thought he: 5 repetitions"
1494
+ - listitem: "thought it: 1 repetitions"
1495
+ - listitem: "thought nobody: 1 repetitions"
1496
+ - listitem: "thought of: 1 repetitions"
1497
+ - listitem: "thought this: 2 repetitions"
1498
+ - listitem: "thought two: 1 repetitions"
1499
+ - listitem: "thought yeh: 1 repetitions"
1500
+ - listitem: "thought,: 1 repetitions"
1501
+ - listitem: "three: 5 repetitions"
1502
+ - listitem: "three ...: 1 repetitions"
1503
+ - listitem: "three letters: 1 repetitions"
1504
+ - listitem: "three of: 1 repetitions"
1505
+ - listitem: "threw: 7 repetitions"
1506
+ - listitem: "threw a: 2 repetitions"
1507
+ - listitem: "threw him: 1 repetitions"
1508
+ - listitem: "threw it: 2 repetitions"
1509
+ - listitem: "threw the: 1 repetitions"
1510
+ - listitem: "threw them: 1 repetitions"
1511
+ - listitem: "throat: 2 repetitions"
1512
+ - listitem: "throat and: 1 repetitions"
1513
+ - listitem: "throat nervously: 1 repetitions"
1514
+ - listitem: "/through: \\d+ repetitions/"
1515
+ - listitem: "through a: 2 repetitions"
1516
+ - listitem: "through his: 1 repetitions"
1517
+ - listitem: "through pursed: 1 repetitions"
1518
+ - listitem: "/through the: \\d+ repetitions/"
1519
+ - listitem: "through when: 1 repetitions"
1520
+ - listitem: "throughout: 1 repetitions"
1521
+ - listitem: "throughout the: 1 repetitions"
1522
+ - listitem: "throwing: 1 repetitions"
1523
+ - listitem: "throwing his: 1 repetitions"
1524
+ - listitem: "thrown: 1 repetitions"
1525
+ - listitem: "thrown his: 1 repetitions"
1526
+ - listitem: "thumpin: 1 repetitions"
1527
+ - listitem: "thumpin': 1 repetitions"
1528
+ - listitem: "thunder that: 1 repetitions"
1529
+ - listitem: "thundered: 3 repetitions"
1530
+ - listitem: "thundered,: 1 repetitions"
1531
+ - listitem: "thundered.: 1 repetitions"
1532
+ - listitem: "time they: 2 repetitions"
1533
+ - listitem: "to death: 1 repetitions"
1534
+ - listitem: "to that: 2 repetitions"
1535
+ - listitem: "/to the: \\d+ repetitions/"
1536
+ - listitem: "to their: 3 repetitions"
1537
+ - listitem: "to them: 2 repetitions"
1538
+ - listitem: "to think: 6 repetitions"
1539
+ - listitem: "to this: 1 repetitions"
1540
+ - listitem: "together: 6 repetitions"
1541
+ - listitem: "together with: 1 repetitions"
1542
+ - listitem: "together,: 2 repetitions"
1543
+ - listitem: "together.: 3 repetitions"
1544
+ - listitem: "toilet the: 1 repetitions"
1545
+ - listitem: "took both: 1 repetitions"
1546
+ - listitem: "toothless: 1 repetitions"
1547
+ - listitem: "toothless old: 1 repetitions"
1548
+ - listitem: "tortoise through: 1 repetitions"
1549
+ - listitem: "touch anything: 1 repetitions"
1550
+ - listitem: "toward the: 4 repetitions"
1551
+ - listitem: "toward them: 1 repetitions"
1552
+ - listitem: "trembled with: 1 repetitions"
1553
+ - listitem: "truth: 1 repetitions"
1554
+ - listitem: "truth.: 1 repetitions"
1555
+ - listitem: "turned the: 2 repetitions"
1556
+ - listitem: "twice the: 1 repetitions"
1557
+ - listitem: "under that: 1 repetitions"
1558
+ - listitem: "under the: 7 repetitions"
1559
+ - listitem: "under this: 1 repetitions"
1560
+ - listitem: "underneath: 1 repetitions"
1561
+ - listitem: "underneath it: 1 repetitions"
1562
+ - listitem: "understand them: 1 repetitions"
1563
+ - listitem: "until the: 1 repetitions"
1564
+ - listitem: "unwrap the: 1 repetitions"
1565
+ - listitem: "up the: 8 repetitions"
1566
+ - listitem: "up their: 1 repetitions"
1567
+ - listitem: "up with: 2 repetitions"
1568
+ - listitem: "use them: 1 repetitions"
1569
+ - listitem: "usually the: 1 repetitions"
1570
+ - listitem: "vacation with: 1 repetitions"
1571
+ - listitem: "vanish the: 1 repetitions"
1572
+ - listitem: "very thin: 1 repetitions"
1573
+ - listitem: "visit the: 2 repetitions"
1574
+ - listitem: "voice that: 2 repetitions"
1575
+ - listitem: "wake the: 2 repetitions"
1576
+ - listitem: "want anythin: 1 repetitions"
1577
+ - listitem: "want everything: 1 repetitions"
1578
+ - listitem: "warmth: 2 repetitions"
1579
+ - listitem: "warmth and: 1 repetitions"
1580
+ - listitem: "warmth wash: 1 repetitions"
1581
+ - listitem: "was another: 1 repetitions"
1582
+ - listitem: "was nothing: 2 repetitions"
1583
+ - listitem: "was rather: 1 repetitions"
1584
+ - listitem: "was somethin: 1 repetitions"
1585
+ - listitem: "was something: 2 repetitions"
1586
+ - listitem: "was that: 5 repetitions"
1587
+ - listitem: "/was the: \\d+ repetitions/"
1588
+ - listitem: "was there: 1 repetitions"
1589
+ - listitem: "was thick: 1 repetitions"
1590
+ - listitem: "was thin: 1 repetitions"
1591
+ - listitem: "was thinking: 1 repetitions"
1592
+ - listitem: "watched the: 2 repetitions"
1593
+ - listitem: "watching them: 1 repetitions"
1594
+ - listitem: "way they: 1 repetitions"
1595
+ - listitem: "way through: 1 repetitions"
1596
+ - listitem: "we think: 1 repetitions"
1597
+ - listitem: "weather: 2 repetitions"
1598
+ - listitem: "weather.: 1 repetitions"
1599
+ - listitem: "weatherman: 1 repetitions"
1600
+ - listitem: "weatherman,: 1 repetitions"
1601
+ - listitem: "weirdest thing: 1 repetitions"
1602
+ - listitem: "were both: 1 repetitions"
1603
+ - listitem: "were the: 3 repetitions"
1604
+ - listitem: "were there: 2 repetitions"
1605
+ - listitem: "were they: 1 repetitions"
1606
+ - listitem: "what the: 1 repetitions"
1607
+ - listitem: "what they: 2 repetitions"
1608
+ - listitem: "whatever that: 1 repetitions"
1609
+ - listitem: "when they: 1 repetitions"
1610
+ - listitem: "where everything: 1 repetitions"
1611
+ - listitem: "where the: 2 repetitions"
1612
+ - listitem: "where they: 1 repetitions"
1613
+ - listitem: "whether: 1 repetitions"
1614
+ - listitem: "whether he: 1 repetitions"
1615
+ - listitem: "which this: 1 repetitions"
1616
+ - listitem: "while the: 2 repetitions"
1617
+ - listitem: "whipped their: 1 repetitions"
1618
+ - listitem: "whispered something: 1 repetitions"
1619
+ - listitem: "whistled through: 1 repetitions"
1620
+ - listitem: "why the: 1 repetitions"
1621
+ - listitem: "/with: \\d+ repetitions/"
1622
+ - listitem: "with ...: 1 repetitions"
1623
+ - listitem: "with Aunt: 1 repetitions"
1624
+ - listitem: "with Dudley: 3 repetitions"
1625
+ - listitem: "with Happy: 1 repetitions"
1626
+ - listitem: "with Harry: 2 repetitions"
1627
+ - listitem: "with Mrs: 1 repetitions"
1628
+ - listitem: "with Muggles: 1 repetitions"
1629
+ - listitem: "with Piers: 1 repetitions"
1630
+ - listitem: "/with a: \\d+ repetitions/"
1631
+ - listitem: "with enough: 1 repetitions"
1632
+ - listitem: "with families: 1 repetitions"
1633
+ - listitem: "with fear: 1 repetitions"
1634
+ - listitem: "with flickering: 1 repetitions"
1635
+ - listitem: "with half: 1 repetitions"
1636
+ - listitem: "with hardly: 1 repetitions"
1637
+ - listitem: "with her: 2 repetitions"
1638
+ - listitem: "with him: 2 repetitions"
1639
+ - listitem: "/with his: \\d+ repetitions/"
1640
+ - listitem: "with howls: 1 repetitions"
1641
+ - listitem: "with hunger: 1 repetitions"
1642
+ - listitem: "with lit: 1 repetitions"
1643
+ - listitem: "with living: 1 repetitions"
1644
+ - listitem: "with my: 1 repetitions"
1645
+ - listitem: "with one: 1 repetitions"
1646
+ - listitem: "with orange: 1 repetitions"
1647
+ - listitem: "with rage: 1 repetitions"
1648
+ - listitem: "with some: 1 repetitions"
1649
+ - listitem: "with something: 1 repetitions"
1650
+ - listitem: "with strange: 1 repetitions"
1651
+ - listitem: "with such: 3 repetitions"
1652
+ - listitem: "with that: 2 repetitions"
1653
+ - listitem: "/with the: \\d+ repetitions/"
1654
+ - listitem: "with their: 1 repetitions"
1655
+ - listitem: "with them: 1 repetitions"
1656
+ - listitem: "with these: 1 repetitions"
1657
+ - listitem: "with trembling: 1 repetitions"
1658
+ - listitem: "with twin: 1 repetitions"
1659
+ - listitem: "with warmth: 1 repetitions"
1660
+ - listitem: "with wrinkled: 1 repetitions"
1661
+ - listitem: "with you: 1 repetitions"
1662
+ - listitem: "with youngsters: 1 repetitions"
1663
+ - listitem: "with your: 1 repetitions"
1664
+ - listitem: "with —: 1 repetitions"
1665
+ - listitem: "with.: 1 repetitions"
1666
+ - listitem: "without: 9 repetitions"
1667
+ - listitem: "without a: 2 repetitions"
1668
+ - listitem: "without blowing: 1 repetitions"
1669
+ - listitem: "without buying: 1 repetitions"
1670
+ - listitem: "without even: 1 repetitions"
1671
+ - listitem: "without it: 1 repetitions"
1672
+ - listitem: "without them: 1 repetitions"
1673
+ - listitem: "without turning: 1 repetitions"
1674
+ - listitem: "without waking: 1 repetitions"
1675
+ - listitem: "woke with: 1 repetitions"
1676
+ - listitem: "wondered whether: 1 repetitions"
1677
+ - listitem: "work that: 1 repetitions"
1678
+ - listitem: "worried that: 1 repetitions"
1679
+ - listitem: "worse than: 2 repetitions"
1680
+ - listitem: "worth: 2 repetitions"
1681
+ - listitem: "worth being: 1 repetitions"
1682
+ - listitem: "worth,: 1 repetitions"
1683
+ - listitem: "wrenched their: 1 repetitions"
1684
+ - listitem: "written them: 1 repetitions"
1685
+ - listitem: "years there: 1 repetitions"
1686
+ - listitem: "yeh everythin: 1 repetitions"
1687
+ - listitem: "yeh the: 1 repetitions"
1688
+ - listitem: "yet another: 1 repetitions"
1689
+ - listitem: "you another: 1 repetitions"
1690
+ - listitem: "you that: 1 repetitions"
1691
+ - listitem: "you think: 2 repetitions"
1692
+ - listitem: "you this: 1 repetitions"
1693
+ - listitem: "— something: 1 repetitions"
1694
+ - listitem: "— that: 3 repetitions"
1695
+ - listitem: "— the: 4 repetitions"
1696
+ - listitem: "— then: 2 repetitions"
1697
+ - listitem: "— there: 2 repetitions"
1698
+ - listitem: "— these: 1 repetitions"
1699
+ - listitem: "— they: 1 repetitions"
1700
+ - listitem: "— this: 2 repetitions"
1701
+ - listitem: "— three: 1 repetitions"
1702
+ - listitem: "— with: 1 repetitions"
static/tests/test-classic-1-lite.koboldai.net.spec.ts-snapshots/test-classic-1--asc-word-prefix.txt ADDED
@@ -0,0 +1,1702 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - text: /'th', \d+ occurrences/
2
+ - listitem: "! The: 1 repetitions"
3
+ - listitem: "\" Then: 2 repetitions"
4
+ - listitem: "\"Nothing: 1 repetitions"
5
+ - listitem: "\"That: 8 repetitions"
6
+ - listitem: "\"The: 5 repetitions"
7
+ - listitem: "\"Their: 1 repetitions"
8
+ - listitem: "\"There: 1 repetitions"
9
+ - listitem: "\"They: 1 repetitions"
10
+ - listitem: "\"Thirty-nine: 1 repetitions"
11
+ - listitem: "\"Thirty-six: 1 repetitions"
12
+ - listitem: "\"This: 1 repetitions"
13
+ - listitem: "' everything: 1 repetitions"
14
+ - listitem: "' that: 2 repetitions"
15
+ - listitem: "' the: 7 repetitions"
16
+ - listitem: "' then: 2 repetitions"
17
+ - listitem: "' this: 1 repetitions"
18
+ - listitem: ") that: 1 repetitions"
19
+ - listitem: ", Hut-on-the-Rock: 1 repetitions"
20
+ - listitem: ", although: 2 repetitions"
21
+ - listitem: ", anything: 1 repetitions"
22
+ - listitem: ", both: 3 repetitions"
23
+ - listitem: ", breathing: 1 repetitions"
24
+ - listitem: ", either: 1 repetitions"
25
+ - listitem: ", nothing: 2 repetitions"
26
+ - listitem: ", rather: 1 repetitions"
27
+ - listitem: ", slithering: 1 repetitions"
28
+ - listitem: ", thank: 3 repetitions"
29
+ - listitem: ", that: 8 repetitions"
30
+ - listitem: "/, the: \\d+ repetitions/"
31
+ - listitem: ", their: 1 repetitions"
32
+ - listitem: ", then: 1 repetitions"
33
+ - listitem: ", there: 8 repetitions"
34
+ - listitem: ", these: 1 repetitions"
35
+ - listitem: "/, they: \\d+ repetitions/"
36
+ - listitem: ", thin: 3 repetitions"
37
+ - listitem: ", things: 1 repetitions"
38
+ - listitem: ", thinking: 1 repetitions"
39
+ - listitem: ", thirty: 1 repetitions"
40
+ - listitem: ", thirty-seven: 1 repetitions"
41
+ - listitem: ", this: 3 repetitions"
42
+ - listitem: ", those: 1 repetitions"
43
+ - listitem: ", though: 5 repetitions"
44
+ - listitem: ", with: 4 repetitions"
45
+ - listitem: ", without: 1 repetitions"
46
+ - listitem: ". Although: 2 repetitions"
47
+ - listitem: ". Other: 1 repetitions"
48
+ - listitem: ". That: 2 repetitions"
49
+ - listitem: "/\\. The: \\d+ repetitions/"
50
+ - listitem: ". Then: 5 repetitions"
51
+ - listitem: ". There: 7 repetitions"
52
+ - listitem: "/\\. They: \\d+ repetitions/"
53
+ - listitem: ". Thirty: 1 repetitions"
54
+ - listitem: ". This: 6 repetitions"
55
+ - listitem: ". Three: 1 repetitions"
56
+ - listitem: ". With: 2 repetitions"
57
+ - listitem: ". Within: 1 repetitions"
58
+ - listitem: "... Thanksss: 1 repetitions"
59
+ - listitem: "... thirty: 1 repetitions"
60
+ - listitem: ": This: 1 repetitions"
61
+ - listitem: "; the: 2 repetitions"
62
+ - listitem: "; there: 1 repetitions"
63
+ - listitem: "; they: 3 repetitions"
64
+ - listitem: "; with: 1 repetitions"
65
+ - listitem: "? That: 1 repetitions"
66
+ - listitem: "? These: 1 repetitions"
67
+ - listitem: "A toothless: 1 repetitions"
68
+ - listitem: "ANYTHING?: 1 repetitions"
69
+ - listitem: "Although owls: 1 repetitions"
70
+ - listitem: "And they: 4 repetitions"
71
+ - listitem: "And this: 2 repetitions"
72
+ - listitem: "Another time: 1 repetitions"
73
+ - listitem: "Birthday Harry: 1 repetitions"
74
+ - listitem: "But that: 1 repetitions"
75
+ - listitem: "But then: 1 repetitions"
76
+ - listitem: "Cause somethin: 1 repetitions"
77
+ - listitem: "Cokeworth: 1 repetitions"
78
+ - listitem: "Dudley thought: 2 repetitions"
79
+ - listitem: "Dumbledore with: 1 repetitions"
80
+ - listitem: "Dursley that: 1 repetitions"
81
+ - listitem: "Hagrid thundered: 1 repetitions"
82
+ - listitem: "Hagrid with: 2 repetitions"
83
+ - listitem: "Harry thought: 2 repetitions"
84
+ - listitem: "Harry underneath: 1 repetitions"
85
+ - listitem: "Harry with: 2 repetitions"
86
+ - listitem: "He threw: 1 repetitions"
87
+ - listitem: "Hut-on-the-Rock: 1 repetitions"
88
+ - listitem: "Hut-on-the-Rock,: 1 repetitions"
89
+ - listitem: "I think: 2 repetitions"
90
+ - listitem: "If there: 1 repetitions"
91
+ - listitem: "If they: 2 repetitions"
92
+ - listitem: "Just then: 1 repetitions"
93
+ - listitem: "Lily that: 1 repetitions"
94
+ - listitem: "Lily this: 1 repetitions"
95
+ - listitem: "Maybe the: 1 repetitions"
96
+ - listitem: "McGuffin with: 1 repetitions"
97
+ - listitem: "Muggle clothes: 1 repetitions"
98
+ - listitem: "Nearly everything: 1 repetitions"
99
+ - listitem: "Nothing like: 1 repetitions"
100
+ - listitem: "Nothing,: 1 repetitions"
101
+ - listitem: "Only the: 3 repetitions"
102
+ - listitem: "Other shelves: 1 repetitions"
103
+ - listitem: "People throughout: 1 repetitions"
104
+ - listitem: "Petunia thought: 1 repetitions"
105
+ - listitem: "Petunia through: 2 repetitions"
106
+ - listitem: "Pointing this: 1 repetitions"
107
+ - listitem: "She threw: 1 repetitions"
108
+ - listitem: "Something came: 1 repetitions"
109
+ - listitem: "Soon the: 1 repetitions"
110
+ - listitem: "Suppose the: 1 repetitions"
111
+ - listitem: "THE KEYS: 1 repetitions"
112
+ - listitem: "THE VANASHIG: 1 repetitions"
113
+ - listitem: "THIS SNAKE: 1 repetitions"
114
+ - listitem: "Take this: 1 repetitions"
115
+ - listitem: "Thanksss: 1 repetitions"
116
+ - listitem: "Thanksss,: 1 repetitions"
117
+ - listitem: "That cars: 2 repetitions"
118
+ - listitem: "That does: 1 repetitions"
119
+ - listitem: "That evening: 3 repetitions"
120
+ - listitem: "The Smallest: 1 repetitions"
121
+ - listitem: "The anger: 1 repetitions"
122
+ - listitem: "The boa: 2 repetitions"
123
+ - listitem: "The escape: 1 repetitions"
124
+ - listitem: "The great: 2 repetitions"
125
+ - listitem: "The harder: 1 repetitions"
126
+ - listitem: "The inside: 1 repetitions"
127
+ - listitem: "The keeper: 2 repetitions"
128
+ - listitem: "The month-old: 1 repetitions"
129
+ - listitem: "The nearest: 2 repetitions"
130
+ - listitem: "The nerve: 1 repetitions"
131
+ - listitem: "The newscaster: 1 repetitions"
132
+ - listitem: "The noise: 1 repetitions"
133
+ - listitem: "The poor: 1 repetitions"
134
+ - listitem: "The problem: 1 repetitions"
135
+ - listitem: "The repaired: 1 repetitions"
136
+ - listitem: "The sun: 1 repetitions"
137
+ - listitem: "The traffic: 1 repetitions"
138
+ - listitem: "The tub: 1 repetitions"
139
+ - listitem: "The weirdest: 1 repetitions"
140
+ - listitem: "The woman: 1 repetitions"
141
+ - listitem: "Then he: 5 repetitions"
142
+ - listitem: "Then she: 1 repetitions"
143
+ - listitem: "Then —: 2 repetitions"
144
+ - listitem: "There': 2 repetitions"
145
+ - listitem: "They ate: 2 repetitions"
146
+ - listitem: "They drove: 2 repetitions"
147
+ - listitem: "They heard: 2 repetitions"
148
+ - listitem: "They knocked: 1 repetitions"
149
+ - listitem: "They snapped: 1 repetitions"
150
+ - listitem: "They stared: 1 repetitions"
151
+ - listitem: "They stuff: 1 repetitions"
152
+ - listitem: "Thirty seconds: 1 repetitions"
153
+ - listitem: "Thirty-nine: 1 repetitions"
154
+ - listitem: "Thirty-nine,: 1 repetitions"
155
+ - listitem: "Thirty-six: 1 repetitions"
156
+ - listitem: "Thirty-six,: 1 repetitions"
157
+ - listitem: "This bunch: 1 repetitions"
158
+ - listitem: "This morning: 1 repetitions"
159
+ - listitem: "This reminded: 1 repetitions"
160
+ - listitem: "This specimen: 1 repetitions"
161
+ - listitem: "Three minutes: 1 repetitions"
162
+ - listitem: "Three things: 1 repetitions"
163
+ - listitem: "Tiptoe Through: 1 repetitions"
164
+ - listitem: "Until they: 1 repetitions"
165
+ - listitem: "Vernon the: 1 repetitions"
166
+ - listitem: "Vernon through: 1 repetitions"
167
+ - listitem: "Was this: 2 repetitions"
168
+ - listitem: "Weather': 1 repetitions"
169
+ - listitem: "When the: 2 repetitions"
170
+ - listitem: "Within: 1 repetitions"
171
+ - listitem: "Within seconds: 1 repetitions"
172
+ - listitem: "a mouthful: 1 repetitions"
173
+ - listitem: "a rather: 2 repetitions"
174
+ - listitem: "a thin: 1 repetitions"
175
+ - listitem: "a thing: 1 repetitions"
176
+ - listitem: "a thumpin: 1 repetitions"
177
+ - listitem: "about anything: 2 repetitions"
178
+ - listitem: "about that: 2 repetitions"
179
+ - listitem: "about the: 6 repetitions"
180
+ - listitem: "about them: 2 repetitions"
181
+ - listitem: "about things: 1 repetitions"
182
+ - listitem: "about this: 2 repetitions"
183
+ - listitem: "accept there: 1 repetitions"
184
+ - listitem: "across the: 3 repetitions"
185
+ - listitem: "affect them: 1 repetitions"
186
+ - listitem: "after the: 1 repetitions"
187
+ - listitem: "again the: 1 repetitions"
188
+ - listitem: "against the: 3 repetitions"
189
+ - listitem: "all that: 2 repetitions"
190
+ - listitem: "/all the: \\d+ repetitions/"
191
+ - listitem: "all these: 2 repetitions"
192
+ - listitem: "all they: 1 repetitions"
193
+ - listitem: "all this: 5 repetitions"
194
+ - listitem: "along the: 1 repetitions"
195
+ - listitem: "also thought: 1 repetitions"
196
+ - listitem: "although: 4 repetitions"
197
+ - listitem: "although he: 3 repetitions"
198
+ - listitem: "and father: 2 repetitions"
199
+ - listitem: "and rather: 1 repetitions"
200
+ - listitem: "and slithering: 1 repetitions"
201
+ - listitem: "and that: 2 repetitions"
202
+ - listitem: "/and the: \\d+ repetitions/"
203
+ - listitem: "and their: 2 repetitions"
204
+ - listitem: "/and then: \\d+ repetitions/"
205
+ - listitem: "and there: 1 repetitions"
206
+ - listitem: "and thick: 2 repetitions"
207
+ - listitem: "and things: 1 repetitions"
208
+ - listitem: "and thinking: 1 repetitions"
209
+ - listitem: "and threw: 5 repetitions"
210
+ - listitem: "and throwing: 1 repetitions"
211
+ - listitem: "and thrown: 1 repetitions"
212
+ - listitem: "and with: 2 repetitions"
213
+ - listitem: "angrily that: 1 repetitions"
214
+ - listitem: "/another: \\d+ repetitions/"
215
+ - listitem: "another boy: 1 repetitions"
216
+ - listitem: "another funny: 1 repetitions"
217
+ - listitem: "another good: 1 repetitions"
218
+ - listitem: "another lemon: 1 repetitions"
219
+ - listitem: "another one: 2 repetitions"
220
+ - listitem: "another pocket: 1 repetitions"
221
+ - listitem: "another two: 1 repetitions"
222
+ - listitem: "another word: 1 repetitions"
223
+ - listitem: "anythin: 1 repetitions"
224
+ - listitem: "anythin': 1 repetitions"
225
+ - listitem: "/anything: \\d+ repetitions/"
226
+ - listitem: "anything acting: 1 repetitions"
227
+ - listitem: "anything as: 1 repetitions"
228
+ - listitem: "anything at: 1 repetitions"
229
+ - listitem: "anything else: 1 repetitions"
230
+ - listitem: "anything except: 1 repetitions"
231
+ - listitem: "anything he: 2 repetitions"
232
+ - listitem: "anything so: 1 repetitions"
233
+ - listitem: "anything strange: 1 repetitions"
234
+ - listitem: "anything that: 2 repetitions"
235
+ - listitem: "anything to: 3 repetitions"
236
+ - listitem: "anything!: 1 repetitions"
237
+ - listitem: "anything,: 2 repetitions"
238
+ - listitem: "anything.: 3 repetitions"
239
+ - listitem: "anyway there: 1 repetitions"
240
+ - listitem: "are nothing: 1 repetitions"
241
+ - listitem: "around the: 8 repetitions"
242
+ - listitem: "around them: 2 repetitions"
243
+ - listitem: "as the: 5 repetitions"
244
+ - listitem: "as there: 1 repetitions"
245
+ - listitem: "as they: 6 repetitions"
246
+ - listitem: "as this: 1 repetitions"
247
+ - listitem: "/as though: \\d+ repetitions/"
248
+ - listitem: "astonishing things: 1 repetitions"
249
+ - listitem: "at that: 3 repetitions"
250
+ - listitem: "/at the: \\d+ repetitions/"
251
+ - listitem: "at their: 1 repetitions"
252
+ - listitem: "at them: 1 repetitions"
253
+ - listitem: "at this: 2 repetitions"
254
+ - listitem: "away without: 1 repetitions"
255
+ - listitem: "back that: 1 repetitions"
256
+ - listitem: "back with: 1 repetitions"
257
+ - listitem: "baggy clothes: 1 repetitions"
258
+ - listitem: "banging things: 1 repetitions"
259
+ - listitem: "bath: 1 repetitions"
260
+ - listitem: "bath.: 1 repetitions"
261
+ - listitem: "bathroom: 2 repetitions"
262
+ - listitem: "bathroom,: 1 repetitions"
263
+ - listitem: "bathroom.: 1 repetitions"
264
+ - listitem: "be thankful: 1 repetitions"
265
+ - listitem: "be with: 3 repetitions"
266
+ - listitem: "because the: 2 repetitions"
267
+ - listitem: "because they: 1 repetitions"
268
+ - listitem: "been thinking: 2 repetitions"
269
+ - listitem: "beet with: 1 repetitions"
270
+ - listitem: "before the: 2 repetitions"
271
+ - listitem: "before they: 2 repetitions"
272
+ - listitem: "behind the: 2 repetitions"
273
+ - listitem: "behind their: 1 repetitions"
274
+ - listitem: "behind them: 3 repetitions"
275
+ - listitem: "behind with: 1 repetitions"
276
+ - listitem: "below them: 1 repetitions"
277
+ - listitem: "beneath: 2 repetitions"
278
+ - listitem: "beneath all: 1 repetitions"
279
+ - listitem: "beneath her: 1 repetitions"
280
+ - listitem: "bet that: 1 repetitions"
281
+ - listitem: "bigger than: 1 repetitions"
282
+ - listitem: "birthday: 9 repetitions"
283
+ - listitem: "birthday presents: 1 repetitions"
284
+ - listitem: "birthday tick: 1 repetitions"
285
+ - listitem: "birthday to: 1 repetitions"
286
+ - listitem: "birthday —: 1 repetitions"
287
+ - listitem: "birthday,: 1 repetitions"
288
+ - listitem: "birthday.: 2 repetitions"
289
+ - listitem: "birthdays were: 1 repetitions"
290
+ - listitem: "blame them: 1 repetitions"
291
+ - listitem: "blankets without: 1 repetitions"
292
+ - listitem: "bored with: 1 repetitions"
293
+ - listitem: "both: 8 repetitions"
294
+ - listitem: "both Harry: 1 repetitions"
295
+ - listitem: "both angry: 1 repetitions"
296
+ - listitem: "both long: 1 repetitions"
297
+ - listitem: "both looked: 1 repetitions"
298
+ - listitem: "both of: 3 repetitions"
299
+ - listitem: "both with: 1 repetitions"
300
+ - listitem: "boy anything: 1 repetitions"
301
+ - listitem: "boy with: 1 repetitions"
302
+ - listitem: "breakfast the: 1 repetitions"
303
+ - listitem: "breath: 4 repetitions"
304
+ - listitem: "breath,: 1 repetitions"
305
+ - listitem: "breathing heavily: 1 repetitions"
306
+ - listitem: "breaths and: 2 repetitions"
307
+ - listitem: "broken the: 1 repetitions"
308
+ - listitem: "brought the: 1 repetitions"
309
+ - listitem: "brought with: 1 repetitions"
310
+ - listitem: "brown with: 1 repetitions"
311
+ - listitem: "brushed the: 1 repetitions"
312
+ - listitem: "but somethin: 1 repetitions"
313
+ - listitem: "but the: 6 repetitions"
314
+ - listitem: "but there: 2 repetitions"
315
+ - listitem: "but they: 6 repetitions"
316
+ - listitem: "but thought: 2 repetitions"
317
+ - listitem: "buying anything: 1 repetitions"
318
+ - listitem: "by something: 1 repetitions"
319
+ - listitem: "/by the: \\d+ repetitions/"
320
+ - listitem: "by then: 1 repetitions"
321
+ - listitem: "cake that: 1 repetitions"
322
+ - listitem: "cake with: 1 repetitions"
323
+ - listitem: "came the: 1 repetitions"
324
+ - listitem: "car with: 1 repetitions"
325
+ - listitem: "catch the: 1 repetitions"
326
+ - listitem: "changed their: 1 repetitions"
327
+ - listitem: "choosing another: 1 repetitions"
328
+ - listitem: "clearly than: 1 repetitions"
329
+ - listitem: "clicked the: 1 repetitions"
330
+ - listitem: "cloak that: 1 repetitions"
331
+ - listitem: "clock the: 1 repetitions"
332
+ - listitem: "clothes: 6 repetitions"
333
+ - listitem: "clothes and: 2 repetitions"
334
+ - listitem: "clothes of: 1 repetitions"
335
+ - listitem: "clothes —: 1 repetitions"
336
+ - listitem: "clothes,: 1 repetitions"
337
+ - listitem: "clothes.: 1 repetitions"
338
+ - listitem: "comforting thought: 1 repetitions"
339
+ - listitem: "corner the: 1 repetitions"
340
+ - listitem: "could they: 1 repetitions"
341
+ - listitem: "crowded with: 1 repetitions"
342
+ - listitem: "cupboard with: 1 repetitions"
343
+ - listitem: "d rather: 1 repetitions"
344
+ - listitem: "d think: 1 repetitions"
345
+ - listitem: "dangerous with: 1 repetitions"
346
+ - listitem: "death: 1 repetitions"
347
+ - listitem: "death.: 1 repetitions"
348
+ - listitem: "deep breaths: 2 repetitions"
349
+ - listitem: "defeated the: 1 repetitions"
350
+ - listitem: "deliver them: 1 repetitions"
351
+ - listitem: "demand that: 1 repetitions"
352
+ - listitem: "did something: 1 repetitions"
353
+ - listitem: "did the: 1 repetitions"
354
+ - listitem: "did this: 1 repetitions"
355
+ - listitem: "disagree with: 1 repetitions"
356
+ - listitem: "do anything: 2 repetitions"
357
+ - listitem: "do math: 1 repetitions"
358
+ - listitem: "do something: 1 repetitions"
359
+ - listitem: "do with: 6 repetitions"
360
+ - listitem: "dodged the: 1 repetitions"
361
+ - listitem: "done anything: 1 repetitions"
362
+ - listitem: "doubted this: 1 repetitions"
363
+ - listitem: "down the: 9 repetitions"
364
+ - listitem: "down their: 1 repetitions"
365
+ - listitem: "down through: 1 repetitions"
366
+ - listitem: "downstairs bathroom: 1 repetitions"
367
+ - listitem: "downstairs without: 1 repetitions"
368
+ - listitem: "drills that: 2 repetitions"
369
+ - listitem: "drove them: 1 repetitions"
370
+ - listitem: "drumming their: 1 repetitions"
371
+ - listitem: "each other: 3 repetitions"
372
+ - listitem: "early the: 1 repetitions"
373
+ - listitem: "earth: 1 repetitions"
374
+ - listitem: "earth wants: 1 repetitions"
375
+ - listitem: "eggs that: 1 repetitions"
376
+ - listitem: "either: 1 repetitions"
377
+ - listitem: "either,: 1 repetitions"
378
+ - listitem: "eleventh: 1 repetitions"
379
+ - listitem: "eleventh birthday: 1 repetitions"
380
+ - listitem: "entered the: 1 repetitions"
381
+ - listitem: "envelope that: 1 repetitions"
382
+ - listitem: "even the: 1 repetitions"
383
+ - listitem: "even though: 1 repetitions"
384
+ - listitem: "even worth: 1 repetitions"
385
+ - listitem: "everythin: 1 repetitions"
386
+ - listitem: "everythin': 1 repetitions"
387
+ - listitem: "everything: 8 repetitions"
388
+ - listitem: "everything from: 1 repetitions"
389
+ - listitem: "everything he: 1 repetitions"
390
+ - listitem: "everything in: 1 repetitions"
391
+ - listitem: "everything perfect: 1 repetitions"
392
+ - listitem: "everything they: 1 repetitions"
393
+ - listitem: "everything to: 1 repetitions"
394
+ - listitem: "everything!: 1 repetitions"
395
+ - listitem: "everything.: 1 repetitions"
396
+ - listitem: "exactly the: 2 repetitions"
397
+ - listitem: "except that: 1 repetitions"
398
+ - listitem: "excitedly together: 1 repetitions"
399
+ - listitem: "expected this: 1 repetitions"
400
+ - listitem: "explain anything: 1 repetitions"
401
+ - listitem: "explain everything: 1 repetitions"
402
+ - listitem: "explain that: 1 repetitions"
403
+ - listitem: "eyed them: 1 repetitions"
404
+ - listitem: "eyes beneath: 1 repetitions"
405
+ - listitem: "fact that: 1 repetitions"
406
+ - listitem: "faster than: 1 repetitions"
407
+ - listitem: "father: 8 repetitions"
408
+ - listitem: "father a: 1 repetitions"
409
+ - listitem: "father had: 1 repetitions"
410
+ - listitem: "father with: 1 repetitions"
411
+ - listitem: "father,: 2 repetitions"
412
+ - listitem: "father.: 3 repetitions"
413
+ - listitem: "felt the: 1 repetitions"
414
+ - listitem: "filled the: 2 repetitions"
415
+ - listitem: "filthy: 1 repetitions"
416
+ - listitem: "filthy windows: 1 repetitions"
417
+ - listitem: "find the: 3 repetitions"
418
+ - listitem: "find their: 1 repetitions"
419
+ - listitem: "fine thing: 1 repetitions"
420
+ - listitem: "fingers through: 1 repetitions"
421
+ - listitem: "finish the: 1 repetitions"
422
+ - listitem: "fire there: 1 repetitions"
423
+ - listitem: "first thing: 1 repetitions"
424
+ - listitem: "foot through: 1 repetitions"
425
+ - listitem: "for breath: 1 repetitions"
426
+ - listitem: "for neither: 1 repetitions"
427
+ - listitem: "for nothing: 1 repetitions"
428
+ - listitem: "for something: 4 repetitions"
429
+ - listitem: "for the: 8 repetitions"
430
+ - listitem: "for them: 1 repetitions"
431
+ - listitem: "for this: 1 repetitions"
432
+ - listitem: "force that: 1 repetitions"
433
+ - listitem: "forced through: 1 repetitions"
434
+ - listitem: "forehead that: 1 repetitions"
435
+ - listitem: "forehead they: 1 repetitions"
436
+ - listitem: "forehead with: 1 repetitions"
437
+ - listitem: "forgotten that: 2 repetitions"
438
+ - listitem: "found the: 2 repetitions"
439
+ - listitem: "found their: 1 repetitions"
440
+ - listitem: "friendly with: 1 repetitions"
441
+ - listitem: "/from the: \\d+ repetitions/"
442
+ - listitem: "frozen with: 1 repetitions"
443
+ - listitem: "funny clothes: 1 repetitions"
444
+ - listitem: "furious with: 1 repetitions"
445
+ - listitem: "game with: 1 repetitions"
446
+ - listitem: "gazed open-mouthed: 1 repetitions"
447
+ - listitem: "get that: 3 repetitions"
448
+ - listitem: "get the: 5 repetitions"
449
+ - listitem: "get this: 2 repetitions"
450
+ - listitem: "given anything: 1 repetitions"
451
+ - listitem: "go through: 1 repetitions"
452
+ - listitem: "going there: 1 repetitions"
453
+ - listitem: "good-for-nothing: 1 repetitions"
454
+ - listitem: "good-for-nothing husband: 1 repetitions"
455
+ - listitem: "got something: 1 repetitions"
456
+ - listitem: "got that: 1 repetitions"
457
+ - listitem: "got this: 1 repetitions"
458
+ - listitem: "gotten the: 1 repetitions"
459
+ - listitem: "grabbed the: 2 repetitions"
460
+ - listitem: "grate with: 1 repetitions"
461
+ - listitem: "grew that: 1 repetitions"
462
+ - listitem: "grin through: 1 repetitions"
463
+ - listitem: "gruffly that: 1 repetitions"
464
+ - listitem: "had anything: 1 repetitions"
465
+ - listitem: "had everything: 1 repetitions"
466
+ - listitem: "had something: 1 repetitions"
467
+ - listitem: "had the: 3 repetitions"
468
+ - listitem: "hair that: 1 repetitions"
469
+ - listitem: "haircuts than: 1 repetitions"
470
+ - listitem: "hands the: 1 repetitions"
471
+ - listitem: "hands together: 2 repetitions"
472
+ - listitem: "happy birthday: 2 repetitions"
473
+ - listitem: "hated that: 1 repetitions"
474
+ - listitem: "hates the: 1 repetitions"
475
+ - listitem: "have anything: 1 repetitions"
476
+ - listitem: "have that: 1 repetitions"
477
+ - listitem: "have thirty: 1 repetitions"
478
+ - listitem: "have thought: 1 repetitions"
479
+ - listitem: "he thought: 6 repetitions"
480
+ - listitem: "he thundered: 1 repetitions"
481
+ - listitem: "head with: 1 repetitions"
482
+ - listitem: "hear the: 1 repetitions"
483
+ - listitem: "heard something: 1 repetitions"
484
+ - listitem: "heard the: 2 repetitions"
485
+ - listitem: "held together: 1 repetitions"
486
+ - listitem: "her good-for-nothing: 1 repetitions"
487
+ - listitem: "her mouth: 1 repetitions"
488
+ - listitem: "her something: 1 repetitions"
489
+ - listitem: "her throat: 1 repetitions"
490
+ - listitem: "here without: 1 repetitions"
491
+ - listitem: "hidden beneath: 1 repetitions"
492
+ - listitem: "hide that: 1 repetitions"
493
+ - listitem: "him another: 1 repetitions"
494
+ - listitem: "him anything: 1 repetitions"
495
+ - listitem: "him with: 1 repetitions"
496
+ - listitem: "himself together: 1 repetitions"
497
+ - listitem: "his birthdays: 2 repetitions"
498
+ - listitem: "his father: 6 repetitions"
499
+ - listitem: "/his mother: \\d+ repetitions/"
500
+ - listitem: "his mouth: 3 repetitions"
501
+ - listitem: "his teeth: 1 repetitions"
502
+ - listitem: "his thick: 2 repetitions"
503
+ - listitem: "his things: 1 repetitions"
504
+ - listitem: "his throat: 1 repetitions"
505
+ - listitem: "hit them: 1 repetitions"
506
+ - listitem: "hit with: 1 repetitions"
507
+ - listitem: "hold with: 1 repetitions"
508
+ - listitem: "holding them: 1 repetitions"
509
+ - listitem: "hoped the: 1 repetitions"
510
+ - listitem: "hot bath: 1 repetitions"
511
+ - listitem: "hours they: 1 repetitions"
512
+ - listitem: "hut with: 1 repetitions"
513
+ - listitem: "if the: 4 repetitions"
514
+ - listitem: "imagining things: 2 repetitions"
515
+ - listitem: "in anything: 2 repetitions"
516
+ - listitem: "in that: 2 repetitions"
517
+ - listitem: "/in the: \\d+ repetitions/"
518
+ - listitem: "in their: 3 repetitions"
519
+ - listitem: "in there: 3 repetitions"
520
+ - listitem: "in with: 1 repetitions"
521
+ - listitem: "in without: 1 repetitions"
522
+ - listitem: "inside the: 2 repetitions"
523
+ - listitem: "/into the: \\d+ repetitions/"
524
+ - listitem: "into their: 1 repetitions"
525
+ - listitem: "is that: 4 repetitions"
526
+ - listitem: "is the: 2 repetitions"
527
+ - listitem: "it there: 1 repetitions"
528
+ - listitem: "it with: 1 repetitions"
529
+ - listitem: "jerked the: 1 repetitions"
530
+ - listitem: "join the: 1 repetitions"
531
+ - listitem: "just the: 1 repetitions"
532
+ - listitem: "just thought: 1 repetitions"
533
+ - listitem: "keeping the: 1 repetitions"
534
+ - listitem: "kicked the: 1 repetitions"
535
+ - listitem: "kill that: 1 repetitions"
536
+ - listitem: "kill the: 1 repetitions"
537
+ - listitem: "kitchen the: 1 repetitions"
538
+ - listitem: "kitchen with: 1 repetitions"
539
+ - listitem: "knee that: 1 repetitions"
540
+ - listitem: "knew that: 3 repetitions"
541
+ - listitem: "knew the: 1 repetitions"
542
+ - listitem: "knew they: 2 repetitions"
543
+ - listitem: "know that: 2 repetitions"
544
+ - listitem: "know the: 1 repetitions"
545
+ - listitem: "know they: 1 repetitions"
546
+ - listitem: "knows nothin: 1 repetitions"
547
+ - listitem: "landed with: 1 repetitions"
548
+ - listitem: "late that: 1 repetitions"
549
+ - listitem: "later than: 1 repetitions"
550
+ - listitem: "later they: 1 repetitions"
551
+ - listitem: "lay smoothly: 1 repetitions"
552
+ - listitem: "leather: 1 repetitions"
553
+ - listitem: "leather boots: 1 repetitions"
554
+ - listitem: "led the: 1 repetitions"
555
+ - listitem: "left the: 2 repetitions"
556
+ - listitem: "less than: 2 repetitions"
557
+ - listitem: "letter than: 1 repetitions"
558
+ - listitem: "level with: 1 repetitions"
559
+ - listitem: "life with: 1 repetitions"
560
+ - listitem: "light that: 1 repetitions"
561
+ - listitem: "like that: 4 repetitions"
562
+ - listitem: "like them: 1 repetitions"
563
+ - listitem: "like this: 2 repetitions"
564
+ - listitem: "liquid that: 1 repetitions"
565
+ - listitem: "live with: 2 repetitions"
566
+ - listitem: "locked them: 1 repetitions"
567
+ - listitem: "long without: 1 repetitions"
568
+ - listitem: "look that: 1 repetitions"
569
+ - listitem: "looking both: 1 repetitions"
570
+ - listitem: "lunch they: 1 repetitions"
571
+ - listitem: "m rather: 1 repetitions"
572
+ - listitem: "m the: 1 repetitions"
573
+ - listitem: "made another: 1 repetitions"
574
+ - listitem: "made both: 1 repetitions"
575
+ - listitem: "made the: 1 repetitions"
576
+ - listitem: "made things: 1 repetitions"
577
+ - listitem: "make them: 1 repetitions"
578
+ - listitem: "man than: 1 repetitions"
579
+ - listitem: "man with: 1 repetitions"
580
+ - listitem: "man-crushing pythons: 1 repetitions"
581
+ - listitem: "markings the: 1 repetitions"
582
+ - listitem: "math: 1 repetitions"
583
+ - listitem: "math and: 1 repetitions"
584
+ - listitem: "me that: 1 repetitions"
585
+ - listitem: "me there: 1 repetitions"
586
+ - listitem: "me they: 1 repetitions"
587
+ - listitem: "me third: 1 repetitions"
588
+ - listitem: "mean the: 1 repetitions"
589
+ - listitem: "meant they: 1 repetitions"
590
+ - listitem: "mention anything: 1 repetitions"
591
+ - listitem: "mention that: 1 repetitions"
592
+ - listitem: "mention the: 1 repetitions"
593
+ - listitem: "met that: 1 repetitions"
594
+ - listitem: "minute the: 1 repetitions"
595
+ - listitem: "missing that: 1 repetitions"
596
+ - listitem: "mixing with: 1 repetitions"
597
+ - listitem: "moment the: 1 repetitions"
598
+ - listitem: "month-old: 1 repetitions"
599
+ - listitem: "month-old video: 1 repetitions"
600
+ - listitem: "more than: 1 repetitions"
601
+ - listitem: "moth-eaten: 1 repetitions"
602
+ - listitem: "moth-eaten sofa: 1 repetitions"
603
+ - listitem: "/mother: \\d+ repetitions/"
604
+ - listitem: "mother all: 1 repetitions"
605
+ - listitem: "mother and: 2 repetitions"
606
+ - listitem: "mother would: 1 repetitions"
607
+ - listitem: "mother,: 3 repetitions"
608
+ - listitem: "mother.: 4 repetitions"
609
+ - listitem: "mothers arms: 1 repetitions"
610
+ - listitem: "mouth: 6 repetitions"
611
+ - listitem: "mouth fell: 1 repetitions"
612
+ - listitem: "mouth was: 1 repetitions"
613
+ - listitem: "mouth with: 1 repetitions"
614
+ - listitem: "mouth,: 2 repetitions"
615
+ - listitem: "mouthful of: 1 repetitions"
616
+ - listitem: "move everything: 1 repetitions"
617
+ - listitem: "murmured through: 1 repetitions"
618
+ - listitem: "my mother: 1 repetitions"
619
+ - listitem: "mysterious things: 1 repetitions"
620
+ - listitem: "nail with: 1 repetitions"
621
+ - listitem: "nasty that: 1 repetitions"
622
+ - listitem: "need that: 1 repetitions"
623
+ - listitem: "neither: 1 repetitions"
624
+ - listitem: "neither as: 1 repetitions"
625
+ - listitem: "never thought: 1 repetitions"
626
+ - listitem: "nice there: 1 repetitions"
627
+ - listitem: "ninth: 1 repetitions"
628
+ - listitem: "ninth floor: 1 repetitions"
629
+ - listitem: "no other: 1 repetitions"
630
+ - listitem: "nor that: 1 repetitions"
631
+ - listitem: "nose with: 1 repetitions"
632
+ - listitem: "note that: 1 repetitions"
633
+ - listitem: "nothin: 1 repetitions"
634
+ - listitem: "nothin': 1 repetitions"
635
+ - listitem: "/nothing: \\d+ repetitions/"
636
+ - listitem: "nothing ...: 1 repetitions"
637
+ - listitem: "nothing a: 1 repetitions"
638
+ - listitem: "nothing about: 1 repetitions"
639
+ - listitem: "nothing could: 1 repetitions"
640
+ - listitem: "nothing except: 1 repetitions"
641
+ - listitem: "nothing next: 1 repetitions"
642
+ - listitem: "nothing to: 1 repetitions"
643
+ - listitem: "nothing was: 1 repetitions"
644
+ - listitem: "noticed something: 2 repetitions"
645
+ - listitem: "noticed the: 1 repetitions"
646
+ - listitem: "noticing that: 1 repetitions"
647
+ - listitem: "now the: 1 repetitions"
648
+ - listitem: "now they: 1 repetitions"
649
+ - listitem: "odd thing: 1 repetitions"
650
+ - listitem: "of anything: 1 repetitions"
651
+ - listitem: "of nothing: 1 repetitions"
652
+ - listitem: "of something: 2 repetitions"
653
+ - listitem: "/of the: \\d+ repetitions/"
654
+ - listitem: "of their: 3 repetitions"
655
+ - listitem: "/of them: \\d+ repetitions/"
656
+ - listitem: "of these: 3 repetitions"
657
+ - listitem: "of things: 1 repetitions"
658
+ - listitem: "of those: 1 repetitions"
659
+ - listitem: "of thunder: 1 repetitions"
660
+ - listitem: "off the: 3 repetitions"
661
+ - listitem: "off they: 1 repetitions"
662
+ - listitem: "off without: 1 repetitions"
663
+ - listitem: "old clothes: 2 repetitions"
664
+ - listitem: "old things: 1 repetitions"
665
+ - listitem: "older than: 1 repetitions"
666
+ - listitem: "on earth: 1 repetitions"
667
+ - listitem: "on something: 1 repetitions"
668
+ - listitem: "on that: 1 repetitions"
669
+ - listitem: "/on the: \\d+ repetitions/"
670
+ - listitem: "on their: 2 repetitions"
671
+ - listitem: "on them: 1 repetitions"
672
+ - listitem: "one thing: 2 repetitions"
673
+ - listitem: "only thing: 2 repetitions"
674
+ - listitem: "onto the: 2 repetitions"
675
+ - listitem: "open the: 4 repetitions"
676
+ - listitem: "open with: 1 repetitions"
677
+ - listitem: "open-mouthed: 1 repetitions"
678
+ - listitem: "open-mouthed as: 1 repetitions"
679
+ - listitem: "opinion there: 1 repetitions"
680
+ - listitem: "or rather: 1 repetitions"
681
+ - listitem: "or the: 1 repetitions"
682
+ - listitem: "/other: \\d+ repetitions/"
683
+ - listitem: "other darkly: 1 repetitions"
684
+ - listitem: "other day: 1 repetitions"
685
+ - listitem: "other end: 2 repetitions"
686
+ - listitem: "other hand: 2 repetitions"
687
+ - listitem: "other relatives: 1 repetitions"
688
+ - listitem: "other room: 1 repetitions"
689
+ - listitem: "other two: 1 repetitions"
690
+ - listitem: "other while: 1 repetitions"
691
+ - listitem: "other,: 1 repetitions"
692
+ - listitem: "out that: 2 repetitions"
693
+ - listitem: "out the: 3 repetitions"
694
+ - listitem: "out there: 2 repetitions"
695
+ - listitem: "out with: 2 repetitions"
696
+ - listitem: "outside the: 4 repetitions"
697
+ - listitem: "outta the: 1 repetitions"
698
+ - listitem: "/over the: \\d+ repetitions/"
699
+ - listitem: "over their: 1 repetitions"
700
+ - listitem: "over with: 1 repetitions"
701
+ - listitem: "overtook them: 1 repetitions"
702
+ - listitem: "owls that: 1 repetitions"
703
+ - listitem: "parrot that: 1 repetitions"
704
+ - listitem: "passed the: 1 repetitions"
705
+ - listitem: "past the: 1 repetitions"
706
+ - listitem: "past them: 1 repetitions"
707
+ - listitem: "plain that: 1 repetitions"
708
+ - listitem: "plainly there: 1 repetitions"
709
+ - listitem: "planned this: 1 repetitions"
710
+ - listitem: "poking through: 1 repetitions"
711
+ - listitem: "problems with: 1 repetitions"
712
+ - listitem: "put the: 3 repetitions"
713
+ - listitem: "put them: 1 repetitions"
714
+ - listitem: "put together: 1 repetitions"
715
+ - listitem: "pythons: 1 repetitions"
716
+ - listitem: "pythons.: 1 repetitions"
717
+ - listitem: "rapped the: 1 repetitions"
718
+ - listitem: "rather: 8 repetitions"
719
+ - listitem: "rather be: 1 repetitions"
720
+ - listitem: "rather fond: 1 repetitions"
721
+ - listitem: "rather ill: 1 repetitions"
722
+ - listitem: "rather quiet: 1 repetitions"
723
+ - listitem: "rather ruffled-looking: 1 repetitions"
724
+ - listitem: "rather severe-looking: 1 repetitions"
725
+ - listitem: "rather wicked: 1 repetitions"
726
+ - listitem: "rather,: 1 repetitions"
727
+ - listitem: "rattled the: 1 repetitions"
728
+ - listitem: "re the: 2 repetitions"
729
+ - listitem: "reached the: 2 repetitions"
730
+ - listitem: "reaching them: 1 repetitions"
731
+ - listitem: "read that: 1 repetitions"
732
+ - listitem: "read the: 3 repetitions"
733
+ - listitem: "read those: 1 repetitions"
734
+ - listitem: "realized that: 3 repetitions"
735
+ - listitem: "reckon they: 1 repetitions"
736
+ - listitem: "remember the: 1 repetitions"
737
+ - listitem: "remembered something: 1 repetitions"
738
+ - listitem: "reminded them: 1 repetitions"
739
+ - listitem: "reported that: 1 repetitions"
740
+ - listitem: "right then: 1 repetitions"
741
+ - listitem: "right there: 1 repetitions"
742
+ - listitem: "ripping the: 1 repetitions"
743
+ - listitem: "room that: 1 repetitions"
744
+ - listitem: "room with: 1 repetitions"
745
+ - listitem: "round the: 1 repetitions"
746
+ - listitem: "ruffled the: 1 repetitions"
747
+ - listitem: "rumbling with: 1 repetitions"
748
+ - listitem: "rumors that: 1 repetitions"
749
+ - listitem: "rushed them: 1 repetitions"
750
+ - listitem: "s another: 1 repetitions"
751
+ - listitem: "s birthday: 4 repetitions"
752
+ - listitem: "s eleventh: 1 repetitions"
753
+ - listitem: "s mouth: 1 repetitions"
754
+ - listitem: "s something: 1 repetitions"
755
+ - listitem: "s that: 3 repetitions"
756
+ - listitem: "s the: 4 repetitions"
757
+ - listitem: "s there: 1 repetitions"
758
+ - listitem: "s this: 1 repetitions"
759
+ - listitem: "s worth: 1 repetitions"
760
+ - listitem: "said anything: 1 repetitions"
761
+ - listitem: "said that: 2 repetitions"
762
+ - listitem: "said the: 7 repetitions"
763
+ - listitem: "same thing: 1 repetitions"
764
+ - listitem: "sat with: 1 repetitions"
765
+ - listitem: "saw that: 2 repetitions"
766
+ - listitem: "say another: 1 repetitions"
767
+ - listitem: "say something: 2 repetitions"
768
+ - listitem: "say thank: 1 repetitions"
769
+ - listitem: "say that: 2 repetitions"
770
+ - listitem: "school the: 1 repetitions"
771
+ - listitem: "school with: 1 repetitions"
772
+ - listitem: "see anything: 1 repetitions"
773
+ - listitem: "see that: 1 repetitions"
774
+ - listitem: "see the: 2 repetitions"
775
+ - listitem: "see three: 1 repetitions"
776
+ - listitem: "seemed that: 1 repetitions"
777
+ - listitem: "seen that: 1 repetitions"
778
+ - listitem: "seen the: 1 repetitions"
779
+ - listitem: "shaking the: 1 repetitions"
780
+ - listitem: "she thought: 1 repetitions"
781
+ - listitem: "shelf with: 1 repetitions"
782
+ - listitem: "shop without: 1 repetitions"
783
+ - listitem: "shopping with: 1 repetitions"
784
+ - listitem: "shouted that: 1 repetitions"
785
+ - listitem: "shredded the: 1 repetitions"
786
+ - listitem: "sign that: 1 repetitions"
787
+ - listitem: "since the: 1 repetitions"
788
+ - listitem: "skinnier than: 1 repetitions"
789
+ - listitem: "slammed the: 3 repetitions"
790
+ - listitem: "slid the: 1 repetitions"
791
+ - listitem: "slipped the: 1 repetitions"
792
+ - listitem: "slithering: 2 repetitions"
793
+ - listitem: "slithering out: 1 repetitions"
794
+ - listitem: "slithering over: 1 repetitions"
795
+ - listitem: "slot they: 1 repetitions"
796
+ - listitem: "slotted through: 1 repetitions"
797
+ - listitem: "smartly with: 1 repetitions"
798
+ - listitem: "smoothly: 1 repetitions"
799
+ - listitem: "smoothly on: 1 repetitions"
800
+ - listitem: "snapped through: 1 repetitions"
801
+ - listitem: "so that: 3 repetitions"
802
+ - listitem: "so they: 1 repetitions"
803
+ - listitem: "some clothes: 1 repetitions"
804
+ - listitem: "some things: 1 repetitions"
805
+ - listitem: "somethin: 3 repetitions"
806
+ - listitem: "somethin': 3 repetitions"
807
+ - listitem: "/something: \\d+ repetitions/"
808
+ - listitem: "something ...: 1 repetitions"
809
+ - listitem: "something about: 1 repetitions"
810
+ - listitem: "something alive: 1 repetitions"
811
+ - listitem: "something as: 1 repetitions"
812
+ - listitem: "something big: 1 repetitions"
813
+ - listitem: "something creak: 1 repetitions"
814
+ - listitem: "something else: 2 repetitions"
815
+ - listitem: "something had: 1 repetitions"
816
+ - listitem: "something he: 2 repetitions"
817
+ - listitem: "something peculiar: 1 repetitions"
818
+ - listitem: "something strange: 1 repetitions"
819
+ - listitem: "something that: 1 repetitions"
820
+ - listitem: "something to: 4 repetitions"
821
+ - listitem: "something very: 2 repetitions"
822
+ - listitem: "something!: 1 repetitions"
823
+ - listitem: "something': 1 repetitions"
824
+ - listitem: "something,: 1 repetitions"
825
+ - listitem: "something.: 4 repetitions"
826
+ - listitem: "somewhere that: 1 repetitions"
827
+ - listitem: "somewhere with: 1 repetitions"
828
+ - listitem: "sorry that: 1 repetitions"
829
+ - listitem: "spend the: 2 repetitions"
830
+ - listitem: "splattered the: 1 repetitions"
831
+ - listitem: "spoils everything: 1 repetitions"
832
+ - listitem: "spot with: 1 repetitions"
833
+ - listitem: "spotted that: 1 repetitions"
834
+ - listitem: "squashy something: 1 repetitions"
835
+ - listitem: "squeezed through: 1 repetitions"
836
+ - listitem: "still there: 2 repetitions"
837
+ - listitem: "stood with: 1 repetitions"
838
+ - listitem: "stop there: 1 repetitions"
839
+ - listitem: "strange things: 1 repetitions"
840
+ - listitem: "strangers they: 1 repetitions"
841
+ - listitem: "street that: 1 repetitions"
842
+ - listitem: "street the: 1 repetitions"
843
+ - listitem: "stuffing the: 1 repetitions"
844
+ - listitem: "suggest that: 1 repetitions"
845
+ - listitem: "supposed that: 1 repetitions"
846
+ - listitem: "supposed this: 1 repetitions"
847
+ - listitem: "sure that: 3 repetitions"
848
+ - listitem: "sure the: 2 repetitions"
849
+ - listitem: "sure there: 2 repetitions"
850
+ - listitem: "sure they: 1 repetitions"
851
+ - listitem: "swept the: 1 repetitions"
852
+ - listitem: "t there: 1 repetitions"
853
+ - listitem: "t they: 1 repetitions"
854
+ - listitem: "t think: 5 repetitions"
855
+ - listitem: "take the: 1 repetitions"
856
+ - listitem: "take them: 1 repetitions"
857
+ - listitem: "tasted anything: 1 repetitions"
858
+ - listitem: "tea then: 1 repetitions"
859
+ - listitem: "tea through: 1 repetitions"
860
+ - listitem: "tearing the: 1 repetitions"
861
+ - listitem: "teeth: 1 repetitions"
862
+ - listitem: "teeth he: 1 repetitions"
863
+ - listitem: "telling the: 2 repetitions"
864
+ - listitem: "telling them: 3 repetitions"
865
+ - listitem: "ter the: 1 repetitions"
866
+ - listitem: "ter this: 1 repetitions"
867
+ - listitem: "terrible things: 1 repetitions"
868
+ - listitem: "/than: \\d+ repetitions/"
869
+ - listitem: "than July: 1 repetitions"
870
+ - listitem: "than Vernon: 1 repetitions"
871
+ - listitem: "than a: 1 repetitions"
872
+ - listitem: "than having: 1 repetitions"
873
+ - listitem: "than he: 4 repetitions"
874
+ - listitem: "than his: 1 repetitions"
875
+ - listitem: "than last: 1 repetitions"
876
+ - listitem: "than the: 1 repetitions"
877
+ - listitem: "than twelve: 1 repetitions"
878
+ - listitem: "than up: 1 repetitions"
879
+ - listitem: "than worse: 1 repetitions"
880
+ - listitem: "thank: 5 repetitions"
881
+ - listitem: "thank you: 3 repetitions"
882
+ - listitem: "thankful for: 1 repetitions"
883
+ - listitem: "thanks,: 1 repetitions"
884
+ - listitem: "/that: \\d+ repetitions/"
885
+ - listitem: "that ...: 1 repetitions"
886
+ - listitem: "that Dudley: 5 repetitions"
887
+ - listitem: "that Hagrid: 1 repetitions"
888
+ - listitem: "that Harry: 5 repetitions"
889
+ - listitem: "that Lily: 1 repetitions"
890
+ - listitem: "that Mrs: 1 repetitions"
891
+ - listitem: "that Potter: 1 repetitions"
892
+ - listitem: "that Privet: 1 repetitions"
893
+ - listitem: "that Professor: 1 repetitions"
894
+ - listitem: "that a: 1 repetitions"
895
+ - listitem: "that afternoon: 2 repetitions"
896
+ - listitem: "that all: 2 repetitions"
897
+ - listitem: "that and: 1 repetitions"
898
+ - listitem: "that another: 1 repetitions"
899
+ - listitem: "that are: 1 repetitions"
900
+ - listitem: "that at: 1 repetitions"
901
+ - listitem: "that couldn: 1 repetitions"
902
+ - listitem: "that cupboard: 1 repetitions"
903
+ - listitem: "that dangerous: 1 repetitions"
904
+ - listitem: "that day: 2 repetitions"
905
+ - listitem: "that fateful: 1 repetitions"
906
+ - listitem: "that funny: 1 repetitions"
907
+ - listitem: "that had: 1 repetitions"
908
+ - listitem: "that have: 1 repetitions"
909
+ - listitem: "that he: 9 repetitions"
910
+ - listitem: "that his: 1 repetitions"
911
+ - listitem: "that horrible: 1 repetitions"
912
+ - listitem: "that if: 1 repetitions"
913
+ - listitem: "that instead: 1 repetitions"
914
+ - listitem: "that is: 1 repetitions"
915
+ - listitem: "that it: 3 repetitions"
916
+ - listitem: "that last: 1 repetitions"
917
+ - listitem: "that lay: 1 repetitions"
918
+ - listitem: "that letter: 2 repetitions"
919
+ - listitem: "that little: 1 repetitions"
920
+ - listitem: "that looked: 2 repetitions"
921
+ - listitem: "that made: 2 repetitions"
922
+ - listitem: "that man: 1 repetitions"
923
+ - listitem: "that mark: 1 repetitions"
924
+ - listitem: "that meant: 1 repetitions"
925
+ - listitem: "that might: 1 repetitions"
926
+ - listitem: "that moment: 3 repetitions"
927
+ - listitem: "that morning: 2 repetitions"
928
+ - listitem: "that motorcycle: 1 repetitions"
929
+ - listitem: "that night: 1 repetitions"
930
+ - listitem: "that no: 1 repetitions"
931
+ - listitem: "that odd: 1 repetitions"
932
+ - listitem: "that reminds: 1 repetitions"
933
+ - listitem: "that ridiculous: 1 repetitions"
934
+ - listitem: "that room: 1 repetitions"
935
+ - listitem: "that rubbish: 1 repetitions"
936
+ - listitem: "that sad: 1 repetitions"
937
+ - listitem: "that said: 2 repetitions"
938
+ - listitem: "that scar: 1 repetitions"
939
+ - listitem: "that school: 1 repetitions"
940
+ - listitem: "that somebody: 1 repetitions"
941
+ - listitem: "that sounded: 1 repetitions"
942
+ - listitem: "that started: 1 repetitions"
943
+ - listitem: "that strange: 1 repetitions"
944
+ - listitem: "that strangers: 1 repetitions"
945
+ - listitem: "that swept: 1 repetitions"
946
+ - listitem: "that tasted: 1 repetitions"
947
+ - listitem: "that tea: 1 repetitions"
948
+ - listitem: "that ter: 1 repetitions"
949
+ - listitem: "that the: 9 repetitions"
950
+ - listitem: "that their: 1 repetitions"
951
+ - listitem: "that there: 1 repetitions"
952
+ - listitem: "that they: 3 repetitions"
953
+ - listitem: "that this: 2 repetitions"
954
+ - listitem: "that until: 1 repetitions"
955
+ - listitem: "that usually: 1 repetitions"
956
+ - listitem: "that was: 7 repetitions"
957
+ - listitem: "that wasn: 1 repetitions"
958
+ - listitem: "that way: 1 repetitions"
959
+ - listitem: "that whatever: 1 repetitions"
960
+ - listitem: "that when: 1 repetitions"
961
+ - listitem: "that where: 1 repetitions"
962
+ - listitem: "that would: 1 repetitions"
963
+ - listitem: "that wouldn: 1 repetitions"
964
+ - listitem: "that you: 2 repetitions"
965
+ - listitem: "that —: 1 repetitions"
966
+ - listitem: "/that': \\d+ repetitions/"
967
+ - listitem: "that,: 5 repetitions"
968
+ - listitem: "that.: 3 repetitions"
969
+ - listitem: "that?: 2 repetitions"
970
+ - listitem: "/the: \\d+ repetitions/"
971
+ - listitem: "the Bones: 1 repetitions"
972
+ - listitem: "the Brazilian: 1 repetitions"
973
+ - listitem: "/the Dursleys: \\d+ repetitions/"
974
+ - listitem: "the Grunnings: 1 repetitions"
975
+ - listitem: "the Isle: 1 repetitions"
976
+ - listitem: "the London: 1 repetitions"
977
+ - listitem: "the McKinnons: 1 repetitions"
978
+ - listitem: "the Muggles: 4 repetitions"
979
+ - listitem: "/the Potters: \\d+ repetitions/"
980
+ - listitem: "the Prewetts: 1 repetitions"
981
+ - listitem: "the Put-: 1 repetitions"
982
+ - listitem: "the Put-Outer: 1 repetitions"
983
+ - listitem: "the Smelting: 2 repetitions"
984
+ - listitem: "the Tulips: 1 repetitions"
985
+ - listitem: "the address: 2 repetitions"
986
+ - listitem: "the age: 1 repetitions"
987
+ - listitem: "the air: 6 repetitions"
988
+ - listitem: "the animals: 1 repetitions"
989
+ - listitem: "the arm: 1 repetitions"
990
+ - listitem: "the back: 5 repetitions"
991
+ - listitem: "the bacon: 2 repetitions"
992
+ - listitem: "the baker: 1 repetitions"
993
+ - listitem: "the bakery: 1 repetitions"
994
+ - listitem: "the bank: 1 repetitions"
995
+ - listitem: "the barbers: 1 repetitions"
996
+ - listitem: "the bathroom: 1 repetitions"
997
+ - listitem: "the bed: 2 repetitions"
998
+ - listitem: "the bedroom: 1 repetitions"
999
+ - listitem: "the beetle: 1 repetitions"
1000
+ - listitem: "the best: 3 repetitions"
1001
+ - listitem: "the big: 2 repetitions"
1002
+ - listitem: "the biggest: 3 repetitions"
1003
+ - listitem: "the bill: 2 repetitions"
1004
+ - listitem: "the blinding: 1 repetitions"
1005
+ - listitem: "the boarded-up: 1 repetitions"
1006
+ - listitem: "the boat: 1 repetitions"
1007
+ - listitem: "the bowl: 1 repetitions"
1008
+ - listitem: "the boy: 7 repetitions"
1009
+ - listitem: "the brass: 1 repetitions"
1010
+ - listitem: "the breakfast: 1 repetitions"
1011
+ - listitem: "the broken-down: 1 repetitions"
1012
+ - listitem: "the building: 1 repetitions"
1013
+ - listitem: "the bundle: 2 repetitions"
1014
+ - listitem: "the cannon: 1 repetitions"
1015
+ - listitem: "the car: 9 repetitions"
1016
+ - listitem: "/the cat: \\d+ repetitions/"
1017
+ - listitem: "the ceiling: 3 repetitions"
1018
+ - listitem: "the celebrations: 1 repetitions"
1019
+ - listitem: "the cheek: 1 repetitions"
1020
+ - listitem: "the chimney: 1 repetitions"
1021
+ - listitem: "the click: 1 repetitions"
1022
+ - listitem: "the cloudy: 1 repetitions"
1023
+ - listitem: "the coast: 1 repetitions"
1024
+ - listitem: "the concrete: 1 repetitions"
1025
+ - listitem: "the contrary: 1 repetitions"
1026
+ - listitem: "the corner: 8 repetitions"
1027
+ - listitem: "the council: 1 repetitions"
1028
+ - listitem: "the country: 2 repetitions"
1029
+ - listitem: "the crack: 2 repetitions"
1030
+ - listitem: "the crash: 1 repetitions"
1031
+ - listitem: "the cupboard: 3 repetitions"
1032
+ - listitem: "the dairy: 1 repetitions"
1033
+ - listitem: "the dark: 2 repetitions"
1034
+ - listitem: "the day: 4 repetitions"
1035
+ - listitem: "the dining: 1 repetitions"
1036
+ - listitem: "the director: 1 repetitions"
1037
+ - listitem: "the distance: 1 repetitions"
1038
+ - listitem: "/the door: \\d+ repetitions/"
1039
+ - listitem: "the doorbell: 1 repetitions"
1040
+ - listitem: "the doormat: 3 repetitions"
1041
+ - listitem: "the doorway: 1 repetitions"
1042
+ - listitem: "the downstairs: 1 repetitions"
1043
+ - listitem: "the dream: 1 repetitions"
1044
+ - listitem: "the driveway: 1 repetitions"
1045
+ - listitem: "the dull: 1 repetitions"
1046
+ - listitem: "the edge: 3 repetitions"
1047
+ - listitem: "the empty: 2 repetitions"
1048
+ - listitem: "the end: 3 repetitions"
1049
+ - listitem: "the engine: 1 repetitions"
1050
+ - listitem: "the entrance: 1 repetitions"
1051
+ - listitem: "the envelope: 3 repetitions"
1052
+ - listitem: "the evening: 1 repetitions"
1053
+ - listitem: "the exits: 1 repetitions"
1054
+ - listitem: "the eyes: 1 repetitions"
1055
+ - listitem: "the face: 1 repetitions"
1056
+ - listitem: "the fact: 1 repetitions"
1057
+ - listitem: "the fair: 1 repetitions"
1058
+ - listitem: "the family: 2 repetitions"
1059
+ - listitem: "the far: 1 repetitions"
1060
+ - listitem: "the fierce: 1 repetitions"
1061
+ - listitem: "the filthy: 1 repetitions"
1062
+ - listitem: "the finest: 1 repetitions"
1063
+ - listitem: "the fire: 2 repetitions"
1064
+ - listitem: "the firelight: 1 repetitions"
1065
+ - listitem: "the fireplace: 3 repetitions"
1066
+ - listitem: "/the first: \\d+ repetitions/"
1067
+ - listitem: "the floor: 4 repetitions"
1068
+ - listitem: "the foot: 1 repetitions"
1069
+ - listitem: "the front: 8 repetitions"
1070
+ - listitem: "the frying: 1 repetitions"
1071
+ - listitem: "the furious: 1 repetitions"
1072
+ - listitem: "the future: 1 repetitions"
1073
+ - listitem: "the gap: 2 repetitions"
1074
+ - listitem: "the getups: 1 repetitions"
1075
+ - listitem: "/the giant: \\d+ repetitions/"
1076
+ - listitem: "/the glass: \\d+ repetitions/"
1077
+ - listitem: "the glistening: 1 repetitions"
1078
+ - listitem: "the grayish: 1 repetitions"
1079
+ - listitem: "the greatest: 2 repetitions"
1080
+ - listitem: "the green: 2 repetitions"
1081
+ - listitem: "the greenhouse: 1 repetitions"
1082
+ - listitem: "the ground: 4 repetitions"
1083
+ - listitem: "the gun: 1 repetitions"
1084
+ - listitem: "the hair: 1 repetitions"
1085
+ - listitem: "the hall: 6 repetitions"
1086
+ - listitem: "the head: 3 repetitions"
1087
+ - listitem: "the high: 1 repetitions"
1088
+ - listitem: "the highway: 1 repetitions"
1089
+ - listitem: "the holidays: 1 repetitions"
1090
+ - listitem: "the hotel: 1 repetitions"
1091
+ - listitem: "/the house: \\d+ repetitions/"
1092
+ - listitem: "the hut: 4 repetitions"
1093
+ - listitem: "the inky: 1 repetitions"
1094
+ - listitem: "the iron-gray: 1 repetitions"
1095
+ - listitem: "the job: 1 repetitions"
1096
+ - listitem: "the keyhole: 1 repetitions"
1097
+ - listitem: "/the kitchen: \\d+ repetitions/"
1098
+ - listitem: "the largest: 1 repetitions"
1099
+ - listitem: "the last: 2 repetitions"
1100
+ - listitem: "the leader: 1 repetitions"
1101
+ - listitem: "/the letter: \\d+ repetitions/"
1102
+ - listitem: "the library: 1 repetitions"
1103
+ - listitem: "the lights: 4 repetitions"
1104
+ - listitem: "the little: 1 repetitions"
1105
+ - listitem: "the living: 4 repetitions"
1106
+ - listitem: "the local: 1 repetitions"
1107
+ - listitem: "the locked: 1 repetitions"
1108
+ - listitem: "the long: 1 repetitions"
1109
+ - listitem: "the lot: 1 repetitions"
1110
+ - listitem: "the low: 2 repetitions"
1111
+ - listitem: "the lumpy: 1 repetitions"
1112
+ - listitem: "the mail: 8 repetitions"
1113
+ - listitem: "the man: 3 repetitions"
1114
+ - listitem: "the mantelpiece: 1 repetitions"
1115
+ - listitem: "the markings: 1 repetitions"
1116
+ - listitem: "the middle: 3 repetitions"
1117
+ - listitem: "the milk: 1 repetitions"
1118
+ - listitem: "the moment: 4 repetitions"
1119
+ - listitem: "the mood: 1 repetitions"
1120
+ - listitem: "the most: 1 repetitions"
1121
+ - listitem: "the moth-eaten: 1 repetitions"
1122
+ - listitem: "the motorcycle: 3 repetitions"
1123
+ - listitem: "the movies: 1 repetitions"
1124
+ - listitem: "the myst: 1 repetitions"
1125
+ - listitem: "the name: 3 repetitions"
1126
+ - listitem: "the nation: 1 repetitions"
1127
+ - listitem: "the neat: 1 repetitions"
1128
+ - listitem: "the neck: 1 repetitions"
1129
+ - listitem: "the neighbors: 2 repetitions"
1130
+ - listitem: "the news: 2 repetitions"
1131
+ - listitem: "/the next: \\d+ repetitions/"
1132
+ - listitem: "the night: 3 repetitions"
1133
+ - listitem: "the ninth: 1 repetitions"
1134
+ - listitem: "the nose: 1 repetitions"
1135
+ - listitem: "the note: 1 repetitions"
1136
+ - listitem: "the old: 1 repetitions"
1137
+ - listitem: "the one: 1 repetitions"
1138
+ - listitem: "the only: 9 repetitions"
1139
+ - listitem: "the opposite: 1 repetitions"
1140
+ - listitem: "the other: 7 repetitions"
1141
+ - listitem: "the outskirts: 1 repetitions"
1142
+ - listitem: "the owls: 7 repetitions"
1143
+ - listitem: "the owner: 1 repetitions"
1144
+ - listitem: "the paper: 1 repetitions"
1145
+ - listitem: "the pavement: 1 repetitions"
1146
+ - listitem: "the people: 3 repetitions"
1147
+ - listitem: "the perfect: 1 repetitions"
1148
+ - listitem: "the photographs: 2 repetitions"
1149
+ - listitem: "the piece: 1 repetitions"
1150
+ - listitem: "the place: 3 repetitions"
1151
+ - listitem: "the plates: 1 repetitions"
1152
+ - listitem: "the pockets: 2 repetitions"
1153
+ - listitem: "the point: 2 repetitions"
1154
+ - listitem: "the poker: 1 repetitions"
1155
+ - listitem: "the post: 1 repetitions"
1156
+ - listitem: "the postcard: 2 repetitions"
1157
+ - listitem: "the postman: 1 repetitions"
1158
+ - listitem: "the promised: 1 repetitions"
1159
+ - listitem: "the proudest: 1 repetitions"
1160
+ - listitem: "the racing: 2 repetitions"
1161
+ - listitem: "the rain: 1 repetitions"
1162
+ - listitem: "the real: 2 repetitions"
1163
+ - listitem: "the reasons: 1 repetitions"
1164
+ - listitem: "the receiver: 1 repetitions"
1165
+ - listitem: "the reptile: 3 repetitions"
1166
+ - listitem: "the rest: 3 repetitions"
1167
+ - listitem: "the ribs: 1 repetitions"
1168
+ - listitem: "the right: 2 repetitions"
1169
+ - listitem: "the road: 4 repetitions"
1170
+ - listitem: "the rock: 4 repetitions"
1171
+ - listitem: "the roof: 3 repetitions"
1172
+ - listitem: "the room: 6 repetitions"
1173
+ - listitem: "the ruined: 1 repetitions"
1174
+ - listitem: "the rumors: 2 repetitions"
1175
+ - listitem: "/the same: \\d+ repetitions/"
1176
+ - listitem: "the sausages: 1 repetitions"
1177
+ - listitem: "the school: 2 repetitions"
1178
+ - listitem: "the scruffs: 1 repetitions"
1179
+ - listitem: "the sea: 4 repetitions"
1180
+ - listitem: "the second: 3 repetitions"
1181
+ - listitem: "the shadows: 1 repetitions"
1182
+ - listitem: "the shape: 1 repetitions"
1183
+ - listitem: "the shop: 1 repetitions"
1184
+ - listitem: "the shoulder: 1 repetitions"
1185
+ - listitem: "the shriveled: 1 repetitions"
1186
+ - listitem: "the sides: 1 repetitions"
1187
+ - listitem: "the sight: 1 repetitions"
1188
+ - listitem: "the sign: 3 repetitions"
1189
+ - listitem: "the silence: 1 repetitions"
1190
+ - listitem: "the silver: 2 repetitions"
1191
+ - listitem: "the sink: 1 repetitions"
1192
+ - listitem: "the size: 1 repetitions"
1193
+ - listitem: "the sky: 1 repetitions"
1194
+ - listitem: "the small: 1 repetitions"
1195
+ - listitem: "the smaller: 1 repetitions"
1196
+ - listitem: "the smell: 1 repetitions"
1197
+ - listitem: "the smiling: 1 repetitions"
1198
+ - listitem: "/the snake: \\d+ repetitions/"
1199
+ - listitem: "the sofa: 7 repetitions"
1200
+ - listitem: "the softest: 1 repetitions"
1201
+ - listitem: "the sound: 3 repetitions"
1202
+ - listitem: "the spot: 2 repetitions"
1203
+ - listitem: "the stairs: 2 repetitions"
1204
+ - listitem: "the steering: 1 repetitions"
1205
+ - listitem: "the step: 1 repetitions"
1206
+ - listitem: "the storm: 3 repetitions"
1207
+ - listitem: "the stove: 1 repetitions"
1208
+ - listitem: "the stranger: 1 repetitions"
1209
+ - listitem: "/the street: \\d+ repetitions/"
1210
+ - listitem: "the subject: 1 repetitions"
1211
+ - listitem: "the summer: 1 repetitions"
1212
+ - listitem: "the tabby: 2 repetitions"
1213
+ - listitem: "the table: 5 repetitions"
1214
+ - listitem: "the tank: 1 repetitions"
1215
+ - listitem: "the teachers: 1 repetitions"
1216
+ - listitem: "the telephone: 3 repetitions"
1217
+ - listitem: "the things: 2 repetitions"
1218
+ - listitem: "the thinnest: 1 repetitions"
1219
+ - listitem: "the thought: 1 repetitions"
1220
+ - listitem: "the three: 1 repetitions"
1221
+ - listitem: "the time: 6 repetitions"
1222
+ - listitem: "the tiny: 1 repetitions"
1223
+ - listitem: "the toilet: 1 repetitions"
1224
+ - listitem: "the top: 3 repetitions"
1225
+ - listitem: "the toys: 1 repetitions"
1226
+ - listitem: "the truth: 1 repetitions"
1227
+ - listitem: "the twinkling: 1 repetitions"
1228
+ - listitem: "the two: 1 repetitions"
1229
+ - listitem: "the umbrella: 1 repetitions"
1230
+ - listitem: "the usual: 2 repetitions"
1231
+ - listitem: "the van: 1 repetitions"
1232
+ - listitem: "the very: 3 repetitions"
1233
+ - listitem: "the village: 1 repetitions"
1234
+ - listitem: "the waist: 1 repetitions"
1235
+ - listitem: "the wall: 9 repetitions"
1236
+ - listitem: "the warmth: 1 repetitions"
1237
+ - listitem: "the wash: 1 repetitions"
1238
+ - listitem: "/the way: \\d+ repetitions/"
1239
+ - listitem: "the weather: 1 repetitions"
1240
+ - listitem: "the weatherman: 1 repetitions"
1241
+ - listitem: "the week: 1 repetitions"
1242
+ - listitem: "the whisperers: 1 repetitions"
1243
+ - listitem: "the whistling: 1 repetitions"
1244
+ - listitem: "the whole: 5 repetitions"
1245
+ - listitem: "the wind: 2 repetitions"
1246
+ - listitem: "the window: 2 repetitions"
1247
+ - listitem: "the windowsill: 1 repetitions"
1248
+ - listitem: "the wooden: 1 repetitions"
1249
+ - listitem: "the words: 1 repetitions"
1250
+ - listitem: "the world: 3 repetitions"
1251
+ - listitem: "the yellow: 1 repetitions"
1252
+ - listitem: "the yellowish: 1 repetitions"
1253
+ - listitem: "the young: 1 repetitions"
1254
+ - listitem: "the zoo: 6 repetitions"
1255
+ - listitem: "/their: \\d+ repetitions/"
1256
+ - listitem: "their arms: 1 repetitions"
1257
+ - listitem: "their backs: 1 repetitions"
1258
+ - listitem: "their corner: 1 repetitions"
1259
+ - listitem: "their day: 1 repetitions"
1260
+ - listitem: "their faces: 2 repetitions"
1261
+ - listitem: "their favorite: 1 repetitions"
1262
+ - listitem: "their fingers: 1 repetitions"
1263
+ - listitem: "their glasses: 1 repetitions"
1264
+ - listitem: "their greatest: 1 repetitions"
1265
+ - listitem: "their heels: 1 repetitions"
1266
+ - listitem: "their kind: 1 repetitions"
1267
+ - listitem: "their leather: 1 repetitions"
1268
+ - listitem: "their living: 1 repetitions"
1269
+ - listitem: "their necks: 2 repetitions"
1270
+ - listitem: "their nephew: 1 repetitions"
1271
+ - listitem: "their news: 1 repetitions"
1272
+ - listitem: "their opinion: 1 repetitions"
1273
+ - listitem: "their reach: 1 repetitions"
1274
+ - listitem: "their sleeping: 1 repetitions"
1275
+ - listitem: "their son: 2 repetitions"
1276
+ - listitem: "their street: 1 repetitions"
1277
+ - listitem: "their table: 1 repetitions"
1278
+ - listitem: "their very: 1 repetitions"
1279
+ - listitem: "their way: 2 repetitions"
1280
+ - listitem: "their window: 1 repetitions"
1281
+ - listitem: "/them: \\d+ repetitions/"
1282
+ - listitem: "them Harry: 1 repetitions"
1283
+ - listitem: "them a: 1 repetitions"
1284
+ - listitem: "them all: 3 repetitions"
1285
+ - listitem: "them and: 2 repetitions"
1286
+ - listitem: "them angrily: 1 repetitions"
1287
+ - listitem: "them as: 3 repetitions"
1288
+ - listitem: "them cheerfully: 1 repetitions"
1289
+ - listitem: "them had: 1 repetitions"
1290
+ - listitem: "them happen: 1 repetitions"
1291
+ - listitem: "them here: 1 repetitions"
1292
+ - listitem: "them how: 1 repetitions"
1293
+ - listitem: "them in: 2 repetitions"
1294
+ - listitem: "them into: 2 repetitions"
1295
+ - listitem: "them jump: 1 repetitions"
1296
+ - listitem: "them knew: 1 repetitions"
1297
+ - listitem: "them next: 1 repetitions"
1298
+ - listitem: "them noticed: 1 repetitions"
1299
+ - listitem: "them on: 1 repetitions"
1300
+ - listitem: "them out: 1 repetitions"
1301
+ - listitem: "them stood: 1 repetitions"
1302
+ - listitem: "them they: 1 repetitions"
1303
+ - listitem: "them to: 1 repetitions"
1304
+ - listitem: "them up: 1 repetitions"
1305
+ - listitem: "them we: 1 repetitions"
1306
+ - listitem: "them were: 1 repetitions"
1307
+ - listitem: "them weren: 1 repetitions"
1308
+ - listitem: "/them,: \\d+ repetitions/"
1309
+ - listitem: "/them\\.: \\d+ repetitions/"
1310
+ - listitem: "/then: \\d+ repetitions/"
1311
+ - listitem: "then Uncle: 1 repetitions"
1312
+ - listitem: "then came: 1 repetitions"
1313
+ - listitem: "then forced: 1 repetitions"
1314
+ - listitem: "then it: 1 repetitions"
1315
+ - listitem: "then raised: 1 repetitions"
1316
+ - listitem: "then said: 2 repetitions"
1317
+ - listitem: "then the: 1 repetitions"
1318
+ - listitem: "then told: 1 repetitions"
1319
+ - listitem: "then tomorrow: 1 repetitions"
1320
+ - listitem: "then walked: 1 repetitions"
1321
+ - listitem: "then went: 1 repetitions"
1322
+ - listitem: "then,: 7 repetitions"
1323
+ - listitem: "then.: 2 repetitions"
1324
+ - listitem: "/there: \\d+ repetitions/"
1325
+ - listitem: "there ...: 1 repetitions"
1326
+ - listitem: "there and: 1 repetitions"
1327
+ - listitem: "there could: 1 repetitions"
1328
+ - listitem: "there had: 3 repetitions"
1329
+ - listitem: "there have: 1 repetitions"
1330
+ - listitem: "there he: 1 repetitions"
1331
+ - listitem: "there might: 1 repetitions"
1332
+ - listitem: "there seemed: 1 repetitions"
1333
+ - listitem: "there somewhere: 1 repetitions"
1334
+ - listitem: "there too: 1 repetitions"
1335
+ - listitem: "/there was: \\d+ repetitions/"
1336
+ - listitem: "there wasn: 3 repetitions"
1337
+ - listitem: "there were: 4 repetitions"
1338
+ - listitem: "there will: 1 repetitions"
1339
+ - listitem: "there —: 1 repetitions"
1340
+ - listitem: "there!: 1 repetitions"
1341
+ - listitem: "there,: 4 repetitions"
1342
+ - listitem: "there.: 6 repetitions"
1343
+ - listitem: "there?: 3 repetitions"
1344
+ - listitem: "these: 9 repetitions"
1345
+ - listitem: "these at: 1 repetitions"
1346
+ - listitem: "these birds: 1 repetitions"
1347
+ - listitem: "these people: 4 repetitions"
1348
+ - listitem: "these weirdos: 1 repetitions"
1349
+ - listitem: "these wizarding: 1 repetitions"
1350
+ - listitem: "these years: 1 repetitions"
1351
+ - listitem: "/they: \\d+ repetitions/"
1352
+ - listitem: "they also: 2 repetitions"
1353
+ - listitem: "they always: 1 repetitions"
1354
+ - listitem: "they await: 1 repetitions"
1355
+ - listitem: "they been: 1 repetitions"
1356
+ - listitem: "they both: 1 repetitions"
1357
+ - listitem: "they bought: 1 repetitions"
1358
+ - listitem: "they can: 1 repetitions"
1359
+ - listitem: "they could: 6 repetitions"
1360
+ - listitem: "they couldn: 2 repetitions"
1361
+ - listitem: "they didn: 4 repetitions"
1362
+ - listitem: "they died: 1 repetitions"
1363
+ - listitem: "they don: 2 repetitions"
1364
+ - listitem: "they got: 2 repetitions"
1365
+ - listitem: "they had: 5 repetitions"
1366
+ - listitem: "they hadn: 1 repetitions"
1367
+ - listitem: "they just: 1 repetitions"
1368
+ - listitem: "they knew: 1 repetitions"
1369
+ - listitem: "they left: 1 repetitions"
1370
+ - listitem: "they looked: 1 repetitions"
1371
+ - listitem: "they made: 1 repetitions"
1372
+ - listitem: "they normally: 1 repetitions"
1373
+ - listitem: "they pointed: 1 repetitions"
1374
+ - listitem: "they possibly: 1 repetitions"
1375
+ - listitem: "they reached: 1 repetitions"
1376
+ - listitem: "they seemed: 3 repetitions"
1377
+ - listitem: "they wanted: 1 repetitions"
1378
+ - listitem: "they watched: 1 repetitions"
1379
+ - listitem: "they went: 3 repetitions"
1380
+ - listitem: "/they were: \\d+ repetitions/"
1381
+ - listitem: "they weren: 2 repetitions"
1382
+ - listitem: "they wouldn: 1 repetitions"
1383
+ - listitem: "/they': \\d+ repetitions/"
1384
+ - listitem: "they?: 1 repetitions"
1385
+ - listitem: "thick: 5 repetitions"
1386
+ - listitem: "thick and: 1 repetitions"
1387
+ - listitem: "thick black: 1 repetitions"
1388
+ - listitem: "thick blond: 1 repetitions"
1389
+ - listitem: "thick,: 2 repetitions"
1390
+ - listitem: "thin: 6 repetitions"
1391
+ - listitem: "thin and: 1 repetitions"
1392
+ - listitem: "thin face: 1 repetitions"
1393
+ - listitem: "thin package: 2 repetitions"
1394
+ - listitem: "thin scar: 1 repetitions"
1395
+ - listitem: "thin,: 1 repetitions"
1396
+ - listitem: "thing Harry: 1 repetitions"
1397
+ - listitem: "thing about: 1 repetitions"
1398
+ - listitem: "thing happened: 3 repetitions"
1399
+ - listitem: "thing he: 1 repetitions"
1400
+ - listitem: "thing it: 1 repetitions"
1401
+ - listitem: "thing the: 1 repetitions"
1402
+ - listitem: "thing was: 1 repetitions"
1403
+ - listitem: "thing while: 1 repetitions"
1404
+ - listitem: "thing —: 1 repetitions"
1405
+ - listitem: "/things: \\d+ repetitions/"
1406
+ - listitem: "things began: 1 repetitions"
1407
+ - listitem: "things gray: 1 repetitions"
1408
+ - listitem: "things in: 1 repetitions"
1409
+ - listitem: "things lay: 1 repetitions"
1410
+ - listitem: "things often: 1 repetitions"
1411
+ - listitem: "things out: 1 repetitions"
1412
+ - listitem: "things that: 2 repetitions"
1413
+ - listitem: "things to: 2 repetitions"
1414
+ - listitem: "things tomorrow: 1 repetitions"
1415
+ - listitem: "things with: 1 repetitions"
1416
+ - listitem: "things would: 1 repetitions"
1417
+ - listitem: "things,: 2 repetitions"
1418
+ - listitem: "things:: 1 repetitions"
1419
+ - listitem: "things?: 1 repetitions"
1420
+ - listitem: "/think: \\d+ repetitions/"
1421
+ - listitem: "think I: 2 repetitions"
1422
+ - listitem: "think he: 2 repetitions"
1423
+ - listitem: "think it: 2 repetitions"
1424
+ - listitem: "think of: 3 repetitions"
1425
+ - listitem: "think they: 3 repetitions"
1426
+ - listitem: "think this: 1 repetitions"
1427
+ - listitem: "think what: 1 repetitions"
1428
+ - listitem: "think you: 2 repetitions"
1429
+ - listitem: "thinking ...: 2 repetitions"
1430
+ - listitem: "thinking about: 4 repetitions"
1431
+ - listitem: "thinnest: 1 repetitions"
1432
+ - listitem: "thinnest,: 1 repetitions"
1433
+ - listitem: "third: 1 repetitions"
1434
+ - listitem: "third year: 1 repetitions"
1435
+ - listitem: "thirty: 4 repetitions"
1436
+ - listitem: "thirty ...: 2 repetitions"
1437
+ - listitem: "thirty or: 1 repetitions"
1438
+ - listitem: "thirty-seven: 1 repetitions"
1439
+ - listitem: "thirty-seven then: 1 repetitions"
1440
+ - listitem: "/this: \\d+ repetitions/"
1441
+ - listitem: "this You-: 1 repetitions"
1442
+ - listitem: "this about: 1 repetitions"
1443
+ - listitem: "this and: 1 repetitions"
1444
+ - listitem: "this at: 1 repetitions"
1445
+ - listitem: "this badly: 1 repetitions"
1446
+ - listitem: "this big: 1 repetitions"
1447
+ - listitem: "this bike: 1 repetitions"
1448
+ - listitem: "this boy: 3 repetitions"
1449
+ - listitem: "this cupboard: 1 repetitions"
1450
+ - listitem: "this for: 1 repetitions"
1451
+ - listitem: "this gentleman: 1 repetitions"
1452
+ - listitem: "this happy: 1 repetitions"
1453
+ - listitem: "this have: 1 repetitions"
1454
+ - listitem: "this in: 1 repetitions"
1455
+ - listitem: "this is: 3 repetitions"
1456
+ - listitem: "this lot: 1 repetitions"
1457
+ - listitem: "this man: 2 repetitions"
1458
+ - listitem: "this normal: 1 repetitions"
1459
+ - listitem: "this over: 1 repetitions"
1460
+ - listitem: "this room: 1 repetitions"
1461
+ - listitem: "this son: 1 repetitions"
1462
+ - listitem: "this stuff: 1 repetitions"
1463
+ - listitem: "this time: 3 repetitions"
1464
+ - listitem: "this very: 1 repetitions"
1465
+ - listitem: "this was: 8 repetitions"
1466
+ - listitem: "this wizard: 2 repetitions"
1467
+ - listitem: "this —: 1 repetitions"
1468
+ - listitem: "this,: 5 repetitions"
1469
+ - listitem: "this.: 2 repetitions"
1470
+ - listitem: "this?: 2 repetitions"
1471
+ - listitem: "those: 3 repetitions"
1472
+ - listitem: "those letters: 2 repetitions"
1473
+ - listitem: "those people: 1 repetitions"
1474
+ - listitem: "/though: \\d+ repetitions/"
1475
+ - listitem: "though Dudley: 1 repetitions"
1476
+ - listitem: "though he: 8 repetitions"
1477
+ - listitem: "though hoping: 1 repetitions"
1478
+ - listitem: "though it: 2 repetitions"
1479
+ - listitem: "though people: 1 repetitions"
1480
+ - listitem: "though she: 5 repetitions"
1481
+ - listitem: "though the: 1 repetitions"
1482
+ - listitem: "though they: 1 repetitions"
1483
+ - listitem: "though this: 1 repetitions"
1484
+ - listitem: "though,: 1 repetitions"
1485
+ - listitem: "/thought: \\d+ repetitions/"
1486
+ - listitem: "thought (: 1 repetitions"
1487
+ - listitem: "thought ...: 1 repetitions"
1488
+ - listitem: "thought about: 1 repetitions"
1489
+ - listitem: "thought before: 1 repetitions"
1490
+ - listitem: "thought better: 1 repetitions"
1491
+ - listitem: "thought didn: 1 repetitions"
1492
+ - listitem: "thought for: 1 repetitions"
1493
+ - listitem: "thought he: 5 repetitions"
1494
+ - listitem: "thought it: 1 repetitions"
1495
+ - listitem: "thought nobody: 1 repetitions"
1496
+ - listitem: "thought of: 1 repetitions"
1497
+ - listitem: "thought this: 2 repetitions"
1498
+ - listitem: "thought two: 1 repetitions"
1499
+ - listitem: "thought yeh: 1 repetitions"
1500
+ - listitem: "thought,: 1 repetitions"
1501
+ - listitem: "three: 5 repetitions"
1502
+ - listitem: "three ...: 1 repetitions"
1503
+ - listitem: "three letters: 1 repetitions"
1504
+ - listitem: "three of: 1 repetitions"
1505
+ - listitem: "threw: 7 repetitions"
1506
+ - listitem: "threw a: 2 repetitions"
1507
+ - listitem: "threw him: 1 repetitions"
1508
+ - listitem: "threw it: 2 repetitions"
1509
+ - listitem: "threw the: 1 repetitions"
1510
+ - listitem: "threw them: 1 repetitions"
1511
+ - listitem: "throat: 2 repetitions"
1512
+ - listitem: "throat and: 1 repetitions"
1513
+ - listitem: "throat nervously: 1 repetitions"
1514
+ - listitem: "/through: \\d+ repetitions/"
1515
+ - listitem: "through a: 2 repetitions"
1516
+ - listitem: "through his: 1 repetitions"
1517
+ - listitem: "through pursed: 1 repetitions"
1518
+ - listitem: "/through the: \\d+ repetitions/"
1519
+ - listitem: "through when: 1 repetitions"
1520
+ - listitem: "throughout: 1 repetitions"
1521
+ - listitem: "throughout the: 1 repetitions"
1522
+ - listitem: "throwing: 1 repetitions"
1523
+ - listitem: "throwing his: 1 repetitions"
1524
+ - listitem: "thrown: 1 repetitions"
1525
+ - listitem: "thrown his: 1 repetitions"
1526
+ - listitem: "thumpin: 1 repetitions"
1527
+ - listitem: "thumpin': 1 repetitions"
1528
+ - listitem: "thunder that: 1 repetitions"
1529
+ - listitem: "thundered: 3 repetitions"
1530
+ - listitem: "thundered,: 1 repetitions"
1531
+ - listitem: "thundered.: 1 repetitions"
1532
+ - listitem: "time they: 2 repetitions"
1533
+ - listitem: "to death: 1 repetitions"
1534
+ - listitem: "to that: 2 repetitions"
1535
+ - listitem: "/to the: \\d+ repetitions/"
1536
+ - listitem: "to their: 3 repetitions"
1537
+ - listitem: "to them: 2 repetitions"
1538
+ - listitem: "to think: 6 repetitions"
1539
+ - listitem: "to this: 1 repetitions"
1540
+ - listitem: "together: 6 repetitions"
1541
+ - listitem: "together with: 1 repetitions"
1542
+ - listitem: "together,: 2 repetitions"
1543
+ - listitem: "together.: 3 repetitions"
1544
+ - listitem: "toilet the: 1 repetitions"
1545
+ - listitem: "took both: 1 repetitions"
1546
+ - listitem: "toothless: 1 repetitions"
1547
+ - listitem: "toothless old: 1 repetitions"
1548
+ - listitem: "tortoise through: 1 repetitions"
1549
+ - listitem: "touch anything: 1 repetitions"
1550
+ - listitem: "toward the: 4 repetitions"
1551
+ - listitem: "toward them: 1 repetitions"
1552
+ - listitem: "trembled with: 1 repetitions"
1553
+ - listitem: "truth: 1 repetitions"
1554
+ - listitem: "truth.: 1 repetitions"
1555
+ - listitem: "turned the: 2 repetitions"
1556
+ - listitem: "twice the: 1 repetitions"
1557
+ - listitem: "under that: 1 repetitions"
1558
+ - listitem: "under the: 7 repetitions"
1559
+ - listitem: "under this: 1 repetitions"
1560
+ - listitem: "underneath: 1 repetitions"
1561
+ - listitem: "underneath it: 1 repetitions"
1562
+ - listitem: "understand them: 1 repetitions"
1563
+ - listitem: "until the: 1 repetitions"
1564
+ - listitem: "unwrap the: 1 repetitions"
1565
+ - listitem: "up the: 8 repetitions"
1566
+ - listitem: "up their: 1 repetitions"
1567
+ - listitem: "up with: 2 repetitions"
1568
+ - listitem: "use them: 1 repetitions"
1569
+ - listitem: "usually the: 1 repetitions"
1570
+ - listitem: "vacation with: 1 repetitions"
1571
+ - listitem: "vanish the: 1 repetitions"
1572
+ - listitem: "very thin: 1 repetitions"
1573
+ - listitem: "visit the: 2 repetitions"
1574
+ - listitem: "voice that: 2 repetitions"
1575
+ - listitem: "wake the: 2 repetitions"
1576
+ - listitem: "want anythin: 1 repetitions"
1577
+ - listitem: "want everything: 1 repetitions"
1578
+ - listitem: "warmth: 2 repetitions"
1579
+ - listitem: "warmth and: 1 repetitions"
1580
+ - listitem: "warmth wash: 1 repetitions"
1581
+ - listitem: "was another: 1 repetitions"
1582
+ - listitem: "was nothing: 2 repetitions"
1583
+ - listitem: "was rather: 1 repetitions"
1584
+ - listitem: "was somethin: 1 repetitions"
1585
+ - listitem: "was something: 2 repetitions"
1586
+ - listitem: "was that: 5 repetitions"
1587
+ - listitem: "/was the: \\d+ repetitions/"
1588
+ - listitem: "was there: 1 repetitions"
1589
+ - listitem: "was thick: 1 repetitions"
1590
+ - listitem: "was thin: 1 repetitions"
1591
+ - listitem: "was thinking: 1 repetitions"
1592
+ - listitem: "watched the: 2 repetitions"
1593
+ - listitem: "watching them: 1 repetitions"
1594
+ - listitem: "way they: 1 repetitions"
1595
+ - listitem: "way through: 1 repetitions"
1596
+ - listitem: "we think: 1 repetitions"
1597
+ - listitem: "weather: 2 repetitions"
1598
+ - listitem: "weather.: 1 repetitions"
1599
+ - listitem: "weatherman: 1 repetitions"
1600
+ - listitem: "weatherman,: 1 repetitions"
1601
+ - listitem: "weirdest thing: 1 repetitions"
1602
+ - listitem: "were both: 1 repetitions"
1603
+ - listitem: "were the: 3 repetitions"
1604
+ - listitem: "were there: 2 repetitions"
1605
+ - listitem: "were they: 1 repetitions"
1606
+ - listitem: "what the: 1 repetitions"
1607
+ - listitem: "what they: 2 repetitions"
1608
+ - listitem: "whatever that: 1 repetitions"
1609
+ - listitem: "when they: 1 repetitions"
1610
+ - listitem: "where everything: 1 repetitions"
1611
+ - listitem: "where the: 2 repetitions"
1612
+ - listitem: "where they: 1 repetitions"
1613
+ - listitem: "whether: 1 repetitions"
1614
+ - listitem: "whether he: 1 repetitions"
1615
+ - listitem: "which this: 1 repetitions"
1616
+ - listitem: "while the: 2 repetitions"
1617
+ - listitem: "whipped their: 1 repetitions"
1618
+ - listitem: "whispered something: 1 repetitions"
1619
+ - listitem: "whistled through: 1 repetitions"
1620
+ - listitem: "why the: 1 repetitions"
1621
+ - listitem: "/with: \\d+ repetitions/"
1622
+ - listitem: "with ...: 1 repetitions"
1623
+ - listitem: "with Aunt: 1 repetitions"
1624
+ - listitem: "with Dudley: 3 repetitions"
1625
+ - listitem: "with Happy: 1 repetitions"
1626
+ - listitem: "with Harry: 2 repetitions"
1627
+ - listitem: "with Mrs: 1 repetitions"
1628
+ - listitem: "with Muggles: 1 repetitions"
1629
+ - listitem: "with Piers: 1 repetitions"
1630
+ - listitem: "/with a: \\d+ repetitions/"
1631
+ - listitem: "with enough: 1 repetitions"
1632
+ - listitem: "with families: 1 repetitions"
1633
+ - listitem: "with fear: 1 repetitions"
1634
+ - listitem: "with flickering: 1 repetitions"
1635
+ - listitem: "with half: 1 repetitions"
1636
+ - listitem: "with hardly: 1 repetitions"
1637
+ - listitem: "with her: 2 repetitions"
1638
+ - listitem: "with him: 2 repetitions"
1639
+ - listitem: "/with his: \\d+ repetitions/"
1640
+ - listitem: "with howls: 1 repetitions"
1641
+ - listitem: "with hunger: 1 repetitions"
1642
+ - listitem: "with lit: 1 repetitions"
1643
+ - listitem: "with living: 1 repetitions"
1644
+ - listitem: "with my: 1 repetitions"
1645
+ - listitem: "with one: 1 repetitions"
1646
+ - listitem: "with orange: 1 repetitions"
1647
+ - listitem: "with rage: 1 repetitions"
1648
+ - listitem: "with some: 1 repetitions"
1649
+ - listitem: "with something: 1 repetitions"
1650
+ - listitem: "with strange: 1 repetitions"
1651
+ - listitem: "with such: 3 repetitions"
1652
+ - listitem: "with that: 2 repetitions"
1653
+ - listitem: "/with the: \\d+ repetitions/"
1654
+ - listitem: "with their: 1 repetitions"
1655
+ - listitem: "with them: 1 repetitions"
1656
+ - listitem: "with these: 1 repetitions"
1657
+ - listitem: "with trembling: 1 repetitions"
1658
+ - listitem: "with twin: 1 repetitions"
1659
+ - listitem: "with warmth: 1 repetitions"
1660
+ - listitem: "with wrinkled: 1 repetitions"
1661
+ - listitem: "with you: 1 repetitions"
1662
+ - listitem: "with youngsters: 1 repetitions"
1663
+ - listitem: "with your: 1 repetitions"
1664
+ - listitem: "with —: 1 repetitions"
1665
+ - listitem: "with.: 1 repetitions"
1666
+ - listitem: "without: 9 repetitions"
1667
+ - listitem: "without a: 2 repetitions"
1668
+ - listitem: "without blowing: 1 repetitions"
1669
+ - listitem: "without buying: 1 repetitions"
1670
+ - listitem: "without even: 1 repetitions"
1671
+ - listitem: "without it: 1 repetitions"
1672
+ - listitem: "without them: 1 repetitions"
1673
+ - listitem: "without turning: 1 repetitions"
1674
+ - listitem: "without waking: 1 repetitions"
1675
+ - listitem: "woke with: 1 repetitions"
1676
+ - listitem: "wondered whether: 1 repetitions"
1677
+ - listitem: "work that: 1 repetitions"
1678
+ - listitem: "worried that: 1 repetitions"
1679
+ - listitem: "worse than: 2 repetitions"
1680
+ - listitem: "worth: 2 repetitions"
1681
+ - listitem: "worth being: 1 repetitions"
1682
+ - listitem: "worth,: 1 repetitions"
1683
+ - listitem: "wrenched their: 1 repetitions"
1684
+ - listitem: "written them: 1 repetitions"
1685
+ - listitem: "years there: 1 repetitions"
1686
+ - listitem: "yeh everythin: 1 repetitions"
1687
+ - listitem: "yeh the: 1 repetitions"
1688
+ - listitem: "yet another: 1 repetitions"
1689
+ - listitem: "you another: 1 repetitions"
1690
+ - listitem: "you that: 1 repetitions"
1691
+ - listitem: "you think: 2 repetitions"
1692
+ - listitem: "you this: 1 repetitions"
1693
+ - listitem: "— something: 1 repetitions"
1694
+ - listitem: "— that: 3 repetitions"
1695
+ - listitem: "— the: 4 repetitions"
1696
+ - listitem: "— then: 2 repetitions"
1697
+ - listitem: "— there: 2 repetitions"
1698
+ - listitem: "— these: 1 repetitions"
1699
+ - listitem: "— they: 1 repetitions"
1700
+ - listitem: "— this: 2 repetitions"
1701
+ - listitem: "— three: 1 repetitions"
1702
+ - listitem: "— with: 1 repetitions"
static/tests/test-classic-1-lite.koboldai.net.spec.ts-snapshots/test-classic-1--desc-count.txt ADDED
@@ -0,0 +1,1702 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - text: /'th', \d+ occurrences/
2
+ - listitem: "/the: \\d+ repetitions/"
3
+ - listitem: "/that: \\d+ repetitions/"
4
+ - listitem: "/they: \\d+ repetitions/"
5
+ - listitem: "/with: \\d+ repetitions/"
6
+ - listitem: "/on the: \\d+ repetitions/"
7
+ - listitem: "/this: \\d+ repetitions/"
8
+ - listitem: "/them: \\d+ repetitions/"
9
+ - listitem: "/there: \\d+ repetitions/"
10
+ - listitem: "/in the: \\d+ repetitions/"
11
+ - listitem: "/of the: \\d+ repetitions/"
12
+ - listitem: "/at the: \\d+ repetitions/"
13
+ - listitem: "/the Dursleys: \\d+ repetitions/"
14
+ - listitem: "/their: \\d+ repetitions/"
15
+ - listitem: "/then: \\d+ repetitions/"
16
+ - listitem: "/\\. The: \\d+ repetitions/"
17
+ - listitem: "/things: \\d+ repetitions/"
18
+ - listitem: "/something: \\d+ repetitions/"
19
+ - listitem: "/to the: \\d+ repetitions/"
20
+ - listitem: "/into the: \\d+ repetitions/"
21
+ - listitem: "/, the: \\d+ repetitions/"
22
+ - listitem: "/think: \\d+ repetitions/"
23
+ - listitem: "/though: \\d+ repetitions/"
24
+ - listitem: "/anything: \\d+ repetitions/"
25
+ - listitem: "/thought: \\d+ repetitions/"
26
+ - listitem: "/they': \\d+ repetitions/"
27
+ - listitem: "/through: \\d+ repetitions/"
28
+ - listitem: "/there was: \\d+ repetitions/"
29
+ - listitem: "/with a: \\d+ repetitions/"
30
+ - listitem: "/\\. They: \\d+ repetitions/"
31
+ - listitem: "/as though: \\d+ repetitions/"
32
+ - listitem: "/the letter: \\d+ repetitions/"
33
+ - listitem: "/the cat: \\d+ repetitions/"
34
+ - listitem: "/they were: \\d+ repetitions/"
35
+ - listitem: "/was the: \\d+ repetitions/"
36
+ - listitem: "/over the: \\d+ repetitions/"
37
+ - listitem: "/of them: \\d+ repetitions/"
38
+ - listitem: "/than: \\d+ repetitions/"
39
+ - listitem: "/that': \\d+ repetitions/"
40
+ - listitem: "/through the: \\d+ repetitions/"
41
+ - listitem: "/the house: \\d+ repetitions/"
42
+ - listitem: "/from the: \\d+ repetitions/"
43
+ - listitem: "/the door: \\d+ repetitions/"
44
+ - listitem: "/them\\.: \\d+ repetitions/"
45
+ - listitem: "/the giant: \\d+ repetitions/"
46
+ - listitem: "/the kitchen: \\d+ repetitions/"
47
+ - listitem: "/the street: \\d+ repetitions/"
48
+ - listitem: "/the first: \\d+ repetitions/"
49
+ - listitem: "/all the: \\d+ repetitions/"
50
+ - listitem: "/and the: \\d+ repetitions/"
51
+ - listitem: "/, they: \\d+ repetitions/"
52
+ - listitem: "/other: \\d+ repetitions/"
53
+ - listitem: "/mother: \\d+ repetitions/"
54
+ - listitem: "/the snake: \\d+ repetitions/"
55
+ - listitem: "/the Potters: \\d+ repetitions/"
56
+ - listitem: "/with his: \\d+ repetitions/"
57
+ - listitem: "/the next: \\d+ repetitions/"
58
+ - listitem: "/his mother: \\d+ repetitions/"
59
+ - listitem: "/and then: \\d+ repetitions/"
60
+ - listitem: "/the glass: \\d+ repetitions/"
61
+ - listitem: "/another: \\d+ repetitions/"
62
+ - listitem: "/nothing: \\d+ repetitions/"
63
+ - listitem: "/them,: \\d+ repetitions/"
64
+ - listitem: "/the same: \\d+ repetitions/"
65
+ - listitem: "/with the: \\d+ repetitions/"
66
+ - listitem: "/by the: \\d+ repetitions/"
67
+ - listitem: "/the way: \\d+ repetitions/"
68
+ - listitem: "that the: 9 repetitions"
69
+ - listitem: "the wall: 9 repetitions"
70
+ - listitem: "that he: 9 repetitions"
71
+ - listitem: "these: 9 repetitions"
72
+ - listitem: "the only: 9 repetitions"
73
+ - listitem: "down the: 9 repetitions"
74
+ - listitem: "without: 9 repetitions"
75
+ - listitem: "birthday: 9 repetitions"
76
+ - listitem: "the car: 9 repetitions"
77
+ - listitem: "everything: 8 repetitions"
78
+ - listitem: ", there: 8 repetitions"
79
+ - listitem: "the corner: 8 repetitions"
80
+ - listitem: "around the: 8 repetitions"
81
+ - listitem: "up the: 8 repetitions"
82
+ - listitem: "this was: 8 repetitions"
83
+ - listitem: ", that: 8 repetitions"
84
+ - listitem: "the front: 8 repetitions"
85
+ - listitem: "both: 8 repetitions"
86
+ - listitem: "rather: 8 repetitions"
87
+ - listitem: "\"That: 8 repetitions"
88
+ - listitem: "father: 8 repetitions"
89
+ - listitem: "for the: 8 repetitions"
90
+ - listitem: "though he: 8 repetitions"
91
+ - listitem: "the mail: 8 repetitions"
92
+ - listitem: "the boy: 7 repetitions"
93
+ - listitem: ". There: 7 repetitions"
94
+ - listitem: "the owls: 7 repetitions"
95
+ - listitem: "that was: 7 repetitions"
96
+ - listitem: "said the: 7 repetitions"
97
+ - listitem: "the other: 7 repetitions"
98
+ - listitem: "threw: 7 repetitions"
99
+ - listitem: "then,: 7 repetitions"
100
+ - listitem: "under the: 7 repetitions"
101
+ - listitem: "the sofa: 7 repetitions"
102
+ - listitem: "' the: 7 repetitions"
103
+ - listitem: "thin: 6 repetitions"
104
+ - listitem: "but they: 6 repetitions"
105
+ - listitem: "they could: 6 repetitions"
106
+ - listitem: "about the: 6 repetitions"
107
+ - listitem: "to think: 6 repetitions"
108
+ - listitem: "he thought: 6 repetitions"
109
+ - listitem: "clothes: 6 repetitions"
110
+ - listitem: "together: 6 repetitions"
111
+ - listitem: ". This: 6 repetitions"
112
+ - listitem: "do with: 6 repetitions"
113
+ - listitem: "as they: 6 repetitions"
114
+ - listitem: "there.: 6 repetitions"
115
+ - listitem: "but the: 6 repetitions"
116
+ - listitem: "the air: 6 repetitions"
117
+ - listitem: "mouth: 6 repetitions"
118
+ - listitem: "his father: 6 repetitions"
119
+ - listitem: "the room: 6 repetitions"
120
+ - listitem: "the hall: 6 repetitions"
121
+ - listitem: "the time: 6 repetitions"
122
+ - listitem: "the zoo: 6 repetitions"
123
+ - listitem: "thank: 5 repetitions"
124
+ - listitem: "was that: 5 repetitions"
125
+ - listitem: "t think: 5 repetitions"
126
+ - listitem: "they had: 5 repetitions"
127
+ - listitem: "Then he: 5 repetitions"
128
+ - listitem: ", though: 5 repetitions"
129
+ - listitem: "thought he: 5 repetitions"
130
+ - listitem: "\"The: 5 repetitions"
131
+ - listitem: "as the: 5 repetitions"
132
+ - listitem: "that,: 5 repetitions"
133
+ - listitem: "all this: 5 repetitions"
134
+ - listitem: "the whole: 5 repetitions"
135
+ - listitem: "though she: 5 repetitions"
136
+ - listitem: ". Then: 5 repetitions"
137
+ - listitem: "three: 5 repetitions"
138
+ - listitem: "the table: 5 repetitions"
139
+ - listitem: "that Harry: 5 repetitions"
140
+ - listitem: "thick: 5 repetitions"
141
+ - listitem: "that Dudley: 5 repetitions"
142
+ - listitem: "this,: 5 repetitions"
143
+ - listitem: "the back: 5 repetitions"
144
+ - listitem: "get the: 5 repetitions"
145
+ - listitem: "and threw: 5 repetitions"
146
+ - listitem: "although: 4 repetitions"
147
+ - listitem: "they didn: 4 repetitions"
148
+ - listitem: "if the: 4 repetitions"
149
+ - listitem: "like that: 4 repetitions"
150
+ - listitem: "the lights: 4 repetitions"
151
+ - listitem: "the road: 4 repetitions"
152
+ - listitem: "— the: 4 repetitions"
153
+ - listitem: "than he: 4 repetitions"
154
+ - listitem: "these people: 4 repetitions"
155
+ - listitem: "for something: 4 repetitions"
156
+ - listitem: "something to: 4 repetitions"
157
+ - listitem: "there were: 4 repetitions"
158
+ - listitem: "outside the: 4 repetitions"
159
+ - listitem: "the ground: 4 repetitions"
160
+ - listitem: "the living: 4 repetitions"
161
+ - listitem: "something.: 4 repetitions"
162
+ - listitem: "the Muggles: 4 repetitions"
163
+ - listitem: "the moment: 4 repetitions"
164
+ - listitem: "is that: 4 repetitions"
165
+ - listitem: "And they: 4 repetitions"
166
+ - listitem: "s the: 4 repetitions"
167
+ - listitem: "toward the: 4 repetitions"
168
+ - listitem: "open the: 4 repetitions"
169
+ - listitem: "mother.: 4 repetitions"
170
+ - listitem: "there,: 4 repetitions"
171
+ - listitem: "the day: 4 repetitions"
172
+ - listitem: "s birthday: 4 repetitions"
173
+ - listitem: "thirty: 4 repetitions"
174
+ - listitem: ", with: 4 repetitions"
175
+ - listitem: "the floor: 4 repetitions"
176
+ - listitem: "thinking about: 4 repetitions"
177
+ - listitem: "breath: 4 repetitions"
178
+ - listitem: "the rock: 4 repetitions"
179
+ - listitem: "the hut: 4 repetitions"
180
+ - listitem: "the sea: 4 repetitions"
181
+ - listitem: "that they: 3 repetitions"
182
+ - listitem: ", thank: 3 repetitions"
183
+ - listitem: "thank you: 3 repetitions"
184
+ - listitem: "were the: 3 repetitions"
185
+ - listitem: "with such: 3 repetitions"
186
+ - listitem: "although he: 3 repetitions"
187
+ - listitem: "in their: 3 repetitions"
188
+ - listitem: "think they: 3 repetitions"
189
+ - listitem: "knew that: 3 repetitions"
190
+ - listitem: "this boy: 3 repetitions"
191
+ - listitem: "; they: 3 repetitions"
192
+ - listitem: "that.: 3 repetitions"
193
+ - listitem: "there wasn: 3 repetitions"
194
+ - listitem: "think of: 3 repetitions"
195
+ - listitem: "read the: 3 repetitions"
196
+ - listitem: "the sign: 3 repetitions"
197
+ - listitem: "put the: 3 repetitions"
198
+ - listitem: "get that: 3 repetitions"
199
+ - listitem: "the edge: 3 repetitions"
200
+ - listitem: "of these: 3 repetitions"
201
+ - listitem: "together.: 3 repetitions"
202
+ - listitem: "across the: 3 repetitions"
203
+ - listitem: "the people: 3 repetitions"
204
+ - listitem: "those: 3 repetitions"
205
+ - listitem: "realized that: 3 repetitions"
206
+ - listitem: "the man: 3 repetitions"
207
+ - listitem: ", this: 3 repetitions"
208
+ - listitem: "the middle: 3 repetitions"
209
+ - listitem: "had the: 3 repetitions"
210
+ - listitem: "anything to: 3 repetitions"
211
+ - listitem: "Only the: 3 repetitions"
212
+ - listitem: "the place: 3 repetitions"
213
+ - listitem: "the name: 3 repetitions"
214
+ - listitem: "they went: 3 repetitions"
215
+ - listitem: "That evening: 3 repetitions"
216
+ - listitem: ", thin: 3 repetitions"
217
+ - listitem: "of their: 3 repetitions"
218
+ - listitem: "the very: 3 repetitions"
219
+ - listitem: "find the: 3 repetitions"
220
+ - listitem: "— that: 3 repetitions"
221
+ - listitem: "them all: 3 repetitions"
222
+ - listitem: "the best: 3 repetitions"
223
+ - listitem: "the top: 3 repetitions"
224
+ - listitem: "the motorcycle: 3 repetitions"
225
+ - listitem: "off the: 3 repetitions"
226
+ - listitem: "there?: 3 repetitions"
227
+ - listitem: "s that: 3 repetitions"
228
+ - listitem: "the night: 3 repetitions"
229
+ - listitem: "out the: 3 repetitions"
230
+ - listitem: "to their: 3 repetitions"
231
+ - listitem: "so that: 3 repetitions"
232
+ - listitem: "there had: 3 repetitions"
233
+ - listitem: "the sound: 3 repetitions"
234
+ - listitem: "the cupboard: 3 repetitions"
235
+ - listitem: "the second: 3 repetitions"
236
+ - listitem: "the rest: 3 repetitions"
237
+ - listitem: "father.: 3 repetitions"
238
+ - listitem: "at that: 3 repetitions"
239
+ - listitem: "that moment: 3 repetitions"
240
+ - listitem: "the telephone: 3 repetitions"
241
+ - listitem: "the roof: 3 repetitions"
242
+ - listitem: "telling them: 3 repetitions"
243
+ - listitem: "be with: 3 repetitions"
244
+ - listitem: "with Dudley: 3 repetitions"
245
+ - listitem: "anything.: 3 repetitions"
246
+ - listitem: "they seemed: 3 repetitions"
247
+ - listitem: "that it: 3 repetitions"
248
+ - listitem: "the reptile: 3 repetitions"
249
+ - listitem: "in there: 3 repetitions"
250
+ - listitem: "against the: 3 repetitions"
251
+ - listitem: "this is: 3 repetitions"
252
+ - listitem: "the ceiling: 3 repetitions"
253
+ - listitem: "both of: 3 repetitions"
254
+ - listitem: "them as: 3 repetitions"
255
+ - listitem: "the biggest: 3 repetitions"
256
+ - listitem: "the end: 3 repetitions"
257
+ - listitem: "each other: 3 repetitions"
258
+ - listitem: ", both: 3 repetitions"
259
+ - listitem: "the doormat: 3 repetitions"
260
+ - listitem: "the envelope: 3 repetitions"
261
+ - listitem: "the head: 3 repetitions"
262
+ - listitem: "slammed the: 3 repetitions"
263
+ - listitem: "behind them: 3 repetitions"
264
+ - listitem: "mother,: 3 repetitions"
265
+ - listitem: "this time: 3 repetitions"
266
+ - listitem: "sure that: 3 repetitions"
267
+ - listitem: "the fireplace: 3 repetitions"
268
+ - listitem: "thing happened: 3 repetitions"
269
+ - listitem: "thundered: 3 repetitions"
270
+ - listitem: "the storm: 3 repetitions"
271
+ - listitem: "his mouth: 3 repetitions"
272
+ - listitem: "the world: 3 repetitions"
273
+ - listitem: "somethin: 3 repetitions"
274
+ - listitem: "somethin': 3 repetitions"
275
+ - listitem: "say that: 2 repetitions"
276
+ - listitem: "the last: 2 repetitions"
277
+ - listitem: "in anything: 2 repetitions"
278
+ - listitem: ", although: 2 repetitions"
279
+ - listitem: "the usual: 2 repetitions"
280
+ - listitem: "the neighbors: 2 repetitions"
281
+ - listitem: "they also: 2 repetitions"
282
+ - listitem: "and their: 2 repetitions"
283
+ - listitem: "was nothing: 2 repetitions"
284
+ - listitem: "the country: 2 repetitions"
285
+ - listitem: "the window: 2 repetitions"
286
+ - listitem: "left the: 2 repetitions"
287
+ - listitem: "of something: 2 repetitions"
288
+ - listitem: "— then: 2 repetitions"
289
+ - listitem: "but there: 2 repetitions"
290
+ - listitem: "been thinking: 2 repetitions"
291
+ - listitem: "watched the: 2 repetitions"
292
+ - listitem: "that said: 2 repetitions"
293
+ - listitem: "that day: 2 repetitions"
294
+ - listitem: "something else: 2 repetitions"
295
+ - listitem: "that this: 2 repetitions"
296
+ - listitem: "drills that: 2 repetitions"
297
+ - listitem: "that morning: 2 repetitions"
298
+ - listitem: "see the: 2 repetitions"
299
+ - listitem: "what they: 2 repetitions"
300
+ - listitem: "their son: 2 repetitions"
301
+ - listitem: "say something: 2 repetitions"
302
+ - listitem: "to them: 2 repetitions"
303
+ - listitem: "but thought: 2 repetitions"
304
+ - listitem: "thinking ...: 2 repetitions"
305
+ - listitem: "sure there: 2 repetitions"
306
+ - listitem: "that afternoon: 2 repetitions"
307
+ - listitem: "voice that: 2 repetitions"
308
+ - listitem: "that made: 2 repetitions"
309
+ - listitem: "the spot: 2 repetitions"
310
+ - listitem: "imagining things: 2 repetitions"
311
+ - listitem: "things,: 2 repetitions"
312
+ - listitem: "the tabby: 2 repetitions"
313
+ - listitem: "Was this: 2 repetitions"
314
+ - listitem: "together,: 2 repetitions"
315
+ - listitem: "with her: 2 repetitions"
316
+ - listitem: "weather: 2 repetitions"
317
+ - listitem: ". Although: 2 repetitions"
318
+ - listitem: "about that: 2 repetitions"
319
+ - listitem: "throat: 2 repetitions"
320
+ - listitem: "the news: 2 repetitions"
321
+ - listitem: "was something: 2 repetitions"
322
+ - listitem: "heard the: 2 repetitions"
323
+ - listitem: "bathroom: 2 repetitions"
324
+ - listitem: "still there: 2 repetitions"
325
+ - listitem: "though it: 2 repetitions"
326
+ - listitem: "out that: 2 repetitions"
327
+ - listitem: "think he: 2 repetitions"
328
+ - listitem: "about them: 2 repetitions"
329
+ - listitem: "them and: 2 repetitions"
330
+ - listitem: "anything that: 2 repetitions"
331
+ - listitem: "before the: 2 repetitions"
332
+ - listitem: "like this: 2 repetitions"
333
+ - listitem: "this man: 2 repetitions"
334
+ - listitem: "the silver: 2 repetitions"
335
+ - listitem: "other end: 2 repetitions"
336
+ - listitem: "The nearest: 2 repetitions"
337
+ - listitem: "out with: 2 repetitions"
338
+ - listitem: "a rather: 2 repetitions"
339
+ - listitem: "exactly the: 2 repetitions"
340
+ - listitem: "noticed something: 2 repetitions"
341
+ - listitem: "on their: 2 repetitions"
342
+ - listitem: "know that: 2 repetitions"
343
+ - listitem: "threw a: 2 repetitions"
344
+ - listitem: "re the: 2 repetitions"
345
+ - listitem: "the rumors: 2 repetitions"
346
+ - listitem: "reached the: 2 repetitions"
347
+ - listitem: "the point: 2 repetitions"
348
+ - listitem: "the real: 2 repetitions"
349
+ - listitem: "and that: 2 repetitions"
350
+ - listitem: "the things: 2 repetitions"
351
+ - listitem: "things to: 2 repetitions"
352
+ - listitem: "beneath: 2 repetitions"
353
+ - listitem: "you think: 2 repetitions"
354
+ - listitem: "think you: 2 repetitions"
355
+ - listitem: "— there: 2 repetitions"
356
+ - listitem: "something he: 2 repetitions"
357
+ - listitem: "all that: 2 repetitions"
358
+ - listitem: "mouth,: 2 repetitions"
359
+ - listitem: "then said: 2 repetitions"
360
+ - listitem: "is the: 2 repetitions"
361
+ - listitem: "think it: 2 repetitions"
362
+ - listitem: "Hagrid with: 2 repetitions"
363
+ - listitem: "this?: 2 repetitions"
364
+ - listitem: "the right: 2 repetitions"
365
+ - listitem: "that?: 2 repetitions"
366
+ - listitem: "around them: 2 repetitions"
367
+ - listitem: "were there: 2 repetitions"
368
+ - listitem: "the bundle: 2 repetitions"
369
+ - listitem: "get this: 2 repetitions"
370
+ - listitem: "wake the: 2 repetitions"
371
+ - listitem: "live with: 2 repetitions"
372
+ - listitem: "the low: 2 repetitions"
373
+ - listitem: "onto the: 2 repetitions"
374
+ - listitem: "and with: 2 repetitions"
375
+ - listitem: "spend the: 2 repetitions"
376
+ - listitem: "at this: 2 repetitions"
377
+ - listitem: "the photographs: 2 repetitions"
378
+ - listitem: "father,: 2 repetitions"
379
+ - listitem: "the bacon: 2 repetitions"
380
+ - listitem: "birthday.: 2 repetitions"
381
+ - listitem: ", nothing: 2 repetitions"
382
+ - listitem: "because the: 2 repetitions"
383
+ - listitem: "the stairs: 2 repetitions"
384
+ - listitem: "the racing: 2 repetitions"
385
+ - listitem: "old clothes: 2 repetitions"
386
+ - listitem: "only thing: 2 repetitions"
387
+ - listitem: "and thick: 2 repetitions"
388
+ - listitem: "his thick: 2 repetitions"
389
+ - listitem: "thick,: 2 repetitions"
390
+ - listitem: "said that: 2 repetitions"
391
+ - listitem: "mother and: 2 repetitions"
392
+ - listitem: "and father: 2 repetitions"
393
+ - listitem: "less than: 2 repetitions"
394
+ - listitem: "turned the: 2 repetitions"
395
+ - listitem: "that all: 2 repetitions"
396
+ - listitem: "Dudley thought: 2 repetitions"
397
+ - listitem: "thirty ...: 2 repetitions"
398
+ - listitem: "grabbed the: 2 repetitions"
399
+ - listitem: "then.: 2 repetitions"
400
+ - listitem: "worth: 2 repetitions"
401
+ - listitem: "this.: 2 repetitions"
402
+ - listitem: "something very: 2 repetitions"
403
+ - listitem: "they weren: 2 repetitions"
404
+ - listitem: "That cars: 2 repetitions"
405
+ - listitem: "anything he: 2 repetitions"
406
+ - listitem: "the gap: 2 repetitions"
407
+ - listitem: "with him: 2 repetitions"
408
+ - listitem: "before they: 2 repetitions"
409
+ - listitem: "in that: 2 repetitions"
410
+ - listitem: "do anything: 2 repetitions"
411
+ - listitem: "anything,: 2 repetitions"
412
+ - listitem: "telling the: 2 repetitions"
413
+ - listitem: "clothes and: 2 repetitions"
414
+ - listitem: "other hand: 2 repetitions"
415
+ - listitem: "the school: 2 repetitions"
416
+ - listitem: "behind the: 2 repetitions"
417
+ - listitem: "the big: 2 repetitions"
418
+ - listitem: "the wind: 2 repetitions"
419
+ - listitem: "they don: 2 repetitions"
420
+ - listitem: "one thing: 2 repetitions"
421
+ - listitem: "about anything: 2 repetitions"
422
+ - listitem: "Harry thought: 2 repetitions"
423
+ - listitem: "They ate: 2 repetitions"
424
+ - listitem: "another one: 2 repetitions"
425
+ - listitem: "slithering: 2 repetitions"
426
+ - listitem: "found the: 2 repetitions"
427
+ - listitem: "worse than: 2 repetitions"
428
+ - listitem: "where the: 2 repetitions"
429
+ - listitem: "visit the: 2 repetitions"
430
+ - listitem: "with Harry: 2 repetitions"
431
+ - listitem: "sure the: 2 repetitions"
432
+ - listitem: "The boa: 2 repetitions"
433
+ - listitem: "; the: 2 repetitions"
434
+ - listitem: "The great: 2 repetitions"
435
+ - listitem: "The keeper: 2 repetitions"
436
+ - listitem: "time they: 2 repetitions"
437
+ - listitem: "up with: 2 repetitions"
438
+ - listitem: "the green: 2 repetitions"
439
+ - listitem: "them in: 2 repetitions"
440
+ - listitem: "without a: 2 repetitions"
441
+ - listitem: "all these: 2 repetitions"
442
+ - listitem: "thought this: 2 repetitions"
443
+ - listitem: "\" Then: 2 repetitions"
444
+ - listitem: "the family: 2 repetitions"
445
+ - listitem: "while the: 2 repetitions"
446
+ - listitem: "They heard: 2 repetitions"
447
+ - listitem: "the Smelting: 2 repetitions"
448
+ - listitem: "that looked: 2 repetitions"
449
+ - listitem: "the address: 2 repetitions"
450
+ - listitem: "the bill: 2 repetitions"
451
+ - listitem: "the postcard: 2 repetitions"
452
+ - listitem: "forgotten that: 2 repetitions"
453
+ - listitem: "that letter: 2 repetitions"
454
+ - listitem: "their necks: 2 repetitions"
455
+ - listitem: "them into: 2 repetitions"
456
+ - listitem: "the crack: 2 repetitions"
457
+ - listitem: "If they: 2 repetitions"
458
+ - listitem: "deep breaths: 2 repetitions"
459
+ - listitem: "breaths and: 2 repetitions"
460
+ - listitem: "about this: 2 repetitions"
461
+ - listitem: "things that: 2 repetitions"
462
+ - listitem: "the bed: 2 repetitions"
463
+ - listitem: "with that: 2 repetitions"
464
+ - listitem: "When the: 2 repetitions"
465
+ - listitem: "There': 2 repetitions"
466
+ - listitem: "And this: 2 repetitions"
467
+ - listitem: "the dark: 2 repetitions"
468
+ - listitem: "Petunia through: 2 repetitions"
469
+ - listitem: "through a: 2 repetitions"
470
+ - listitem: "they couldn: 2 repetitions"
471
+ - listitem: "their way: 2 repetitions"
472
+ - listitem: "their faces: 2 repetitions"
473
+ - listitem: "They drove: 2 repetitions"
474
+ - listitem: "inside the: 2 repetitions"
475
+ - listitem: "his birthdays: 2 repetitions"
476
+ - listitem: "thin package: 2 repetitions"
477
+ - listitem: "hands together: 2 repetitions"
478
+ - listitem: "the empty: 2 repetitions"
479
+ - listitem: "those letters: 2 repetitions"
480
+ - listitem: "they got: 2 repetitions"
481
+ - listitem: "Then —: 2 repetitions"
482
+ - listitem: "saw that: 2 repetitions"
483
+ - listitem: "that you: 2 repetitions"
484
+ - listitem: "threw it: 2 repetitions"
485
+ - listitem: "happy birthday: 2 repetitions"
486
+ - listitem: "warmth: 2 repetitions"
487
+ - listitem: "filled the: 2 repetitions"
488
+ - listitem: "the pockets: 2 repetitions"
489
+ - listitem: "— this: 2 repetitions"
490
+ - listitem: "Harry with: 2 repetitions"
491
+ - listitem: ". With: 2 repetitions"
492
+ - listitem: "to that: 2 repetitions"
493
+ - listitem: "the fire: 2 repetitions"
494
+ - listitem: "this wizard: 2 repetitions"
495
+ - listitem: "' then: 2 repetitions"
496
+ - listitem: "knew they: 2 repetitions"
497
+ - listitem: ". That: 2 repetitions"
498
+ - listitem: "' that: 2 repetitions"
499
+ - listitem: "out there: 2 repetitions"
500
+ - listitem: "the greatest: 2 repetitions"
501
+ - listitem: "I think: 2 repetitions"
502
+ - listitem: "think I: 2 repetitions"
503
+ - listitem: "anything strange: 1 repetitions"
504
+ - listitem: "because they: 1 repetitions"
505
+ - listitem: "they just: 1 repetitions"
506
+ - listitem: "hold with: 1 repetitions"
507
+ - listitem: "the director: 1 repetitions"
508
+ - listitem: "man with: 1 repetitions"
509
+ - listitem: "with hardly: 1 repetitions"
510
+ - listitem: "was thin: 1 repetitions"
511
+ - listitem: "thin and: 1 repetitions"
512
+ - listitem: "twice the: 1 repetitions"
513
+ - listitem: "their opinion: 1 repetitions"
514
+ - listitem: "opinion there: 1 repetitions"
515
+ - listitem: "had everything: 1 repetitions"
516
+ - listitem: "everything they: 1 repetitions"
517
+ - listitem: "they wanted: 1 repetitions"
518
+ - listitem: "their greatest: 1 repetitions"
519
+ - listitem: "that somebody: 1 repetitions"
520
+ - listitem: "they hadn: 1 repetitions"
521
+ - listitem: "good-for-nothing: 1 repetitions"
522
+ - listitem: "her good-for-nothing: 1 repetitions"
523
+ - listitem: "good-for-nothing husband: 1 repetitions"
524
+ - listitem: "think what: 1 repetitions"
525
+ - listitem: "what the: 1 repetitions"
526
+ - listitem: "was another: 1 repetitions"
527
+ - listitem: "another good: 1 repetitions"
528
+ - listitem: "keeping the: 1 repetitions"
529
+ - listitem: "mixing with: 1 repetitions"
530
+ - listitem: "the dull: 1 repetitions"
531
+ - listitem: "nothing about: 1 repetitions"
532
+ - listitem: "the cloudy: 1 repetitions"
533
+ - listitem: "suggest that: 1 repetitions"
534
+ - listitem: "that strange: 1 repetitions"
535
+ - listitem: "mysterious things: 1 repetitions"
536
+ - listitem: "things would: 1 repetitions"
537
+ - listitem: "them noticed: 1 repetitions"
538
+ - listitem: "past the: 1 repetitions"
539
+ - listitem: "throwing: 1 repetitions"
540
+ - listitem: "the cheek: 1 repetitions"
541
+ - listitem: "and throwing: 1 repetitions"
542
+ - listitem: "throwing his: 1 repetitions"
543
+ - listitem: "street that: 1 repetitions"
544
+ - listitem: "noticed the: 1 repetitions"
545
+ - listitem: "something peculiar: 1 repetitions"
546
+ - listitem: "sign that: 1 repetitions"
547
+ - listitem: "thought of: 1 repetitions"
548
+ - listitem: "of nothing: 1 repetitions"
549
+ - listitem: "nothing except: 1 repetitions"
550
+ - listitem: "by something: 1 repetitions"
551
+ - listitem: "noticing that: 1 repetitions"
552
+ - listitem: "that there: 1 repetitions"
553
+ - listitem: "there seemed: 1 repetitions"
554
+ - listitem: "funny clothes: 1 repetitions"
555
+ - listitem: "clothes —: 1 repetitions"
556
+ - listitem: "the getups: 1 repetitions"
557
+ - listitem: "supposed this: 1 repetitions"
558
+ - listitem: "the steering: 1 repetitions"
559
+ - listitem: "these weirdos: 1 repetitions"
560
+ - listitem: "excitedly together: 1 repetitions"
561
+ - listitem: "see that: 1 repetitions"
562
+ - listitem: "that a: 1 repetitions"
563
+ - listitem: "them weren: 1 repetitions"
564
+ - listitem: "that man: 1 repetitions"
565
+ - listitem: "older than: 1 repetitions"
566
+ - listitem: "! The: 1 repetitions"
567
+ - listitem: "The nerve: 1 repetitions"
568
+ - listitem: "But then: 1 repetitions"
569
+ - listitem: "then it: 1 repetitions"
570
+ - listitem: "Dursley that: 1 repetitions"
571
+ - listitem: "— these: 1 repetitions"
572
+ - listitem: "something ...: 1 repetitions"
573
+ - listitem: "that would: 1 repetitions"
574
+ - listitem: "The traffic: 1 repetitions"
575
+ - listitem: "the Grunnings: 1 repetitions"
576
+ - listitem: "ninth: 1 repetitions"
577
+ - listitem: "open-mouthed: 1 repetitions"
578
+ - listitem: "sat with: 1 repetitions"
579
+ - listitem: "the ninth: 1 repetitions"
580
+ - listitem: "ninth floor: 1 repetitions"
581
+ - listitem: "though people: 1 repetitions"
582
+ - listitem: "they pointed: 1 repetitions"
583
+ - listitem: "gazed open-mouthed: 1 repetitions"
584
+ - listitem: "open-mouthed as: 1 repetitions"
585
+ - listitem: "them had: 1 repetitions"
586
+ - listitem: "the bakery: 1 repetitions"
587
+ - listitem: "them next: 1 repetitions"
588
+ - listitem: "the baker: 1 repetitions"
589
+ - listitem: "eyed them: 1 repetitions"
590
+ - listitem: "them angrily: 1 repetitions"
591
+ - listitem: "they made: 1 repetitions"
592
+ - listitem: "This bunch: 1 repetitions"
593
+ - listitem: "past them: 1 repetitions"
594
+ - listitem: ", their: 1 repetitions"
595
+ - listitem: "the whisperers: 1 repetitions"
596
+ - listitem: "thought better: 1 repetitions"
597
+ - listitem: "the receiver: 1 repetitions"
598
+ - listitem: ", thinking: 1 repetitions"
599
+ - listitem: "seen the: 1 repetitions"
600
+ - listitem: "that ...: 1 repetitions"
601
+ - listitem: ", those: 1 repetitions"
602
+ - listitem: "those people: 1 repetitions"
603
+ - listitem: "the building: 1 repetitions"
604
+ - listitem: "worried that: 1 repetitions"
605
+ - listitem: "the tiny: 1 repetitions"
606
+ - listitem: "the contrary: 1 repetitions"
607
+ - listitem: "for nothing: 1 repetitions"
608
+ - listitem: "nothing could: 1 repetitions"
609
+ - listitem: "this happy: 1 repetitions"
610
+ - listitem: "the old: 1 repetitions"
611
+ - listitem: "also thought: 1 repetitions"
612
+ - listitem: "whatever that: 1 repetitions"
613
+ - listitem: "the driveway: 1 repetitions"
614
+ - listitem: "first thing: 1 repetitions"
615
+ - listitem: "thing he: 1 repetitions"
616
+ - listitem: "spotted that: 1 repetitions"
617
+ - listitem: "this normal: 1 repetitions"
618
+ - listitem: "himself together: 1 repetitions"
619
+ - listitem: "mention anything: 1 repetitions"
620
+ - listitem: "problems with: 1 repetitions"
621
+ - listitem: "catch the: 1 repetitions"
622
+ - listitem: "the evening: 1 repetitions"
623
+ - listitem: "reported that: 1 repetitions"
624
+ - listitem: "the nation: 1 repetitions"
625
+ - listitem: "Although owls: 1 repetitions"
626
+ - listitem: "there have: 1 repetitions"
627
+ - listitem: "these birds: 1 repetitions"
628
+ - listitem: "why the: 1 repetitions"
629
+ - listitem: "changed their: 1 repetitions"
630
+ - listitem: "their sleeping: 1 repetitions"
631
+ - listitem: "The newscaster: 1 repetitions"
632
+ - listitem: "McGuffin with: 1 repetitions"
633
+ - listitem: "the weather: 1 repetitions"
634
+ - listitem: "weather.: 1 repetitions"
635
+ - listitem: "weatherman: 1 repetitions"
636
+ - listitem: "the weatherman: 1 repetitions"
637
+ - listitem: "weatherman,: 1 repetitions"
638
+ - listitem: "owls that: 1 repetitions"
639
+ - listitem: "that have: 1 repetitions"
640
+ - listitem: "me that: 1 repetitions"
641
+ - listitem: "that instead: 1 repetitions"
642
+ - listitem: "the rain: 1 repetitions"
643
+ - listitem: "his throat: 1 repetitions"
644
+ - listitem: "throat nervously: 1 repetitions"
645
+ - listitem: "they normally: 1 repetitions"
646
+ - listitem: "and there: 1 repetitions"
647
+ - listitem: "just thought: 1 repetitions"
648
+ - listitem: "thought ...: 1 repetitions"
649
+ - listitem: "with ...: 1 repetitions"
650
+ - listitem: "whether: 1 repetitions"
651
+ - listitem: "tea through: 1 repetitions"
652
+ - listitem: "through pursed: 1 repetitions"
653
+ - listitem: "wondered whether: 1 repetitions"
654
+ - listitem: "whether he: 1 repetitions"
655
+ - listitem: "\"Their: 1 repetitions"
656
+ - listitem: "say another: 1 repetitions"
657
+ - listitem: "another word: 1 repetitions"
658
+ - listitem: "the subject: 1 repetitions"
659
+ - listitem: "the bathroom: 1 repetitions"
660
+ - listitem: "bathroom,: 1 repetitions"
661
+ - listitem: "the bedroom: 1 repetitions"
662
+ - listitem: "things?: 1 repetitions"
663
+ - listitem: "this have: 1 repetitions"
664
+ - listitem: "have anything: 1 repetitions"
665
+ - listitem: "comforting thought: 1 repetitions"
666
+ - listitem: "thought before: 1 repetitions"
667
+ - listitem: "for them: 1 repetitions"
668
+ - listitem: "them to: 1 repetitions"
669
+ - listitem: "Petunia thought: 1 repetitions"
670
+ - listitem: "thought about: 1 repetitions"
671
+ - listitem: "their kind: 1 repetitions"
672
+ - listitem: "that might: 1 repetitions"
673
+ - listitem: "affect them: 1 repetitions"
674
+ - listitem: "the far: 1 repetitions"
675
+ - listitem: "corner the: 1 repetitions"
676
+ - listitem: "have thought: 1 repetitions"
677
+ - listitem: "Nothing like: 1 repetitions"
678
+ - listitem: "thin,: 1 repetitions"
679
+ - listitem: "were both: 1 repetitions"
680
+ - listitem: "both long: 1 repetitions"
681
+ - listitem: "cloak that: 1 repetitions"
682
+ - listitem: "that swept: 1 repetitions"
683
+ - listitem: "swept the: 1 repetitions"
684
+ - listitem: "where everything: 1 repetitions"
685
+ - listitem: "everything from: 1 repetitions"
686
+ - listitem: "the sight: 1 repetitions"
687
+ - listitem: "clicked the: 1 repetitions"
688
+ - listitem: "the Put-Outer: 1 repetitions"
689
+ - listitem: "until the: 1 repetitions"
690
+ - listitem: "the distance: 1 repetitions"
691
+ - listitem: "the eyes: 1 repetitions"
692
+ - listitem: "their window: 1 repetitions"
693
+ - listitem: "they wouldn: 1 repetitions"
694
+ - listitem: "see anything: 1 repetitions"
695
+ - listitem: "the pavement: 1 repetitions"
696
+ - listitem: "slipped the: 1 repetitions"
697
+ - listitem: "the Put-: 1 repetitions"
698
+ - listitem: "rather severe-looking: 1 repetitions"
699
+ - listitem: "the shape: 1 repetitions"
700
+ - listitem: "the markings: 1 repetitions"
701
+ - listitem: "markings the: 1 repetitions"
702
+ - listitem: "d think: 1 repetitions"
703
+ - listitem: "even the: 1 repetitions"
704
+ - listitem: "something': 1 repetitions"
705
+ - listitem: "their news: 1 repetitions"
706
+ - listitem: "bet that: 1 repetitions"
707
+ - listitem: "blame them: 1 repetitions"
708
+ - listitem: "But that: 1 repetitions"
709
+ - listitem: "Muggle clothes: 1 repetitions"
710
+ - listitem: "clothes,: 1 repetitions"
711
+ - listitem: "She threw: 1 repetitions"
712
+ - listitem: "though hoping: 1 repetitions"
713
+ - listitem: "her something: 1 repetitions"
714
+ - listitem: "something,: 1 repetitions"
715
+ - listitem: "fine thing: 1 repetitions"
716
+ - listitem: "thing it: 1 repetitions"
717
+ - listitem: "be thankful: 1 repetitions"
718
+ - listitem: "thankful for: 1 repetitions"
719
+ - listitem: "m rather: 1 repetitions"
720
+ - listitem: "rather fond: 1 repetitions"
721
+ - listitem: "think this: 1 repetitions"
722
+ - listitem: "this You-: 1 repetitions"
723
+ - listitem: "use them: 1 repetitions"
724
+ - listitem: "are nothing: 1 repetitions"
725
+ - listitem: "nothing next: 1 repetitions"
726
+ - listitem: "rumors that: 1 repetitions"
727
+ - listitem: "that are: 1 repetitions"
728
+ - listitem: "neither: 1 repetitions"
729
+ - listitem: "seemed that: 1 repetitions"
730
+ - listitem: "that Professor: 1 repetitions"
731
+ - listitem: "for neither: 1 repetitions"
732
+ - listitem: "neither as: 1 repetitions"
733
+ - listitem: "Dumbledore with: 1 repetitions"
734
+ - listitem: "plain that: 1 repetitions"
735
+ - listitem: "that whatever: 1 repetitions"
736
+ - listitem: "choosing another: 1 repetitions"
737
+ - listitem: "another lemon: 1 repetitions"
738
+ - listitem: "that last: 1 repetitions"
739
+ - listitem: "that Lily: 1 repetitions"
740
+ - listitem: "the shoulder: 1 repetitions"
741
+ - listitem: "kill the: 1 repetitions"
742
+ - listitem: "kill that: 1 repetitions"
743
+ - listitem: "that little: 1 repetitions"
744
+ - listitem: "that when: 1 repetitions"
745
+ - listitem: "eyes beneath: 1 repetitions"
746
+ - listitem: "beneath her: 1 repetitions"
747
+ - listitem: "though,: 1 repetitions"
748
+ - listitem: "mean the: 1 repetitions"
749
+ - listitem: "watching them: 1 repetitions"
750
+ - listitem: "got this: 1 repetitions"
751
+ - listitem: "this son: 1 repetitions"
752
+ - listitem: "mother all: 1 repetitions"
753
+ - listitem: "explain everything: 1 repetitions"
754
+ - listitem: "everything to: 1 repetitions"
755
+ - listitem: "written them: 1 repetitions"
756
+ - listitem: "them a: 1 repetitions"
757
+ - listitem: "this in: 1 repetitions"
758
+ - listitem: "? These: 1 repetitions"
759
+ - listitem: "the future: 1 repetitions"
760
+ - listitem: "there will: 1 repetitions"
761
+ - listitem: "that until: 1 repetitions"
762
+ - listitem: "underneath: 1 repetitions"
763
+ - listitem: "her mouth: 1 repetitions"
764
+ - listitem: "she thought: 1 repetitions"
765
+ - listitem: "Harry underneath: 1 repetitions"
766
+ - listitem: "underneath it: 1 repetitions"
767
+ - listitem: "with something: 1 repetitions"
768
+ - listitem: "something as: 1 repetitions"
769
+ - listitem: "as this: 1 repetitions"
770
+ - listitem: "with my: 1 repetitions"
771
+ - listitem: "broken the: 1 repetitions"
772
+ - listitem: "the silence: 1 repetitions"
773
+ - listitem: "they looked: 1 repetitions"
774
+ - listitem: "they both: 1 repetitions"
775
+ - listitem: "both looked: 1 repetitions"
776
+ - listitem: "the sky: 1 repetitions"
777
+ - listitem: "leather: 1 repetitions"
778
+ - listitem: "nothing to: 1 repetitions"
779
+ - listitem: "hands the: 1 repetitions"
780
+ - listitem: "the size: 1 repetitions"
781
+ - listitem: "their leather: 1 repetitions"
782
+ - listitem: "leather boots: 1 repetitions"
783
+ - listitem: "that motorcycle: 1 repetitions"
784
+ - listitem: "forehead they: 1 repetitions"
785
+ - listitem: "that where: 1 repetitions"
786
+ - listitem: "have that: 1 repetitions"
787
+ - listitem: "that scar: 1 repetitions"
788
+ - listitem: "do something: 1 repetitions"
789
+ - listitem: "something about: 1 repetitions"
790
+ - listitem: "knee that: 1 repetitions"
791
+ - listitem: "that is: 1 repetitions"
792
+ - listitem: "the London: 1 repetitions"
793
+ - listitem: "this over: 1 repetitions"
794
+ - listitem: "over with: 1 repetitions"
795
+ - listitem: "with.: 1 repetitions"
796
+ - listitem: "with Muggles: 1 repetitions"
797
+ - listitem: "the arm: 1 repetitions"
798
+ - listitem: "then came: 1 repetitions"
799
+ - listitem: "other two: 1 repetitions"
800
+ - listitem: "minute the: 1 repetitions"
801
+ - listitem: "the three: 1 repetitions"
802
+ - listitem: "three of: 1 repetitions"
803
+ - listitem: "them stood: 1 repetitions"
804
+ - listitem: "the little: 1 repetitions"
805
+ - listitem: "the twinkling: 1 repetitions"
806
+ - listitem: "light that: 1 repetitions"
807
+ - listitem: "that usually: 1 repetitions"
808
+ - listitem: "join the: 1 repetitions"
809
+ - listitem: "the celebrations: 1 repetitions"
810
+ - listitem: "this bike: 1 repetitions"
811
+ - listitem: "kicked the: 1 repetitions"
812
+ - listitem: "the engine: 1 repetitions"
813
+ - listitem: "; with: 1 repetitions"
814
+ - listitem: "their street: 1 repetitions"
815
+ - listitem: "that Privet: 1 repetitions"
816
+ - listitem: "the step: 1 repetitions"
817
+ - listitem: "ruffled the: 1 repetitions"
818
+ - listitem: "the neat: 1 repetitions"
819
+ - listitem: "the inky: 1 repetitions"
820
+ - listitem: "astonishing things: 1 repetitions"
821
+ - listitem: "blankets without: 1 repetitions"
822
+ - listitem: "without waking: 1 repetitions"
823
+ - listitem: "the milk: 1 repetitions"
824
+ - listitem: "nor that: 1 repetitions"
825
+ - listitem: "that at: 1 repetitions"
826
+ - listitem: "this very: 1 repetitions"
827
+ - listitem: "up their: 1 repetitions"
828
+ - listitem: "their glasses: 1 repetitions"
829
+ - listitem: "THE VANASHIG: 1 repetitions"
830
+ - listitem: "since the: 1 repetitions"
831
+ - listitem: "find their: 1 repetitions"
832
+ - listitem: "their nephew: 1 repetitions"
833
+ - listitem: "The sun: 1 repetitions"
834
+ - listitem: "the brass: 1 repetitions"
835
+ - listitem: "into their: 1 repetitions"
836
+ - listitem: "their living: 1 repetitions"
837
+ - listitem: "seen that: 1 repetitions"
838
+ - listitem: "that fateful: 1 repetitions"
839
+ - listitem: "the mantelpiece: 1 repetitions"
840
+ - listitem: "now the: 1 repetitions"
841
+ - listitem: "the fair: 1 repetitions"
842
+ - listitem: "game with: 1 repetitions"
843
+ - listitem: "that another: 1 repetitions"
844
+ - listitem: "another boy: 1 repetitions"
845
+ - listitem: "made the: 1 repetitions"
846
+ - listitem: "woke with: 1 repetitions"
847
+ - listitem: "then the: 1 repetitions"
848
+ - listitem: "the frying: 1 repetitions"
849
+ - listitem: "the stove: 1 repetitions"
850
+ - listitem: "remember the: 1 repetitions"
851
+ - listitem: "the dream: 1 repetitions"
852
+ - listitem: "after the: 1 repetitions"
853
+ - listitem: "want everything: 1 repetitions"
854
+ - listitem: "everything perfect: 1 repetitions"
855
+ - listitem: "snapped through: 1 repetitions"
856
+ - listitem: "\"Nothing: 1 repetitions"
857
+ - listitem: "Nothing,: 1 repetitions"
858
+ - listitem: "nothing ...: 1 repetitions"
859
+ - listitem: "birthday —: 1 repetitions"
860
+ - listitem: "put them: 1 repetitions"
861
+ - listitem: "them on: 1 repetitions"
862
+ - listitem: "hidden beneath: 1 repetitions"
863
+ - listitem: "beneath all: 1 repetitions"
864
+ - listitem: "birthday presents: 1 repetitions"
865
+ - listitem: "though Dudley: 1 repetitions"
866
+ - listitem: "gotten the: 1 repetitions"
867
+ - listitem: "mention the: 1 repetitions"
868
+ - listitem: "had something: 1 repetitions"
869
+ - listitem: "with living: 1 repetitions"
870
+ - listitem: "skinnier than: 1 repetitions"
871
+ - listitem: "clothes of: 1 repetitions"
872
+ - listitem: "bigger than: 1 repetitions"
873
+ - listitem: "a thin: 1 repetitions"
874
+ - listitem: "thin face: 1 repetitions"
875
+ - listitem: "held together: 1 repetitions"
876
+ - listitem: "together with: 1 repetitions"
877
+ - listitem: "the nose: 1 repetitions"
878
+ - listitem: "thing Harry: 1 repetitions"
879
+ - listitem: "very thin: 1 repetitions"
880
+ - listitem: "thin scar: 1 repetitions"
881
+ - listitem: "forehead that: 1 repetitions"
882
+ - listitem: "life with: 1 repetitions"
883
+ - listitem: "entered the: 1 repetitions"
884
+ - listitem: "shouted that: 1 repetitions"
885
+ - listitem: "haircuts than: 1 repetitions"
886
+ - listitem: "than the: 1 repetitions"
887
+ - listitem: "put together: 1 repetitions"
888
+ - listitem: "grew that: 1 repetitions"
889
+ - listitem: "that way: 1 repetitions"
890
+ - listitem: "smoothly: 1 repetitions"
891
+ - listitem: "kitchen with: 1 repetitions"
892
+ - listitem: "thick blond: 1 repetitions"
893
+ - listitem: "hair that: 1 repetitions"
894
+ - listitem: "that lay: 1 repetitions"
895
+ - listitem: "lay smoothly: 1 repetitions"
896
+ - listitem: "smoothly on: 1 repetitions"
897
+ - listitem: "the plates: 1 repetitions"
898
+ - listitem: "as there: 1 repetitions"
899
+ - listitem: "Thirty-six: 1 repetitions"
900
+ - listitem: "\"Thirty-six: 1 repetitions"
901
+ - listitem: "Thirty-six,: 1 repetitions"
902
+ - listitem: "than last: 1 repetitions"
903
+ - listitem: "under this: 1 repetitions"
904
+ - listitem: "this big: 1 repetitions"
905
+ - listitem: "thirty-seven: 1 repetitions"
906
+ - listitem: ", thirty-seven: 1 repetitions"
907
+ - listitem: "thirty-seven then: 1 repetitions"
908
+ - listitem: "the face: 1 repetitions"
909
+ - listitem: "you another: 1 repetitions"
910
+ - listitem: "another two: 1 repetitions"
911
+ - listitem: "thought for: 1 repetitions"
912
+ - listitem: "have thirty: 1 repetitions"
913
+ - listitem: "... thirty: 1 repetitions"
914
+ - listitem: "Thirty-nine: 1 repetitions"
915
+ - listitem: "\"Thirty-nine: 1 repetitions"
916
+ - listitem: "Thirty-nine,: 1 repetitions"
917
+ - listitem: "right then: 1 repetitions"
918
+ - listitem: "s worth: 1 repetitions"
919
+ - listitem: "worth,: 1 repetitions"
920
+ - listitem: "moment the: 1 repetitions"
921
+ - listitem: "unwrap the: 1 repetitions"
922
+ - listitem: "ripping the: 1 repetitions"
923
+ - listitem: "the paper: 1 repetitions"
924
+ - listitem: "looking both: 1 repetitions"
925
+ - listitem: "both angry: 1 repetitions"
926
+ - listitem: "s mouth: 1 repetitions"
927
+ - listitem: "mouth fell: 1 repetitions"
928
+ - listitem: "birthday,: 1 repetitions"
929
+ - listitem: "or the: 1 repetitions"
930
+ - listitem: "the movies: 1 repetitions"
931
+ - listitem: "behind with: 1 repetitions"
932
+ - listitem: "with Mrs: 1 repetitions"
933
+ - listitem: "it there: 1 repetitions"
934
+ - listitem: "planned this: 1 repetitions"
935
+ - listitem: "sorry that: 1 repetitions"
936
+ - listitem: "that Mrs: 1 repetitions"
937
+ - listitem: "hates the: 1 repetitions"
938
+ - listitem: "t there: 1 repetitions"
939
+ - listitem: "there —: 1 repetitions"
940
+ - listitem: "or rather: 1 repetitions"
941
+ - listitem: "rather,: 1 repetitions"
942
+ - listitem: "nasty that: 1 repetitions"
943
+ - listitem: "that couldn: 1 repetitions"
944
+ - listitem: "understand them: 1 repetitions"
945
+ - listitem: "that if: 1 repetitions"
946
+ - listitem: "mother would: 1 repetitions"
947
+ - listitem: "him anything: 1 repetitions"
948
+ - listitem: "spoils everything: 1 repetitions"
949
+ - listitem: "everything!: 1 repetitions"
950
+ - listitem: "grin through: 1 repetitions"
951
+ - listitem: "mothers arms: 1 repetitions"
952
+ - listitem: "Just then: 1 repetitions"
953
+ - listitem: "the doorbell: 1 repetitions"
954
+ - listitem: "in with: 1 repetitions"
955
+ - listitem: "boy with: 1 repetitions"
956
+ - listitem: "usually the: 1 repetitions"
957
+ - listitem: "the one: 1 repetitions"
958
+ - listitem: "behind their: 1 repetitions"
959
+ - listitem: "their backs: 1 repetitions"
960
+ - listitem: "hit them: 1 repetitions"
961
+ - listitem: "car with: 1 repetitions"
962
+ - listitem: "with Piers: 1 repetitions"
963
+ - listitem: "of anything: 1 repetitions"
964
+ - listitem: "anything else: 1 repetitions"
965
+ - listitem: ", anything: 1 repetitions"
966
+ - listitem: "anything at: 1 repetitions"
967
+ - listitem: "that cupboard: 1 repetitions"
968
+ - listitem: "The problem: 1 repetitions"
969
+ - listitem: "strange things: 1 repetitions"
970
+ - listitem: "things often: 1 repetitions"
971
+ - listitem: "make them: 1 repetitions"
972
+ - listitem: "them happen: 1 repetitions"
973
+ - listitem: "the barbers: 1 repetitions"
974
+ - listitem: "hide that: 1 repetitions"
975
+ - listitem: "that horrible: 1 repetitions"
976
+ - listitem: "school the: 1 repetitions"
977
+ - listitem: "baggy clothes: 1 repetitions"
978
+ - listitem: "for this: 1 repetitions"
979
+ - listitem: "even though: 1 repetitions"
980
+ - listitem: "explain that: 1 repetitions"
981
+ - listitem: "Another time: 1 repetitions"
982
+ - listitem: "brown with: 1 repetitions"
983
+ - listitem: "with orange: 1 repetitions"
984
+ - listitem: "The harder: 1 repetitions"
985
+ - listitem: "the smaller: 1 repetitions"
986
+ - listitem: "the wash: 1 repetitions"
987
+ - listitem: "there he: 1 repetitions"
988
+ - listitem: "the chimney: 1 repetitions"
989
+ - listitem: "them Harry: 1 repetitions"
990
+ - listitem: "Vernon through: 1 repetitions"
991
+ - listitem: "the locked: 1 repetitions"
992
+ - listitem: "supposed that: 1 repetitions"
993
+ - listitem: "nothing was: 1 repetitions"
994
+ - listitem: "even worth: 1 repetitions"
995
+ - listitem: "worth being: 1 repetitions"
996
+ - listitem: "somewhere that: 1 repetitions"
997
+ - listitem: "that wasn: 1 repetitions"
998
+ - listitem: "about things: 1 repetitions"
999
+ - listitem: "things:: 1 repetitions"
1000
+ - listitem: "the council: 1 repetitions"
1001
+ - listitem: "the bank: 1 repetitions"
1002
+ - listitem: "This morning: 1 repetitions"
1003
+ - listitem: "the young: 1 repetitions"
1004
+ - listitem: "overtook them: 1 repetitions"
1005
+ - listitem: "beet with: 1 repetitions"
1006
+ - listitem: "know they: 1 repetitions"
1007
+ - listitem: "said anything: 1 repetitions"
1008
+ - listitem: "If there: 1 repetitions"
1009
+ - listitem: "thing the: 1 repetitions"
1010
+ - listitem: "more than: 1 repetitions"
1011
+ - listitem: "than his: 1 repetitions"
1012
+ - listitem: "anything acting: 1 repetitions"
1013
+ - listitem: "— they: 1 repetitions"
1014
+ - listitem: "crowded with: 1 repetitions"
1015
+ - listitem: "with families: 1 repetitions"
1016
+ - listitem: "either: 1 repetitions"
1017
+ - listitem: "the entrance: 1 repetitions"
1018
+ - listitem: "the smiling: 1 repetitions"
1019
+ - listitem: "the van: 1 repetitions"
1020
+ - listitem: "they bought: 1 repetitions"
1021
+ - listitem: ", either: 1 repetitions"
1022
+ - listitem: "either,: 1 repetitions"
1023
+ - listitem: "thought,: 1 repetitions"
1024
+ - listitem: "they watched: 1 repetitions"
1025
+ - listitem: "except that: 1 repetitions"
1026
+ - listitem: "bored with: 1 repetitions"
1027
+ - listitem: "the animals: 1 repetitions"
1028
+ - listitem: "their favorite: 1 repetitions"
1029
+ - listitem: "him another: 1 repetitions"
1030
+ - listitem: "finish the: 1 repetitions"
1031
+ - listitem: "pythons: 1 repetitions"
1032
+ - listitem: "lunch they: 1 repetitions"
1033
+ - listitem: "with lit: 1 repetitions"
1034
+ - listitem: "along the: 1 repetitions"
1035
+ - listitem: "and slithering: 1 repetitions"
1036
+ - listitem: "slithering over: 1 repetitions"
1037
+ - listitem: "man-crushing pythons: 1 repetitions"
1038
+ - listitem: "pythons.: 1 repetitions"
1039
+ - listitem: "the largest: 1 repetitions"
1040
+ - listitem: "the mood: 1 repetitions"
1041
+ - listitem: "stood with: 1 repetitions"
1042
+ - listitem: "the glistening: 1 repetitions"
1043
+ - listitem: "rapped the: 1 repetitions"
1044
+ - listitem: "smartly with: 1 repetitions"
1045
+ - listitem: "\"This: 1 repetitions"
1046
+ - listitem: "the tank: 1 repetitions"
1047
+ - listitem: "drumming their: 1 repetitions"
1048
+ - listitem: "their fingers: 1 repetitions"
1049
+ - listitem: "than having: 1 repetitions"
1050
+ - listitem: "level with: 1 repetitions"
1051
+ - listitem: ", then: 1 repetitions"
1052
+ - listitem: "then raised: 1 repetitions"
1053
+ - listitem: "look that: 1 repetitions"
1054
+ - listitem: "murmured through: 1 repetitions"
1055
+ - listitem: "nice there: 1 repetitions"
1056
+ - listitem: ": This: 1 repetitions"
1057
+ - listitem: "This specimen: 1 repetitions"
1058
+ - listitem: "made both: 1 repetitions"
1059
+ - listitem: "them jump: 1 repetitions"
1060
+ - listitem: "THIS SNAKE: 1 repetitions"
1061
+ - listitem: "toward them: 1 repetitions"
1062
+ - listitem: "the ribs: 1 repetitions"
1063
+ - listitem: "the concrete: 1 repetitions"
1064
+ - listitem: "back with: 1 repetitions"
1065
+ - listitem: "with howls: 1 repetitions"
1066
+ - listitem: "throughout: 1 repetitions"
1067
+ - listitem: ", slithering: 1 repetitions"
1068
+ - listitem: "slithering out: 1 repetitions"
1069
+ - listitem: "People throughout: 1 repetitions"
1070
+ - listitem: "throughout the: 1 repetitions"
1071
+ - listitem: "the exits: 1 repetitions"
1072
+ - listitem: "Thanksss: 1 repetitions"
1073
+ - listitem: "... Thanksss: 1 repetitions"
1074
+ - listitem: "Thanksss,: 1 repetitions"
1075
+ - listitem: "did the: 1 repetitions"
1076
+ - listitem: "death: 1 repetitions"
1077
+ - listitem: "done anything: 1 repetitions"
1078
+ - listitem: "anything except: 1 repetitions"
1079
+ - listitem: "at their: 1 repetitions"
1080
+ - listitem: "their heels: 1 repetitions"
1081
+ - listitem: "them how: 1 repetitions"
1082
+ - listitem: "to death: 1 repetitions"
1083
+ - listitem: "death.: 1 repetitions"
1084
+ - listitem: "Until they: 1 repetitions"
1085
+ - listitem: "the crash: 1 repetitions"
1086
+ - listitem: "thought (: 1 repetitions"
1087
+ - listitem: ") that: 1 repetitions"
1088
+ - listitem: "that strangers: 1 repetitions"
1089
+ - listitem: "strangers they: 1 repetitions"
1090
+ - listitem: "shopping with: 1 repetitions"
1091
+ - listitem: "with Aunt: 1 repetitions"
1092
+ - listitem: "knew the: 1 repetitions"
1093
+ - listitem: "rushed them: 1 repetitions"
1094
+ - listitem: "them out: 1 repetitions"
1095
+ - listitem: "the shop: 1 repetitions"
1096
+ - listitem: "shop without: 1 repetitions"
1097
+ - listitem: "without buying: 1 repetitions"
1098
+ - listitem: "buying anything: 1 repetitions"
1099
+ - listitem: "street the: 1 repetitions"
1100
+ - listitem: "other day: 1 repetitions"
1101
+ - listitem: "then walked: 1 repetitions"
1102
+ - listitem: "away without: 1 repetitions"
1103
+ - listitem: "The weirdest: 1 repetitions"
1104
+ - listitem: "weirdest thing: 1 repetitions"
1105
+ - listitem: "thing about: 1 repetitions"
1106
+ - listitem: "way they: 1 repetitions"
1107
+ - listitem: "vanish the: 1 repetitions"
1108
+ - listitem: "hated that: 1 repetitions"
1109
+ - listitem: "that odd: 1 repetitions"
1110
+ - listitem: "disagree with: 1 repetitions"
1111
+ - listitem: "The escape: 1 repetitions"
1112
+ - listitem: "the Brazilian: 1 repetitions"
1113
+ - listitem: "the summer: 1 repetitions"
1114
+ - listitem: "the lot: 1 repetitions"
1115
+ - listitem: "the leader: 1 repetitions"
1116
+ - listitem: "them were: 1 repetitions"
1117
+ - listitem: "and thinking: 1 repetitions"
1118
+ - listitem: "the holidays: 1 repetitions"
1119
+ - listitem: "going there: 1 repetitions"
1120
+ - listitem: "there too: 1 repetitions"
1121
+ - listitem: "the local: 1 repetitions"
1122
+ - listitem: "\"They: 1 repetitions"
1123
+ - listitem: "They stuff: 1 repetitions"
1124
+ - listitem: "the toilet: 1 repetitions"
1125
+ - listitem: "toilet the: 1 repetitions"
1126
+ - listitem: "thanks,: 1 repetitions"
1127
+ - listitem: "The poor: 1 repetitions"
1128
+ - listitem: "had anything: 1 repetitions"
1129
+ - listitem: "anything as: 1 repetitions"
1130
+ - listitem: "cake that: 1 repetitions"
1131
+ - listitem: "that tasted: 1 repetitions"
1132
+ - listitem: "other while: 1 repetitions"
1133
+ - listitem: "the teachers: 1 repetitions"
1134
+ - listitem: "gruffly that: 1 repetitions"
1135
+ - listitem: "the proudest: 1 repetitions"
1136
+ - listitem: "thought two: 1 repetitions"
1137
+ - listitem: "kitchen the: 1 repetitions"
1138
+ - listitem: "the sink: 1 repetitions"
1139
+ - listitem: "The tub: 1 repetitions"
1140
+ - listitem: "s this: 1 repetitions"
1141
+ - listitem: "they always: 1 repetitions"
1142
+ - listitem: "the bowl: 1 repetitions"
1143
+ - listitem: "old things: 1 repetitions"
1144
+ - listitem: "things gray: 1 repetitions"
1145
+ - listitem: "doubted this: 1 repetitions"
1146
+ - listitem: "thought it: 1 repetitions"
1147
+ - listitem: "both with: 1 repetitions"
1148
+ - listitem: "with wrinkled: 1 repetitions"
1149
+ - listitem: "the smell: 1 repetitions"
1150
+ - listitem: "the click: 1 repetitions"
1151
+ - listitem: "him with: 1 repetitions"
1152
+ - listitem: "with your: 1 repetitions"
1153
+ - listitem: "dodged the: 1 repetitions"
1154
+ - listitem: ". Three: 1 repetitions"
1155
+ - listitem: "Three things: 1 repetitions"
1156
+ - listitem: "things lay: 1 repetitions"
1157
+ - listitem: "the Isle: 1 repetitions"
1158
+ - listitem: "envelope that: 1 repetitions"
1159
+ - listitem: "no other: 1 repetitions"
1160
+ - listitem: "other relatives: 1 repetitions"
1161
+ - listitem: "the library: 1 repetitions"
1162
+ - listitem: "plainly there: 1 repetitions"
1163
+ - listitem: "there could: 1 repetitions"
1164
+ - listitem: "was thick: 1 repetitions"
1165
+ - listitem: "thick and: 1 repetitions"
1166
+ - listitem: "Vernon the: 1 repetitions"
1167
+ - listitem: "the yellow: 1 repetitions"
1168
+ - listitem: "got something: 1 repetitions"
1169
+ - listitem: "something!: 1 repetitions"
1170
+ - listitem: "Within: 1 repetitions"
1171
+ - listitem: "shaking the: 1 repetitions"
1172
+ - listitem: "open with: 1 repetitions"
1173
+ - listitem: "with one: 1 repetitions"
1174
+ - listitem: "faster than: 1 repetitions"
1175
+ - listitem: "than a: 1 repetitions"
1176
+ - listitem: "stop there: 1 repetitions"
1177
+ - listitem: ". Within: 1 repetitions"
1178
+ - listitem: "Within seconds: 1 repetitions"
1179
+ - listitem: "the grayish: 1 repetitions"
1180
+ - listitem: "her throat: 1 repetitions"
1181
+ - listitem: "throat and: 1 repetitions"
1182
+ - listitem: "They stared: 1 repetitions"
1183
+ - listitem: "other,: 1 repetitions"
1184
+ - listitem: "father a: 1 repetitions"
1185
+ - listitem: "head with: 1 repetitions"
1186
+ - listitem: "read that: 1 repetitions"
1187
+ - listitem: "stuffing the: 1 repetitions"
1188
+ - listitem: "took both: 1 repetitions"
1189
+ - listitem: "both Harry: 1 repetitions"
1190
+ - listitem: "the scruffs: 1 repetitions"
1191
+ - listitem: "threw them: 1 repetitions"
1192
+ - listitem: "the keyhole: 1 repetitions"
1193
+ - listitem: "could they: 1 repetitions"
1194
+ - listitem: "they possibly: 1 repetitions"
1195
+ - listitem: "them we: 1 repetitions"
1196
+ - listitem: "that dangerous: 1 repetitions"
1197
+ - listitem: "did something: 1 repetitions"
1198
+ - listitem: "squeezed through: 1 repetitions"
1199
+ - listitem: "then forced: 1 repetitions"
1200
+ - listitem: "this cupboard: 1 repetitions"
1201
+ - listitem: "we think: 1 repetitions"
1202
+ - listitem: "Take this: 1 repetitions"
1203
+ - listitem: "this stuff: 1 repetitions"
1204
+ - listitem: "month-old: 1 repetitions"
1205
+ - listitem: "the toys: 1 repetitions"
1206
+ - listitem: "and things: 1 repetitions"
1207
+ - listitem: "that wouldn: 1 repetitions"
1208
+ - listitem: "move everything: 1 repetitions"
1209
+ - listitem: "everything he: 1 repetitions"
1210
+ - listitem: "to this: 1 repetitions"
1211
+ - listitem: "this room: 1 repetitions"
1212
+ - listitem: "Nearly everything: 1 repetitions"
1213
+ - listitem: "everything in: 1 repetitions"
1214
+ - listitem: "The month-old: 1 repetitions"
1215
+ - listitem: "month-old video: 1 repetitions"
1216
+ - listitem: "foot through: 1 repetitions"
1217
+ - listitem: "through when: 1 repetitions"
1218
+ - listitem: "; there: 1 repetitions"
1219
+ - listitem: "parrot that: 1 repetitions"
1220
+ - listitem: "shelf with: 1 repetitions"
1221
+ - listitem: ". Other: 1 repetitions"
1222
+ - listitem: "Other shelves: 1 repetitions"
1223
+ - listitem: "things in: 1 repetitions"
1224
+ - listitem: "room that: 1 repetitions"
1225
+ - listitem: "though they: 1 repetitions"
1226
+ - listitem: "came the: 1 repetitions"
1227
+ - listitem: "there ...: 1 repetitions"
1228
+ - listitem: "need that: 1 repetitions"
1229
+ - listitem: "that room: 1 repetitions"
1230
+ - listitem: "given anything: 1 repetitions"
1231
+ - listitem: "d rather: 1 repetitions"
1232
+ - listitem: "rather be: 1 repetitions"
1233
+ - listitem: "cupboard with: 1 repetitions"
1234
+ - listitem: "letter than: 1 repetitions"
1235
+ - listitem: "than up: 1 repetitions"
1236
+ - listitem: "here without: 1 repetitions"
1237
+ - listitem: "without it: 1 repetitions"
1238
+ - listitem: "thrown: 1 repetitions"
1239
+ - listitem: "was rather: 1 repetitions"
1240
+ - listitem: "rather quiet: 1 repetitions"
1241
+ - listitem: "father with: 1 repetitions"
1242
+ - listitem: "and thrown: 1 repetitions"
1243
+ - listitem: "thrown his: 1 repetitions"
1244
+ - listitem: "tortoise through: 1 repetitions"
1245
+ - listitem: "the greenhouse: 1 repetitions"
1246
+ - listitem: "was thinking: 1 repetitions"
1247
+ - listitem: "other darkly: 1 repetitions"
1248
+ - listitem: "banging things: 1 repetitions"
1249
+ - listitem: "things with: 1 repetitions"
1250
+ - listitem: "\"There: 1 repetitions"
1251
+ - listitem: "s another: 1 repetitions"
1252
+ - listitem: "The Smallest: 1 repetitions"
1253
+ - listitem: "the fact: 1 repetitions"
1254
+ - listitem: "fact that: 1 repetitions"
1255
+ - listitem: "the neck: 1 repetitions"
1256
+ - listitem: "for breath: 1 repetitions"
1257
+ - listitem: "breath,: 1 repetitions"
1258
+ - listitem: "that meant: 1 repetitions"
1259
+ - listitem: "meant they: 1 repetitions"
1260
+ - listitem: "sure they: 1 repetitions"
1261
+ - listitem: "The repaired: 1 repetitions"
1262
+ - listitem: "clock the: 1 repetitions"
1263
+ - listitem: "downstairs without: 1 repetitions"
1264
+ - listitem: "without turning: 1 repetitions"
1265
+ - listitem: "the postman: 1 repetitions"
1266
+ - listitem: "on something: 1 repetitions"
1267
+ - listitem: "something big: 1 repetitions"
1268
+ - listitem: "— something: 1 repetitions"
1269
+ - listitem: "something alive: 1 repetitions"
1270
+ - listitem: "squashy something: 1 repetitions"
1271
+ - listitem: "something had: 1 repetitions"
1272
+ - listitem: "the foot: 1 repetitions"
1273
+ - listitem: "then told: 1 repetitions"
1274
+ - listitem: "see three: 1 repetitions"
1275
+ - listitem: "three letters: 1 repetitions"
1276
+ - listitem: "tearing the: 1 repetitions"
1277
+ - listitem: "work that: 1 repetitions"
1278
+ - listitem: "a mouthful: 1 repetitions"
1279
+ - listitem: "mouthful of: 1 repetitions"
1280
+ - listitem: "they can: 1 repetitions"
1281
+ - listitem: "deliver them: 1 repetitions"
1282
+ - listitem: "them they: 1 repetitions"
1283
+ - listitem: ", these: 1 repetitions"
1284
+ - listitem: "nail with: 1 repetitions"
1285
+ - listitem: "the piece: 1 repetitions"
1286
+ - listitem: "than twelve: 1 repetitions"
1287
+ - listitem: "go through: 1 repetitions"
1288
+ - listitem: "slot they: 1 repetitions"
1289
+ - listitem: "slotted through: 1 repetitions"
1290
+ - listitem: "the sides: 1 repetitions"
1291
+ - listitem: "forced through: 1 repetitions"
1292
+ - listitem: "the small: 1 repetitions"
1293
+ - listitem: "the downstairs: 1 repetitions"
1294
+ - listitem: "downstairs bathroom: 1 repetitions"
1295
+ - listitem: "bathroom.: 1 repetitions"
1296
+ - listitem: "Tiptoe Through: 1 repetitions"
1297
+ - listitem: "the Tulips: 1 repetitions"
1298
+ - listitem: ", things: 1 repetitions"
1299
+ - listitem: "things began: 1 repetitions"
1300
+ - listitem: "found their: 1 repetitions"
1301
+ - listitem: "the two: 1 repetitions"
1302
+ - listitem: "eggs that: 1 repetitions"
1303
+ - listitem: "that their: 1 repetitions"
1304
+ - listitem: "their very: 1 repetitions"
1305
+ - listitem: "the post: 1 repetitions"
1306
+ - listitem: "the dairy: 1 repetitions"
1307
+ - listitem: "shredded the: 1 repetitions"
1308
+ - listitem: "earth: 1 repetitions"
1309
+ - listitem: "on earth: 1 repetitions"
1310
+ - listitem: "earth wants: 1 repetitions"
1311
+ - listitem: "you this: 1 repetitions"
1312
+ - listitem: "this badly: 1 repetitions"
1313
+ - listitem: "the breakfast: 1 repetitions"
1314
+ - listitem: "and rather: 1 repetitions"
1315
+ - listitem: "rather ill: 1 repetitions"
1316
+ - listitem: "reminded them: 1 repetitions"
1317
+ - listitem: "them cheerfully: 1 repetitions"
1318
+ - listitem: "Something came: 1 repetitions"
1319
+ - listitem: ", thirty: 1 repetitions"
1320
+ - listitem: "thirty or: 1 repetitions"
1321
+ - listitem: "the waist: 1 repetitions"
1322
+ - listitem: "threw him: 1 repetitions"
1323
+ - listitem: "with their: 1 repetitions"
1324
+ - listitem: "their arms: 1 repetitions"
1325
+ - listitem: "over their: 1 repetitions"
1326
+ - listitem: "hear the: 1 repetitions"
1327
+ - listitem: "That does: 1 repetitions"
1328
+ - listitem: "some clothes: 1 repetitions"
1329
+ - listitem: "clothes.: 1 repetitions"
1330
+ - listitem: "dangerous with: 1 repetitions"
1331
+ - listitem: "with half: 1 repetitions"
1332
+ - listitem: "missing that: 1 repetitions"
1333
+ - listitem: "that no: 1 repetitions"
1334
+ - listitem: "later they: 1 repetitions"
1335
+ - listitem: "wrenched their: 1 repetitions"
1336
+ - listitem: "way through: 1 repetitions"
1337
+ - listitem: "the boarded-up: 1 repetitions"
1338
+ - listitem: "the highway: 1 repetitions"
1339
+ - listitem: "father had: 1 repetitions"
1340
+ - listitem: "round the: 1 repetitions"
1341
+ - listitem: "holding them: 1 repetitions"
1342
+ - listitem: "them up: 1 repetitions"
1343
+ - listitem: "where they: 1 repetitions"
1344
+ - listitem: "then Uncle: 1 repetitions"
1345
+ - listitem: "the opposite: 1 repetitions"
1346
+ - listitem: "did this: 1 repetitions"
1347
+ - listitem: "long without: 1 repetitions"
1348
+ - listitem: "without blowing: 1 repetitions"
1349
+ - listitem: "the outskirts: 1 repetitions"
1350
+ - listitem: "room with: 1 repetitions"
1351
+ - listitem: "with twin: 1 repetitions"
1352
+ - listitem: "the windowsill: 1 repetitions"
1353
+ - listitem: "breakfast the: 1 repetitions"
1354
+ - listitem: "the owner: 1 repetitions"
1355
+ - listitem: "the hotel: 1 repetitions"
1356
+ - listitem: "their table: 1 repetitions"
1357
+ - listitem: "these at: 1 repetitions"
1358
+ - listitem: "so they: 1 repetitions"
1359
+ - listitem: "Cokeworth: 1 repetitions"
1360
+ - listitem: "The woman: 1 repetitions"
1361
+ - listitem: "take them: 1 repetitions"
1362
+ - listitem: "the dining: 1 repetitions"
1363
+ - listitem: "them knew: 1 repetitions"
1364
+ - listitem: "drove them: 1 repetitions"
1365
+ - listitem: "off they: 1 repetitions"
1366
+ - listitem: "same thing: 1 repetitions"
1367
+ - listitem: "late that: 1 repetitions"
1368
+ - listitem: "the coast: 1 repetitions"
1369
+ - listitem: "locked them: 1 repetitions"
1370
+ - listitem: "somewhere with: 1 repetitions"
1371
+ - listitem: "eleventh: 1 repetitions"
1372
+ - listitem: "This reminded: 1 repetitions"
1373
+ - listitem: "know the: 1 repetitions"
1374
+ - listitem: "the week: 1 repetitions"
1375
+ - listitem: "then tomorrow: 1 repetitions"
1376
+ - listitem: "s eleventh: 1 repetitions"
1377
+ - listitem: "eleventh birthday: 1 repetitions"
1378
+ - listitem: "birthdays were: 1 repetitions"
1379
+ - listitem: "the perfect: 1 repetitions"
1380
+ - listitem: "the most: 1 repetitions"
1381
+ - listitem: "thing was: 1 repetitions"
1382
+ - listitem: "this gentleman: 1 repetitions"
1383
+ - listitem: "toothless: 1 repetitions"
1384
+ - listitem: "A toothless: 1 repetitions"
1385
+ - listitem: "toothless old: 1 repetitions"
1386
+ - listitem: "rather wicked: 1 repetitions"
1387
+ - listitem: "the iron-gray: 1 repetitions"
1388
+ - listitem: "below them: 1 repetitions"
1389
+ - listitem: "the boat: 1 repetitions"
1390
+ - listitem: "down their: 1 repetitions"
1391
+ - listitem: "whipped their: 1 repetitions"
1392
+ - listitem: "hours they: 1 repetitions"
1393
+ - listitem: "they reached: 1 repetitions"
1394
+ - listitem: "led the: 1 repetitions"
1395
+ - listitem: "the broken-down: 1 repetitions"
1396
+ - listitem: "The inside: 1 repetitions"
1397
+ - listitem: "whistled through: 1 repetitions"
1398
+ - listitem: "the wooden: 1 repetitions"
1399
+ - listitem: "with some: 1 repetitions"
1400
+ - listitem: "of those: 1 repetitions"
1401
+ - listitem: "thought nobody: 1 repetitions"
1402
+ - listitem: "reaching them: 1 repetitions"
1403
+ - listitem: "them here: 1 repetitions"
1404
+ - listitem: "though the: 1 repetitions"
1405
+ - listitem: "the thought: 1 repetitions"
1406
+ - listitem: "thought didn: 1 repetitions"
1407
+ - listitem: "filthy: 1 repetitions"
1408
+ - listitem: "moth-eaten: 1 repetitions"
1409
+ - listitem: "thinnest: 1 repetitions"
1410
+ - listitem: "the promised: 1 repetitions"
1411
+ - listitem: "the high: 1 repetitions"
1412
+ - listitem: "splattered the: 1 repetitions"
1413
+ - listitem: "rattled the: 1 repetitions"
1414
+ - listitem: "the filthy: 1 repetitions"
1415
+ - listitem: "filthy windows: 1 repetitions"
1416
+ - listitem: "the moth-eaten: 1 repetitions"
1417
+ - listitem: "moth-eaten sofa: 1 repetitions"
1418
+ - listitem: "the lumpy: 1 repetitions"
1419
+ - listitem: "the softest: 1 repetitions"
1420
+ - listitem: "the thinnest: 1 repetitions"
1421
+ - listitem: "thinnest,: 1 repetitions"
1422
+ - listitem: "rumbling with: 1 repetitions"
1423
+ - listitem: "with hunger: 1 repetitions"
1424
+ - listitem: "of thunder: 1 repetitions"
1425
+ - listitem: "thunder that: 1 repetitions"
1426
+ - listitem: "that started: 1 repetitions"
1427
+ - listitem: "birthday tick: 1 repetitions"
1428
+ - listitem: "heard something: 1 repetitions"
1429
+ - listitem: "something creak: 1 repetitions"
1430
+ - listitem: "hoped the: 1 repetitions"
1431
+ - listitem: "Maybe the: 1 repetitions"
1432
+ - listitem: "when they: 1 repetitions"
1433
+ - listitem: "back that: 1 repetitions"
1434
+ - listitem: "Three minutes: 1 repetitions"
1435
+ - listitem: "that funny: 1 repetitions"
1436
+ - listitem: ". Thirty: 1 repetitions"
1437
+ - listitem: "Thirty seconds: 1 repetitions"
1438
+ - listitem: "— three: 1 repetitions"
1439
+ - listitem: "three ...: 1 repetitions"
1440
+ - listitem: "THE KEYS: 1 repetitions"
1441
+ - listitem: "They knocked: 1 repetitions"
1442
+ - listitem: "the cannon: 1 repetitions"
1443
+ - listitem: "now they: 1 repetitions"
1444
+ - listitem: "they knew: 1 repetitions"
1445
+ - listitem: "the long: 1 repetitions"
1446
+ - listitem: "brought with: 1 repetitions"
1447
+ - listitem: "with them: 1 repetitions"
1448
+ - listitem: "s there: 1 repetitions"
1449
+ - listitem: "hit with: 1 repetitions"
1450
+ - listitem: "force that: 1 repetitions"
1451
+ - listitem: "the doorway: 1 repetitions"
1452
+ - listitem: "the hair: 1 repetitions"
1453
+ - listitem: "that his: 1 repetitions"
1454
+ - listitem: "brushed the: 1 repetitions"
1455
+ - listitem: "The noise: 1 repetitions"
1456
+ - listitem: "at them: 1 repetitions"
1457
+ - listitem: "frozen with: 1 repetitions"
1458
+ - listitem: "with fear: 1 repetitions"
1459
+ - listitem: "the stranger: 1 repetitions"
1460
+ - listitem: "the fierce: 1 repetitions"
1461
+ - listitem: "the beetle: 1 repetitions"
1462
+ - listitem: "demand that: 1 repetitions"
1463
+ - listitem: "jerked the: 1 repetitions"
1464
+ - listitem: "the gun: 1 repetitions"
1465
+ - listitem: "made another: 1 repetitions"
1466
+ - listitem: "another funny: 1 repetitions"
1467
+ - listitem: "birthday to: 1 repetitions"
1468
+ - listitem: "it with: 1 repetitions"
1469
+ - listitem: "with trembling: 1 repetitions"
1470
+ - listitem: "cake with: 1 repetitions"
1471
+ - listitem: "with Happy: 1 repetitions"
1472
+ - listitem: "Birthday Harry: 1 repetitions"
1473
+ - listitem: "say thank: 1 repetitions"
1474
+ - listitem: "the words: 1 repetitions"
1475
+ - listitem: "that tea: 1 repetitions"
1476
+ - listitem: "tea then: 1 repetitions"
1477
+ - listitem: "bath: 1 repetitions"
1478
+ - listitem: "grate with: 1 repetitions"
1479
+ - listitem: "the shriveled: 1 repetitions"
1480
+ - listitem: "fire there: 1 repetitions"
1481
+ - listitem: "hut with: 1 repetitions"
1482
+ - listitem: "with flickering: 1 repetitions"
1483
+ - listitem: "felt the: 1 repetitions"
1484
+ - listitem: "the warmth: 1 repetitions"
1485
+ - listitem: "warmth wash: 1 repetitions"
1486
+ - listitem: "hot bath: 1 repetitions"
1487
+ - listitem: "bath.: 1 repetitions"
1488
+ - listitem: "of things: 1 repetitions"
1489
+ - listitem: "things out: 1 repetitions"
1490
+ - listitem: "liquid that: 1 repetitions"
1491
+ - listitem: "Soon the: 1 repetitions"
1492
+ - listitem: "a thing: 1 repetitions"
1493
+ - listitem: "thing while: 1 repetitions"
1494
+ - listitem: "slid the: 1 repetitions"
1495
+ - listitem: "the poker: 1 repetitions"
1496
+ - listitem: "touch anything: 1 repetitions"
1497
+ - listitem: "passed the: 1 repetitions"
1498
+ - listitem: "the sausages: 1 repetitions"
1499
+ - listitem: "tasted anything: 1 repetitions"
1500
+ - listitem: "anything so: 1 repetitions"
1501
+ - listitem: "explain anything: 1 repetitions"
1502
+ - listitem: "mouth with: 1 repetitions"
1503
+ - listitem: "the shadows: 1 repetitions"
1504
+ - listitem: "never thought: 1 repetitions"
1505
+ - listitem: "thought yeh: 1 repetitions"
1506
+ - listitem: "Hagrid thundered: 1 repetitions"
1507
+ - listitem: "thundered.: 1 repetitions"
1508
+ - listitem: "nothin: 1 repetitions"
1509
+ - listitem: "knows nothin: 1 repetitions"
1510
+ - listitem: "nothin': 1 repetitions"
1511
+ - listitem: "ANYTHING?: 1 repetitions"
1512
+ - listitem: "math: 1 repetitions"
1513
+ - listitem: "some things: 1 repetitions"
1514
+ - listitem: "do math: 1 repetitions"
1515
+ - listitem: "math and: 1 repetitions"
1516
+ - listitem: "whispered something: 1 repetitions"
1517
+ - listitem: "something that: 1 repetitions"
1518
+ - listitem: "that sounded: 1 repetitions"
1519
+ - listitem: "were they: 1 repetitions"
1520
+ - listitem: "they?: 1 repetitions"
1521
+ - listitem: "fingers through: 1 repetitions"
1522
+ - listitem: "through his: 1 repetitions"
1523
+ - listitem: "right there: 1 repetitions"
1524
+ - listitem: "boy anything: 1 repetitions"
1525
+ - listitem: "anything!: 1 repetitions"
1526
+ - listitem: "man than: 1 repetitions"
1527
+ - listitem: "than Vernon: 1 repetitions"
1528
+ - listitem: "the furious: 1 repetitions"
1529
+ - listitem: "trembled with: 1 repetitions"
1530
+ - listitem: "with rage: 1 repetitions"
1531
+ - listitem: "was there: 1 repetitions"
1532
+ - listitem: "there!: 1 repetitions"
1533
+ - listitem: "these years: 1 repetitions"
1534
+ - listitem: "the whistling: 1 repetitions"
1535
+ - listitem: "thumpin: 1 repetitions"
1536
+ - listitem: "a thumpin: 1 repetitions"
1537
+ - listitem: "thumpin': 1 repetitions"
1538
+ - listitem: "Hut-on-the-Rock: 1 repetitions"
1539
+ - listitem: "take the: 1 repetitions"
1540
+ - listitem: "the yellowish: 1 repetitions"
1541
+ - listitem: ", Hut-on-the-Rock: 1 repetitions"
1542
+ - listitem: "Hut-on-the-Rock,: 1 repetitions"
1543
+ - listitem: "you that: 1 repetitions"
1544
+ - listitem: "later than: 1 repetitions"
1545
+ - listitem: "than July: 1 repetitions"
1546
+ - listitem: "they await: 1 repetitions"
1547
+ - listitem: "teeth: 1 repetitions"
1548
+ - listitem: "that reminds: 1 repetitions"
1549
+ - listitem: "forehead with: 1 repetitions"
1550
+ - listitem: "with enough: 1 repetitions"
1551
+ - listitem: "yet another: 1 repetitions"
1552
+ - listitem: "another pocket: 1 repetitions"
1553
+ - listitem: ", rather: 1 repetitions"
1554
+ - listitem: "rather ruffled-looking: 1 repetitions"
1555
+ - listitem: "his teeth: 1 repetitions"
1556
+ - listitem: "teeth he: 1 repetitions"
1557
+ - listitem: "note that: 1 repetitions"
1558
+ - listitem: "his things: 1 repetitions"
1559
+ - listitem: "things tomorrow: 1 repetitions"
1560
+ - listitem: "Weather': 1 repetitions"
1561
+ - listitem: "the note: 1 repetitions"
1562
+ - listitem: "threw the: 1 repetitions"
1563
+ - listitem: "though this: 1 repetitions"
1564
+ - listitem: "mouth was: 1 repetitions"
1565
+ - listitem: "the firelight: 1 repetitions"
1566
+ - listitem: "like them: 1 repetitions"
1567
+ - listitem: "that rubbish: 1 repetitions"
1568
+ - listitem: "that and: 1 repetitions"
1569
+ - listitem: "that —: 1 repetitions"
1570
+ - listitem: "that school: 1 repetitions"
1571
+ - listitem: "vacation with: 1 repetitions"
1572
+ - listitem: "my mother: 1 repetitions"
1573
+ - listitem: "Lily this: 1 repetitions"
1574
+ - listitem: "this and: 1 repetitions"
1575
+ - listitem: "Lily that: 1 repetitions"
1576
+ - listitem: "then went: 1 repetitions"
1577
+ - listitem: "this for: 1 repetitions"
1578
+ - listitem: "Then she: 1 repetitions"
1579
+ - listitem: "met that: 1 repetitions"
1580
+ - listitem: "that Potter: 1 repetitions"
1581
+ - listitem: "they left: 1 repetitions"
1582
+ - listitem: "just the: 1 repetitions"
1583
+ - listitem: "landed with: 1 repetitions"
1584
+ - listitem: "with you: 1 repetitions"
1585
+ - listitem: "me they: 1 repetitions"
1586
+ - listitem: "they died: 1 repetitions"
1587
+ - listitem: "angrily that: 1 repetitions"
1588
+ - listitem: "their corner: 1 repetitions"
1589
+ - listitem: "The anger: 1 repetitions"
1590
+ - listitem: "expected this: 1 repetitions"
1591
+ - listitem: "me there: 1 repetitions"
1592
+ - listitem: "there might: 1 repetitions"
1593
+ - listitem: "m the: 1 repetitions"
1594
+ - listitem: "He threw: 1 repetitions"
1595
+ - listitem: "everythin: 1 repetitions"
1596
+ - listitem: "yeh everythin: 1 repetitions"
1597
+ - listitem: "everythin': 1 repetitions"
1598
+ - listitem: "with —: 1 repetitions"
1599
+ - listitem: "— with: 1 repetitions"
1600
+ - listitem: "than worse: 1 repetitions"
1601
+ - listitem: "this —: 1 repetitions"
1602
+ - listitem: "friendly with: 1 repetitions"
1603
+ - listitem: "with strange: 1 repetitions"
1604
+ - listitem: "terrible things: 1 repetitions"
1605
+ - listitem: "anythin: 1 repetitions"
1606
+ - listitem: "their day: 1 repetitions"
1607
+ - listitem: "Suppose the: 1 repetitions"
1608
+ - listitem: "the myst: 1 repetitions"
1609
+ - listitem: "want anythin: 1 repetitions"
1610
+ - listitem: "anythin': 1 repetitions"
1611
+ - listitem: "outta the: 1 repetitions"
1612
+ - listitem: "the village: 1 repetitions"
1613
+ - listitem: "nose with: 1 repetitions"
1614
+ - listitem: "that sad: 1 repetitions"
1615
+ - listitem: "' this: 1 repetitions"
1616
+ - listitem: "thing —: 1 repetitions"
1617
+ - listitem: "by then: 1 repetitions"
1618
+ - listitem: "got that: 1 repetitions"
1619
+ - listitem: "that mark: 1 repetitions"
1620
+ - listitem: "? That: 1 repetitions"
1621
+ - listitem: "the age: 1 repetitions"
1622
+ - listitem: "the McKinnons: 1 repetitions"
1623
+ - listitem: "the Bones: 1 repetitions"
1624
+ - listitem: "the Prewetts: 1 repetitions"
1625
+ - listitem: "again the: 1 repetitions"
1626
+ - listitem: "the blinding: 1 repetitions"
1627
+ - listitem: "clearly than: 1 repetitions"
1628
+ - listitem: "remembered something: 1 repetitions"
1629
+ - listitem: "the ruined: 1 repetitions"
1630
+ - listitem: "ter this: 1 repetitions"
1631
+ - listitem: "this lot: 1 repetitions"
1632
+ - listitem: "accept there: 1 repetitions"
1633
+ - listitem: "s something: 1 repetitions"
1634
+ - listitem: "something strange: 1 repetitions"
1635
+ - listitem: "nothing a: 1 repetitions"
1636
+ - listitem: "this about: 1 repetitions"
1637
+ - listitem: "off without: 1 repetitions"
1638
+ - listitem: "without them: 1 repetitions"
1639
+ - listitem: "all they: 1 repetitions"
1640
+ - listitem: "with these: 1 repetitions"
1641
+ - listitem: "these wizarding: 1 repetitions"
1642
+ - listitem: "Pointing this: 1 repetitions"
1643
+ - listitem: "this at: 1 repetitions"
1644
+ - listitem: ", breathing: 1 repetitions"
1645
+ - listitem: "breathing heavily: 1 repetitions"
1646
+ - listitem: "which this: 1 repetitions"
1647
+ - listitem: "reckon they: 1 repetitions"
1648
+ - listitem: "there somewhere: 1 repetitions"
1649
+ - listitem: "Cause somethin: 1 repetitions"
1650
+ - listitem: "was somethin: 1 repetitions"
1651
+ - listitem: "on that: 1 repetitions"
1652
+ - listitem: "that night: 1 repetitions"
1653
+ - listitem: "but somethin: 1 repetitions"
1654
+ - listitem: "with warmth: 1 repetitions"
1655
+ - listitem: "warmth and: 1 repetitions"
1656
+ - listitem: "t they: 1 repetitions"
1657
+ - listitem: "they been: 1 repetitions"
1658
+ - listitem: "defeated the: 1 repetitions"
1659
+ - listitem: "made things: 1 repetitions"
1660
+ - listitem: "odd thing: 1 repetitions"
1661
+ - listitem: "that had: 1 repetitions"
1662
+ - listitem: "furious with: 1 repetitions"
1663
+ - listitem: "their reach: 1 repetitions"
1664
+ - listitem: "school with: 1 repetitions"
1665
+ - listitem: "that ridiculous: 1 repetitions"
1666
+ - listitem: ", without: 1 repetitions"
1667
+ - listitem: "without even: 1 repetitions"
1668
+ - listitem: "that Hagrid: 1 repetitions"
1669
+ - listitem: "in without: 1 repetitions"
1670
+ - listitem: "read those: 1 repetitions"
1671
+ - listitem: "ter the: 1 repetitions"
1672
+ - listitem: "the finest: 1 repetitions"
1673
+ - listitem: "years there: 1 repetitions"
1674
+ - listitem: "there and: 1 repetitions"
1675
+ - listitem: "with youngsters: 1 repetitions"
1676
+ - listitem: "he thundered: 1 repetitions"
1677
+ - listitem: "thundered,: 1 repetitions"
1678
+ - listitem: "brought the: 1 repetitions"
1679
+ - listitem: "the umbrella: 1 repetitions"
1680
+ - listitem: "down through: 1 repetitions"
1681
+ - listitem: "spot with: 1 repetitions"
1682
+ - listitem: "on them: 1 repetitions"
1683
+ - listitem: "poking through: 1 repetitions"
1684
+ - listitem: "other room: 1 repetitions"
1685
+ - listitem: "anyway there: 1 repetitions"
1686
+ - listitem: "mention that: 1 repetitions"
1687
+ - listitem: "that ter: 1 repetitions"
1688
+ - listitem: "the reasons: 1 repetitions"
1689
+ - listitem: "the job: 1 repetitions"
1690
+ - listitem: "truth: 1 repetitions"
1691
+ - listitem: "third: 1 repetitions"
1692
+ - listitem: "yeh the: 1 repetitions"
1693
+ - listitem: "the truth: 1 repetitions"
1694
+ - listitem: "truth.: 1 repetitions"
1695
+ - listitem: "me third: 1 repetitions"
1696
+ - listitem: "third year: 1 repetitions"
1697
+ - listitem: "They snapped: 1 repetitions"
1698
+ - listitem: "' everything: 1 repetitions"
1699
+ - listitem: "everything.: 1 repetitions"
1700
+ - listitem: "thick black: 1 repetitions"
1701
+ - listitem: "under that: 1 repetitions"
1702
+ - listitem: "early the: 1 repetitions"
static/tests/test-classic-1-lite.koboldai.net.spec.ts-snapshots/test-classic-1--desc-n-words-ngram.txt ADDED
@@ -0,0 +1,1702 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - text: /'th', \d+ occurrences/
2
+ - listitem: "the boy: 7 repetitions"
3
+ - listitem: "say that: 2 repetitions"
4
+ - listitem: "that they: 3 repetitions"
5
+ - listitem: "/they were: \\d+ repetitions/"
6
+ - listitem: ", thank: 3 repetitions"
7
+ - listitem: "thank you: 3 repetitions"
8
+ - listitem: "/\\. They: \\d+ repetitions/"
9
+ - listitem: "were the: 3 repetitions"
10
+ - listitem: "the last: 2 repetitions"
11
+ - listitem: "in anything: 2 repetitions"
12
+ - listitem: "anything strange: 1 repetitions"
13
+ - listitem: "because they: 1 repetitions"
14
+ - listitem: "they just: 1 repetitions"
15
+ - listitem: "hold with: 1 repetitions"
16
+ - listitem: "with such: 3 repetitions"
17
+ - listitem: "/was the: \\d+ repetitions/"
18
+ - listitem: "the director: 1 repetitions"
19
+ - listitem: "man with: 1 repetitions"
20
+ - listitem: "with hardly: 1 repetitions"
21
+ - listitem: ", although: 2 repetitions"
22
+ - listitem: "although he: 3 repetitions"
23
+ - listitem: "was thin: 1 repetitions"
24
+ - listitem: "thin and: 1 repetitions"
25
+ - listitem: "twice the: 1 repetitions"
26
+ - listitem: "the usual: 2 repetitions"
27
+ - listitem: "/on the: \\d+ repetitions/"
28
+ - listitem: "the neighbors: 2 repetitions"
29
+ - listitem: "/\\. The: \\d+ repetitions/"
30
+ - listitem: "/the Dursleys: \\d+ repetitions/"
31
+ - listitem: "in their: 3 repetitions"
32
+ - listitem: "their opinion: 1 repetitions"
33
+ - listitem: "opinion there: 1 repetitions"
34
+ - listitem: "/there was: \\d+ repetitions/"
35
+ - listitem: "had everything: 1 repetitions"
36
+ - listitem: "everything they: 1 repetitions"
37
+ - listitem: "they wanted: 1 repetitions"
38
+ - listitem: "but they: 6 repetitions"
39
+ - listitem: "they also: 2 repetitions"
40
+ - listitem: "and their: 2 repetitions"
41
+ - listitem: "their greatest: 1 repetitions"
42
+ - listitem: "was that: 5 repetitions"
43
+ - listitem: "that somebody: 1 repetitions"
44
+ - listitem: "they didn: 4 repetitions"
45
+ - listitem: "t think: 5 repetitions"
46
+ - listitem: "think they: 3 repetitions"
47
+ - listitem: "they could: 6 repetitions"
48
+ - listitem: "about the: 6 repetitions"
49
+ - listitem: "/the Potters: \\d+ repetitions/"
50
+ - listitem: "they hadn: 1 repetitions"
51
+ - listitem: "her good-for-nothing: 1 repetitions"
52
+ - listitem: "good-for-nothing husband: 1 repetitions"
53
+ - listitem: "to think: 6 repetitions"
54
+ - listitem: "think what: 1 repetitions"
55
+ - listitem: "what the: 1 repetitions"
56
+ - listitem: "if the: 4 repetitions"
57
+ - listitem: "/in the: \\d+ repetitions/"
58
+ - listitem: "/the street: \\d+ repetitions/"
59
+ - listitem: "knew that: 3 repetitions"
60
+ - listitem: "that the: 9 repetitions"
61
+ - listitem: "they had: 5 repetitions"
62
+ - listitem: "this boy: 3 repetitions"
63
+ - listitem: "was another: 1 repetitions"
64
+ - listitem: "another good: 1 repetitions"
65
+ - listitem: "keeping the: 1 repetitions"
66
+ - listitem: "; they: 3 repetitions"
67
+ - listitem: "mixing with: 1 repetitions"
68
+ - listitem: "/with a: \\d+ repetitions/"
69
+ - listitem: "like that: 4 repetitions"
70
+ - listitem: "that.: 3 repetitions"
71
+ - listitem: "the dull: 1 repetitions"
72
+ - listitem: ", there: 8 repetitions"
73
+ - listitem: "was nothing: 2 repetitions"
74
+ - listitem: "nothing about: 1 repetitions"
75
+ - listitem: "the cloudy: 1 repetitions"
76
+ - listitem: "suggest that: 1 repetitions"
77
+ - listitem: "that strange: 1 repetitions"
78
+ - listitem: "mysterious things: 1 repetitions"
79
+ - listitem: "things would: 1 repetitions"
80
+ - listitem: "/over the: \\d+ repetitions/"
81
+ - listitem: "the country: 2 repetitions"
82
+ - listitem: "/of them: \\d+ repetitions/"
83
+ - listitem: "them noticed: 1 repetitions"
84
+ - listitem: "past the: 1 repetitions"
85
+ - listitem: "the window: 2 repetitions"
86
+ - listitem: "the cheek: 1 repetitions"
87
+ - listitem: "and throwing: 1 repetitions"
88
+ - listitem: "throwing his: 1 repetitions"
89
+ - listitem: "/at the: \\d+ repetitions/"
90
+ - listitem: "the wall: 9 repetitions"
91
+ - listitem: "left the: 2 repetitions"
92
+ - listitem: "/the house: \\d+ repetitions/"
93
+ - listitem: "the corner: 8 repetitions"
94
+ - listitem: "/of the: \\d+ repetitions/"
95
+ - listitem: "street that: 1 repetitions"
96
+ - listitem: "that he: 9 repetitions"
97
+ - listitem: "noticed the: 1 repetitions"
98
+ - listitem: "/the first: \\d+ repetitions/"
99
+ - listitem: "of something: 2 repetitions"
100
+ - listitem: "something peculiar: 1 repetitions"
101
+ - listitem: "— then: 2 repetitions"
102
+ - listitem: "Then he: 5 repetitions"
103
+ - listitem: ". There: 7 repetitions"
104
+ - listitem: "but there: 2 repetitions"
105
+ - listitem: "there wasn: 3 repetitions"
106
+ - listitem: "been thinking: 2 repetitions"
107
+ - listitem: "think of: 3 repetitions"
108
+ - listitem: "the lights: 4 repetitions"
109
+ - listitem: "/the cat: \\d+ repetitions/"
110
+ - listitem: "around the: 8 repetitions"
111
+ - listitem: "up the: 8 repetitions"
112
+ - listitem: "the road: 4 repetitions"
113
+ - listitem: "watched the: 2 repetitions"
114
+ - listitem: "read the: 3 repetitions"
115
+ - listitem: "the sign: 3 repetitions"
116
+ - listitem: "sign that: 1 repetitions"
117
+ - listitem: "that said: 2 repetitions"
118
+ - listitem: "put the: 3 repetitions"
119
+ - listitem: "he thought: 6 repetitions"
120
+ - listitem: "thought of: 1 repetitions"
121
+ - listitem: "of nothing: 1 repetitions"
122
+ - listitem: "nothing except: 1 repetitions"
123
+ - listitem: "get that: 3 repetitions"
124
+ - listitem: "that day: 2 repetitions"
125
+ - listitem: "the edge: 3 repetitions"
126
+ - listitem: "by something: 1 repetitions"
127
+ - listitem: "something else: 2 repetitions"
128
+ - listitem: "noticing that: 1 repetitions"
129
+ - listitem: "that there: 1 repetitions"
130
+ - listitem: "there seemed: 1 repetitions"
131
+ - listitem: "funny clothes: 1 repetitions"
132
+ - listitem: "clothes —: 1 repetitions"
133
+ - listitem: "— the: 4 repetitions"
134
+ - listitem: "the getups: 1 repetitions"
135
+ - listitem: "supposed this: 1 repetitions"
136
+ - listitem: "this was: 8 repetitions"
137
+ - listitem: "the steering: 1 repetitions"
138
+ - listitem: "of these: 3 repetitions"
139
+ - listitem: "these weirdos: 1 repetitions"
140
+ - listitem: "excitedly together: 1 repetitions"
141
+ - listitem: "together.: 3 repetitions"
142
+ - listitem: "see that: 1 repetitions"
143
+ - listitem: "that a: 1 repetitions"
144
+ - listitem: "them weren: 1 repetitions"
145
+ - listitem: ", that: 8 repetitions"
146
+ - listitem: "that man: 1 repetitions"
147
+ - listitem: "older than: 1 repetitions"
148
+ - listitem: "than he: 4 repetitions"
149
+ - listitem: "! The: 1 repetitions"
150
+ - listitem: "The nerve: 1 repetitions"
151
+ - listitem: "But then: 1 repetitions"
152
+ - listitem: "then it: 1 repetitions"
153
+ - listitem: "Dursley that: 1 repetitions"
154
+ - listitem: "that this: 2 repetitions"
155
+ - listitem: "— these: 1 repetitions"
156
+ - listitem: "these people: 4 repetitions"
157
+ - listitem: "for something: 4 repetitions"
158
+ - listitem: "something ...: 1 repetitions"
159
+ - listitem: "that would: 1 repetitions"
160
+ - listitem: "The traffic: 1 repetitions"
161
+ - listitem: "the Grunnings: 1 repetitions"
162
+ - listitem: "sat with: 1 repetitions"
163
+ - listitem: "/with his: \\d+ repetitions/"
164
+ - listitem: "/to the: \\d+ repetitions/"
165
+ - listitem: "the ninth: 1 repetitions"
166
+ - listitem: "ninth floor: 1 repetitions"
167
+ - listitem: "drills that: 2 repetitions"
168
+ - listitem: "that morning: 2 repetitions"
169
+ - listitem: "see the: 2 repetitions"
170
+ - listitem: "the owls: 7 repetitions"
171
+ - listitem: ", though: 5 repetitions"
172
+ - listitem: "though people: 1 repetitions"
173
+ - listitem: "they pointed: 1 repetitions"
174
+ - listitem: "gazed open-mouthed: 1 repetitions"
175
+ - listitem: "open-mouthed as: 1 repetitions"
176
+ - listitem: "them had: 1 repetitions"
177
+ - listitem: "thought he: 5 repetitions"
178
+ - listitem: "across the: 3 repetitions"
179
+ - listitem: "/from the: \\d+ repetitions/"
180
+ - listitem: "the bakery: 1 repetitions"
181
+ - listitem: "the people: 3 repetitions"
182
+ - listitem: "them next: 1 repetitions"
183
+ - listitem: "the baker: 1 repetitions"
184
+ - listitem: "eyed them: 1 repetitions"
185
+ - listitem: "them angrily: 1 repetitions"
186
+ - listitem: "they made: 1 repetitions"
187
+ - listitem: ". This: 6 repetitions"
188
+ - listitem: "This bunch: 1 repetitions"
189
+ - listitem: "past them: 1 repetitions"
190
+ - listitem: "/them,: \\d+ repetitions/"
191
+ - listitem: "what they: 2 repetitions"
192
+ - listitem: "\"The: 5 repetitions"
193
+ - listitem: "/that': \\d+ repetitions/"
194
+ - listitem: ", their: 1 repetitions"
195
+ - listitem: "their son: 2 repetitions"
196
+ - listitem: "the whisperers: 1 repetitions"
197
+ - listitem: "say something: 2 repetitions"
198
+ - listitem: "something to: 4 repetitions"
199
+ - listitem: "to them: 2 repetitions"
200
+ - listitem: "but thought: 2 repetitions"
201
+ - listitem: "thought better: 1 repetitions"
202
+ - listitem: "the receiver: 1 repetitions"
203
+ - listitem: ", thinking: 1 repetitions"
204
+ - listitem: "thinking ...: 2 repetitions"
205
+ - listitem: "sure there: 2 repetitions"
206
+ - listitem: "there were: 4 repetitions"
207
+ - listitem: "seen the: 1 repetitions"
208
+ - listitem: "that ...: 1 repetitions"
209
+ - listitem: "/all the: \\d+ repetitions/"
210
+ - listitem: "/the same: \\d+ repetitions/"
211
+ - listitem: ", those: 1 repetitions"
212
+ - listitem: "those people: 1 repetitions"
213
+ - listitem: "that afternoon: 2 repetitions"
214
+ - listitem: "the building: 1 repetitions"
215
+ - listitem: "worried that: 1 repetitions"
216
+ - listitem: "outside the: 4 repetitions"
217
+ - listitem: "/the door: \\d+ repetitions/"
218
+ - listitem: "as the: 5 repetitions"
219
+ - listitem: "the tiny: 1 repetitions"
220
+ - listitem: "realized that: 3 repetitions"
221
+ - listitem: "the man: 3 repetitions"
222
+ - listitem: "the ground: 4 repetitions"
223
+ - listitem: "the contrary: 1 repetitions"
224
+ - listitem: "voice that: 2 repetitions"
225
+ - listitem: "that made: 2 repetitions"
226
+ - listitem: "for nothing: 1 repetitions"
227
+ - listitem: "nothing could: 1 repetitions"
228
+ - listitem: ", this: 3 repetitions"
229
+ - listitem: "this happy: 1 repetitions"
230
+ - listitem: "/and the: \\d+ repetitions/"
231
+ - listitem: "the old: 1 repetitions"
232
+ - listitem: "the middle: 3 repetitions"
233
+ - listitem: "the spot: 2 repetitions"
234
+ - listitem: "also thought: 1 repetitions"
235
+ - listitem: "whatever that: 1 repetitions"
236
+ - listitem: "that was: 7 repetitions"
237
+ - listitem: "imagining things: 2 repetitions"
238
+ - listitem: "things,: 2 repetitions"
239
+ - listitem: "/into the: \\d+ repetitions/"
240
+ - listitem: "the driveway: 1 repetitions"
241
+ - listitem: "/, the: \\d+ repetitions/"
242
+ - listitem: "first thing: 1 repetitions"
243
+ - listitem: "thing he: 1 repetitions"
244
+ - listitem: "the tabby: 2 repetitions"
245
+ - listitem: "spotted that: 1 repetitions"
246
+ - listitem: "had the: 3 repetitions"
247
+ - listitem: "Was this: 2 repetitions"
248
+ - listitem: "this normal: 1 repetitions"
249
+ - listitem: "himself together: 1 repetitions"
250
+ - listitem: "together,: 2 repetitions"
251
+ - listitem: "mention anything: 1 repetitions"
252
+ - listitem: "anything to: 3 repetitions"
253
+ - listitem: "problems with: 1 repetitions"
254
+ - listitem: "with her: 2 repetitions"
255
+ - listitem: "the living: 4 repetitions"
256
+ - listitem: "catch the: 1 repetitions"
257
+ - listitem: "the evening: 1 repetitions"
258
+ - listitem: "reported that: 1 repetitions"
259
+ - listitem: "the nation: 1 repetitions"
260
+ - listitem: ". Although: 2 repetitions"
261
+ - listitem: "Although owls: 1 repetitions"
262
+ - listitem: "there have: 1 repetitions"
263
+ - listitem: "these birds: 1 repetitions"
264
+ - listitem: "why the: 1 repetitions"
265
+ - listitem: "changed their: 1 repetitions"
266
+ - listitem: "their sleeping: 1 repetitions"
267
+ - listitem: "The newscaster: 1 repetitions"
268
+ - listitem: "McGuffin with: 1 repetitions"
269
+ - listitem: "/with the: \\d+ repetitions/"
270
+ - listitem: "the weather: 1 repetitions"
271
+ - listitem: "weather.: 1 repetitions"
272
+ - listitem: "said the: 7 repetitions"
273
+ - listitem: "the weatherman: 1 repetitions"
274
+ - listitem: "weatherman,: 1 repetitions"
275
+ - listitem: "about that: 2 repetitions"
276
+ - listitem: "that,: 5 repetitions"
277
+ - listitem: "Only the: 3 repetitions"
278
+ - listitem: "owls that: 1 repetitions"
279
+ - listitem: "that have: 1 repetitions"
280
+ - listitem: "me that: 1 repetitions"
281
+ - listitem: "that instead: 1 repetitions"
282
+ - listitem: "the rain: 1 repetitions"
283
+ - listitem: "/, they: \\d+ repetitions/"
284
+ - listitem: "/they': \\d+ repetitions/"
285
+ - listitem: "the place: 3 repetitions"
286
+ - listitem: "his throat: 1 repetitions"
287
+ - listitem: "throat nervously: 1 repetitions"
288
+ - listitem: "they normally: 1 repetitions"
289
+ - listitem: "the news: 2 repetitions"
290
+ - listitem: "and there: 1 repetitions"
291
+ - listitem: "just thought: 1 repetitions"
292
+ - listitem: "thought ...: 1 repetitions"
293
+ - listitem: "was something: 2 repetitions"
294
+ - listitem: "do with: 6 repetitions"
295
+ - listitem: "with ...: 1 repetitions"
296
+ - listitem: "tea through: 1 repetitions"
297
+ - listitem: "through pursed: 1 repetitions"
298
+ - listitem: "wondered whether: 1 repetitions"
299
+ - listitem: "whether he: 1 repetitions"
300
+ - listitem: "heard the: 2 repetitions"
301
+ - listitem: "the name: 3 repetitions"
302
+ - listitem: "\"Their: 1 repetitions"
303
+ - listitem: "say another: 1 repetitions"
304
+ - listitem: "another word: 1 repetitions"
305
+ - listitem: "the subject: 1 repetitions"
306
+ - listitem: "as they: 6 repetitions"
307
+ - listitem: "they went: 3 repetitions"
308
+ - listitem: "the bathroom: 1 repetitions"
309
+ - listitem: "bathroom,: 1 repetitions"
310
+ - listitem: "the bedroom: 1 repetitions"
311
+ - listitem: "the front: 8 repetitions"
312
+ - listitem: "still there: 2 repetitions"
313
+ - listitem: "there.: 6 repetitions"
314
+ - listitem: "/as though: \\d+ repetitions/"
315
+ - listitem: "though it: 2 repetitions"
316
+ - listitem: "something.: 4 repetitions"
317
+ - listitem: "things?: 1 repetitions"
318
+ - listitem: "all this: 5 repetitions"
319
+ - listitem: "this have: 1 repetitions"
320
+ - listitem: "have anything: 1 repetitions"
321
+ - listitem: "out that: 2 repetitions"
322
+ - listitem: "think he: 2 repetitions"
323
+ - listitem: "comforting thought: 1 repetitions"
324
+ - listitem: "thought before: 1 repetitions"
325
+ - listitem: "That evening: 3 repetitions"
326
+ - listitem: "for them: 1 repetitions"
327
+ - listitem: "them to: 1 repetitions"
328
+ - listitem: "Petunia thought: 1 repetitions"
329
+ - listitem: "thought about: 1 repetitions"
330
+ - listitem: "about them: 2 repetitions"
331
+ - listitem: "them and: 2 repetitions"
332
+ - listitem: "their kind: 1 repetitions"
333
+ - listitem: "anything that: 2 repetitions"
334
+ - listitem: "that might: 1 repetitions"
335
+ - listitem: "affect them: 1 repetitions"
336
+ - listitem: "/them\\.: \\d+ repetitions/"
337
+ - listitem: "but the: 6 repetitions"
338
+ - listitem: "the far: 1 repetitions"
339
+ - listitem: "/the next: \\d+ repetitions/"
340
+ - listitem: "before the: 2 repetitions"
341
+ - listitem: "corner the: 1 repetitions"
342
+ - listitem: "have thought: 1 repetitions"
343
+ - listitem: "Nothing like: 1 repetitions"
344
+ - listitem: "like this: 2 repetitions"
345
+ - listitem: "this man: 2 repetitions"
346
+ - listitem: ", thin: 3 repetitions"
347
+ - listitem: "thin,: 1 repetitions"
348
+ - listitem: "/by the: \\d+ repetitions/"
349
+ - listitem: "the silver: 2 repetitions"
350
+ - listitem: "were both: 1 repetitions"
351
+ - listitem: "both long: 1 repetitions"
352
+ - listitem: "cloak that: 1 repetitions"
353
+ - listitem: "that swept: 1 repetitions"
354
+ - listitem: "swept the: 1 repetitions"
355
+ - listitem: "where everything: 1 repetitions"
356
+ - listitem: "everything from: 1 repetitions"
357
+ - listitem: "the other: 7 repetitions"
358
+ - listitem: "other end: 2 repetitions"
359
+ - listitem: "the sight: 1 repetitions"
360
+ - listitem: "the air: 6 repetitions"
361
+ - listitem: "The nearest: 2 repetitions"
362
+ - listitem: "out with: 2 repetitions"
363
+ - listitem: "clicked the: 1 repetitions"
364
+ - listitem: "the Put-Outer: 1 repetitions"
365
+ - listitem: "until the: 1 repetitions"
366
+ - listitem: "the only: 9 repetitions"
367
+ - listitem: "the whole: 5 repetitions"
368
+ - listitem: "the distance: 1 repetitions"
369
+ - listitem: "the eyes: 1 repetitions"
370
+ - listitem: "of their: 3 repetitions"
371
+ - listitem: "their window: 1 repetitions"
372
+ - listitem: "they wouldn: 1 repetitions"
373
+ - listitem: "see anything: 1 repetitions"
374
+ - listitem: "the pavement: 1 repetitions"
375
+ - listitem: "slipped the: 1 repetitions"
376
+ - listitem: "the Put-: 1 repetitions"
377
+ - listitem: "down the: 9 repetitions"
378
+ - listitem: "a rather: 2 repetitions"
379
+ - listitem: "rather severe-looking: 1 repetitions"
380
+ - listitem: "exactly the: 2 repetitions"
381
+ - listitem: "the shape: 1 repetitions"
382
+ - listitem: "the markings: 1 repetitions"
383
+ - listitem: "markings the: 1 repetitions"
384
+ - listitem: "d think: 1 repetitions"
385
+ - listitem: "even the: 1 repetitions"
386
+ - listitem: "the Muggles: 4 repetitions"
387
+ - listitem: "noticed something: 2 repetitions"
388
+ - listitem: "something': 1 repetitions"
389
+ - listitem: "on their: 2 repetitions"
390
+ - listitem: "their news: 1 repetitions"
391
+ - listitem: "bet that: 1 repetitions"
392
+ - listitem: "blame them: 1 repetitions"
393
+ - listitem: "know that: 2 repetitions"
394
+ - listitem: "But that: 1 repetitions"
395
+ - listitem: "Muggle clothes: 1 repetitions"
396
+ - listitem: "clothes,: 1 repetitions"
397
+ - listitem: "She threw: 1 repetitions"
398
+ - listitem: "threw a: 2 repetitions"
399
+ - listitem: "though hoping: 1 repetitions"
400
+ - listitem: "her something: 1 repetitions"
401
+ - listitem: "something,: 1 repetitions"
402
+ - listitem: "fine thing: 1 repetitions"
403
+ - listitem: "thing it: 1 repetitions"
404
+ - listitem: "the very: 3 repetitions"
405
+ - listitem: "be thankful: 1 repetitions"
406
+ - listitem: "thankful for: 1 repetitions"
407
+ - listitem: "m rather: 1 repetitions"
408
+ - listitem: "rather fond: 1 repetitions"
409
+ - listitem: "though she: 5 repetitions"
410
+ - listitem: "think this: 1 repetitions"
411
+ - listitem: "the moment: 4 repetitions"
412
+ - listitem: "this You-: 1 repetitions"
413
+ - listitem: "re the: 2 repetitions"
414
+ - listitem: "use them: 1 repetitions"
415
+ - listitem: "are nothing: 1 repetitions"
416
+ - listitem: "nothing next: 1 repetitions"
417
+ - listitem: "the rumors: 2 repetitions"
418
+ - listitem: "rumors that: 1 repetitions"
419
+ - listitem: "that are: 1 repetitions"
420
+ - listitem: "seemed that: 1 repetitions"
421
+ - listitem: "that Professor: 1 repetitions"
422
+ - listitem: "reached the: 2 repetitions"
423
+ - listitem: "the point: 2 repetitions"
424
+ - listitem: "the real: 2 repetitions"
425
+ - listitem: "for neither: 1 repetitions"
426
+ - listitem: "neither as: 1 repetitions"
427
+ - listitem: "Dumbledore with: 1 repetitions"
428
+ - listitem: "plain that: 1 repetitions"
429
+ - listitem: "that whatever: 1 repetitions"
430
+ - listitem: "choosing another: 1 repetitions"
431
+ - listitem: "another lemon: 1 repetitions"
432
+ - listitem: "is that: 4 repetitions"
433
+ - listitem: "that last: 1 repetitions"
434
+ - listitem: "find the: 3 repetitions"
435
+ - listitem: "that Lily: 1 repetitions"
436
+ - listitem: "— that: 3 repetitions"
437
+ - listitem: "the shoulder: 1 repetitions"
438
+ - listitem: "\"That: 8 repetitions"
439
+ - listitem: "kill the: 1 repetitions"
440
+ - listitem: "kill that: 1 repetitions"
441
+ - listitem: "that little: 1 repetitions"
442
+ - listitem: "that when: 1 repetitions"
443
+ - listitem: "and that: 2 repetitions"
444
+ - listitem: "the things: 2 repetitions"
445
+ - listitem: "things to: 2 repetitions"
446
+ - listitem: "eyes beneath: 1 repetitions"
447
+ - listitem: "beneath her: 1 repetitions"
448
+ - listitem: "though,: 1 repetitions"
449
+ - listitem: "/the way: \\d+ repetitions/"
450
+ - listitem: "mean the: 1 repetitions"
451
+ - listitem: "watching them: 1 repetitions"
452
+ - listitem: "them all: 3 repetitions"
453
+ - listitem: "And they: 4 repetitions"
454
+ - listitem: "got this: 1 repetitions"
455
+ - listitem: "this son: 1 repetitions"
456
+ - listitem: "/his mother: \\d+ repetitions/"
457
+ - listitem: "mother all: 1 repetitions"
458
+ - listitem: "s the: 4 repetitions"
459
+ - listitem: "the best: 3 repetitions"
460
+ - listitem: "explain everything: 1 repetitions"
461
+ - listitem: "everything to: 1 repetitions"
462
+ - listitem: "written them: 1 repetitions"
463
+ - listitem: "them a: 1 repetitions"
464
+ - listitem: "you think: 2 repetitions"
465
+ - listitem: "think you: 2 repetitions"
466
+ - listitem: "this in: 1 repetitions"
467
+ - listitem: "? These: 1 repetitions"
468
+ - listitem: "the future: 1 repetitions"
469
+ - listitem: "— there: 2 repetitions"
470
+ - listitem: "there will: 1 repetitions"
471
+ - listitem: "the top: 3 repetitions"
472
+ - listitem: "something he: 2 repetitions"
473
+ - listitem: "all that: 2 repetitions"
474
+ - listitem: "that until: 1 repetitions"
475
+ - listitem: "her mouth: 1 repetitions"
476
+ - listitem: "mouth,: 2 repetitions"
477
+ - listitem: "/and then: \\d+ repetitions/"
478
+ - listitem: "then said: 2 repetitions"
479
+ - listitem: "is the: 2 repetitions"
480
+ - listitem: "she thought: 1 repetitions"
481
+ - listitem: "Harry underneath: 1 repetitions"
482
+ - listitem: "underneath it: 1 repetitions"
483
+ - listitem: "think it: 2 repetitions"
484
+ - listitem: "Hagrid with: 2 repetitions"
485
+ - listitem: "with something: 1 repetitions"
486
+ - listitem: "something as: 1 repetitions"
487
+ - listitem: "as this: 1 repetitions"
488
+ - listitem: "this?: 2 repetitions"
489
+ - listitem: "with my: 1 repetitions"
490
+ - listitem: "the right: 2 repetitions"
491
+ - listitem: "that?: 2 repetitions"
492
+ - listitem: "broken the: 1 repetitions"
493
+ - listitem: "the silence: 1 repetitions"
494
+ - listitem: "around them: 2 repetitions"
495
+ - listitem: "they looked: 1 repetitions"
496
+ - listitem: "they both: 1 repetitions"
497
+ - listitem: "both looked: 1 repetitions"
498
+ - listitem: "the sky: 1 repetitions"
499
+ - listitem: "the motorcycle: 3 repetitions"
500
+ - listitem: "nothing to: 1 repetitions"
501
+ - listitem: "hands the: 1 repetitions"
502
+ - listitem: "the size: 1 repetitions"
503
+ - listitem: "their leather: 1 repetitions"
504
+ - listitem: "leather boots: 1 repetitions"
505
+ - listitem: "that motorcycle: 1 repetitions"
506
+ - listitem: "/the giant: \\d+ repetitions/"
507
+ - listitem: "off the: 3 repetitions"
508
+ - listitem: "were there: 2 repetitions"
509
+ - listitem: "there?: 3 repetitions"
510
+ - listitem: "the bundle: 2 repetitions"
511
+ - listitem: "forehead they: 1 repetitions"
512
+ - listitem: "that where: 1 repetitions"
513
+ - listitem: "have that: 1 repetitions"
514
+ - listitem: "that scar: 1 repetitions"
515
+ - listitem: "do something: 1 repetitions"
516
+ - listitem: "something about: 1 repetitions"
517
+ - listitem: "knee that: 1 repetitions"
518
+ - listitem: "that is: 1 repetitions"
519
+ - listitem: "the London: 1 repetitions"
520
+ - listitem: "get this: 2 repetitions"
521
+ - listitem: "this over: 1 repetitions"
522
+ - listitem: "over with: 1 repetitions"
523
+ - listitem: "with.: 1 repetitions"
524
+ - listitem: "toward the: 4 repetitions"
525
+ - listitem: ". Then: 5 repetitions"
526
+ - listitem: "then,: 7 repetitions"
527
+ - listitem: "wake the: 2 repetitions"
528
+ - listitem: "live with: 2 repetitions"
529
+ - listitem: "with Muggles: 1 repetitions"
530
+ - listitem: "the arm: 1 repetitions"
531
+ - listitem: "the low: 2 repetitions"
532
+ - listitem: "then came: 1 repetitions"
533
+ - listitem: "other two: 1 repetitions"
534
+ - listitem: "minute the: 1 repetitions"
535
+ - listitem: "the three: 1 repetitions"
536
+ - listitem: "three of: 1 repetitions"
537
+ - listitem: "them stood: 1 repetitions"
538
+ - listitem: "the little: 1 repetitions"
539
+ - listitem: "the twinkling: 1 repetitions"
540
+ - listitem: "light that: 1 repetitions"
541
+ - listitem: "that usually: 1 repetitions"
542
+ - listitem: "s that: 3 repetitions"
543
+ - listitem: "join the: 1 repetitions"
544
+ - listitem: "the celebrations: 1 repetitions"
545
+ - listitem: "this bike: 1 repetitions"
546
+ - listitem: "onto the: 2 repetitions"
547
+ - listitem: "kicked the: 1 repetitions"
548
+ - listitem: "the engine: 1 repetitions"
549
+ - listitem: "; with: 1 repetitions"
550
+ - listitem: "the night: 3 repetitions"
551
+ - listitem: "out the: 3 repetitions"
552
+ - listitem: "to their: 3 repetitions"
553
+ - listitem: "their street: 1 repetitions"
554
+ - listitem: "so that: 3 repetitions"
555
+ - listitem: "that Privet: 1 repetitions"
556
+ - listitem: "the step: 1 repetitions"
557
+ - listitem: "and with: 2 repetitions"
558
+ - listitem: "ruffled the: 1 repetitions"
559
+ - listitem: "the neat: 1 repetitions"
560
+ - listitem: "under the: 7 repetitions"
561
+ - listitem: "the inky: 1 repetitions"
562
+ - listitem: "astonishing things: 1 repetitions"
563
+ - listitem: "blankets without: 1 repetitions"
564
+ - listitem: "without waking: 1 repetitions"
565
+ - listitem: "/the letter: \\d+ repetitions/"
566
+ - listitem: "open the: 4 repetitions"
567
+ - listitem: "the milk: 1 repetitions"
568
+ - listitem: "nor that: 1 repetitions"
569
+ - listitem: "spend the: 2 repetitions"
570
+ - listitem: "that at: 1 repetitions"
571
+ - listitem: "at this: 2 repetitions"
572
+ - listitem: "this very: 1 repetitions"
573
+ - listitem: "up their: 1 repetitions"
574
+ - listitem: "their glasses: 1 repetitions"
575
+ - listitem: "THE VANASHIG: 1 repetitions"
576
+ - listitem: "since the: 1 repetitions"
577
+ - listitem: "find their: 1 repetitions"
578
+ - listitem: "their nephew: 1 repetitions"
579
+ - listitem: "The sun: 1 repetitions"
580
+ - listitem: "the brass: 1 repetitions"
581
+ - listitem: "into their: 1 repetitions"
582
+ - listitem: "their living: 1 repetitions"
583
+ - listitem: "seen that: 1 repetitions"
584
+ - listitem: "that fateful: 1 repetitions"
585
+ - listitem: "the photographs: 2 repetitions"
586
+ - listitem: "the mantelpiece: 1 repetitions"
587
+ - listitem: "there had: 3 repetitions"
588
+ - listitem: "now the: 1 repetitions"
589
+ - listitem: "the fair: 1 repetitions"
590
+ - listitem: "game with: 1 repetitions"
591
+ - listitem: "his father: 6 repetitions"
592
+ - listitem: "father,: 2 repetitions"
593
+ - listitem: "mother.: 4 repetitions"
594
+ - listitem: "the room: 6 repetitions"
595
+ - listitem: "that another: 1 repetitions"
596
+ - listitem: "another boy: 1 repetitions"
597
+ - listitem: "there,: 4 repetitions"
598
+ - listitem: "made the: 1 repetitions"
599
+ - listitem: "the day: 4 repetitions"
600
+ - listitem: "woke with: 1 repetitions"
601
+ - listitem: "/the kitchen: \\d+ repetitions/"
602
+ - listitem: "then the: 1 repetitions"
603
+ - listitem: "the sound: 3 repetitions"
604
+ - listitem: "the frying: 1 repetitions"
605
+ - listitem: "the stove: 1 repetitions"
606
+ - listitem: "remember the: 1 repetitions"
607
+ - listitem: "the dream: 1 repetitions"
608
+ - listitem: "after the: 1 repetitions"
609
+ - listitem: "the bacon: 2 repetitions"
610
+ - listitem: "want everything: 1 repetitions"
611
+ - listitem: "everything perfect: 1 repetitions"
612
+ - listitem: "s birthday: 4 repetitions"
613
+ - listitem: "birthday.: 2 repetitions"
614
+ - listitem: "snapped through: 1 repetitions"
615
+ - listitem: "/through the: \\d+ repetitions/"
616
+ - listitem: "\"Nothing: 1 repetitions"
617
+ - listitem: "Nothing,: 1 repetitions"
618
+ - listitem: ", nothing: 2 repetitions"
619
+ - listitem: "nothing ...: 1 repetitions"
620
+ - listitem: "birthday —: 1 repetitions"
621
+ - listitem: "put them: 1 repetitions"
622
+ - listitem: "them on: 1 repetitions"
623
+ - listitem: "because the: 2 repetitions"
624
+ - listitem: "the cupboard: 3 repetitions"
625
+ - listitem: "the stairs: 2 repetitions"
626
+ - listitem: "the hall: 6 repetitions"
627
+ - listitem: "the table: 5 repetitions"
628
+ - listitem: "hidden beneath: 1 repetitions"
629
+ - listitem: "beneath all: 1 repetitions"
630
+ - listitem: "birthday presents: 1 repetitions"
631
+ - listitem: "though Dudley: 1 repetitions"
632
+ - listitem: "gotten the: 1 repetitions"
633
+ - listitem: "mention the: 1 repetitions"
634
+ - listitem: "the second: 3 repetitions"
635
+ - listitem: "the racing: 2 repetitions"
636
+ - listitem: "had something: 1 repetitions"
637
+ - listitem: "with living: 1 repetitions"
638
+ - listitem: "skinnier than: 1 repetitions"
639
+ - listitem: "old clothes: 2 repetitions"
640
+ - listitem: "clothes of: 1 repetitions"
641
+ - listitem: "bigger than: 1 repetitions"
642
+ - listitem: "a thin: 1 repetitions"
643
+ - listitem: "thin face: 1 repetitions"
644
+ - listitem: "held together: 1 repetitions"
645
+ - listitem: "together with: 1 repetitions"
646
+ - listitem: "the time: 6 repetitions"
647
+ - listitem: "the nose: 1 repetitions"
648
+ - listitem: "only thing: 2 repetitions"
649
+ - listitem: "thing Harry: 1 repetitions"
650
+ - listitem: "very thin: 1 repetitions"
651
+ - listitem: "thin scar: 1 repetitions"
652
+ - listitem: "forehead that: 1 repetitions"
653
+ - listitem: "the car: 9 repetitions"
654
+ - listitem: "life with: 1 repetitions"
655
+ - listitem: "entered the: 1 repetitions"
656
+ - listitem: "shouted that: 1 repetitions"
657
+ - listitem: "that Harry: 5 repetitions"
658
+ - listitem: "haircuts than: 1 repetitions"
659
+ - listitem: "than the: 1 repetitions"
660
+ - listitem: "the rest: 3 repetitions"
661
+ - listitem: "put together: 1 repetitions"
662
+ - listitem: "grew that: 1 repetitions"
663
+ - listitem: "that way: 1 repetitions"
664
+ - listitem: "kitchen with: 1 repetitions"
665
+ - listitem: "and thick: 2 repetitions"
666
+ - listitem: "thick blond: 1 repetitions"
667
+ - listitem: "hair that: 1 repetitions"
668
+ - listitem: "that lay: 1 repetitions"
669
+ - listitem: "lay smoothly: 1 repetitions"
670
+ - listitem: "smoothly on: 1 repetitions"
671
+ - listitem: "his thick: 2 repetitions"
672
+ - listitem: "thick,: 2 repetitions"
673
+ - listitem: "said that: 2 repetitions"
674
+ - listitem: "that Dudley: 5 repetitions"
675
+ - listitem: "the plates: 1 repetitions"
676
+ - listitem: "as there: 1 repetitions"
677
+ - listitem: "\"Thirty-six: 1 repetitions"
678
+ - listitem: "Thirty-six,: 1 repetitions"
679
+ - listitem: "mother and: 2 repetitions"
680
+ - listitem: "and father: 2 repetitions"
681
+ - listitem: "father.: 3 repetitions"
682
+ - listitem: "less than: 2 repetitions"
683
+ - listitem: "than last: 1 repetitions"
684
+ - listitem: "under this: 1 repetitions"
685
+ - listitem: "this big: 1 repetitions"
686
+ - listitem: ", thirty-seven: 1 repetitions"
687
+ - listitem: "thirty-seven then: 1 repetitions"
688
+ - listitem: "the face: 1 repetitions"
689
+ - listitem: "turned the: 2 repetitions"
690
+ - listitem: "you another: 1 repetitions"
691
+ - listitem: "another two: 1 repetitions"
692
+ - listitem: "that all: 2 repetitions"
693
+ - listitem: "Dudley thought: 2 repetitions"
694
+ - listitem: "thought for: 1 repetitions"
695
+ - listitem: "have thirty: 1 repetitions"
696
+ - listitem: "thirty ...: 2 repetitions"
697
+ - listitem: "... thirty: 1 repetitions"
698
+ - listitem: "\"Thirty-nine: 1 repetitions"
699
+ - listitem: "Thirty-nine,: 1 repetitions"
700
+ - listitem: "grabbed the: 2 repetitions"
701
+ - listitem: "right then: 1 repetitions"
702
+ - listitem: "then.: 2 repetitions"
703
+ - listitem: "s worth: 1 repetitions"
704
+ - listitem: "worth,: 1 repetitions"
705
+ - listitem: "at that: 3 repetitions"
706
+ - listitem: "that moment: 3 repetitions"
707
+ - listitem: "moment the: 1 repetitions"
708
+ - listitem: "the telephone: 3 repetitions"
709
+ - listitem: "unwrap the: 1 repetitions"
710
+ - listitem: "ripping the: 1 repetitions"
711
+ - listitem: "the paper: 1 repetitions"
712
+ - listitem: "looking both: 1 repetitions"
713
+ - listitem: "both angry: 1 repetitions"
714
+ - listitem: "s mouth: 1 repetitions"
715
+ - listitem: "mouth fell: 1 repetitions"
716
+ - listitem: "birthday,: 1 repetitions"
717
+ - listitem: "for the: 8 repetitions"
718
+ - listitem: "or the: 1 repetitions"
719
+ - listitem: "the movies: 1 repetitions"
720
+ - listitem: "behind with: 1 repetitions"
721
+ - listitem: "with Mrs: 1 repetitions"
722
+ - listitem: "it there: 1 repetitions"
723
+ - listitem: "though he: 8 repetitions"
724
+ - listitem: "planned this: 1 repetitions"
725
+ - listitem: "this.: 2 repetitions"
726
+ - listitem: "sorry that: 1 repetitions"
727
+ - listitem: "that Mrs: 1 repetitions"
728
+ - listitem: "hates the: 1 repetitions"
729
+ - listitem: "this,: 5 repetitions"
730
+ - listitem: "t there: 1 repetitions"
731
+ - listitem: "there —: 1 repetitions"
732
+ - listitem: "or rather: 1 repetitions"
733
+ - listitem: "rather,: 1 repetitions"
734
+ - listitem: "something very: 2 repetitions"
735
+ - listitem: "nasty that: 1 repetitions"
736
+ - listitem: "that couldn: 1 repetitions"
737
+ - listitem: "understand them: 1 repetitions"
738
+ - listitem: "they weren: 2 repetitions"
739
+ - listitem: "the zoo: 6 repetitions"
740
+ - listitem: "That cars: 2 repetitions"
741
+ - listitem: "that if: 1 repetitions"
742
+ - listitem: "mother would: 1 repetitions"
743
+ - listitem: "him anything: 1 repetitions"
744
+ - listitem: "anything he: 2 repetitions"
745
+ - listitem: "spoils everything: 1 repetitions"
746
+ - listitem: "everything!: 1 repetitions"
747
+ - listitem: "grin through: 1 repetitions"
748
+ - listitem: "the gap: 2 repetitions"
749
+ - listitem: "mothers arms: 1 repetitions"
750
+ - listitem: "Just then: 1 repetitions"
751
+ - listitem: "the doorbell: 1 repetitions"
752
+ - listitem: "in with: 1 repetitions"
753
+ - listitem: "boy with: 1 repetitions"
754
+ - listitem: "usually the: 1 repetitions"
755
+ - listitem: "the one: 1 repetitions"
756
+ - listitem: "behind their: 1 repetitions"
757
+ - listitem: "their backs: 1 repetitions"
758
+ - listitem: "hit them: 1 repetitions"
759
+ - listitem: "the back: 5 repetitions"
760
+ - listitem: "car with: 1 repetitions"
761
+ - listitem: "with Piers: 1 repetitions"
762
+ - listitem: "of anything: 1 repetitions"
763
+ - listitem: "anything else: 1 repetitions"
764
+ - listitem: "with him: 2 repetitions"
765
+ - listitem: "before they: 2 repetitions"
766
+ - listitem: ", anything: 1 repetitions"
767
+ - listitem: "anything at: 1 repetitions"
768
+ - listitem: "in that: 2 repetitions"
769
+ - listitem: "that cupboard: 1 repetitions"
770
+ - listitem: "do anything: 2 repetitions"
771
+ - listitem: "anything,: 2 repetitions"
772
+ - listitem: "The problem: 1 repetitions"
773
+ - listitem: "strange things: 1 repetitions"
774
+ - listitem: "things often: 1 repetitions"
775
+ - listitem: "telling the: 2 repetitions"
776
+ - listitem: "make them: 1 repetitions"
777
+ - listitem: "them happen: 1 repetitions"
778
+ - listitem: "the barbers: 1 repetitions"
779
+ - listitem: "hide that: 1 repetitions"
780
+ - listitem: "that horrible: 1 repetitions"
781
+ - listitem: "school the: 1 repetitions"
782
+ - listitem: "baggy clothes: 1 repetitions"
783
+ - listitem: "clothes and: 2 repetitions"
784
+ - listitem: "for this: 1 repetitions"
785
+ - listitem: "even though: 1 repetitions"
786
+ - listitem: "explain that: 1 repetitions"
787
+ - listitem: "Another time: 1 repetitions"
788
+ - listitem: "brown with: 1 repetitions"
789
+ - listitem: "with orange: 1 repetitions"
790
+ - listitem: "The harder: 1 repetitions"
791
+ - listitem: "the smaller: 1 repetitions"
792
+ - listitem: "the wash: 1 repetitions"
793
+ - listitem: "other hand: 2 repetitions"
794
+ - listitem: "the roof: 3 repetitions"
795
+ - listitem: "the school: 2 repetitions"
796
+ - listitem: "there he: 1 repetitions"
797
+ - listitem: "the chimney: 1 repetitions"
798
+ - listitem: "telling them: 3 repetitions"
799
+ - listitem: "them Harry: 1 repetitions"
800
+ - listitem: "Vernon through: 1 repetitions"
801
+ - listitem: "the locked: 1 repetitions"
802
+ - listitem: "behind the: 2 repetitions"
803
+ - listitem: "the big: 2 repetitions"
804
+ - listitem: "supposed that: 1 repetitions"
805
+ - listitem: "the wind: 2 repetitions"
806
+ - listitem: "nothing was: 1 repetitions"
807
+ - listitem: "even worth: 1 repetitions"
808
+ - listitem: "worth being: 1 repetitions"
809
+ - listitem: "be with: 3 repetitions"
810
+ - listitem: "with Dudley: 3 repetitions"
811
+ - listitem: "somewhere that: 1 repetitions"
812
+ - listitem: "that wasn: 1 repetitions"
813
+ - listitem: "about things: 1 repetitions"
814
+ - listitem: "things:: 1 repetitions"
815
+ - listitem: "the council: 1 repetitions"
816
+ - listitem: "the bank: 1 repetitions"
817
+ - listitem: "This morning: 1 repetitions"
818
+ - listitem: "the young: 1 repetitions"
819
+ - listitem: "overtook them: 1 repetitions"
820
+ - listitem: "beet with: 1 repetitions"
821
+ - listitem: "know they: 1 repetitions"
822
+ - listitem: "they don: 2 repetitions"
823
+ - listitem: "said anything: 1 repetitions"
824
+ - listitem: "anything.: 3 repetitions"
825
+ - listitem: "If there: 1 repetitions"
826
+ - listitem: "one thing: 2 repetitions"
827
+ - listitem: "thing the: 1 repetitions"
828
+ - listitem: "more than: 1 repetitions"
829
+ - listitem: "than his: 1 repetitions"
830
+ - listitem: "about anything: 2 repetitions"
831
+ - listitem: "anything acting: 1 repetitions"
832
+ - listitem: "— they: 1 repetitions"
833
+ - listitem: "they seemed: 3 repetitions"
834
+ - listitem: "crowded with: 1 repetitions"
835
+ - listitem: "with families: 1 repetitions"
836
+ - listitem: "the entrance: 1 repetitions"
837
+ - listitem: "the smiling: 1 repetitions"
838
+ - listitem: "the van: 1 repetitions"
839
+ - listitem: "they bought: 1 repetitions"
840
+ - listitem: ", either: 1 repetitions"
841
+ - listitem: "either,: 1 repetitions"
842
+ - listitem: "Harry thought: 2 repetitions"
843
+ - listitem: "thought,: 1 repetitions"
844
+ - listitem: "they watched: 1 repetitions"
845
+ - listitem: "except that: 1 repetitions"
846
+ - listitem: "that it: 3 repetitions"
847
+ - listitem: "bored with: 1 repetitions"
848
+ - listitem: "the animals: 1 repetitions"
849
+ - listitem: "their favorite: 1 repetitions"
850
+ - listitem: "They ate: 2 repetitions"
851
+ - listitem: "him another: 1 repetitions"
852
+ - listitem: "another one: 2 repetitions"
853
+ - listitem: "finish the: 1 repetitions"
854
+ - listitem: "lunch they: 1 repetitions"
855
+ - listitem: "the reptile: 3 repetitions"
856
+ - listitem: "in there: 3 repetitions"
857
+ - listitem: ", with: 4 repetitions"
858
+ - listitem: "with lit: 1 repetitions"
859
+ - listitem: "along the: 1 repetitions"
860
+ - listitem: "/the glass: \\d+ repetitions/"
861
+ - listitem: "and slithering: 1 repetitions"
862
+ - listitem: "slithering over: 1 repetitions"
863
+ - listitem: "man-crushing pythons: 1 repetitions"
864
+ - listitem: "pythons.: 1 repetitions"
865
+ - listitem: "found the: 2 repetitions"
866
+ - listitem: "the largest: 1 repetitions"
867
+ - listitem: "the mood: 1 repetitions"
868
+ - listitem: "stood with: 1 repetitions"
869
+ - listitem: "against the: 3 repetitions"
870
+ - listitem: "the glistening: 1 repetitions"
871
+ - listitem: "/the snake: \\d+ repetitions/"
872
+ - listitem: "rapped the: 1 repetitions"
873
+ - listitem: "smartly with: 1 repetitions"
874
+ - listitem: "\"This: 1 repetitions"
875
+ - listitem: "this is: 3 repetitions"
876
+ - listitem: "the tank: 1 repetitions"
877
+ - listitem: "drumming their: 1 repetitions"
878
+ - listitem: "their fingers: 1 repetitions"
879
+ - listitem: "worse than: 2 repetitions"
880
+ - listitem: "than having: 1 repetitions"
881
+ - listitem: "where the: 2 repetitions"
882
+ - listitem: "visit the: 2 repetitions"
883
+ - listitem: "level with: 1 repetitions"
884
+ - listitem: "with Harry: 2 repetitions"
885
+ - listitem: ", then: 1 repetitions"
886
+ - listitem: "then raised: 1 repetitions"
887
+ - listitem: "the ceiling: 3 repetitions"
888
+ - listitem: "look that: 1 repetitions"
889
+ - listitem: "murmured through: 1 repetitions"
890
+ - listitem: "sure the: 2 repetitions"
891
+ - listitem: "nice there: 1 repetitions"
892
+ - listitem: "The boa: 2 repetitions"
893
+ - listitem: ": This: 1 repetitions"
894
+ - listitem: "This specimen: 1 repetitions"
895
+ - listitem: "made both: 1 repetitions"
896
+ - listitem: "both of: 3 repetitions"
897
+ - listitem: "them jump: 1 repetitions"
898
+ - listitem: "THIS SNAKE: 1 repetitions"
899
+ - listitem: "toward them: 1 repetitions"
900
+ - listitem: "them as: 3 repetitions"
901
+ - listitem: "the ribs: 1 repetitions"
902
+ - listitem: "the concrete: 1 repetitions"
903
+ - listitem: "back with: 1 repetitions"
904
+ - listitem: "with howls: 1 repetitions"
905
+ - listitem: "; the: 2 repetitions"
906
+ - listitem: "The great: 2 repetitions"
907
+ - listitem: ", slithering: 1 repetitions"
908
+ - listitem: "slithering out: 1 repetitions"
909
+ - listitem: "the floor: 4 repetitions"
910
+ - listitem: "People throughout: 1 repetitions"
911
+ - listitem: "throughout the: 1 repetitions"
912
+ - listitem: "the exits: 1 repetitions"
913
+ - listitem: "... Thanksss: 1 repetitions"
914
+ - listitem: "Thanksss,: 1 repetitions"
915
+ - listitem: "The keeper: 2 repetitions"
916
+ - listitem: "did the: 1 repetitions"
917
+ - listitem: "done anything: 1 repetitions"
918
+ - listitem: "anything except: 1 repetitions"
919
+ - listitem: "at their: 1 repetitions"
920
+ - listitem: "their heels: 1 repetitions"
921
+ - listitem: "time they: 2 repetitions"
922
+ - listitem: "them how: 1 repetitions"
923
+ - listitem: "to death: 1 repetitions"
924
+ - listitem: "death.: 1 repetitions"
925
+ - listitem: "Until they: 1 repetitions"
926
+ - listitem: "up with: 2 repetitions"
927
+ - listitem: "the crash: 1 repetitions"
928
+ - listitem: "the green: 2 repetitions"
929
+ - listitem: "them in: 2 repetitions"
930
+ - listitem: "thought (: 1 repetitions"
931
+ - listitem: ") that: 1 repetitions"
932
+ - listitem: "that strangers: 1 repetitions"
933
+ - listitem: "strangers they: 1 repetitions"
934
+ - listitem: "shopping with: 1 repetitions"
935
+ - listitem: "with Aunt: 1 repetitions"
936
+ - listitem: "knew the: 1 repetitions"
937
+ - listitem: "rushed them: 1 repetitions"
938
+ - listitem: "them out: 1 repetitions"
939
+ - listitem: "the shop: 1 repetitions"
940
+ - listitem: "shop without: 1 repetitions"
941
+ - listitem: "without buying: 1 repetitions"
942
+ - listitem: "buying anything: 1 repetitions"
943
+ - listitem: "street the: 1 repetitions"
944
+ - listitem: "other day: 1 repetitions"
945
+ - listitem: "then walked: 1 repetitions"
946
+ - listitem: "away without: 1 repetitions"
947
+ - listitem: "without a: 2 repetitions"
948
+ - listitem: "The weirdest: 1 repetitions"
949
+ - listitem: "weirdest thing: 1 repetitions"
950
+ - listitem: "thing about: 1 repetitions"
951
+ - listitem: "all these: 2 repetitions"
952
+ - listitem: "way they: 1 repetitions"
953
+ - listitem: "vanish the: 1 repetitions"
954
+ - listitem: "hated that: 1 repetitions"
955
+ - listitem: "that odd: 1 repetitions"
956
+ - listitem: "disagree with: 1 repetitions"
957
+ - listitem: "The escape: 1 repetitions"
958
+ - listitem: "the Brazilian: 1 repetitions"
959
+ - listitem: "the summer: 1 repetitions"
960
+ - listitem: "the biggest: 3 repetitions"
961
+ - listitem: "the lot: 1 repetitions"
962
+ - listitem: "the leader: 1 repetitions"
963
+ - listitem: "them were: 1 repetitions"
964
+ - listitem: "and thinking: 1 repetitions"
965
+ - listitem: "thinking about: 4 repetitions"
966
+ - listitem: "the end: 3 repetitions"
967
+ - listitem: "the holidays: 1 repetitions"
968
+ - listitem: "going there: 1 repetitions"
969
+ - listitem: "there too: 1 repetitions"
970
+ - listitem: "the local: 1 repetitions"
971
+ - listitem: "thought this: 2 repetitions"
972
+ - listitem: "\"They: 1 repetitions"
973
+ - listitem: "They stuff: 1 repetitions"
974
+ - listitem: "the toilet: 1 repetitions"
975
+ - listitem: "toilet the: 1 repetitions"
976
+ - listitem: "thanks,: 1 repetitions"
977
+ - listitem: "The poor: 1 repetitions"
978
+ - listitem: "had anything: 1 repetitions"
979
+ - listitem: "anything as: 1 repetitions"
980
+ - listitem: "\" Then: 2 repetitions"
981
+ - listitem: "cake that: 1 repetitions"
982
+ - listitem: "that tasted: 1 repetitions"
983
+ - listitem: "the family: 2 repetitions"
984
+ - listitem: "each other: 3 repetitions"
985
+ - listitem: "other while: 1 repetitions"
986
+ - listitem: "while the: 2 repetitions"
987
+ - listitem: "the teachers: 1 repetitions"
988
+ - listitem: "gruffly that: 1 repetitions"
989
+ - listitem: "the proudest: 1 repetitions"
990
+ - listitem: "thought two: 1 repetitions"
991
+ - listitem: "kitchen the: 1 repetitions"
992
+ - listitem: "the sink: 1 repetitions"
993
+ - listitem: "The tub: 1 repetitions"
994
+ - listitem: "s this: 1 repetitions"
995
+ - listitem: "they always: 1 repetitions"
996
+ - listitem: "the bowl: 1 repetitions"
997
+ - listitem: "old things: 1 repetitions"
998
+ - listitem: "things gray: 1 repetitions"
999
+ - listitem: "doubted this: 1 repetitions"
1000
+ - listitem: "thought it: 1 repetitions"
1001
+ - listitem: ", both: 3 repetitions"
1002
+ - listitem: "both with: 1 repetitions"
1003
+ - listitem: "with wrinkled: 1 repetitions"
1004
+ - listitem: "the smell: 1 repetitions"
1005
+ - listitem: "They heard: 2 repetitions"
1006
+ - listitem: "the click: 1 repetitions"
1007
+ - listitem: "the mail: 8 repetitions"
1008
+ - listitem: "the doormat: 3 repetitions"
1009
+ - listitem: "get the: 5 repetitions"
1010
+ - listitem: "him with: 1 repetitions"
1011
+ - listitem: "with your: 1 repetitions"
1012
+ - listitem: "dodged the: 1 repetitions"
1013
+ - listitem: "the Smelting: 2 repetitions"
1014
+ - listitem: ". Three: 1 repetitions"
1015
+ - listitem: "Three things: 1 repetitions"
1016
+ - listitem: "things lay: 1 repetitions"
1017
+ - listitem: "the Isle: 1 repetitions"
1018
+ - listitem: "envelope that: 1 repetitions"
1019
+ - listitem: "that looked: 2 repetitions"
1020
+ - listitem: "no other: 1 repetitions"
1021
+ - listitem: "other relatives: 1 repetitions"
1022
+ - listitem: "the library: 1 repetitions"
1023
+ - listitem: "plainly there: 1 repetitions"
1024
+ - listitem: "there could: 1 repetitions"
1025
+ - listitem: "the envelope: 3 repetitions"
1026
+ - listitem: "was thick: 1 repetitions"
1027
+ - listitem: "thick and: 1 repetitions"
1028
+ - listitem: "the address: 2 repetitions"
1029
+ - listitem: "Vernon the: 1 repetitions"
1030
+ - listitem: "the bill: 2 repetitions"
1031
+ - listitem: "the postcard: 2 repetitions"
1032
+ - listitem: "the yellow: 1 repetitions"
1033
+ - listitem: "got something: 1 repetitions"
1034
+ - listitem: "something!: 1 repetitions"
1035
+ - listitem: "shaking the: 1 repetitions"
1036
+ - listitem: "open with: 1 repetitions"
1037
+ - listitem: "with one: 1 repetitions"
1038
+ - listitem: "faster than: 1 repetitions"
1039
+ - listitem: "than a: 1 repetitions"
1040
+ - listitem: "stop there: 1 repetitions"
1041
+ - listitem: ". Within: 1 repetitions"
1042
+ - listitem: "Within seconds: 1 repetitions"
1043
+ - listitem: "the grayish: 1 repetitions"
1044
+ - listitem: "her throat: 1 repetitions"
1045
+ - listitem: "throat and: 1 repetitions"
1046
+ - listitem: "They stared: 1 repetitions"
1047
+ - listitem: "other,: 1 repetitions"
1048
+ - listitem: "forgotten that: 2 repetitions"
1049
+ - listitem: "father a: 1 repetitions"
1050
+ - listitem: "the head: 3 repetitions"
1051
+ - listitem: "head with: 1 repetitions"
1052
+ - listitem: "read that: 1 repetitions"
1053
+ - listitem: "that letter: 2 repetitions"
1054
+ - listitem: "stuffing the: 1 repetitions"
1055
+ - listitem: "took both: 1 repetitions"
1056
+ - listitem: "both Harry: 1 repetitions"
1057
+ - listitem: "the scruffs: 1 repetitions"
1058
+ - listitem: "their necks: 2 repetitions"
1059
+ - listitem: "and threw: 5 repetitions"
1060
+ - listitem: "threw them: 1 repetitions"
1061
+ - listitem: "them into: 2 repetitions"
1062
+ - listitem: "slammed the: 3 repetitions"
1063
+ - listitem: "behind them: 3 repetitions"
1064
+ - listitem: "the keyhole: 1 repetitions"
1065
+ - listitem: "the crack: 2 repetitions"
1066
+ - listitem: "could they: 1 repetitions"
1067
+ - listitem: "they possibly: 1 repetitions"
1068
+ - listitem: "them we: 1 repetitions"
1069
+ - listitem: "If they: 2 repetitions"
1070
+ - listitem: "that dangerous: 1 repetitions"
1071
+ - listitem: "did something: 1 repetitions"
1072
+ - listitem: "squeezed through: 1 repetitions"
1073
+ - listitem: "deep breaths: 2 repetitions"
1074
+ - listitem: "breaths and: 2 repetitions"
1075
+ - listitem: "then forced: 1 repetitions"
1076
+ - listitem: "about this: 2 repetitions"
1077
+ - listitem: "this cupboard: 1 repetitions"
1078
+ - listitem: "we think: 1 repetitions"
1079
+ - listitem: "Take this: 1 repetitions"
1080
+ - listitem: "this stuff: 1 repetitions"
1081
+ - listitem: "the toys: 1 repetitions"
1082
+ - listitem: "and things: 1 repetitions"
1083
+ - listitem: "things that: 2 repetitions"
1084
+ - listitem: "that wouldn: 1 repetitions"
1085
+ - listitem: "move everything: 1 repetitions"
1086
+ - listitem: "everything he: 1 repetitions"
1087
+ - listitem: "to this: 1 repetitions"
1088
+ - listitem: "this room: 1 repetitions"
1089
+ - listitem: "the bed: 2 repetitions"
1090
+ - listitem: "Nearly everything: 1 repetitions"
1091
+ - listitem: "everything in: 1 repetitions"
1092
+ - listitem: "The month-old: 1 repetitions"
1093
+ - listitem: "month-old video: 1 repetitions"
1094
+ - listitem: "foot through: 1 repetitions"
1095
+ - listitem: "through when: 1 repetitions"
1096
+ - listitem: "; there: 1 repetitions"
1097
+ - listitem: "parrot that: 1 repetitions"
1098
+ - listitem: "shelf with: 1 repetitions"
1099
+ - listitem: ". Other: 1 repetitions"
1100
+ - listitem: "Other shelves: 1 repetitions"
1101
+ - listitem: "things in: 1 repetitions"
1102
+ - listitem: "room that: 1 repetitions"
1103
+ - listitem: "though they: 1 repetitions"
1104
+ - listitem: "came the: 1 repetitions"
1105
+ - listitem: "mother,: 3 repetitions"
1106
+ - listitem: "there ...: 1 repetitions"
1107
+ - listitem: "need that: 1 repetitions"
1108
+ - listitem: "that room: 1 repetitions"
1109
+ - listitem: "given anything: 1 repetitions"
1110
+ - listitem: "d rather: 1 repetitions"
1111
+ - listitem: "rather be: 1 repetitions"
1112
+ - listitem: "cupboard with: 1 repetitions"
1113
+ - listitem: "with that: 2 repetitions"
1114
+ - listitem: "letter than: 1 repetitions"
1115
+ - listitem: "than up: 1 repetitions"
1116
+ - listitem: "here without: 1 repetitions"
1117
+ - listitem: "without it: 1 repetitions"
1118
+ - listitem: "was rather: 1 repetitions"
1119
+ - listitem: "rather quiet: 1 repetitions"
1120
+ - listitem: "father with: 1 repetitions"
1121
+ - listitem: "and thrown: 1 repetitions"
1122
+ - listitem: "thrown his: 1 repetitions"
1123
+ - listitem: "tortoise through: 1 repetitions"
1124
+ - listitem: "the greenhouse: 1 repetitions"
1125
+ - listitem: "was thinking: 1 repetitions"
1126
+ - listitem: "this time: 3 repetitions"
1127
+ - listitem: "other darkly: 1 repetitions"
1128
+ - listitem: "When the: 2 repetitions"
1129
+ - listitem: "banging things: 1 repetitions"
1130
+ - listitem: "things with: 1 repetitions"
1131
+ - listitem: "\"There: 1 repetitions"
1132
+ - listitem: "There': 2 repetitions"
1133
+ - listitem: "s another: 1 repetitions"
1134
+ - listitem: "The Smallest: 1 repetitions"
1135
+ - listitem: "the fact: 1 repetitions"
1136
+ - listitem: "fact that: 1 repetitions"
1137
+ - listitem: "the neck: 1 repetitions"
1138
+ - listitem: "for breath: 1 repetitions"
1139
+ - listitem: "breath,: 1 repetitions"
1140
+ - listitem: "sure that: 3 repetitions"
1141
+ - listitem: "that meant: 1 repetitions"
1142
+ - listitem: "meant they: 1 repetitions"
1143
+ - listitem: "And this: 2 repetitions"
1144
+ - listitem: "sure they: 1 repetitions"
1145
+ - listitem: "The repaired: 1 repetitions"
1146
+ - listitem: "clock the: 1 repetitions"
1147
+ - listitem: "downstairs without: 1 repetitions"
1148
+ - listitem: "without turning: 1 repetitions"
1149
+ - listitem: "the postman: 1 repetitions"
1150
+ - listitem: "the dark: 2 repetitions"
1151
+ - listitem: "on something: 1 repetitions"
1152
+ - listitem: "something big: 1 repetitions"
1153
+ - listitem: "— something: 1 repetitions"
1154
+ - listitem: "something alive: 1 repetitions"
1155
+ - listitem: "squashy something: 1 repetitions"
1156
+ - listitem: "something had: 1 repetitions"
1157
+ - listitem: "the foot: 1 repetitions"
1158
+ - listitem: "then told: 1 repetitions"
1159
+ - listitem: "see three: 1 repetitions"
1160
+ - listitem: "three letters: 1 repetitions"
1161
+ - listitem: "tearing the: 1 repetitions"
1162
+ - listitem: "work that: 1 repetitions"
1163
+ - listitem: "Petunia through: 2 repetitions"
1164
+ - listitem: "through a: 2 repetitions"
1165
+ - listitem: "a mouthful: 1 repetitions"
1166
+ - listitem: "mouthful of: 1 repetitions"
1167
+ - listitem: "they can: 1 repetitions"
1168
+ - listitem: "deliver them: 1 repetitions"
1169
+ - listitem: "them they: 1 repetitions"
1170
+ - listitem: ", these: 1 repetitions"
1171
+ - listitem: "nail with: 1 repetitions"
1172
+ - listitem: "the piece: 1 repetitions"
1173
+ - listitem: "than twelve: 1 repetitions"
1174
+ - listitem: "they couldn: 2 repetitions"
1175
+ - listitem: "go through: 1 repetitions"
1176
+ - listitem: "slot they: 1 repetitions"
1177
+ - listitem: "slotted through: 1 repetitions"
1178
+ - listitem: "the sides: 1 repetitions"
1179
+ - listitem: "forced through: 1 repetitions"
1180
+ - listitem: "the small: 1 repetitions"
1181
+ - listitem: "the downstairs: 1 repetitions"
1182
+ - listitem: "downstairs bathroom: 1 repetitions"
1183
+ - listitem: "bathroom.: 1 repetitions"
1184
+ - listitem: "Tiptoe Through: 1 repetitions"
1185
+ - listitem: "the Tulips: 1 repetitions"
1186
+ - listitem: ", things: 1 repetitions"
1187
+ - listitem: "things began: 1 repetitions"
1188
+ - listitem: "found their: 1 repetitions"
1189
+ - listitem: "their way: 2 repetitions"
1190
+ - listitem: "the two: 1 repetitions"
1191
+ - listitem: "eggs that: 1 repetitions"
1192
+ - listitem: "that their: 1 repetitions"
1193
+ - listitem: "their very: 1 repetitions"
1194
+ - listitem: "the post: 1 repetitions"
1195
+ - listitem: "the dairy: 1 repetitions"
1196
+ - listitem: "shredded the: 1 repetitions"
1197
+ - listitem: "on earth: 1 repetitions"
1198
+ - listitem: "earth wants: 1 repetitions"
1199
+ - listitem: "you this: 1 repetitions"
1200
+ - listitem: "this badly: 1 repetitions"
1201
+ - listitem: "the breakfast: 1 repetitions"
1202
+ - listitem: "and rather: 1 repetitions"
1203
+ - listitem: "rather ill: 1 repetitions"
1204
+ - listitem: "reminded them: 1 repetitions"
1205
+ - listitem: "them cheerfully: 1 repetitions"
1206
+ - listitem: "Something came: 1 repetitions"
1207
+ - listitem: ", thirty: 1 repetitions"
1208
+ - listitem: "thirty or: 1 repetitions"
1209
+ - listitem: "the fireplace: 3 repetitions"
1210
+ - listitem: "the waist: 1 repetitions"
1211
+ - listitem: "threw him: 1 repetitions"
1212
+ - listitem: "with their: 1 repetitions"
1213
+ - listitem: "their arms: 1 repetitions"
1214
+ - listitem: "over their: 1 repetitions"
1215
+ - listitem: "their faces: 2 repetitions"
1216
+ - listitem: "hear the: 1 repetitions"
1217
+ - listitem: "That does: 1 repetitions"
1218
+ - listitem: "some clothes: 1 repetitions"
1219
+ - listitem: "clothes.: 1 repetitions"
1220
+ - listitem: "dangerous with: 1 repetitions"
1221
+ - listitem: "with half: 1 repetitions"
1222
+ - listitem: "missing that: 1 repetitions"
1223
+ - listitem: "that no: 1 repetitions"
1224
+ - listitem: "later they: 1 repetitions"
1225
+ - listitem: "wrenched their: 1 repetitions"
1226
+ - listitem: "way through: 1 repetitions"
1227
+ - listitem: "the boarded-up: 1 repetitions"
1228
+ - listitem: "the highway: 1 repetitions"
1229
+ - listitem: "father had: 1 repetitions"
1230
+ - listitem: "round the: 1 repetitions"
1231
+ - listitem: "holding them: 1 repetitions"
1232
+ - listitem: "them up: 1 repetitions"
1233
+ - listitem: "They drove: 2 repetitions"
1234
+ - listitem: "where they: 1 repetitions"
1235
+ - listitem: "then Uncle: 1 repetitions"
1236
+ - listitem: "the opposite: 1 repetitions"
1237
+ - listitem: "did this: 1 repetitions"
1238
+ - listitem: "long without: 1 repetitions"
1239
+ - listitem: "without blowing: 1 repetitions"
1240
+ - listitem: "the outskirts: 1 repetitions"
1241
+ - listitem: "room with: 1 repetitions"
1242
+ - listitem: "with twin: 1 repetitions"
1243
+ - listitem: "the windowsill: 1 repetitions"
1244
+ - listitem: "breakfast the: 1 repetitions"
1245
+ - listitem: "the owner: 1 repetitions"
1246
+ - listitem: "the hotel: 1 repetitions"
1247
+ - listitem: "their table: 1 repetitions"
1248
+ - listitem: "these at: 1 repetitions"
1249
+ - listitem: "so they: 1 repetitions"
1250
+ - listitem: "The woman: 1 repetitions"
1251
+ - listitem: "take them: 1 repetitions"
1252
+ - listitem: "the dining: 1 repetitions"
1253
+ - listitem: "them knew: 1 repetitions"
1254
+ - listitem: "drove them: 1 repetitions"
1255
+ - listitem: "off they: 1 repetitions"
1256
+ - listitem: "same thing: 1 repetitions"
1257
+ - listitem: "thing happened: 3 repetitions"
1258
+ - listitem: "late that: 1 repetitions"
1259
+ - listitem: "the coast: 1 repetitions"
1260
+ - listitem: "locked them: 1 repetitions"
1261
+ - listitem: "inside the: 2 repetitions"
1262
+ - listitem: "somewhere with: 1 repetitions"
1263
+ - listitem: "This reminded: 1 repetitions"
1264
+ - listitem: "know the: 1 repetitions"
1265
+ - listitem: "the week: 1 repetitions"
1266
+ - listitem: "then tomorrow: 1 repetitions"
1267
+ - listitem: "s eleventh: 1 repetitions"
1268
+ - listitem: "eleventh birthday: 1 repetitions"
1269
+ - listitem: "his birthdays: 2 repetitions"
1270
+ - listitem: "birthdays were: 1 repetitions"
1271
+ - listitem: "thin package: 2 repetitions"
1272
+ - listitem: "the perfect: 1 repetitions"
1273
+ - listitem: "the rock: 4 repetitions"
1274
+ - listitem: "the most: 1 repetitions"
1275
+ - listitem: "thing was: 1 repetitions"
1276
+ - listitem: "hands together: 2 repetitions"
1277
+ - listitem: "this gentleman: 1 repetitions"
1278
+ - listitem: "A toothless: 1 repetitions"
1279
+ - listitem: "toothless old: 1 repetitions"
1280
+ - listitem: "rather wicked: 1 repetitions"
1281
+ - listitem: "the iron-gray: 1 repetitions"
1282
+ - listitem: "below them: 1 repetitions"
1283
+ - listitem: "the boat: 1 repetitions"
1284
+ - listitem: "down their: 1 repetitions"
1285
+ - listitem: "whipped their: 1 repetitions"
1286
+ - listitem: "hours they: 1 repetitions"
1287
+ - listitem: "they reached: 1 repetitions"
1288
+ - listitem: "led the: 1 repetitions"
1289
+ - listitem: "the broken-down: 1 repetitions"
1290
+ - listitem: "The inside: 1 repetitions"
1291
+ - listitem: "whistled through: 1 repetitions"
1292
+ - listitem: "the wooden: 1 repetitions"
1293
+ - listitem: "the empty: 2 repetitions"
1294
+ - listitem: "with some: 1 repetitions"
1295
+ - listitem: "of those: 1 repetitions"
1296
+ - listitem: "those letters: 2 repetitions"
1297
+ - listitem: "thought nobody: 1 repetitions"
1298
+ - listitem: "reaching them: 1 repetitions"
1299
+ - listitem: "them here: 1 repetitions"
1300
+ - listitem: "though the: 1 repetitions"
1301
+ - listitem: "the thought: 1 repetitions"
1302
+ - listitem: "thought didn: 1 repetitions"
1303
+ - listitem: "the promised: 1 repetitions"
1304
+ - listitem: "the high: 1 repetitions"
1305
+ - listitem: "splattered the: 1 repetitions"
1306
+ - listitem: "the hut: 4 repetitions"
1307
+ - listitem: "rattled the: 1 repetitions"
1308
+ - listitem: "the filthy: 1 repetitions"
1309
+ - listitem: "filthy windows: 1 repetitions"
1310
+ - listitem: "the moth-eaten: 1 repetitions"
1311
+ - listitem: "moth-eaten sofa: 1 repetitions"
1312
+ - listitem: "the lumpy: 1 repetitions"
1313
+ - listitem: "the softest: 1 repetitions"
1314
+ - listitem: "the thinnest: 1 repetitions"
1315
+ - listitem: "thinnest,: 1 repetitions"
1316
+ - listitem: "the storm: 3 repetitions"
1317
+ - listitem: "rumbling with: 1 repetitions"
1318
+ - listitem: "with hunger: 1 repetitions"
1319
+ - listitem: "of thunder: 1 repetitions"
1320
+ - listitem: "thunder that: 1 repetitions"
1321
+ - listitem: "that started: 1 repetitions"
1322
+ - listitem: "the sofa: 7 repetitions"
1323
+ - listitem: "birthday tick: 1 repetitions"
1324
+ - listitem: "heard something: 1 repetitions"
1325
+ - listitem: "something creak: 1 repetitions"
1326
+ - listitem: "hoped the: 1 repetitions"
1327
+ - listitem: "Maybe the: 1 repetitions"
1328
+ - listitem: "when they: 1 repetitions"
1329
+ - listitem: "they got: 2 repetitions"
1330
+ - listitem: "back that: 1 repetitions"
1331
+ - listitem: "Three minutes: 1 repetitions"
1332
+ - listitem: "the sea: 4 repetitions"
1333
+ - listitem: "that funny: 1 repetitions"
1334
+ - listitem: ". Thirty: 1 repetitions"
1335
+ - listitem: "Thirty seconds: 1 repetitions"
1336
+ - listitem: "— three: 1 repetitions"
1337
+ - listitem: "three ...: 1 repetitions"
1338
+ - listitem: "THE KEYS: 1 repetitions"
1339
+ - listitem: "They knocked: 1 repetitions"
1340
+ - listitem: "the cannon: 1 repetitions"
1341
+ - listitem: "now they: 1 repetitions"
1342
+ - listitem: "they knew: 1 repetitions"
1343
+ - listitem: "the long: 1 repetitions"
1344
+ - listitem: "brought with: 1 repetitions"
1345
+ - listitem: "with them: 1 repetitions"
1346
+ - listitem: "s there: 1 repetitions"
1347
+ - listitem: "Then —: 2 repetitions"
1348
+ - listitem: "hit with: 1 repetitions"
1349
+ - listitem: "force that: 1 repetitions"
1350
+ - listitem: "the doorway: 1 repetitions"
1351
+ - listitem: "the hair: 1 repetitions"
1352
+ - listitem: "that his: 1 repetitions"
1353
+ - listitem: "brushed the: 1 repetitions"
1354
+ - listitem: "The noise: 1 repetitions"
1355
+ - listitem: "at them: 1 repetitions"
1356
+ - listitem: "frozen with: 1 repetitions"
1357
+ - listitem: "with fear: 1 repetitions"
1358
+ - listitem: "the stranger: 1 repetitions"
1359
+ - listitem: "the fierce: 1 repetitions"
1360
+ - listitem: "saw that: 2 repetitions"
1361
+ - listitem: "the beetle: 1 repetitions"
1362
+ - listitem: "demand that: 1 repetitions"
1363
+ - listitem: "that you: 2 repetitions"
1364
+ - listitem: "jerked the: 1 repetitions"
1365
+ - listitem: "the gun: 1 repetitions"
1366
+ - listitem: "threw it: 2 repetitions"
1367
+ - listitem: "made another: 1 repetitions"
1368
+ - listitem: "another funny: 1 repetitions"
1369
+ - listitem: "happy birthday: 2 repetitions"
1370
+ - listitem: "birthday to: 1 repetitions"
1371
+ - listitem: "it with: 1 repetitions"
1372
+ - listitem: "with trembling: 1 repetitions"
1373
+ - listitem: "cake with: 1 repetitions"
1374
+ - listitem: "with Happy: 1 repetitions"
1375
+ - listitem: "Birthday Harry: 1 repetitions"
1376
+ - listitem: "say thank: 1 repetitions"
1377
+ - listitem: "the words: 1 repetitions"
1378
+ - listitem: "his mouth: 3 repetitions"
1379
+ - listitem: "that tea: 1 repetitions"
1380
+ - listitem: "tea then: 1 repetitions"
1381
+ - listitem: "grate with: 1 repetitions"
1382
+ - listitem: "the shriveled: 1 repetitions"
1383
+ - listitem: "fire there: 1 repetitions"
1384
+ - listitem: "filled the: 2 repetitions"
1385
+ - listitem: "hut with: 1 repetitions"
1386
+ - listitem: "with flickering: 1 repetitions"
1387
+ - listitem: "felt the: 1 repetitions"
1388
+ - listitem: "the warmth: 1 repetitions"
1389
+ - listitem: "warmth wash: 1 repetitions"
1390
+ - listitem: "hot bath: 1 repetitions"
1391
+ - listitem: "bath.: 1 repetitions"
1392
+ - listitem: "of things: 1 repetitions"
1393
+ - listitem: "things out: 1 repetitions"
1394
+ - listitem: "the pockets: 2 repetitions"
1395
+ - listitem: "liquid that: 1 repetitions"
1396
+ - listitem: "Soon the: 1 repetitions"
1397
+ - listitem: "a thing: 1 repetitions"
1398
+ - listitem: "thing while: 1 repetitions"
1399
+ - listitem: "slid the: 1 repetitions"
1400
+ - listitem: "the poker: 1 repetitions"
1401
+ - listitem: "touch anything: 1 repetitions"
1402
+ - listitem: "passed the: 1 repetitions"
1403
+ - listitem: "the sausages: 1 repetitions"
1404
+ - listitem: "tasted anything: 1 repetitions"
1405
+ - listitem: "anything so: 1 repetitions"
1406
+ - listitem: "explain anything: 1 repetitions"
1407
+ - listitem: "mouth with: 1 repetitions"
1408
+ - listitem: "the shadows: 1 repetitions"
1409
+ - listitem: "never thought: 1 repetitions"
1410
+ - listitem: "thought yeh: 1 repetitions"
1411
+ - listitem: "Hagrid thundered: 1 repetitions"
1412
+ - listitem: "thundered.: 1 repetitions"
1413
+ - listitem: "— this: 2 repetitions"
1414
+ - listitem: "knows nothin: 1 repetitions"
1415
+ - listitem: "nothin': 1 repetitions"
1416
+ - listitem: "ANYTHING?: 1 repetitions"
1417
+ - listitem: "some things: 1 repetitions"
1418
+ - listitem: "do math: 1 repetitions"
1419
+ - listitem: "math and: 1 repetitions"
1420
+ - listitem: "whispered something: 1 repetitions"
1421
+ - listitem: "something that: 1 repetitions"
1422
+ - listitem: "that sounded: 1 repetitions"
1423
+ - listitem: "were they: 1 repetitions"
1424
+ - listitem: "they?: 1 repetitions"
1425
+ - listitem: "fingers through: 1 repetitions"
1426
+ - listitem: "through his: 1 repetitions"
1427
+ - listitem: "Harry with: 2 repetitions"
1428
+ - listitem: "right there: 1 repetitions"
1429
+ - listitem: "boy anything: 1 repetitions"
1430
+ - listitem: "anything!: 1 repetitions"
1431
+ - listitem: "man than: 1 repetitions"
1432
+ - listitem: "than Vernon: 1 repetitions"
1433
+ - listitem: "the furious: 1 repetitions"
1434
+ - listitem: "trembled with: 1 repetitions"
1435
+ - listitem: "with rage: 1 repetitions"
1436
+ - listitem: "was there: 1 repetitions"
1437
+ - listitem: "there!: 1 repetitions"
1438
+ - listitem: "these years: 1 repetitions"
1439
+ - listitem: "the whistling: 1 repetitions"
1440
+ - listitem: "a thumpin: 1 repetitions"
1441
+ - listitem: "thumpin': 1 repetitions"
1442
+ - listitem: ". With: 2 repetitions"
1443
+ - listitem: "take the: 1 repetitions"
1444
+ - listitem: "the yellowish: 1 repetitions"
1445
+ - listitem: ", Hut-on-the-Rock: 1 repetitions"
1446
+ - listitem: "Hut-on-the-Rock,: 1 repetitions"
1447
+ - listitem: "you that: 1 repetitions"
1448
+ - listitem: "later than: 1 repetitions"
1449
+ - listitem: "than July: 1 repetitions"
1450
+ - listitem: "they await: 1 repetitions"
1451
+ - listitem: "that reminds: 1 repetitions"
1452
+ - listitem: "forehead with: 1 repetitions"
1453
+ - listitem: "with enough: 1 repetitions"
1454
+ - listitem: "yet another: 1 repetitions"
1455
+ - listitem: "another pocket: 1 repetitions"
1456
+ - listitem: ", rather: 1 repetitions"
1457
+ - listitem: "rather ruffled-looking: 1 repetitions"
1458
+ - listitem: "his teeth: 1 repetitions"
1459
+ - listitem: "teeth he: 1 repetitions"
1460
+ - listitem: "note that: 1 repetitions"
1461
+ - listitem: "his things: 1 repetitions"
1462
+ - listitem: "things tomorrow: 1 repetitions"
1463
+ - listitem: "Weather': 1 repetitions"
1464
+ - listitem: "the note: 1 repetitions"
1465
+ - listitem: "threw the: 1 repetitions"
1466
+ - listitem: "though this: 1 repetitions"
1467
+ - listitem: "mouth was: 1 repetitions"
1468
+ - listitem: "the firelight: 1 repetitions"
1469
+ - listitem: "like them: 1 repetitions"
1470
+ - listitem: "' the: 7 repetitions"
1471
+ - listitem: "to that: 2 repetitions"
1472
+ - listitem: "that rubbish: 1 repetitions"
1473
+ - listitem: "that and: 1 repetitions"
1474
+ - listitem: "that —: 1 repetitions"
1475
+ - listitem: "that school: 1 repetitions"
1476
+ - listitem: "vacation with: 1 repetitions"
1477
+ - listitem: "my mother: 1 repetitions"
1478
+ - listitem: "Lily this: 1 repetitions"
1479
+ - listitem: "this and: 1 repetitions"
1480
+ - listitem: "Lily that: 1 repetitions"
1481
+ - listitem: "then went: 1 repetitions"
1482
+ - listitem: "this for: 1 repetitions"
1483
+ - listitem: "Then she: 1 repetitions"
1484
+ - listitem: "met that: 1 repetitions"
1485
+ - listitem: "that Potter: 1 repetitions"
1486
+ - listitem: "they left: 1 repetitions"
1487
+ - listitem: "just the: 1 repetitions"
1488
+ - listitem: "landed with: 1 repetitions"
1489
+ - listitem: "with you: 1 repetitions"
1490
+ - listitem: "me they: 1 repetitions"
1491
+ - listitem: "they died: 1 repetitions"
1492
+ - listitem: "angrily that: 1 repetitions"
1493
+ - listitem: "their corner: 1 repetitions"
1494
+ - listitem: "The anger: 1 repetitions"
1495
+ - listitem: "expected this: 1 repetitions"
1496
+ - listitem: "me there: 1 repetitions"
1497
+ - listitem: "there might: 1 repetitions"
1498
+ - listitem: "m the: 1 repetitions"
1499
+ - listitem: "He threw: 1 repetitions"
1500
+ - listitem: "yeh everythin: 1 repetitions"
1501
+ - listitem: "everythin': 1 repetitions"
1502
+ - listitem: "the fire: 2 repetitions"
1503
+ - listitem: "with —: 1 repetitions"
1504
+ - listitem: "— with: 1 repetitions"
1505
+ - listitem: "this wizard: 2 repetitions"
1506
+ - listitem: "than worse: 1 repetitions"
1507
+ - listitem: "this —: 1 repetitions"
1508
+ - listitem: "friendly with: 1 repetitions"
1509
+ - listitem: "with strange: 1 repetitions"
1510
+ - listitem: "terrible things: 1 repetitions"
1511
+ - listitem: "' then: 2 repetitions"
1512
+ - listitem: "their day: 1 repetitions"
1513
+ - listitem: "Suppose the: 1 repetitions"
1514
+ - listitem: "the myst: 1 repetitions"
1515
+ - listitem: "knew they: 2 repetitions"
1516
+ - listitem: "want anythin: 1 repetitions"
1517
+ - listitem: "anythin': 1 repetitions"
1518
+ - listitem: "outta the: 1 repetitions"
1519
+ - listitem: "the village: 1 repetitions"
1520
+ - listitem: "nose with: 1 repetitions"
1521
+ - listitem: "that sad: 1 repetitions"
1522
+ - listitem: "' this: 1 repetitions"
1523
+ - listitem: "thing —: 1 repetitions"
1524
+ - listitem: "by then: 1 repetitions"
1525
+ - listitem: "got that: 1 repetitions"
1526
+ - listitem: "that mark: 1 repetitions"
1527
+ - listitem: "? That: 1 repetitions"
1528
+ - listitem: ". That: 2 repetitions"
1529
+ - listitem: "' that: 2 repetitions"
1530
+ - listitem: "the age: 1 repetitions"
1531
+ - listitem: "the McKinnons: 1 repetitions"
1532
+ - listitem: "the Bones: 1 repetitions"
1533
+ - listitem: "the Prewetts: 1 repetitions"
1534
+ - listitem: "again the: 1 repetitions"
1535
+ - listitem: "the blinding: 1 repetitions"
1536
+ - listitem: "clearly than: 1 repetitions"
1537
+ - listitem: "remembered something: 1 repetitions"
1538
+ - listitem: "the ruined: 1 repetitions"
1539
+ - listitem: "ter this: 1 repetitions"
1540
+ - listitem: "this lot: 1 repetitions"
1541
+ - listitem: "accept there: 1 repetitions"
1542
+ - listitem: "s something: 1 repetitions"
1543
+ - listitem: "something strange: 1 repetitions"
1544
+ - listitem: "nothing a: 1 repetitions"
1545
+ - listitem: "this about: 1 repetitions"
1546
+ - listitem: "the world: 3 repetitions"
1547
+ - listitem: "off without: 1 repetitions"
1548
+ - listitem: "without them: 1 repetitions"
1549
+ - listitem: "all they: 1 repetitions"
1550
+ - listitem: "with these: 1 repetitions"
1551
+ - listitem: "these wizarding: 1 repetitions"
1552
+ - listitem: "Pointing this: 1 repetitions"
1553
+ - listitem: "this at: 1 repetitions"
1554
+ - listitem: ", breathing: 1 repetitions"
1555
+ - listitem: "breathing heavily: 1 repetitions"
1556
+ - listitem: "which this: 1 repetitions"
1557
+ - listitem: "out there: 2 repetitions"
1558
+ - listitem: "reckon they: 1 repetitions"
1559
+ - listitem: "there somewhere: 1 repetitions"
1560
+ - listitem: "Cause somethin: 1 repetitions"
1561
+ - listitem: "somethin': 3 repetitions"
1562
+ - listitem: "was somethin: 1 repetitions"
1563
+ - listitem: "on that: 1 repetitions"
1564
+ - listitem: "that night: 1 repetitions"
1565
+ - listitem: "but somethin: 1 repetitions"
1566
+ - listitem: "with warmth: 1 repetitions"
1567
+ - listitem: "warmth and: 1 repetitions"
1568
+ - listitem: "t they: 1 repetitions"
1569
+ - listitem: "they been: 1 repetitions"
1570
+ - listitem: "defeated the: 1 repetitions"
1571
+ - listitem: "the greatest: 2 repetitions"
1572
+ - listitem: "I think: 2 repetitions"
1573
+ - listitem: "think I: 2 repetitions"
1574
+ - listitem: "made things: 1 repetitions"
1575
+ - listitem: "odd thing: 1 repetitions"
1576
+ - listitem: "that had: 1 repetitions"
1577
+ - listitem: "furious with: 1 repetitions"
1578
+ - listitem: "their reach: 1 repetitions"
1579
+ - listitem: "school with: 1 repetitions"
1580
+ - listitem: "that ridiculous: 1 repetitions"
1581
+ - listitem: ", without: 1 repetitions"
1582
+ - listitem: "without even: 1 repetitions"
1583
+ - listitem: "that Hagrid: 1 repetitions"
1584
+ - listitem: "in without: 1 repetitions"
1585
+ - listitem: "read those: 1 repetitions"
1586
+ - listitem: "ter the: 1 repetitions"
1587
+ - listitem: "the finest: 1 repetitions"
1588
+ - listitem: "years there: 1 repetitions"
1589
+ - listitem: "there and: 1 repetitions"
1590
+ - listitem: "with youngsters: 1 repetitions"
1591
+ - listitem: "he thundered: 1 repetitions"
1592
+ - listitem: "thundered,: 1 repetitions"
1593
+ - listitem: "brought the: 1 repetitions"
1594
+ - listitem: "the umbrella: 1 repetitions"
1595
+ - listitem: "down through: 1 repetitions"
1596
+ - listitem: "spot with: 1 repetitions"
1597
+ - listitem: "on them: 1 repetitions"
1598
+ - listitem: "poking through: 1 repetitions"
1599
+ - listitem: "other room: 1 repetitions"
1600
+ - listitem: "anyway there: 1 repetitions"
1601
+ - listitem: "mention that: 1 repetitions"
1602
+ - listitem: "that ter: 1 repetitions"
1603
+ - listitem: "the reasons: 1 repetitions"
1604
+ - listitem: "the job: 1 repetitions"
1605
+ - listitem: "yeh the: 1 repetitions"
1606
+ - listitem: "the truth: 1 repetitions"
1607
+ - listitem: "truth.: 1 repetitions"
1608
+ - listitem: "me third: 1 repetitions"
1609
+ - listitem: "third year: 1 repetitions"
1610
+ - listitem: "They snapped: 1 repetitions"
1611
+ - listitem: "' everything: 1 repetitions"
1612
+ - listitem: "everything.: 1 repetitions"
1613
+ - listitem: "thick black: 1 repetitions"
1614
+ - listitem: "under that: 1 repetitions"
1615
+ - listitem: "early the: 1 repetitions"
1616
+ - listitem: "/the: \\d+ repetitions/"
1617
+ - listitem: "/that: \\d+ repetitions/"
1618
+ - listitem: "/they: \\d+ repetitions/"
1619
+ - listitem: "thank: 5 repetitions"
1620
+ - listitem: "/anything: \\d+ repetitions/"
1621
+ - listitem: "/with: \\d+ repetitions/"
1622
+ - listitem: "although: 4 repetitions"
1623
+ - listitem: "thin: 6 repetitions"
1624
+ - listitem: "/their: \\d+ repetitions/"
1625
+ - listitem: "/there: \\d+ repetitions/"
1626
+ - listitem: "everything: 8 repetitions"
1627
+ - listitem: "/think: \\d+ repetitions/"
1628
+ - listitem: "good-for-nothing: 1 repetitions"
1629
+ - listitem: "/this: \\d+ repetitions/"
1630
+ - listitem: "/another: \\d+ repetitions/"
1631
+ - listitem: "/nothing: \\d+ repetitions/"
1632
+ - listitem: "/things: \\d+ repetitions/"
1633
+ - listitem: "/them: \\d+ repetitions/"
1634
+ - listitem: "throwing: 1 repetitions"
1635
+ - listitem: "/something: \\d+ repetitions/"
1636
+ - listitem: "/then: \\d+ repetitions/"
1637
+ - listitem: "/thought: \\d+ repetitions/"
1638
+ - listitem: "clothes: 6 repetitions"
1639
+ - listitem: "these: 9 repetitions"
1640
+ - listitem: "together: 6 repetitions"
1641
+ - listitem: "/than: \\d+ repetitions/"
1642
+ - listitem: "ninth: 1 repetitions"
1643
+ - listitem: "/though: \\d+ repetitions/"
1644
+ - listitem: "open-mouthed: 1 repetitions"
1645
+ - listitem: "those: 3 repetitions"
1646
+ - listitem: "weather: 2 repetitions"
1647
+ - listitem: "weatherman: 1 repetitions"
1648
+ - listitem: "throat: 2 repetitions"
1649
+ - listitem: "/through: \\d+ repetitions/"
1650
+ - listitem: "whether: 1 repetitions"
1651
+ - listitem: "bathroom: 2 repetitions"
1652
+ - listitem: "both: 8 repetitions"
1653
+ - listitem: "/other: \\d+ repetitions/"
1654
+ - listitem: "rather: 8 repetitions"
1655
+ - listitem: "threw: 7 repetitions"
1656
+ - listitem: "neither: 1 repetitions"
1657
+ - listitem: "beneath: 2 repetitions"
1658
+ - listitem: "/mother: \\d+ repetitions/"
1659
+ - listitem: "mouth: 6 repetitions"
1660
+ - listitem: "underneath: 1 repetitions"
1661
+ - listitem: "leather: 1 repetitions"
1662
+ - listitem: "three: 5 repetitions"
1663
+ - listitem: "without: 9 repetitions"
1664
+ - listitem: "father: 8 repetitions"
1665
+ - listitem: "birthday: 9 repetitions"
1666
+ - listitem: "thick: 5 repetitions"
1667
+ - listitem: "smoothly: 1 repetitions"
1668
+ - listitem: "Thirty-six: 1 repetitions"
1669
+ - listitem: "thirty-seven: 1 repetitions"
1670
+ - listitem: "thirty: 4 repetitions"
1671
+ - listitem: "Thirty-nine: 1 repetitions"
1672
+ - listitem: "worth: 2 repetitions"
1673
+ - listitem: "either: 1 repetitions"
1674
+ - listitem: "slithering: 2 repetitions"
1675
+ - listitem: "pythons: 1 repetitions"
1676
+ - listitem: "throughout: 1 repetitions"
1677
+ - listitem: "Thanksss: 1 repetitions"
1678
+ - listitem: "death: 1 repetitions"
1679
+ - listitem: "Within: 1 repetitions"
1680
+ - listitem: "breath: 4 repetitions"
1681
+ - listitem: "month-old: 1 repetitions"
1682
+ - listitem: "thrown: 1 repetitions"
1683
+ - listitem: "earth: 1 repetitions"
1684
+ - listitem: "Cokeworth: 1 repetitions"
1685
+ - listitem: "eleventh: 1 repetitions"
1686
+ - listitem: "toothless: 1 repetitions"
1687
+ - listitem: "filthy: 1 repetitions"
1688
+ - listitem: "moth-eaten: 1 repetitions"
1689
+ - listitem: "thinnest: 1 repetitions"
1690
+ - listitem: "thundered: 3 repetitions"
1691
+ - listitem: "warmth: 2 repetitions"
1692
+ - listitem: "bath: 1 repetitions"
1693
+ - listitem: "nothin: 1 repetitions"
1694
+ - listitem: "math: 1 repetitions"
1695
+ - listitem: "thumpin: 1 repetitions"
1696
+ - listitem: "Hut-on-the-Rock: 1 repetitions"
1697
+ - listitem: "teeth: 1 repetitions"
1698
+ - listitem: "everythin: 1 repetitions"
1699
+ - listitem: "anythin: 1 repetitions"
1700
+ - listitem: "somethin: 3 repetitions"
1701
+ - listitem: "truth: 1 repetitions"
1702
+ - listitem: "third: 1 repetitions"
static/tests/test-classic-1-lite.koboldai.net.spec.ts-snapshots/test-classic-1--desc-word-prefix.txt ADDED
@@ -0,0 +1,1702 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - text: /'th', \d+ occurrences/
2
+ - listitem: "— with: 1 repetitions"
3
+ - listitem: "— three: 1 repetitions"
4
+ - listitem: "— this: 2 repetitions"
5
+ - listitem: "— they: 1 repetitions"
6
+ - listitem: "— these: 1 repetitions"
7
+ - listitem: "— there: 2 repetitions"
8
+ - listitem: "— then: 2 repetitions"
9
+ - listitem: "— the: 4 repetitions"
10
+ - listitem: "— that: 3 repetitions"
11
+ - listitem: "— something: 1 repetitions"
12
+ - listitem: "you this: 1 repetitions"
13
+ - listitem: "you think: 2 repetitions"
14
+ - listitem: "you that: 1 repetitions"
15
+ - listitem: "you another: 1 repetitions"
16
+ - listitem: "yet another: 1 repetitions"
17
+ - listitem: "yeh the: 1 repetitions"
18
+ - listitem: "yeh everythin: 1 repetitions"
19
+ - listitem: "years there: 1 repetitions"
20
+ - listitem: "written them: 1 repetitions"
21
+ - listitem: "wrenched their: 1 repetitions"
22
+ - listitem: "worth,: 1 repetitions"
23
+ - listitem: "worth being: 1 repetitions"
24
+ - listitem: "worth: 2 repetitions"
25
+ - listitem: "worse than: 2 repetitions"
26
+ - listitem: "worried that: 1 repetitions"
27
+ - listitem: "work that: 1 repetitions"
28
+ - listitem: "wondered whether: 1 repetitions"
29
+ - listitem: "woke with: 1 repetitions"
30
+ - listitem: "without waking: 1 repetitions"
31
+ - listitem: "without turning: 1 repetitions"
32
+ - listitem: "without them: 1 repetitions"
33
+ - listitem: "without it: 1 repetitions"
34
+ - listitem: "without even: 1 repetitions"
35
+ - listitem: "without buying: 1 repetitions"
36
+ - listitem: "without blowing: 1 repetitions"
37
+ - listitem: "without a: 2 repetitions"
38
+ - listitem: "without: 9 repetitions"
39
+ - listitem: "with.: 1 repetitions"
40
+ - listitem: "with —: 1 repetitions"
41
+ - listitem: "with your: 1 repetitions"
42
+ - listitem: "with youngsters: 1 repetitions"
43
+ - listitem: "with you: 1 repetitions"
44
+ - listitem: "with wrinkled: 1 repetitions"
45
+ - listitem: "with warmth: 1 repetitions"
46
+ - listitem: "with twin: 1 repetitions"
47
+ - listitem: "with trembling: 1 repetitions"
48
+ - listitem: "with these: 1 repetitions"
49
+ - listitem: "with them: 1 repetitions"
50
+ - listitem: "with their: 1 repetitions"
51
+ - listitem: "/with the: \\d+ repetitions/"
52
+ - listitem: "with that: 2 repetitions"
53
+ - listitem: "with such: 3 repetitions"
54
+ - listitem: "with strange: 1 repetitions"
55
+ - listitem: "with something: 1 repetitions"
56
+ - listitem: "with some: 1 repetitions"
57
+ - listitem: "with rage: 1 repetitions"
58
+ - listitem: "with orange: 1 repetitions"
59
+ - listitem: "with one: 1 repetitions"
60
+ - listitem: "with my: 1 repetitions"
61
+ - listitem: "with living: 1 repetitions"
62
+ - listitem: "with lit: 1 repetitions"
63
+ - listitem: "with hunger: 1 repetitions"
64
+ - listitem: "with howls: 1 repetitions"
65
+ - listitem: "/with his: \\d+ repetitions/"
66
+ - listitem: "with him: 2 repetitions"
67
+ - listitem: "with her: 2 repetitions"
68
+ - listitem: "with hardly: 1 repetitions"
69
+ - listitem: "with half: 1 repetitions"
70
+ - listitem: "with flickering: 1 repetitions"
71
+ - listitem: "with fear: 1 repetitions"
72
+ - listitem: "with families: 1 repetitions"
73
+ - listitem: "with enough: 1 repetitions"
74
+ - listitem: "/with a: \\d+ repetitions/"
75
+ - listitem: "with Piers: 1 repetitions"
76
+ - listitem: "with Muggles: 1 repetitions"
77
+ - listitem: "with Mrs: 1 repetitions"
78
+ - listitem: "with Harry: 2 repetitions"
79
+ - listitem: "with Happy: 1 repetitions"
80
+ - listitem: "with Dudley: 3 repetitions"
81
+ - listitem: "with Aunt: 1 repetitions"
82
+ - listitem: "with ...: 1 repetitions"
83
+ - listitem: "/with: \\d+ repetitions/"
84
+ - listitem: "why the: 1 repetitions"
85
+ - listitem: "whistled through: 1 repetitions"
86
+ - listitem: "whispered something: 1 repetitions"
87
+ - listitem: "whipped their: 1 repetitions"
88
+ - listitem: "while the: 2 repetitions"
89
+ - listitem: "which this: 1 repetitions"
90
+ - listitem: "whether he: 1 repetitions"
91
+ - listitem: "whether: 1 repetitions"
92
+ - listitem: "where they: 1 repetitions"
93
+ - listitem: "where the: 2 repetitions"
94
+ - listitem: "where everything: 1 repetitions"
95
+ - listitem: "when they: 1 repetitions"
96
+ - listitem: "whatever that: 1 repetitions"
97
+ - listitem: "what they: 2 repetitions"
98
+ - listitem: "what the: 1 repetitions"
99
+ - listitem: "were they: 1 repetitions"
100
+ - listitem: "were there: 2 repetitions"
101
+ - listitem: "were the: 3 repetitions"
102
+ - listitem: "were both: 1 repetitions"
103
+ - listitem: "weirdest thing: 1 repetitions"
104
+ - listitem: "weatherman,: 1 repetitions"
105
+ - listitem: "weatherman: 1 repetitions"
106
+ - listitem: "weather.: 1 repetitions"
107
+ - listitem: "weather: 2 repetitions"
108
+ - listitem: "we think: 1 repetitions"
109
+ - listitem: "way through: 1 repetitions"
110
+ - listitem: "way they: 1 repetitions"
111
+ - listitem: "watching them: 1 repetitions"
112
+ - listitem: "watched the: 2 repetitions"
113
+ - listitem: "was thinking: 1 repetitions"
114
+ - listitem: "was thin: 1 repetitions"
115
+ - listitem: "was thick: 1 repetitions"
116
+ - listitem: "was there: 1 repetitions"
117
+ - listitem: "/was the: \\d+ repetitions/"
118
+ - listitem: "was that: 5 repetitions"
119
+ - listitem: "was something: 2 repetitions"
120
+ - listitem: "was somethin: 1 repetitions"
121
+ - listitem: "was rather: 1 repetitions"
122
+ - listitem: "was nothing: 2 repetitions"
123
+ - listitem: "was another: 1 repetitions"
124
+ - listitem: "warmth wash: 1 repetitions"
125
+ - listitem: "warmth and: 1 repetitions"
126
+ - listitem: "warmth: 2 repetitions"
127
+ - listitem: "want everything: 1 repetitions"
128
+ - listitem: "want anythin: 1 repetitions"
129
+ - listitem: "wake the: 2 repetitions"
130
+ - listitem: "voice that: 2 repetitions"
131
+ - listitem: "visit the: 2 repetitions"
132
+ - listitem: "very thin: 1 repetitions"
133
+ - listitem: "vanish the: 1 repetitions"
134
+ - listitem: "vacation with: 1 repetitions"
135
+ - listitem: "usually the: 1 repetitions"
136
+ - listitem: "use them: 1 repetitions"
137
+ - listitem: "up with: 2 repetitions"
138
+ - listitem: "up their: 1 repetitions"
139
+ - listitem: "up the: 8 repetitions"
140
+ - listitem: "unwrap the: 1 repetitions"
141
+ - listitem: "until the: 1 repetitions"
142
+ - listitem: "understand them: 1 repetitions"
143
+ - listitem: "underneath it: 1 repetitions"
144
+ - listitem: "underneath: 1 repetitions"
145
+ - listitem: "under this: 1 repetitions"
146
+ - listitem: "under the: 7 repetitions"
147
+ - listitem: "under that: 1 repetitions"
148
+ - listitem: "twice the: 1 repetitions"
149
+ - listitem: "turned the: 2 repetitions"
150
+ - listitem: "truth.: 1 repetitions"
151
+ - listitem: "truth: 1 repetitions"
152
+ - listitem: "trembled with: 1 repetitions"
153
+ - listitem: "toward them: 1 repetitions"
154
+ - listitem: "toward the: 4 repetitions"
155
+ - listitem: "touch anything: 1 repetitions"
156
+ - listitem: "tortoise through: 1 repetitions"
157
+ - listitem: "toothless old: 1 repetitions"
158
+ - listitem: "toothless: 1 repetitions"
159
+ - listitem: "took both: 1 repetitions"
160
+ - listitem: "toilet the: 1 repetitions"
161
+ - listitem: "together.: 3 repetitions"
162
+ - listitem: "together,: 2 repetitions"
163
+ - listitem: "together with: 1 repetitions"
164
+ - listitem: "together: 6 repetitions"
165
+ - listitem: "to this: 1 repetitions"
166
+ - listitem: "to think: 6 repetitions"
167
+ - listitem: "to them: 2 repetitions"
168
+ - listitem: "to their: 3 repetitions"
169
+ - listitem: "/to the: \\d+ repetitions/"
170
+ - listitem: "to that: 2 repetitions"
171
+ - listitem: "to death: 1 repetitions"
172
+ - listitem: "time they: 2 repetitions"
173
+ - listitem: "thundered.: 1 repetitions"
174
+ - listitem: "thundered,: 1 repetitions"
175
+ - listitem: "thundered: 3 repetitions"
176
+ - listitem: "thunder that: 1 repetitions"
177
+ - listitem: "thumpin': 1 repetitions"
178
+ - listitem: "thumpin: 1 repetitions"
179
+ - listitem: "thrown his: 1 repetitions"
180
+ - listitem: "thrown: 1 repetitions"
181
+ - listitem: "throwing his: 1 repetitions"
182
+ - listitem: "throwing: 1 repetitions"
183
+ - listitem: "throughout the: 1 repetitions"
184
+ - listitem: "throughout: 1 repetitions"
185
+ - listitem: "through when: 1 repetitions"
186
+ - listitem: "/through the: \\d+ repetitions/"
187
+ - listitem: "through pursed: 1 repetitions"
188
+ - listitem: "through his: 1 repetitions"
189
+ - listitem: "through a: 2 repetitions"
190
+ - listitem: "/through: \\d+ repetitions/"
191
+ - listitem: "throat nervously: 1 repetitions"
192
+ - listitem: "throat and: 1 repetitions"
193
+ - listitem: "throat: 2 repetitions"
194
+ - listitem: "threw them: 1 repetitions"
195
+ - listitem: "threw the: 1 repetitions"
196
+ - listitem: "threw it: 2 repetitions"
197
+ - listitem: "threw him: 1 repetitions"
198
+ - listitem: "threw a: 2 repetitions"
199
+ - listitem: "threw: 7 repetitions"
200
+ - listitem: "three of: 1 repetitions"
201
+ - listitem: "three letters: 1 repetitions"
202
+ - listitem: "three ...: 1 repetitions"
203
+ - listitem: "three: 5 repetitions"
204
+ - listitem: "thought,: 1 repetitions"
205
+ - listitem: "thought yeh: 1 repetitions"
206
+ - listitem: "thought two: 1 repetitions"
207
+ - listitem: "thought this: 2 repetitions"
208
+ - listitem: "thought of: 1 repetitions"
209
+ - listitem: "thought nobody: 1 repetitions"
210
+ - listitem: "thought it: 1 repetitions"
211
+ - listitem: "thought he: 5 repetitions"
212
+ - listitem: "thought for: 1 repetitions"
213
+ - listitem: "thought didn: 1 repetitions"
214
+ - listitem: "thought better: 1 repetitions"
215
+ - listitem: "thought before: 1 repetitions"
216
+ - listitem: "thought about: 1 repetitions"
217
+ - listitem: "thought ...: 1 repetitions"
218
+ - listitem: "thought (: 1 repetitions"
219
+ - listitem: "/thought: \\d+ repetitions/"
220
+ - listitem: "though,: 1 repetitions"
221
+ - listitem: "though this: 1 repetitions"
222
+ - listitem: "though they: 1 repetitions"
223
+ - listitem: "though the: 1 repetitions"
224
+ - listitem: "though she: 5 repetitions"
225
+ - listitem: "though people: 1 repetitions"
226
+ - listitem: "though it: 2 repetitions"
227
+ - listitem: "though hoping: 1 repetitions"
228
+ - listitem: "though he: 8 repetitions"
229
+ - listitem: "though Dudley: 1 repetitions"
230
+ - listitem: "/though: \\d+ repetitions/"
231
+ - listitem: "those people: 1 repetitions"
232
+ - listitem: "those letters: 2 repetitions"
233
+ - listitem: "those: 3 repetitions"
234
+ - listitem: "this?: 2 repetitions"
235
+ - listitem: "this.: 2 repetitions"
236
+ - listitem: "this,: 5 repetitions"
237
+ - listitem: "this —: 1 repetitions"
238
+ - listitem: "this wizard: 2 repetitions"
239
+ - listitem: "this was: 8 repetitions"
240
+ - listitem: "this very: 1 repetitions"
241
+ - listitem: "this time: 3 repetitions"
242
+ - listitem: "this stuff: 1 repetitions"
243
+ - listitem: "this son: 1 repetitions"
244
+ - listitem: "this room: 1 repetitions"
245
+ - listitem: "this over: 1 repetitions"
246
+ - listitem: "this normal: 1 repetitions"
247
+ - listitem: "this man: 2 repetitions"
248
+ - listitem: "this lot: 1 repetitions"
249
+ - listitem: "this is: 3 repetitions"
250
+ - listitem: "this in: 1 repetitions"
251
+ - listitem: "this have: 1 repetitions"
252
+ - listitem: "this happy: 1 repetitions"
253
+ - listitem: "this gentleman: 1 repetitions"
254
+ - listitem: "this for: 1 repetitions"
255
+ - listitem: "this cupboard: 1 repetitions"
256
+ - listitem: "this boy: 3 repetitions"
257
+ - listitem: "this bike: 1 repetitions"
258
+ - listitem: "this big: 1 repetitions"
259
+ - listitem: "this badly: 1 repetitions"
260
+ - listitem: "this at: 1 repetitions"
261
+ - listitem: "this and: 1 repetitions"
262
+ - listitem: "this about: 1 repetitions"
263
+ - listitem: "this You-: 1 repetitions"
264
+ - listitem: "/this: \\d+ repetitions/"
265
+ - listitem: "thirty-seven then: 1 repetitions"
266
+ - listitem: "thirty-seven: 1 repetitions"
267
+ - listitem: "thirty or: 1 repetitions"
268
+ - listitem: "thirty ...: 2 repetitions"
269
+ - listitem: "thirty: 4 repetitions"
270
+ - listitem: "third year: 1 repetitions"
271
+ - listitem: "third: 1 repetitions"
272
+ - listitem: "thinnest,: 1 repetitions"
273
+ - listitem: "thinnest: 1 repetitions"
274
+ - listitem: "thinking about: 4 repetitions"
275
+ - listitem: "thinking ...: 2 repetitions"
276
+ - listitem: "think you: 2 repetitions"
277
+ - listitem: "think what: 1 repetitions"
278
+ - listitem: "think this: 1 repetitions"
279
+ - listitem: "think they: 3 repetitions"
280
+ - listitem: "think of: 3 repetitions"
281
+ - listitem: "think it: 2 repetitions"
282
+ - listitem: "think he: 2 repetitions"
283
+ - listitem: "think I: 2 repetitions"
284
+ - listitem: "/think: \\d+ repetitions/"
285
+ - listitem: "things?: 1 repetitions"
286
+ - listitem: "things:: 1 repetitions"
287
+ - listitem: "things,: 2 repetitions"
288
+ - listitem: "things would: 1 repetitions"
289
+ - listitem: "things with: 1 repetitions"
290
+ - listitem: "things tomorrow: 1 repetitions"
291
+ - listitem: "things to: 2 repetitions"
292
+ - listitem: "things that: 2 repetitions"
293
+ - listitem: "things out: 1 repetitions"
294
+ - listitem: "things often: 1 repetitions"
295
+ - listitem: "things lay: 1 repetitions"
296
+ - listitem: "things in: 1 repetitions"
297
+ - listitem: "things gray: 1 repetitions"
298
+ - listitem: "things began: 1 repetitions"
299
+ - listitem: "/things: \\d+ repetitions/"
300
+ - listitem: "thing —: 1 repetitions"
301
+ - listitem: "thing while: 1 repetitions"
302
+ - listitem: "thing was: 1 repetitions"
303
+ - listitem: "thing the: 1 repetitions"
304
+ - listitem: "thing it: 1 repetitions"
305
+ - listitem: "thing he: 1 repetitions"
306
+ - listitem: "thing happened: 3 repetitions"
307
+ - listitem: "thing about: 1 repetitions"
308
+ - listitem: "thing Harry: 1 repetitions"
309
+ - listitem: "thin,: 1 repetitions"
310
+ - listitem: "thin scar: 1 repetitions"
311
+ - listitem: "thin package: 2 repetitions"
312
+ - listitem: "thin face: 1 repetitions"
313
+ - listitem: "thin and: 1 repetitions"
314
+ - listitem: "thin: 6 repetitions"
315
+ - listitem: "thick,: 2 repetitions"
316
+ - listitem: "thick blond: 1 repetitions"
317
+ - listitem: "thick black: 1 repetitions"
318
+ - listitem: "thick and: 1 repetitions"
319
+ - listitem: "thick: 5 repetitions"
320
+ - listitem: "they?: 1 repetitions"
321
+ - listitem: "/they': \\d+ repetitions/"
322
+ - listitem: "they wouldn: 1 repetitions"
323
+ - listitem: "they weren: 2 repetitions"
324
+ - listitem: "/they were: \\d+ repetitions/"
325
+ - listitem: "they went: 3 repetitions"
326
+ - listitem: "they watched: 1 repetitions"
327
+ - listitem: "they wanted: 1 repetitions"
328
+ - listitem: "they seemed: 3 repetitions"
329
+ - listitem: "they reached: 1 repetitions"
330
+ - listitem: "they possibly: 1 repetitions"
331
+ - listitem: "they pointed: 1 repetitions"
332
+ - listitem: "they normally: 1 repetitions"
333
+ - listitem: "they made: 1 repetitions"
334
+ - listitem: "they looked: 1 repetitions"
335
+ - listitem: "they left: 1 repetitions"
336
+ - listitem: "they knew: 1 repetitions"
337
+ - listitem: "they just: 1 repetitions"
338
+ - listitem: "they hadn: 1 repetitions"
339
+ - listitem: "they had: 5 repetitions"
340
+ - listitem: "they got: 2 repetitions"
341
+ - listitem: "they don: 2 repetitions"
342
+ - listitem: "they died: 1 repetitions"
343
+ - listitem: "they didn: 4 repetitions"
344
+ - listitem: "they couldn: 2 repetitions"
345
+ - listitem: "they could: 6 repetitions"
346
+ - listitem: "they can: 1 repetitions"
347
+ - listitem: "they bought: 1 repetitions"
348
+ - listitem: "they both: 1 repetitions"
349
+ - listitem: "they been: 1 repetitions"
350
+ - listitem: "they await: 1 repetitions"
351
+ - listitem: "they always: 1 repetitions"
352
+ - listitem: "they also: 2 repetitions"
353
+ - listitem: "/they: \\d+ repetitions/"
354
+ - listitem: "these years: 1 repetitions"
355
+ - listitem: "these wizarding: 1 repetitions"
356
+ - listitem: "these weirdos: 1 repetitions"
357
+ - listitem: "these people: 4 repetitions"
358
+ - listitem: "these birds: 1 repetitions"
359
+ - listitem: "these at: 1 repetitions"
360
+ - listitem: "these: 9 repetitions"
361
+ - listitem: "there?: 3 repetitions"
362
+ - listitem: "there.: 6 repetitions"
363
+ - listitem: "there,: 4 repetitions"
364
+ - listitem: "there!: 1 repetitions"
365
+ - listitem: "there —: 1 repetitions"
366
+ - listitem: "there will: 1 repetitions"
367
+ - listitem: "there were: 4 repetitions"
368
+ - listitem: "there wasn: 3 repetitions"
369
+ - listitem: "/there was: \\d+ repetitions/"
370
+ - listitem: "there too: 1 repetitions"
371
+ - listitem: "there somewhere: 1 repetitions"
372
+ - listitem: "there seemed: 1 repetitions"
373
+ - listitem: "there might: 1 repetitions"
374
+ - listitem: "there he: 1 repetitions"
375
+ - listitem: "there have: 1 repetitions"
376
+ - listitem: "there had: 3 repetitions"
377
+ - listitem: "there could: 1 repetitions"
378
+ - listitem: "there and: 1 repetitions"
379
+ - listitem: "there ...: 1 repetitions"
380
+ - listitem: "/there: \\d+ repetitions/"
381
+ - listitem: "then.: 2 repetitions"
382
+ - listitem: "then,: 7 repetitions"
383
+ - listitem: "then went: 1 repetitions"
384
+ - listitem: "then walked: 1 repetitions"
385
+ - listitem: "then tomorrow: 1 repetitions"
386
+ - listitem: "then told: 1 repetitions"
387
+ - listitem: "then the: 1 repetitions"
388
+ - listitem: "then said: 2 repetitions"
389
+ - listitem: "then raised: 1 repetitions"
390
+ - listitem: "then it: 1 repetitions"
391
+ - listitem: "then forced: 1 repetitions"
392
+ - listitem: "then came: 1 repetitions"
393
+ - listitem: "then Uncle: 1 repetitions"
394
+ - listitem: "/then: \\d+ repetitions/"
395
+ - listitem: "/them\\.: \\d+ repetitions/"
396
+ - listitem: "/them,: \\d+ repetitions/"
397
+ - listitem: "them weren: 1 repetitions"
398
+ - listitem: "them were: 1 repetitions"
399
+ - listitem: "them we: 1 repetitions"
400
+ - listitem: "them up: 1 repetitions"
401
+ - listitem: "them to: 1 repetitions"
402
+ - listitem: "them they: 1 repetitions"
403
+ - listitem: "them stood: 1 repetitions"
404
+ - listitem: "them out: 1 repetitions"
405
+ - listitem: "them on: 1 repetitions"
406
+ - listitem: "them noticed: 1 repetitions"
407
+ - listitem: "them next: 1 repetitions"
408
+ - listitem: "them knew: 1 repetitions"
409
+ - listitem: "them jump: 1 repetitions"
410
+ - listitem: "them into: 2 repetitions"
411
+ - listitem: "them in: 2 repetitions"
412
+ - listitem: "them how: 1 repetitions"
413
+ - listitem: "them here: 1 repetitions"
414
+ - listitem: "them happen: 1 repetitions"
415
+ - listitem: "them had: 1 repetitions"
416
+ - listitem: "them cheerfully: 1 repetitions"
417
+ - listitem: "them as: 3 repetitions"
418
+ - listitem: "them angrily: 1 repetitions"
419
+ - listitem: "them and: 2 repetitions"
420
+ - listitem: "them all: 3 repetitions"
421
+ - listitem: "them a: 1 repetitions"
422
+ - listitem: "them Harry: 1 repetitions"
423
+ - listitem: "/them: \\d+ repetitions/"
424
+ - listitem: "their window: 1 repetitions"
425
+ - listitem: "their way: 2 repetitions"
426
+ - listitem: "their very: 1 repetitions"
427
+ - listitem: "their table: 1 repetitions"
428
+ - listitem: "their street: 1 repetitions"
429
+ - listitem: "their son: 2 repetitions"
430
+ - listitem: "their sleeping: 1 repetitions"
431
+ - listitem: "their reach: 1 repetitions"
432
+ - listitem: "their opinion: 1 repetitions"
433
+ - listitem: "their news: 1 repetitions"
434
+ - listitem: "their nephew: 1 repetitions"
435
+ - listitem: "their necks: 2 repetitions"
436
+ - listitem: "their living: 1 repetitions"
437
+ - listitem: "their leather: 1 repetitions"
438
+ - listitem: "their kind: 1 repetitions"
439
+ - listitem: "their heels: 1 repetitions"
440
+ - listitem: "their greatest: 1 repetitions"
441
+ - listitem: "their glasses: 1 repetitions"
442
+ - listitem: "their fingers: 1 repetitions"
443
+ - listitem: "their favorite: 1 repetitions"
444
+ - listitem: "their faces: 2 repetitions"
445
+ - listitem: "their day: 1 repetitions"
446
+ - listitem: "their corner: 1 repetitions"
447
+ - listitem: "their backs: 1 repetitions"
448
+ - listitem: "their arms: 1 repetitions"
449
+ - listitem: "/their: \\d+ repetitions/"
450
+ - listitem: "the zoo: 6 repetitions"
451
+ - listitem: "the young: 1 repetitions"
452
+ - listitem: "the yellowish: 1 repetitions"
453
+ - listitem: "the yellow: 1 repetitions"
454
+ - listitem: "the world: 3 repetitions"
455
+ - listitem: "the words: 1 repetitions"
456
+ - listitem: "the wooden: 1 repetitions"
457
+ - listitem: "the windowsill: 1 repetitions"
458
+ - listitem: "the window: 2 repetitions"
459
+ - listitem: "the wind: 2 repetitions"
460
+ - listitem: "the whole: 5 repetitions"
461
+ - listitem: "the whistling: 1 repetitions"
462
+ - listitem: "the whisperers: 1 repetitions"
463
+ - listitem: "the week: 1 repetitions"
464
+ - listitem: "the weatherman: 1 repetitions"
465
+ - listitem: "the weather: 1 repetitions"
466
+ - listitem: "/the way: \\d+ repetitions/"
467
+ - listitem: "the wash: 1 repetitions"
468
+ - listitem: "the warmth: 1 repetitions"
469
+ - listitem: "the wall: 9 repetitions"
470
+ - listitem: "the waist: 1 repetitions"
471
+ - listitem: "the village: 1 repetitions"
472
+ - listitem: "the very: 3 repetitions"
473
+ - listitem: "the van: 1 repetitions"
474
+ - listitem: "the usual: 2 repetitions"
475
+ - listitem: "the umbrella: 1 repetitions"
476
+ - listitem: "the two: 1 repetitions"
477
+ - listitem: "the twinkling: 1 repetitions"
478
+ - listitem: "the truth: 1 repetitions"
479
+ - listitem: "the toys: 1 repetitions"
480
+ - listitem: "the top: 3 repetitions"
481
+ - listitem: "the toilet: 1 repetitions"
482
+ - listitem: "the tiny: 1 repetitions"
483
+ - listitem: "the time: 6 repetitions"
484
+ - listitem: "the three: 1 repetitions"
485
+ - listitem: "the thought: 1 repetitions"
486
+ - listitem: "the thinnest: 1 repetitions"
487
+ - listitem: "the things: 2 repetitions"
488
+ - listitem: "the telephone: 3 repetitions"
489
+ - listitem: "the teachers: 1 repetitions"
490
+ - listitem: "the tank: 1 repetitions"
491
+ - listitem: "the table: 5 repetitions"
492
+ - listitem: "the tabby: 2 repetitions"
493
+ - listitem: "the summer: 1 repetitions"
494
+ - listitem: "the subject: 1 repetitions"
495
+ - listitem: "/the street: \\d+ repetitions/"
496
+ - listitem: "the stranger: 1 repetitions"
497
+ - listitem: "the stove: 1 repetitions"
498
+ - listitem: "the storm: 3 repetitions"
499
+ - listitem: "the step: 1 repetitions"
500
+ - listitem: "the steering: 1 repetitions"
501
+ - listitem: "the stairs: 2 repetitions"
502
+ - listitem: "the spot: 2 repetitions"
503
+ - listitem: "the sound: 3 repetitions"
504
+ - listitem: "the softest: 1 repetitions"
505
+ - listitem: "the sofa: 7 repetitions"
506
+ - listitem: "/the snake: \\d+ repetitions/"
507
+ - listitem: "the smiling: 1 repetitions"
508
+ - listitem: "the smell: 1 repetitions"
509
+ - listitem: "the smaller: 1 repetitions"
510
+ - listitem: "the small: 1 repetitions"
511
+ - listitem: "the sky: 1 repetitions"
512
+ - listitem: "the size: 1 repetitions"
513
+ - listitem: "the sink: 1 repetitions"
514
+ - listitem: "the silver: 2 repetitions"
515
+ - listitem: "the silence: 1 repetitions"
516
+ - listitem: "the sign: 3 repetitions"
517
+ - listitem: "the sight: 1 repetitions"
518
+ - listitem: "the sides: 1 repetitions"
519
+ - listitem: "the shriveled: 1 repetitions"
520
+ - listitem: "the shoulder: 1 repetitions"
521
+ - listitem: "the shop: 1 repetitions"
522
+ - listitem: "the shape: 1 repetitions"
523
+ - listitem: "the shadows: 1 repetitions"
524
+ - listitem: "the second: 3 repetitions"
525
+ - listitem: "the sea: 4 repetitions"
526
+ - listitem: "the scruffs: 1 repetitions"
527
+ - listitem: "the school: 2 repetitions"
528
+ - listitem: "the sausages: 1 repetitions"
529
+ - listitem: "/the same: \\d+ repetitions/"
530
+ - listitem: "the rumors: 2 repetitions"
531
+ - listitem: "the ruined: 1 repetitions"
532
+ - listitem: "the room: 6 repetitions"
533
+ - listitem: "the roof: 3 repetitions"
534
+ - listitem: "the rock: 4 repetitions"
535
+ - listitem: "the road: 4 repetitions"
536
+ - listitem: "the right: 2 repetitions"
537
+ - listitem: "the ribs: 1 repetitions"
538
+ - listitem: "the rest: 3 repetitions"
539
+ - listitem: "the reptile: 3 repetitions"
540
+ - listitem: "the receiver: 1 repetitions"
541
+ - listitem: "the reasons: 1 repetitions"
542
+ - listitem: "the real: 2 repetitions"
543
+ - listitem: "the rain: 1 repetitions"
544
+ - listitem: "the racing: 2 repetitions"
545
+ - listitem: "the proudest: 1 repetitions"
546
+ - listitem: "the promised: 1 repetitions"
547
+ - listitem: "the postman: 1 repetitions"
548
+ - listitem: "the postcard: 2 repetitions"
549
+ - listitem: "the post: 1 repetitions"
550
+ - listitem: "the poker: 1 repetitions"
551
+ - listitem: "the point: 2 repetitions"
552
+ - listitem: "the pockets: 2 repetitions"
553
+ - listitem: "the plates: 1 repetitions"
554
+ - listitem: "the place: 3 repetitions"
555
+ - listitem: "the piece: 1 repetitions"
556
+ - listitem: "the photographs: 2 repetitions"
557
+ - listitem: "the perfect: 1 repetitions"
558
+ - listitem: "the people: 3 repetitions"
559
+ - listitem: "the pavement: 1 repetitions"
560
+ - listitem: "the paper: 1 repetitions"
561
+ - listitem: "the owner: 1 repetitions"
562
+ - listitem: "the owls: 7 repetitions"
563
+ - listitem: "the outskirts: 1 repetitions"
564
+ - listitem: "the other: 7 repetitions"
565
+ - listitem: "the opposite: 1 repetitions"
566
+ - listitem: "the only: 9 repetitions"
567
+ - listitem: "the one: 1 repetitions"
568
+ - listitem: "the old: 1 repetitions"
569
+ - listitem: "the note: 1 repetitions"
570
+ - listitem: "the nose: 1 repetitions"
571
+ - listitem: "the ninth: 1 repetitions"
572
+ - listitem: "the night: 3 repetitions"
573
+ - listitem: "/the next: \\d+ repetitions/"
574
+ - listitem: "the news: 2 repetitions"
575
+ - listitem: "the neighbors: 2 repetitions"
576
+ - listitem: "the neck: 1 repetitions"
577
+ - listitem: "the neat: 1 repetitions"
578
+ - listitem: "the nation: 1 repetitions"
579
+ - listitem: "the name: 3 repetitions"
580
+ - listitem: "the myst: 1 repetitions"
581
+ - listitem: "the movies: 1 repetitions"
582
+ - listitem: "the motorcycle: 3 repetitions"
583
+ - listitem: "the moth-eaten: 1 repetitions"
584
+ - listitem: "the most: 1 repetitions"
585
+ - listitem: "the mood: 1 repetitions"
586
+ - listitem: "the moment: 4 repetitions"
587
+ - listitem: "the milk: 1 repetitions"
588
+ - listitem: "the middle: 3 repetitions"
589
+ - listitem: "the markings: 1 repetitions"
590
+ - listitem: "the mantelpiece: 1 repetitions"
591
+ - listitem: "the man: 3 repetitions"
592
+ - listitem: "the mail: 8 repetitions"
593
+ - listitem: "the lumpy: 1 repetitions"
594
+ - listitem: "the low: 2 repetitions"
595
+ - listitem: "the lot: 1 repetitions"
596
+ - listitem: "the long: 1 repetitions"
597
+ - listitem: "the locked: 1 repetitions"
598
+ - listitem: "the local: 1 repetitions"
599
+ - listitem: "the living: 4 repetitions"
600
+ - listitem: "the little: 1 repetitions"
601
+ - listitem: "the lights: 4 repetitions"
602
+ - listitem: "the library: 1 repetitions"
603
+ - listitem: "/the letter: \\d+ repetitions/"
604
+ - listitem: "the leader: 1 repetitions"
605
+ - listitem: "the last: 2 repetitions"
606
+ - listitem: "the largest: 1 repetitions"
607
+ - listitem: "/the kitchen: \\d+ repetitions/"
608
+ - listitem: "the keyhole: 1 repetitions"
609
+ - listitem: "the job: 1 repetitions"
610
+ - listitem: "the iron-gray: 1 repetitions"
611
+ - listitem: "the inky: 1 repetitions"
612
+ - listitem: "the hut: 4 repetitions"
613
+ - listitem: "/the house: \\d+ repetitions/"
614
+ - listitem: "the hotel: 1 repetitions"
615
+ - listitem: "the holidays: 1 repetitions"
616
+ - listitem: "the highway: 1 repetitions"
617
+ - listitem: "the high: 1 repetitions"
618
+ - listitem: "the head: 3 repetitions"
619
+ - listitem: "the hall: 6 repetitions"
620
+ - listitem: "the hair: 1 repetitions"
621
+ - listitem: "the gun: 1 repetitions"
622
+ - listitem: "the ground: 4 repetitions"
623
+ - listitem: "the greenhouse: 1 repetitions"
624
+ - listitem: "the green: 2 repetitions"
625
+ - listitem: "the greatest: 2 repetitions"
626
+ - listitem: "the grayish: 1 repetitions"
627
+ - listitem: "the glistening: 1 repetitions"
628
+ - listitem: "/the glass: \\d+ repetitions/"
629
+ - listitem: "/the giant: \\d+ repetitions/"
630
+ - listitem: "the getups: 1 repetitions"
631
+ - listitem: "the gap: 2 repetitions"
632
+ - listitem: "the future: 1 repetitions"
633
+ - listitem: "the furious: 1 repetitions"
634
+ - listitem: "the frying: 1 repetitions"
635
+ - listitem: "the front: 8 repetitions"
636
+ - listitem: "the foot: 1 repetitions"
637
+ - listitem: "the floor: 4 repetitions"
638
+ - listitem: "/the first: \\d+ repetitions/"
639
+ - listitem: "the fireplace: 3 repetitions"
640
+ - listitem: "the firelight: 1 repetitions"
641
+ - listitem: "the fire: 2 repetitions"
642
+ - listitem: "the finest: 1 repetitions"
643
+ - listitem: "the filthy: 1 repetitions"
644
+ - listitem: "the fierce: 1 repetitions"
645
+ - listitem: "the far: 1 repetitions"
646
+ - listitem: "the family: 2 repetitions"
647
+ - listitem: "the fair: 1 repetitions"
648
+ - listitem: "the fact: 1 repetitions"
649
+ - listitem: "the face: 1 repetitions"
650
+ - listitem: "the eyes: 1 repetitions"
651
+ - listitem: "the exits: 1 repetitions"
652
+ - listitem: "the evening: 1 repetitions"
653
+ - listitem: "the envelope: 3 repetitions"
654
+ - listitem: "the entrance: 1 repetitions"
655
+ - listitem: "the engine: 1 repetitions"
656
+ - listitem: "the end: 3 repetitions"
657
+ - listitem: "the empty: 2 repetitions"
658
+ - listitem: "the edge: 3 repetitions"
659
+ - listitem: "the dull: 1 repetitions"
660
+ - listitem: "the driveway: 1 repetitions"
661
+ - listitem: "the dream: 1 repetitions"
662
+ - listitem: "the downstairs: 1 repetitions"
663
+ - listitem: "the doorway: 1 repetitions"
664
+ - listitem: "the doormat: 3 repetitions"
665
+ - listitem: "the doorbell: 1 repetitions"
666
+ - listitem: "/the door: \\d+ repetitions/"
667
+ - listitem: "the distance: 1 repetitions"
668
+ - listitem: "the director: 1 repetitions"
669
+ - listitem: "the dining: 1 repetitions"
670
+ - listitem: "the day: 4 repetitions"
671
+ - listitem: "the dark: 2 repetitions"
672
+ - listitem: "the dairy: 1 repetitions"
673
+ - listitem: "the cupboard: 3 repetitions"
674
+ - listitem: "the crash: 1 repetitions"
675
+ - listitem: "the crack: 2 repetitions"
676
+ - listitem: "the country: 2 repetitions"
677
+ - listitem: "the council: 1 repetitions"
678
+ - listitem: "the corner: 8 repetitions"
679
+ - listitem: "the contrary: 1 repetitions"
680
+ - listitem: "the concrete: 1 repetitions"
681
+ - listitem: "the coast: 1 repetitions"
682
+ - listitem: "the cloudy: 1 repetitions"
683
+ - listitem: "the click: 1 repetitions"
684
+ - listitem: "the chimney: 1 repetitions"
685
+ - listitem: "the cheek: 1 repetitions"
686
+ - listitem: "the celebrations: 1 repetitions"
687
+ - listitem: "the ceiling: 3 repetitions"
688
+ - listitem: "/the cat: \\d+ repetitions/"
689
+ - listitem: "the car: 9 repetitions"
690
+ - listitem: "the cannon: 1 repetitions"
691
+ - listitem: "the bundle: 2 repetitions"
692
+ - listitem: "the building: 1 repetitions"
693
+ - listitem: "the broken-down: 1 repetitions"
694
+ - listitem: "the breakfast: 1 repetitions"
695
+ - listitem: "the brass: 1 repetitions"
696
+ - listitem: "the boy: 7 repetitions"
697
+ - listitem: "the bowl: 1 repetitions"
698
+ - listitem: "the boat: 1 repetitions"
699
+ - listitem: "the boarded-up: 1 repetitions"
700
+ - listitem: "the blinding: 1 repetitions"
701
+ - listitem: "the bill: 2 repetitions"
702
+ - listitem: "the biggest: 3 repetitions"
703
+ - listitem: "the big: 2 repetitions"
704
+ - listitem: "the best: 3 repetitions"
705
+ - listitem: "the beetle: 1 repetitions"
706
+ - listitem: "the bedroom: 1 repetitions"
707
+ - listitem: "the bed: 2 repetitions"
708
+ - listitem: "the bathroom: 1 repetitions"
709
+ - listitem: "the barbers: 1 repetitions"
710
+ - listitem: "the bank: 1 repetitions"
711
+ - listitem: "the bakery: 1 repetitions"
712
+ - listitem: "the baker: 1 repetitions"
713
+ - listitem: "the bacon: 2 repetitions"
714
+ - listitem: "the back: 5 repetitions"
715
+ - listitem: "the arm: 1 repetitions"
716
+ - listitem: "the animals: 1 repetitions"
717
+ - listitem: "the air: 6 repetitions"
718
+ - listitem: "the age: 1 repetitions"
719
+ - listitem: "the address: 2 repetitions"
720
+ - listitem: "the Tulips: 1 repetitions"
721
+ - listitem: "the Smelting: 2 repetitions"
722
+ - listitem: "the Put-Outer: 1 repetitions"
723
+ - listitem: "the Put-: 1 repetitions"
724
+ - listitem: "the Prewetts: 1 repetitions"
725
+ - listitem: "/the Potters: \\d+ repetitions/"
726
+ - listitem: "the Muggles: 4 repetitions"
727
+ - listitem: "the McKinnons: 1 repetitions"
728
+ - listitem: "the London: 1 repetitions"
729
+ - listitem: "the Isle: 1 repetitions"
730
+ - listitem: "the Grunnings: 1 repetitions"
731
+ - listitem: "/the Dursleys: \\d+ repetitions/"
732
+ - listitem: "the Brazilian: 1 repetitions"
733
+ - listitem: "the Bones: 1 repetitions"
734
+ - listitem: "/the: \\d+ repetitions/"
735
+ - listitem: "that?: 2 repetitions"
736
+ - listitem: "that.: 3 repetitions"
737
+ - listitem: "that,: 5 repetitions"
738
+ - listitem: "/that': \\d+ repetitions/"
739
+ - listitem: "that —: 1 repetitions"
740
+ - listitem: "that you: 2 repetitions"
741
+ - listitem: "that wouldn: 1 repetitions"
742
+ - listitem: "that would: 1 repetitions"
743
+ - listitem: "that where: 1 repetitions"
744
+ - listitem: "that when: 1 repetitions"
745
+ - listitem: "that whatever: 1 repetitions"
746
+ - listitem: "that way: 1 repetitions"
747
+ - listitem: "that wasn: 1 repetitions"
748
+ - listitem: "that was: 7 repetitions"
749
+ - listitem: "that usually: 1 repetitions"
750
+ - listitem: "that until: 1 repetitions"
751
+ - listitem: "that this: 2 repetitions"
752
+ - listitem: "that they: 3 repetitions"
753
+ - listitem: "that there: 1 repetitions"
754
+ - listitem: "that their: 1 repetitions"
755
+ - listitem: "that the: 9 repetitions"
756
+ - listitem: "that ter: 1 repetitions"
757
+ - listitem: "that tea: 1 repetitions"
758
+ - listitem: "that tasted: 1 repetitions"
759
+ - listitem: "that swept: 1 repetitions"
760
+ - listitem: "that strangers: 1 repetitions"
761
+ - listitem: "that strange: 1 repetitions"
762
+ - listitem: "that started: 1 repetitions"
763
+ - listitem: "that sounded: 1 repetitions"
764
+ - listitem: "that somebody: 1 repetitions"
765
+ - listitem: "that school: 1 repetitions"
766
+ - listitem: "that scar: 1 repetitions"
767
+ - listitem: "that said: 2 repetitions"
768
+ - listitem: "that sad: 1 repetitions"
769
+ - listitem: "that rubbish: 1 repetitions"
770
+ - listitem: "that room: 1 repetitions"
771
+ - listitem: "that ridiculous: 1 repetitions"
772
+ - listitem: "that reminds: 1 repetitions"
773
+ - listitem: "that odd: 1 repetitions"
774
+ - listitem: "that no: 1 repetitions"
775
+ - listitem: "that night: 1 repetitions"
776
+ - listitem: "that motorcycle: 1 repetitions"
777
+ - listitem: "that morning: 2 repetitions"
778
+ - listitem: "that moment: 3 repetitions"
779
+ - listitem: "that might: 1 repetitions"
780
+ - listitem: "that meant: 1 repetitions"
781
+ - listitem: "that mark: 1 repetitions"
782
+ - listitem: "that man: 1 repetitions"
783
+ - listitem: "that made: 2 repetitions"
784
+ - listitem: "that looked: 2 repetitions"
785
+ - listitem: "that little: 1 repetitions"
786
+ - listitem: "that letter: 2 repetitions"
787
+ - listitem: "that lay: 1 repetitions"
788
+ - listitem: "that last: 1 repetitions"
789
+ - listitem: "that it: 3 repetitions"
790
+ - listitem: "that is: 1 repetitions"
791
+ - listitem: "that instead: 1 repetitions"
792
+ - listitem: "that if: 1 repetitions"
793
+ - listitem: "that horrible: 1 repetitions"
794
+ - listitem: "that his: 1 repetitions"
795
+ - listitem: "that he: 9 repetitions"
796
+ - listitem: "that have: 1 repetitions"
797
+ - listitem: "that had: 1 repetitions"
798
+ - listitem: "that funny: 1 repetitions"
799
+ - listitem: "that fateful: 1 repetitions"
800
+ - listitem: "that day: 2 repetitions"
801
+ - listitem: "that dangerous: 1 repetitions"
802
+ - listitem: "that cupboard: 1 repetitions"
803
+ - listitem: "that couldn: 1 repetitions"
804
+ - listitem: "that at: 1 repetitions"
805
+ - listitem: "that are: 1 repetitions"
806
+ - listitem: "that another: 1 repetitions"
807
+ - listitem: "that and: 1 repetitions"
808
+ - listitem: "that all: 2 repetitions"
809
+ - listitem: "that afternoon: 2 repetitions"
810
+ - listitem: "that a: 1 repetitions"
811
+ - listitem: "that Professor: 1 repetitions"
812
+ - listitem: "that Privet: 1 repetitions"
813
+ - listitem: "that Potter: 1 repetitions"
814
+ - listitem: "that Mrs: 1 repetitions"
815
+ - listitem: "that Lily: 1 repetitions"
816
+ - listitem: "that Harry: 5 repetitions"
817
+ - listitem: "that Hagrid: 1 repetitions"
818
+ - listitem: "that Dudley: 5 repetitions"
819
+ - listitem: "that ...: 1 repetitions"
820
+ - listitem: "/that: \\d+ repetitions/"
821
+ - listitem: "thanks,: 1 repetitions"
822
+ - listitem: "thankful for: 1 repetitions"
823
+ - listitem: "thank you: 3 repetitions"
824
+ - listitem: "thank: 5 repetitions"
825
+ - listitem: "than worse: 1 repetitions"
826
+ - listitem: "than up: 1 repetitions"
827
+ - listitem: "than twelve: 1 repetitions"
828
+ - listitem: "than the: 1 repetitions"
829
+ - listitem: "than last: 1 repetitions"
830
+ - listitem: "than his: 1 repetitions"
831
+ - listitem: "than he: 4 repetitions"
832
+ - listitem: "than having: 1 repetitions"
833
+ - listitem: "than a: 1 repetitions"
834
+ - listitem: "than Vernon: 1 repetitions"
835
+ - listitem: "than July: 1 repetitions"
836
+ - listitem: "/than: \\d+ repetitions/"
837
+ - listitem: "terrible things: 1 repetitions"
838
+ - listitem: "ter this: 1 repetitions"
839
+ - listitem: "ter the: 1 repetitions"
840
+ - listitem: "telling them: 3 repetitions"
841
+ - listitem: "telling the: 2 repetitions"
842
+ - listitem: "teeth he: 1 repetitions"
843
+ - listitem: "teeth: 1 repetitions"
844
+ - listitem: "tearing the: 1 repetitions"
845
+ - listitem: "tea through: 1 repetitions"
846
+ - listitem: "tea then: 1 repetitions"
847
+ - listitem: "tasted anything: 1 repetitions"
848
+ - listitem: "take them: 1 repetitions"
849
+ - listitem: "take the: 1 repetitions"
850
+ - listitem: "t think: 5 repetitions"
851
+ - listitem: "t they: 1 repetitions"
852
+ - listitem: "t there: 1 repetitions"
853
+ - listitem: "swept the: 1 repetitions"
854
+ - listitem: "sure they: 1 repetitions"
855
+ - listitem: "sure there: 2 repetitions"
856
+ - listitem: "sure the: 2 repetitions"
857
+ - listitem: "sure that: 3 repetitions"
858
+ - listitem: "supposed this: 1 repetitions"
859
+ - listitem: "supposed that: 1 repetitions"
860
+ - listitem: "suggest that: 1 repetitions"
861
+ - listitem: "stuffing the: 1 repetitions"
862
+ - listitem: "street the: 1 repetitions"
863
+ - listitem: "street that: 1 repetitions"
864
+ - listitem: "strangers they: 1 repetitions"
865
+ - listitem: "strange things: 1 repetitions"
866
+ - listitem: "stop there: 1 repetitions"
867
+ - listitem: "stood with: 1 repetitions"
868
+ - listitem: "still there: 2 repetitions"
869
+ - listitem: "squeezed through: 1 repetitions"
870
+ - listitem: "squashy something: 1 repetitions"
871
+ - listitem: "spotted that: 1 repetitions"
872
+ - listitem: "spot with: 1 repetitions"
873
+ - listitem: "spoils everything: 1 repetitions"
874
+ - listitem: "splattered the: 1 repetitions"
875
+ - listitem: "spend the: 2 repetitions"
876
+ - listitem: "sorry that: 1 repetitions"
877
+ - listitem: "somewhere with: 1 repetitions"
878
+ - listitem: "somewhere that: 1 repetitions"
879
+ - listitem: "something.: 4 repetitions"
880
+ - listitem: "something,: 1 repetitions"
881
+ - listitem: "something': 1 repetitions"
882
+ - listitem: "something!: 1 repetitions"
883
+ - listitem: "something very: 2 repetitions"
884
+ - listitem: "something to: 4 repetitions"
885
+ - listitem: "something that: 1 repetitions"
886
+ - listitem: "something strange: 1 repetitions"
887
+ - listitem: "something peculiar: 1 repetitions"
888
+ - listitem: "something he: 2 repetitions"
889
+ - listitem: "something had: 1 repetitions"
890
+ - listitem: "something else: 2 repetitions"
891
+ - listitem: "something creak: 1 repetitions"
892
+ - listitem: "something big: 1 repetitions"
893
+ - listitem: "something as: 1 repetitions"
894
+ - listitem: "something alive: 1 repetitions"
895
+ - listitem: "something about: 1 repetitions"
896
+ - listitem: "something ...: 1 repetitions"
897
+ - listitem: "/something: \\d+ repetitions/"
898
+ - listitem: "somethin': 3 repetitions"
899
+ - listitem: "somethin: 3 repetitions"
900
+ - listitem: "some things: 1 repetitions"
901
+ - listitem: "some clothes: 1 repetitions"
902
+ - listitem: "so they: 1 repetitions"
903
+ - listitem: "so that: 3 repetitions"
904
+ - listitem: "snapped through: 1 repetitions"
905
+ - listitem: "smoothly on: 1 repetitions"
906
+ - listitem: "smoothly: 1 repetitions"
907
+ - listitem: "smartly with: 1 repetitions"
908
+ - listitem: "slotted through: 1 repetitions"
909
+ - listitem: "slot they: 1 repetitions"
910
+ - listitem: "slithering over: 1 repetitions"
911
+ - listitem: "slithering out: 1 repetitions"
912
+ - listitem: "slithering: 2 repetitions"
913
+ - listitem: "slipped the: 1 repetitions"
914
+ - listitem: "slid the: 1 repetitions"
915
+ - listitem: "slammed the: 3 repetitions"
916
+ - listitem: "skinnier than: 1 repetitions"
917
+ - listitem: "since the: 1 repetitions"
918
+ - listitem: "sign that: 1 repetitions"
919
+ - listitem: "shredded the: 1 repetitions"
920
+ - listitem: "shouted that: 1 repetitions"
921
+ - listitem: "shopping with: 1 repetitions"
922
+ - listitem: "shop without: 1 repetitions"
923
+ - listitem: "shelf with: 1 repetitions"
924
+ - listitem: "she thought: 1 repetitions"
925
+ - listitem: "shaking the: 1 repetitions"
926
+ - listitem: "seen the: 1 repetitions"
927
+ - listitem: "seen that: 1 repetitions"
928
+ - listitem: "seemed that: 1 repetitions"
929
+ - listitem: "see three: 1 repetitions"
930
+ - listitem: "see the: 2 repetitions"
931
+ - listitem: "see that: 1 repetitions"
932
+ - listitem: "see anything: 1 repetitions"
933
+ - listitem: "school with: 1 repetitions"
934
+ - listitem: "school the: 1 repetitions"
935
+ - listitem: "say that: 2 repetitions"
936
+ - listitem: "say thank: 1 repetitions"
937
+ - listitem: "say something: 2 repetitions"
938
+ - listitem: "say another: 1 repetitions"
939
+ - listitem: "saw that: 2 repetitions"
940
+ - listitem: "sat with: 1 repetitions"
941
+ - listitem: "same thing: 1 repetitions"
942
+ - listitem: "said the: 7 repetitions"
943
+ - listitem: "said that: 2 repetitions"
944
+ - listitem: "said anything: 1 repetitions"
945
+ - listitem: "s worth: 1 repetitions"
946
+ - listitem: "s this: 1 repetitions"
947
+ - listitem: "s there: 1 repetitions"
948
+ - listitem: "s the: 4 repetitions"
949
+ - listitem: "s that: 3 repetitions"
950
+ - listitem: "s something: 1 repetitions"
951
+ - listitem: "s mouth: 1 repetitions"
952
+ - listitem: "s eleventh: 1 repetitions"
953
+ - listitem: "s birthday: 4 repetitions"
954
+ - listitem: "s another: 1 repetitions"
955
+ - listitem: "rushed them: 1 repetitions"
956
+ - listitem: "rumors that: 1 repetitions"
957
+ - listitem: "rumbling with: 1 repetitions"
958
+ - listitem: "ruffled the: 1 repetitions"
959
+ - listitem: "round the: 1 repetitions"
960
+ - listitem: "room with: 1 repetitions"
961
+ - listitem: "room that: 1 repetitions"
962
+ - listitem: "ripping the: 1 repetitions"
963
+ - listitem: "right there: 1 repetitions"
964
+ - listitem: "right then: 1 repetitions"
965
+ - listitem: "reported that: 1 repetitions"
966
+ - listitem: "reminded them: 1 repetitions"
967
+ - listitem: "remembered something: 1 repetitions"
968
+ - listitem: "remember the: 1 repetitions"
969
+ - listitem: "reckon they: 1 repetitions"
970
+ - listitem: "realized that: 3 repetitions"
971
+ - listitem: "read those: 1 repetitions"
972
+ - listitem: "read the: 3 repetitions"
973
+ - listitem: "read that: 1 repetitions"
974
+ - listitem: "reaching them: 1 repetitions"
975
+ - listitem: "reached the: 2 repetitions"
976
+ - listitem: "re the: 2 repetitions"
977
+ - listitem: "rattled the: 1 repetitions"
978
+ - listitem: "rather,: 1 repetitions"
979
+ - listitem: "rather wicked: 1 repetitions"
980
+ - listitem: "rather severe-looking: 1 repetitions"
981
+ - listitem: "rather ruffled-looking: 1 repetitions"
982
+ - listitem: "rather quiet: 1 repetitions"
983
+ - listitem: "rather ill: 1 repetitions"
984
+ - listitem: "rather fond: 1 repetitions"
985
+ - listitem: "rather be: 1 repetitions"
986
+ - listitem: "rather: 8 repetitions"
987
+ - listitem: "rapped the: 1 repetitions"
988
+ - listitem: "pythons.: 1 repetitions"
989
+ - listitem: "pythons: 1 repetitions"
990
+ - listitem: "put together: 1 repetitions"
991
+ - listitem: "put them: 1 repetitions"
992
+ - listitem: "put the: 3 repetitions"
993
+ - listitem: "problems with: 1 repetitions"
994
+ - listitem: "poking through: 1 repetitions"
995
+ - listitem: "planned this: 1 repetitions"
996
+ - listitem: "plainly there: 1 repetitions"
997
+ - listitem: "plain that: 1 repetitions"
998
+ - listitem: "past them: 1 repetitions"
999
+ - listitem: "past the: 1 repetitions"
1000
+ - listitem: "passed the: 1 repetitions"
1001
+ - listitem: "parrot that: 1 repetitions"
1002
+ - listitem: "owls that: 1 repetitions"
1003
+ - listitem: "overtook them: 1 repetitions"
1004
+ - listitem: "over with: 1 repetitions"
1005
+ - listitem: "over their: 1 repetitions"
1006
+ - listitem: "/over the: \\d+ repetitions/"
1007
+ - listitem: "outta the: 1 repetitions"
1008
+ - listitem: "outside the: 4 repetitions"
1009
+ - listitem: "out with: 2 repetitions"
1010
+ - listitem: "out there: 2 repetitions"
1011
+ - listitem: "out the: 3 repetitions"
1012
+ - listitem: "out that: 2 repetitions"
1013
+ - listitem: "other,: 1 repetitions"
1014
+ - listitem: "other while: 1 repetitions"
1015
+ - listitem: "other two: 1 repetitions"
1016
+ - listitem: "other room: 1 repetitions"
1017
+ - listitem: "other relatives: 1 repetitions"
1018
+ - listitem: "other hand: 2 repetitions"
1019
+ - listitem: "other end: 2 repetitions"
1020
+ - listitem: "other day: 1 repetitions"
1021
+ - listitem: "other darkly: 1 repetitions"
1022
+ - listitem: "/other: \\d+ repetitions/"
1023
+ - listitem: "or the: 1 repetitions"
1024
+ - listitem: "or rather: 1 repetitions"
1025
+ - listitem: "opinion there: 1 repetitions"
1026
+ - listitem: "open-mouthed as: 1 repetitions"
1027
+ - listitem: "open-mouthed: 1 repetitions"
1028
+ - listitem: "open with: 1 repetitions"
1029
+ - listitem: "open the: 4 repetitions"
1030
+ - listitem: "onto the: 2 repetitions"
1031
+ - listitem: "only thing: 2 repetitions"
1032
+ - listitem: "one thing: 2 repetitions"
1033
+ - listitem: "on them: 1 repetitions"
1034
+ - listitem: "on their: 2 repetitions"
1035
+ - listitem: "/on the: \\d+ repetitions/"
1036
+ - listitem: "on that: 1 repetitions"
1037
+ - listitem: "on something: 1 repetitions"
1038
+ - listitem: "on earth: 1 repetitions"
1039
+ - listitem: "older than: 1 repetitions"
1040
+ - listitem: "old things: 1 repetitions"
1041
+ - listitem: "old clothes: 2 repetitions"
1042
+ - listitem: "off without: 1 repetitions"
1043
+ - listitem: "off they: 1 repetitions"
1044
+ - listitem: "off the: 3 repetitions"
1045
+ - listitem: "of thunder: 1 repetitions"
1046
+ - listitem: "of those: 1 repetitions"
1047
+ - listitem: "of things: 1 repetitions"
1048
+ - listitem: "of these: 3 repetitions"
1049
+ - listitem: "/of them: \\d+ repetitions/"
1050
+ - listitem: "of their: 3 repetitions"
1051
+ - listitem: "/of the: \\d+ repetitions/"
1052
+ - listitem: "of something: 2 repetitions"
1053
+ - listitem: "of nothing: 1 repetitions"
1054
+ - listitem: "of anything: 1 repetitions"
1055
+ - listitem: "odd thing: 1 repetitions"
1056
+ - listitem: "now they: 1 repetitions"
1057
+ - listitem: "now the: 1 repetitions"
1058
+ - listitem: "noticing that: 1 repetitions"
1059
+ - listitem: "noticed the: 1 repetitions"
1060
+ - listitem: "noticed something: 2 repetitions"
1061
+ - listitem: "nothing was: 1 repetitions"
1062
+ - listitem: "nothing to: 1 repetitions"
1063
+ - listitem: "nothing next: 1 repetitions"
1064
+ - listitem: "nothing except: 1 repetitions"
1065
+ - listitem: "nothing could: 1 repetitions"
1066
+ - listitem: "nothing about: 1 repetitions"
1067
+ - listitem: "nothing a: 1 repetitions"
1068
+ - listitem: "nothing ...: 1 repetitions"
1069
+ - listitem: "/nothing: \\d+ repetitions/"
1070
+ - listitem: "nothin': 1 repetitions"
1071
+ - listitem: "nothin: 1 repetitions"
1072
+ - listitem: "note that: 1 repetitions"
1073
+ - listitem: "nose with: 1 repetitions"
1074
+ - listitem: "nor that: 1 repetitions"
1075
+ - listitem: "no other: 1 repetitions"
1076
+ - listitem: "ninth floor: 1 repetitions"
1077
+ - listitem: "ninth: 1 repetitions"
1078
+ - listitem: "nice there: 1 repetitions"
1079
+ - listitem: "never thought: 1 repetitions"
1080
+ - listitem: "neither as: 1 repetitions"
1081
+ - listitem: "neither: 1 repetitions"
1082
+ - listitem: "need that: 1 repetitions"
1083
+ - listitem: "nasty that: 1 repetitions"
1084
+ - listitem: "nail with: 1 repetitions"
1085
+ - listitem: "mysterious things: 1 repetitions"
1086
+ - listitem: "my mother: 1 repetitions"
1087
+ - listitem: "murmured through: 1 repetitions"
1088
+ - listitem: "move everything: 1 repetitions"
1089
+ - listitem: "mouthful of: 1 repetitions"
1090
+ - listitem: "mouth,: 2 repetitions"
1091
+ - listitem: "mouth with: 1 repetitions"
1092
+ - listitem: "mouth was: 1 repetitions"
1093
+ - listitem: "mouth fell: 1 repetitions"
1094
+ - listitem: "mouth: 6 repetitions"
1095
+ - listitem: "mothers arms: 1 repetitions"
1096
+ - listitem: "mother.: 4 repetitions"
1097
+ - listitem: "mother,: 3 repetitions"
1098
+ - listitem: "mother would: 1 repetitions"
1099
+ - listitem: "mother and: 2 repetitions"
1100
+ - listitem: "mother all: 1 repetitions"
1101
+ - listitem: "/mother: \\d+ repetitions/"
1102
+ - listitem: "moth-eaten sofa: 1 repetitions"
1103
+ - listitem: "moth-eaten: 1 repetitions"
1104
+ - listitem: "more than: 1 repetitions"
1105
+ - listitem: "month-old video: 1 repetitions"
1106
+ - listitem: "month-old: 1 repetitions"
1107
+ - listitem: "moment the: 1 repetitions"
1108
+ - listitem: "mixing with: 1 repetitions"
1109
+ - listitem: "missing that: 1 repetitions"
1110
+ - listitem: "minute the: 1 repetitions"
1111
+ - listitem: "met that: 1 repetitions"
1112
+ - listitem: "mention the: 1 repetitions"
1113
+ - listitem: "mention that: 1 repetitions"
1114
+ - listitem: "mention anything: 1 repetitions"
1115
+ - listitem: "meant they: 1 repetitions"
1116
+ - listitem: "mean the: 1 repetitions"
1117
+ - listitem: "me third: 1 repetitions"
1118
+ - listitem: "me they: 1 repetitions"
1119
+ - listitem: "me there: 1 repetitions"
1120
+ - listitem: "me that: 1 repetitions"
1121
+ - listitem: "math and: 1 repetitions"
1122
+ - listitem: "math: 1 repetitions"
1123
+ - listitem: "markings the: 1 repetitions"
1124
+ - listitem: "man-crushing pythons: 1 repetitions"
1125
+ - listitem: "man with: 1 repetitions"
1126
+ - listitem: "man than: 1 repetitions"
1127
+ - listitem: "make them: 1 repetitions"
1128
+ - listitem: "made things: 1 repetitions"
1129
+ - listitem: "made the: 1 repetitions"
1130
+ - listitem: "made both: 1 repetitions"
1131
+ - listitem: "made another: 1 repetitions"
1132
+ - listitem: "m the: 1 repetitions"
1133
+ - listitem: "m rather: 1 repetitions"
1134
+ - listitem: "lunch they: 1 repetitions"
1135
+ - listitem: "looking both: 1 repetitions"
1136
+ - listitem: "look that: 1 repetitions"
1137
+ - listitem: "long without: 1 repetitions"
1138
+ - listitem: "locked them: 1 repetitions"
1139
+ - listitem: "live with: 2 repetitions"
1140
+ - listitem: "liquid that: 1 repetitions"
1141
+ - listitem: "like this: 2 repetitions"
1142
+ - listitem: "like them: 1 repetitions"
1143
+ - listitem: "like that: 4 repetitions"
1144
+ - listitem: "light that: 1 repetitions"
1145
+ - listitem: "life with: 1 repetitions"
1146
+ - listitem: "level with: 1 repetitions"
1147
+ - listitem: "letter than: 1 repetitions"
1148
+ - listitem: "less than: 2 repetitions"
1149
+ - listitem: "left the: 2 repetitions"
1150
+ - listitem: "led the: 1 repetitions"
1151
+ - listitem: "leather boots: 1 repetitions"
1152
+ - listitem: "leather: 1 repetitions"
1153
+ - listitem: "lay smoothly: 1 repetitions"
1154
+ - listitem: "later they: 1 repetitions"
1155
+ - listitem: "later than: 1 repetitions"
1156
+ - listitem: "late that: 1 repetitions"
1157
+ - listitem: "landed with: 1 repetitions"
1158
+ - listitem: "knows nothin: 1 repetitions"
1159
+ - listitem: "know they: 1 repetitions"
1160
+ - listitem: "know the: 1 repetitions"
1161
+ - listitem: "know that: 2 repetitions"
1162
+ - listitem: "knew they: 2 repetitions"
1163
+ - listitem: "knew the: 1 repetitions"
1164
+ - listitem: "knew that: 3 repetitions"
1165
+ - listitem: "knee that: 1 repetitions"
1166
+ - listitem: "kitchen with: 1 repetitions"
1167
+ - listitem: "kitchen the: 1 repetitions"
1168
+ - listitem: "kill the: 1 repetitions"
1169
+ - listitem: "kill that: 1 repetitions"
1170
+ - listitem: "kicked the: 1 repetitions"
1171
+ - listitem: "keeping the: 1 repetitions"
1172
+ - listitem: "just thought: 1 repetitions"
1173
+ - listitem: "just the: 1 repetitions"
1174
+ - listitem: "join the: 1 repetitions"
1175
+ - listitem: "jerked the: 1 repetitions"
1176
+ - listitem: "it with: 1 repetitions"
1177
+ - listitem: "it there: 1 repetitions"
1178
+ - listitem: "is the: 2 repetitions"
1179
+ - listitem: "is that: 4 repetitions"
1180
+ - listitem: "into their: 1 repetitions"
1181
+ - listitem: "/into the: \\d+ repetitions/"
1182
+ - listitem: "inside the: 2 repetitions"
1183
+ - listitem: "in without: 1 repetitions"
1184
+ - listitem: "in with: 1 repetitions"
1185
+ - listitem: "in there: 3 repetitions"
1186
+ - listitem: "in their: 3 repetitions"
1187
+ - listitem: "/in the: \\d+ repetitions/"
1188
+ - listitem: "in that: 2 repetitions"
1189
+ - listitem: "in anything: 2 repetitions"
1190
+ - listitem: "imagining things: 2 repetitions"
1191
+ - listitem: "if the: 4 repetitions"
1192
+ - listitem: "hut with: 1 repetitions"
1193
+ - listitem: "hours they: 1 repetitions"
1194
+ - listitem: "hot bath: 1 repetitions"
1195
+ - listitem: "hoped the: 1 repetitions"
1196
+ - listitem: "holding them: 1 repetitions"
1197
+ - listitem: "hold with: 1 repetitions"
1198
+ - listitem: "hit with: 1 repetitions"
1199
+ - listitem: "hit them: 1 repetitions"
1200
+ - listitem: "his throat: 1 repetitions"
1201
+ - listitem: "his things: 1 repetitions"
1202
+ - listitem: "his thick: 2 repetitions"
1203
+ - listitem: "his teeth: 1 repetitions"
1204
+ - listitem: "his mouth: 3 repetitions"
1205
+ - listitem: "/his mother: \\d+ repetitions/"
1206
+ - listitem: "his father: 6 repetitions"
1207
+ - listitem: "his birthdays: 2 repetitions"
1208
+ - listitem: "himself together: 1 repetitions"
1209
+ - listitem: "him with: 1 repetitions"
1210
+ - listitem: "him anything: 1 repetitions"
1211
+ - listitem: "him another: 1 repetitions"
1212
+ - listitem: "hide that: 1 repetitions"
1213
+ - listitem: "hidden beneath: 1 repetitions"
1214
+ - listitem: "here without: 1 repetitions"
1215
+ - listitem: "her throat: 1 repetitions"
1216
+ - listitem: "her something: 1 repetitions"
1217
+ - listitem: "her mouth: 1 repetitions"
1218
+ - listitem: "her good-for-nothing: 1 repetitions"
1219
+ - listitem: "held together: 1 repetitions"
1220
+ - listitem: "heard the: 2 repetitions"
1221
+ - listitem: "heard something: 1 repetitions"
1222
+ - listitem: "hear the: 1 repetitions"
1223
+ - listitem: "head with: 1 repetitions"
1224
+ - listitem: "he thundered: 1 repetitions"
1225
+ - listitem: "he thought: 6 repetitions"
1226
+ - listitem: "have thought: 1 repetitions"
1227
+ - listitem: "have thirty: 1 repetitions"
1228
+ - listitem: "have that: 1 repetitions"
1229
+ - listitem: "have anything: 1 repetitions"
1230
+ - listitem: "hates the: 1 repetitions"
1231
+ - listitem: "hated that: 1 repetitions"
1232
+ - listitem: "happy birthday: 2 repetitions"
1233
+ - listitem: "hands together: 2 repetitions"
1234
+ - listitem: "hands the: 1 repetitions"
1235
+ - listitem: "haircuts than: 1 repetitions"
1236
+ - listitem: "hair that: 1 repetitions"
1237
+ - listitem: "had the: 3 repetitions"
1238
+ - listitem: "had something: 1 repetitions"
1239
+ - listitem: "had everything: 1 repetitions"
1240
+ - listitem: "had anything: 1 repetitions"
1241
+ - listitem: "gruffly that: 1 repetitions"
1242
+ - listitem: "grin through: 1 repetitions"
1243
+ - listitem: "grew that: 1 repetitions"
1244
+ - listitem: "grate with: 1 repetitions"
1245
+ - listitem: "grabbed the: 2 repetitions"
1246
+ - listitem: "gotten the: 1 repetitions"
1247
+ - listitem: "got this: 1 repetitions"
1248
+ - listitem: "got that: 1 repetitions"
1249
+ - listitem: "got something: 1 repetitions"
1250
+ - listitem: "good-for-nothing husband: 1 repetitions"
1251
+ - listitem: "good-for-nothing: 1 repetitions"
1252
+ - listitem: "going there: 1 repetitions"
1253
+ - listitem: "go through: 1 repetitions"
1254
+ - listitem: "given anything: 1 repetitions"
1255
+ - listitem: "get this: 2 repetitions"
1256
+ - listitem: "get the: 5 repetitions"
1257
+ - listitem: "get that: 3 repetitions"
1258
+ - listitem: "gazed open-mouthed: 1 repetitions"
1259
+ - listitem: "game with: 1 repetitions"
1260
+ - listitem: "furious with: 1 repetitions"
1261
+ - listitem: "funny clothes: 1 repetitions"
1262
+ - listitem: "frozen with: 1 repetitions"
1263
+ - listitem: "/from the: \\d+ repetitions/"
1264
+ - listitem: "friendly with: 1 repetitions"
1265
+ - listitem: "found their: 1 repetitions"
1266
+ - listitem: "found the: 2 repetitions"
1267
+ - listitem: "forgotten that: 2 repetitions"
1268
+ - listitem: "forehead with: 1 repetitions"
1269
+ - listitem: "forehead they: 1 repetitions"
1270
+ - listitem: "forehead that: 1 repetitions"
1271
+ - listitem: "forced through: 1 repetitions"
1272
+ - listitem: "force that: 1 repetitions"
1273
+ - listitem: "for this: 1 repetitions"
1274
+ - listitem: "for them: 1 repetitions"
1275
+ - listitem: "for the: 8 repetitions"
1276
+ - listitem: "for something: 4 repetitions"
1277
+ - listitem: "for nothing: 1 repetitions"
1278
+ - listitem: "for neither: 1 repetitions"
1279
+ - listitem: "for breath: 1 repetitions"
1280
+ - listitem: "foot through: 1 repetitions"
1281
+ - listitem: "first thing: 1 repetitions"
1282
+ - listitem: "fire there: 1 repetitions"
1283
+ - listitem: "finish the: 1 repetitions"
1284
+ - listitem: "fingers through: 1 repetitions"
1285
+ - listitem: "fine thing: 1 repetitions"
1286
+ - listitem: "find their: 1 repetitions"
1287
+ - listitem: "find the: 3 repetitions"
1288
+ - listitem: "filthy windows: 1 repetitions"
1289
+ - listitem: "filthy: 1 repetitions"
1290
+ - listitem: "filled the: 2 repetitions"
1291
+ - listitem: "felt the: 1 repetitions"
1292
+ - listitem: "father.: 3 repetitions"
1293
+ - listitem: "father,: 2 repetitions"
1294
+ - listitem: "father with: 1 repetitions"
1295
+ - listitem: "father had: 1 repetitions"
1296
+ - listitem: "father a: 1 repetitions"
1297
+ - listitem: "father: 8 repetitions"
1298
+ - listitem: "faster than: 1 repetitions"
1299
+ - listitem: "fact that: 1 repetitions"
1300
+ - listitem: "eyes beneath: 1 repetitions"
1301
+ - listitem: "eyed them: 1 repetitions"
1302
+ - listitem: "explain that: 1 repetitions"
1303
+ - listitem: "explain everything: 1 repetitions"
1304
+ - listitem: "explain anything: 1 repetitions"
1305
+ - listitem: "expected this: 1 repetitions"
1306
+ - listitem: "excitedly together: 1 repetitions"
1307
+ - listitem: "except that: 1 repetitions"
1308
+ - listitem: "exactly the: 2 repetitions"
1309
+ - listitem: "everything.: 1 repetitions"
1310
+ - listitem: "everything!: 1 repetitions"
1311
+ - listitem: "everything to: 1 repetitions"
1312
+ - listitem: "everything they: 1 repetitions"
1313
+ - listitem: "everything perfect: 1 repetitions"
1314
+ - listitem: "everything in: 1 repetitions"
1315
+ - listitem: "everything he: 1 repetitions"
1316
+ - listitem: "everything from: 1 repetitions"
1317
+ - listitem: "everything: 8 repetitions"
1318
+ - listitem: "everythin': 1 repetitions"
1319
+ - listitem: "everythin: 1 repetitions"
1320
+ - listitem: "even worth: 1 repetitions"
1321
+ - listitem: "even though: 1 repetitions"
1322
+ - listitem: "even the: 1 repetitions"
1323
+ - listitem: "envelope that: 1 repetitions"
1324
+ - listitem: "entered the: 1 repetitions"
1325
+ - listitem: "eleventh birthday: 1 repetitions"
1326
+ - listitem: "eleventh: 1 repetitions"
1327
+ - listitem: "either,: 1 repetitions"
1328
+ - listitem: "either: 1 repetitions"
1329
+ - listitem: "eggs that: 1 repetitions"
1330
+ - listitem: "earth wants: 1 repetitions"
1331
+ - listitem: "earth: 1 repetitions"
1332
+ - listitem: "early the: 1 repetitions"
1333
+ - listitem: "each other: 3 repetitions"
1334
+ - listitem: "drumming their: 1 repetitions"
1335
+ - listitem: "drove them: 1 repetitions"
1336
+ - listitem: "drills that: 2 repetitions"
1337
+ - listitem: "downstairs without: 1 repetitions"
1338
+ - listitem: "downstairs bathroom: 1 repetitions"
1339
+ - listitem: "down through: 1 repetitions"
1340
+ - listitem: "down their: 1 repetitions"
1341
+ - listitem: "down the: 9 repetitions"
1342
+ - listitem: "doubted this: 1 repetitions"
1343
+ - listitem: "done anything: 1 repetitions"
1344
+ - listitem: "dodged the: 1 repetitions"
1345
+ - listitem: "do with: 6 repetitions"
1346
+ - listitem: "do something: 1 repetitions"
1347
+ - listitem: "do math: 1 repetitions"
1348
+ - listitem: "do anything: 2 repetitions"
1349
+ - listitem: "disagree with: 1 repetitions"
1350
+ - listitem: "did this: 1 repetitions"
1351
+ - listitem: "did the: 1 repetitions"
1352
+ - listitem: "did something: 1 repetitions"
1353
+ - listitem: "demand that: 1 repetitions"
1354
+ - listitem: "deliver them: 1 repetitions"
1355
+ - listitem: "defeated the: 1 repetitions"
1356
+ - listitem: "deep breaths: 2 repetitions"
1357
+ - listitem: "death.: 1 repetitions"
1358
+ - listitem: "death: 1 repetitions"
1359
+ - listitem: "dangerous with: 1 repetitions"
1360
+ - listitem: "d think: 1 repetitions"
1361
+ - listitem: "d rather: 1 repetitions"
1362
+ - listitem: "cupboard with: 1 repetitions"
1363
+ - listitem: "crowded with: 1 repetitions"
1364
+ - listitem: "could they: 1 repetitions"
1365
+ - listitem: "corner the: 1 repetitions"
1366
+ - listitem: "comforting thought: 1 repetitions"
1367
+ - listitem: "clothes.: 1 repetitions"
1368
+ - listitem: "clothes,: 1 repetitions"
1369
+ - listitem: "clothes —: 1 repetitions"
1370
+ - listitem: "clothes of: 1 repetitions"
1371
+ - listitem: "clothes and: 2 repetitions"
1372
+ - listitem: "clothes: 6 repetitions"
1373
+ - listitem: "clock the: 1 repetitions"
1374
+ - listitem: "cloak that: 1 repetitions"
1375
+ - listitem: "clicked the: 1 repetitions"
1376
+ - listitem: "clearly than: 1 repetitions"
1377
+ - listitem: "choosing another: 1 repetitions"
1378
+ - listitem: "changed their: 1 repetitions"
1379
+ - listitem: "catch the: 1 repetitions"
1380
+ - listitem: "car with: 1 repetitions"
1381
+ - listitem: "came the: 1 repetitions"
1382
+ - listitem: "cake with: 1 repetitions"
1383
+ - listitem: "cake that: 1 repetitions"
1384
+ - listitem: "by then: 1 repetitions"
1385
+ - listitem: "/by the: \\d+ repetitions/"
1386
+ - listitem: "by something: 1 repetitions"
1387
+ - listitem: "buying anything: 1 repetitions"
1388
+ - listitem: "but thought: 2 repetitions"
1389
+ - listitem: "but they: 6 repetitions"
1390
+ - listitem: "but there: 2 repetitions"
1391
+ - listitem: "but the: 6 repetitions"
1392
+ - listitem: "but somethin: 1 repetitions"
1393
+ - listitem: "brushed the: 1 repetitions"
1394
+ - listitem: "brown with: 1 repetitions"
1395
+ - listitem: "brought with: 1 repetitions"
1396
+ - listitem: "brought the: 1 repetitions"
1397
+ - listitem: "broken the: 1 repetitions"
1398
+ - listitem: "breaths and: 2 repetitions"
1399
+ - listitem: "breathing heavily: 1 repetitions"
1400
+ - listitem: "breath,: 1 repetitions"
1401
+ - listitem: "breath: 4 repetitions"
1402
+ - listitem: "breakfast the: 1 repetitions"
1403
+ - listitem: "boy with: 1 repetitions"
1404
+ - listitem: "boy anything: 1 repetitions"
1405
+ - listitem: "both with: 1 repetitions"
1406
+ - listitem: "both of: 3 repetitions"
1407
+ - listitem: "both looked: 1 repetitions"
1408
+ - listitem: "both long: 1 repetitions"
1409
+ - listitem: "both angry: 1 repetitions"
1410
+ - listitem: "both Harry: 1 repetitions"
1411
+ - listitem: "both: 8 repetitions"
1412
+ - listitem: "bored with: 1 repetitions"
1413
+ - listitem: "blankets without: 1 repetitions"
1414
+ - listitem: "blame them: 1 repetitions"
1415
+ - listitem: "birthdays were: 1 repetitions"
1416
+ - listitem: "birthday.: 2 repetitions"
1417
+ - listitem: "birthday,: 1 repetitions"
1418
+ - listitem: "birthday —: 1 repetitions"
1419
+ - listitem: "birthday to: 1 repetitions"
1420
+ - listitem: "birthday tick: 1 repetitions"
1421
+ - listitem: "birthday presents: 1 repetitions"
1422
+ - listitem: "birthday: 9 repetitions"
1423
+ - listitem: "bigger than: 1 repetitions"
1424
+ - listitem: "bet that: 1 repetitions"
1425
+ - listitem: "beneath her: 1 repetitions"
1426
+ - listitem: "beneath all: 1 repetitions"
1427
+ - listitem: "beneath: 2 repetitions"
1428
+ - listitem: "below them: 1 repetitions"
1429
+ - listitem: "behind with: 1 repetitions"
1430
+ - listitem: "behind them: 3 repetitions"
1431
+ - listitem: "behind their: 1 repetitions"
1432
+ - listitem: "behind the: 2 repetitions"
1433
+ - listitem: "before they: 2 repetitions"
1434
+ - listitem: "before the: 2 repetitions"
1435
+ - listitem: "beet with: 1 repetitions"
1436
+ - listitem: "been thinking: 2 repetitions"
1437
+ - listitem: "because they: 1 repetitions"
1438
+ - listitem: "because the: 2 repetitions"
1439
+ - listitem: "be with: 3 repetitions"
1440
+ - listitem: "be thankful: 1 repetitions"
1441
+ - listitem: "bathroom.: 1 repetitions"
1442
+ - listitem: "bathroom,: 1 repetitions"
1443
+ - listitem: "bathroom: 2 repetitions"
1444
+ - listitem: "bath.: 1 repetitions"
1445
+ - listitem: "bath: 1 repetitions"
1446
+ - listitem: "banging things: 1 repetitions"
1447
+ - listitem: "baggy clothes: 1 repetitions"
1448
+ - listitem: "back with: 1 repetitions"
1449
+ - listitem: "back that: 1 repetitions"
1450
+ - listitem: "away without: 1 repetitions"
1451
+ - listitem: "at this: 2 repetitions"
1452
+ - listitem: "at them: 1 repetitions"
1453
+ - listitem: "at their: 1 repetitions"
1454
+ - listitem: "/at the: \\d+ repetitions/"
1455
+ - listitem: "at that: 3 repetitions"
1456
+ - listitem: "astonishing things: 1 repetitions"
1457
+ - listitem: "/as though: \\d+ repetitions/"
1458
+ - listitem: "as this: 1 repetitions"
1459
+ - listitem: "as they: 6 repetitions"
1460
+ - listitem: "as there: 1 repetitions"
1461
+ - listitem: "as the: 5 repetitions"
1462
+ - listitem: "around them: 2 repetitions"
1463
+ - listitem: "around the: 8 repetitions"
1464
+ - listitem: "are nothing: 1 repetitions"
1465
+ - listitem: "anyway there: 1 repetitions"
1466
+ - listitem: "anything.: 3 repetitions"
1467
+ - listitem: "anything,: 2 repetitions"
1468
+ - listitem: "anything!: 1 repetitions"
1469
+ - listitem: "anything to: 3 repetitions"
1470
+ - listitem: "anything that: 2 repetitions"
1471
+ - listitem: "anything strange: 1 repetitions"
1472
+ - listitem: "anything so: 1 repetitions"
1473
+ - listitem: "anything he: 2 repetitions"
1474
+ - listitem: "anything except: 1 repetitions"
1475
+ - listitem: "anything else: 1 repetitions"
1476
+ - listitem: "anything at: 1 repetitions"
1477
+ - listitem: "anything as: 1 repetitions"
1478
+ - listitem: "anything acting: 1 repetitions"
1479
+ - listitem: "/anything: \\d+ repetitions/"
1480
+ - listitem: "anythin': 1 repetitions"
1481
+ - listitem: "anythin: 1 repetitions"
1482
+ - listitem: "another word: 1 repetitions"
1483
+ - listitem: "another two: 1 repetitions"
1484
+ - listitem: "another pocket: 1 repetitions"
1485
+ - listitem: "another one: 2 repetitions"
1486
+ - listitem: "another lemon: 1 repetitions"
1487
+ - listitem: "another good: 1 repetitions"
1488
+ - listitem: "another funny: 1 repetitions"
1489
+ - listitem: "another boy: 1 repetitions"
1490
+ - listitem: "/another: \\d+ repetitions/"
1491
+ - listitem: "angrily that: 1 repetitions"
1492
+ - listitem: "and with: 2 repetitions"
1493
+ - listitem: "and thrown: 1 repetitions"
1494
+ - listitem: "and throwing: 1 repetitions"
1495
+ - listitem: "and threw: 5 repetitions"
1496
+ - listitem: "and thinking: 1 repetitions"
1497
+ - listitem: "and things: 1 repetitions"
1498
+ - listitem: "and thick: 2 repetitions"
1499
+ - listitem: "and there: 1 repetitions"
1500
+ - listitem: "/and then: \\d+ repetitions/"
1501
+ - listitem: "and their: 2 repetitions"
1502
+ - listitem: "/and the: \\d+ repetitions/"
1503
+ - listitem: "and that: 2 repetitions"
1504
+ - listitem: "and slithering: 1 repetitions"
1505
+ - listitem: "and rather: 1 repetitions"
1506
+ - listitem: "and father: 2 repetitions"
1507
+ - listitem: "although he: 3 repetitions"
1508
+ - listitem: "although: 4 repetitions"
1509
+ - listitem: "also thought: 1 repetitions"
1510
+ - listitem: "along the: 1 repetitions"
1511
+ - listitem: "all this: 5 repetitions"
1512
+ - listitem: "all they: 1 repetitions"
1513
+ - listitem: "all these: 2 repetitions"
1514
+ - listitem: "/all the: \\d+ repetitions/"
1515
+ - listitem: "all that: 2 repetitions"
1516
+ - listitem: "against the: 3 repetitions"
1517
+ - listitem: "again the: 1 repetitions"
1518
+ - listitem: "after the: 1 repetitions"
1519
+ - listitem: "affect them: 1 repetitions"
1520
+ - listitem: "across the: 3 repetitions"
1521
+ - listitem: "accept there: 1 repetitions"
1522
+ - listitem: "about this: 2 repetitions"
1523
+ - listitem: "about things: 1 repetitions"
1524
+ - listitem: "about them: 2 repetitions"
1525
+ - listitem: "about the: 6 repetitions"
1526
+ - listitem: "about that: 2 repetitions"
1527
+ - listitem: "about anything: 2 repetitions"
1528
+ - listitem: "a thumpin: 1 repetitions"
1529
+ - listitem: "a thing: 1 repetitions"
1530
+ - listitem: "a thin: 1 repetitions"
1531
+ - listitem: "a rather: 2 repetitions"
1532
+ - listitem: "a mouthful: 1 repetitions"
1533
+ - listitem: "Within seconds: 1 repetitions"
1534
+ - listitem: "Within: 1 repetitions"
1535
+ - listitem: "When the: 2 repetitions"
1536
+ - listitem: "Weather': 1 repetitions"
1537
+ - listitem: "Was this: 2 repetitions"
1538
+ - listitem: "Vernon through: 1 repetitions"
1539
+ - listitem: "Vernon the: 1 repetitions"
1540
+ - listitem: "Until they: 1 repetitions"
1541
+ - listitem: "Tiptoe Through: 1 repetitions"
1542
+ - listitem: "Three things: 1 repetitions"
1543
+ - listitem: "Three minutes: 1 repetitions"
1544
+ - listitem: "This specimen: 1 repetitions"
1545
+ - listitem: "This reminded: 1 repetitions"
1546
+ - listitem: "This morning: 1 repetitions"
1547
+ - listitem: "This bunch: 1 repetitions"
1548
+ - listitem: "Thirty-six,: 1 repetitions"
1549
+ - listitem: "Thirty-six: 1 repetitions"
1550
+ - listitem: "Thirty-nine,: 1 repetitions"
1551
+ - listitem: "Thirty-nine: 1 repetitions"
1552
+ - listitem: "Thirty seconds: 1 repetitions"
1553
+ - listitem: "They stuff: 1 repetitions"
1554
+ - listitem: "They stared: 1 repetitions"
1555
+ - listitem: "They snapped: 1 repetitions"
1556
+ - listitem: "They knocked: 1 repetitions"
1557
+ - listitem: "They heard: 2 repetitions"
1558
+ - listitem: "They drove: 2 repetitions"
1559
+ - listitem: "They ate: 2 repetitions"
1560
+ - listitem: "There': 2 repetitions"
1561
+ - listitem: "Then —: 2 repetitions"
1562
+ - listitem: "Then she: 1 repetitions"
1563
+ - listitem: "Then he: 5 repetitions"
1564
+ - listitem: "The woman: 1 repetitions"
1565
+ - listitem: "The weirdest: 1 repetitions"
1566
+ - listitem: "The tub: 1 repetitions"
1567
+ - listitem: "The traffic: 1 repetitions"
1568
+ - listitem: "The sun: 1 repetitions"
1569
+ - listitem: "The repaired: 1 repetitions"
1570
+ - listitem: "The problem: 1 repetitions"
1571
+ - listitem: "The poor: 1 repetitions"
1572
+ - listitem: "The noise: 1 repetitions"
1573
+ - listitem: "The newscaster: 1 repetitions"
1574
+ - listitem: "The nerve: 1 repetitions"
1575
+ - listitem: "The nearest: 2 repetitions"
1576
+ - listitem: "The month-old: 1 repetitions"
1577
+ - listitem: "The keeper: 2 repetitions"
1578
+ - listitem: "The inside: 1 repetitions"
1579
+ - listitem: "The harder: 1 repetitions"
1580
+ - listitem: "The great: 2 repetitions"
1581
+ - listitem: "The escape: 1 repetitions"
1582
+ - listitem: "The boa: 2 repetitions"
1583
+ - listitem: "The anger: 1 repetitions"
1584
+ - listitem: "The Smallest: 1 repetitions"
1585
+ - listitem: "That evening: 3 repetitions"
1586
+ - listitem: "That does: 1 repetitions"
1587
+ - listitem: "That cars: 2 repetitions"
1588
+ - listitem: "Thanksss,: 1 repetitions"
1589
+ - listitem: "Thanksss: 1 repetitions"
1590
+ - listitem: "Take this: 1 repetitions"
1591
+ - listitem: "THIS SNAKE: 1 repetitions"
1592
+ - listitem: "THE VANASHIG: 1 repetitions"
1593
+ - listitem: "THE KEYS: 1 repetitions"
1594
+ - listitem: "Suppose the: 1 repetitions"
1595
+ - listitem: "Soon the: 1 repetitions"
1596
+ - listitem: "Something came: 1 repetitions"
1597
+ - listitem: "She threw: 1 repetitions"
1598
+ - listitem: "Pointing this: 1 repetitions"
1599
+ - listitem: "Petunia through: 2 repetitions"
1600
+ - listitem: "Petunia thought: 1 repetitions"
1601
+ - listitem: "People throughout: 1 repetitions"
1602
+ - listitem: "Other shelves: 1 repetitions"
1603
+ - listitem: "Only the: 3 repetitions"
1604
+ - listitem: "Nothing,: 1 repetitions"
1605
+ - listitem: "Nothing like: 1 repetitions"
1606
+ - listitem: "Nearly everything: 1 repetitions"
1607
+ - listitem: "Muggle clothes: 1 repetitions"
1608
+ - listitem: "McGuffin with: 1 repetitions"
1609
+ - listitem: "Maybe the: 1 repetitions"
1610
+ - listitem: "Lily this: 1 repetitions"
1611
+ - listitem: "Lily that: 1 repetitions"
1612
+ - listitem: "Just then: 1 repetitions"
1613
+ - listitem: "If they: 2 repetitions"
1614
+ - listitem: "If there: 1 repetitions"
1615
+ - listitem: "I think: 2 repetitions"
1616
+ - listitem: "Hut-on-the-Rock,: 1 repetitions"
1617
+ - listitem: "Hut-on-the-Rock: 1 repetitions"
1618
+ - listitem: "He threw: 1 repetitions"
1619
+ - listitem: "Harry with: 2 repetitions"
1620
+ - listitem: "Harry underneath: 1 repetitions"
1621
+ - listitem: "Harry thought: 2 repetitions"
1622
+ - listitem: "Hagrid with: 2 repetitions"
1623
+ - listitem: "Hagrid thundered: 1 repetitions"
1624
+ - listitem: "Dursley that: 1 repetitions"
1625
+ - listitem: "Dumbledore with: 1 repetitions"
1626
+ - listitem: "Dudley thought: 2 repetitions"
1627
+ - listitem: "Cokeworth: 1 repetitions"
1628
+ - listitem: "Cause somethin: 1 repetitions"
1629
+ - listitem: "But then: 1 repetitions"
1630
+ - listitem: "But that: 1 repetitions"
1631
+ - listitem: "Birthday Harry: 1 repetitions"
1632
+ - listitem: "Another time: 1 repetitions"
1633
+ - listitem: "And this: 2 repetitions"
1634
+ - listitem: "And they: 4 repetitions"
1635
+ - listitem: "Although owls: 1 repetitions"
1636
+ - listitem: "ANYTHING?: 1 repetitions"
1637
+ - listitem: "A toothless: 1 repetitions"
1638
+ - listitem: "? These: 1 repetitions"
1639
+ - listitem: "? That: 1 repetitions"
1640
+ - listitem: "; with: 1 repetitions"
1641
+ - listitem: "; they: 3 repetitions"
1642
+ - listitem: "; there: 1 repetitions"
1643
+ - listitem: "; the: 2 repetitions"
1644
+ - listitem: ": This: 1 repetitions"
1645
+ - listitem: "... thirty: 1 repetitions"
1646
+ - listitem: "... Thanksss: 1 repetitions"
1647
+ - listitem: ". Within: 1 repetitions"
1648
+ - listitem: ". With: 2 repetitions"
1649
+ - listitem: ". Three: 1 repetitions"
1650
+ - listitem: ". This: 6 repetitions"
1651
+ - listitem: ". Thirty: 1 repetitions"
1652
+ - listitem: "/\\. They: \\d+ repetitions/"
1653
+ - listitem: ". There: 7 repetitions"
1654
+ - listitem: ". Then: 5 repetitions"
1655
+ - listitem: "/\\. The: \\d+ repetitions/"
1656
+ - listitem: ". That: 2 repetitions"
1657
+ - listitem: ". Other: 1 repetitions"
1658
+ - listitem: ". Although: 2 repetitions"
1659
+ - listitem: ", without: 1 repetitions"
1660
+ - listitem: ", with: 4 repetitions"
1661
+ - listitem: ", though: 5 repetitions"
1662
+ - listitem: ", those: 1 repetitions"
1663
+ - listitem: ", this: 3 repetitions"
1664
+ - listitem: ", thirty-seven: 1 repetitions"
1665
+ - listitem: ", thirty: 1 repetitions"
1666
+ - listitem: ", thinking: 1 repetitions"
1667
+ - listitem: ", things: 1 repetitions"
1668
+ - listitem: ", thin: 3 repetitions"
1669
+ - listitem: "/, they: \\d+ repetitions/"
1670
+ - listitem: ", these: 1 repetitions"
1671
+ - listitem: ", there: 8 repetitions"
1672
+ - listitem: ", then: 1 repetitions"
1673
+ - listitem: ", their: 1 repetitions"
1674
+ - listitem: "/, the: \\d+ repetitions/"
1675
+ - listitem: ", that: 8 repetitions"
1676
+ - listitem: ", thank: 3 repetitions"
1677
+ - listitem: ", slithering: 1 repetitions"
1678
+ - listitem: ", rather: 1 repetitions"
1679
+ - listitem: ", nothing: 2 repetitions"
1680
+ - listitem: ", either: 1 repetitions"
1681
+ - listitem: ", breathing: 1 repetitions"
1682
+ - listitem: ", both: 3 repetitions"
1683
+ - listitem: ", anything: 1 repetitions"
1684
+ - listitem: ", although: 2 repetitions"
1685
+ - listitem: ", Hut-on-the-Rock: 1 repetitions"
1686
+ - listitem: ") that: 1 repetitions"
1687
+ - listitem: "' this: 1 repetitions"
1688
+ - listitem: "' then: 2 repetitions"
1689
+ - listitem: "' the: 7 repetitions"
1690
+ - listitem: "' that: 2 repetitions"
1691
+ - listitem: "' everything: 1 repetitions"
1692
+ - listitem: "\"This: 1 repetitions"
1693
+ - listitem: "\"Thirty-six: 1 repetitions"
1694
+ - listitem: "\"Thirty-nine: 1 repetitions"
1695
+ - listitem: "\"They: 1 repetitions"
1696
+ - listitem: "\"There: 1 repetitions"
1697
+ - listitem: "\"Their: 1 repetitions"
1698
+ - listitem: "\"The: 5 repetitions"
1699
+ - listitem: "\"That: 8 repetitions"
1700
+ - listitem: "\"Nothing: 1 repetitions"
1701
+ - listitem: "\" Then: 2 repetitions"
1702
+ - listitem: "! The: 1 repetitions"
static/tests/test-classic-lite-1.koboldai.net.spec copy.ts ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { test, expect } from '@playwright/test';
2
+
3
+ const setupClassicContextFile = `${import.meta.dirname}/setup-classic-lite.koboldai.net.json`
4
+ const testStoryJsonTxt = `${import.meta.dirname}/../../tests/events/very_long_text.json`
5
+
6
+ test('test', async ({ page }) => {
7
+ await page.goto('http://localhost:8000/');
8
+ await page.getByRole('button', { name: 'Set UI' }).click();
9
+
10
+ console.log(`preparing uploading of file '${testStoryJsonTxt}'!`)
11
+ await page.getByRole('link', { name: 'Save / Load' }).click();
12
+ await page.waitForTimeout(100)
13
+ const fileChooserPromise = page.waitForEvent('filechooser');
14
+ // filepickerawait page.getByRole('button', { name: '📁 Open File' }).click();
15
+ await page.getByRole('button', { name: '📁 Open File' }).click();
16
+ const fileChooser = await fileChooserPromise;
17
+ await fileChooser.setFiles(testStoryJsonTxt);
18
+ await page.waitForTimeout(300)
19
+ // await expect(page.locator('#gametext')).toHaveScreenshot()
20
+ console.log(`file '${testStoryJsonTxt}' uploaded!`)
21
+
22
+ await page.getByRole('link', { name: 'Settings' }).click();
23
+ await page.getByRole('link', { name: 'Tokens' }).click();
24
+ await page.waitForTimeout(100)
25
+ await page.getByRole('button', { name: 'id-expand-wordsfreqstats' }).click();
26
+ await page.getByRole('checkbox', { name: 'id-col2-words-frequency-enable' }).check();
27
+ // assert checkbox checked
28
+ await expect(page.getByRole('checkbox', { name: 'id-col2-words-frequency-enable' })).toBeChecked();
29
+
30
+ await page.getByRole('button', { name: 'OK' }).click();
31
+ await page.waitForTimeout(100)
32
+ console.log("#")
33
+
34
+ await page.getByLabel('order: ascend order: descend').selectOption('asc');
35
+ // await page.getByRole('searchbox', { name: 'filter-words-frequency' }).click();
36
+ await page.getByRole('searchbox', { name: 'filter-words-frequency' }).fill('th');
37
+ await page.getByRole('searchbox', { name: 'filter-words-frequency' }).press('Enter');
38
+ await page.waitForTimeout(100)
39
+
40
+ await expect(page.getByLabel('id-filtered-value')).toContainText('\'th\', 1701');
41
+
42
+ let listOfWordsList = page.getByLabel('id-list-of-words-container').locator('list')
43
+ let listOfWordsListChildren = listOfWordsList.getByRole('listitem')
44
+ console.log("listOfWordsListChildren:", await listOfWordsListChildren.count(), "#")
45
+ // await expect(listOfWordsList.getByLabel(`id-list-of-words-${0}-nth`)).toMatchAriaSnapshot("- text: \"the: 734 repetitions\"");
46
+ await page.getByRole('searchbox', { name: 'filter-words-frequency' }).click();
47
+ await page.getByRole('searchbox', { name: 'filter-words-frequency' }).press('Enter');
48
+ await page.waitForTimeout(100)
49
+
50
+ expect(listOfWordsListChildren).toHaveCount(1701)
51
+ await expect(listOfWordsListChildren.nth(0)).toContainText('anything strange: 1');
52
+ await expect(listOfWordsListChildren.nth(1)).toContainText('because they: 1');
53
+ console.log("#########")
54
+ await expect(listOfWordsListChildren.nth(1700)).toContainText('the: 734'); // .getByLabel('id-list-of-words-1700-nth')
55
+
56
+ await page.getByText('the Dursleys:').click();
57
+ await page.waitForTimeout(100)
58
+
59
+ await expect(page.getByLabel('id-current-table-of-words-title')).toContainText('the Dursleys: 32');
60
+ await expect(page.locator('#gametext')).toHaveScreenshot()
61
+
62
+ let col2wordsFreq = page.getByLabel('id-col2-words-frequency', { exact: true })
63
+ await expect(col2wordsFreq).toHaveScreenshot()
64
+ await page.getByText('The Dursley s had a', { exact: true }).click();
65
+ await page.waitForTimeout(100)
66
+ await expect(page.locator('#gametext')).toHaveScreenshot()
67
+
68
+ await page.getByText('that the Dursleys were', { exact: true }).click();
69
+ await page.waitForTimeout(100)
70
+ await expect(page.locator('#gametext')).toHaveScreenshot()
71
+
72
+ listOfWordsListChildren = page.getByLabel('id-list-of-words-container').locator('list')
73
+ expect(listOfWordsListChildren).toHaveCount(1701)
74
+
75
+ await page.getByLabel('id-select-sort-by').selectOption('word_prefix');
76
+ await page.getByRole('searchbox', { name: 'filter-words-frequency' }).click();
77
+ await page.getByRole('searchbox', { name: 'filter-words-frequency' }).press('Enter');
78
+ await expect(listOfWordsListChildren.nth(0)).toMatchAriaSnapshot();
79
+ await expect(listOfWordsListChildren.nth(1700)).toMatchAriaSnapshot();
80
+
81
+ await page.getByLabel('id-select-sort-by').selectOption('n_words_ngram');
82
+ await page.getByRole('searchbox', { name: 'filter-words-frequency' }).click();
83
+ await page.getByRole('searchbox', { name: 'filter-words-frequency' }).press('Enter');
84
+
85
+ await expect(listOfWordsListChildren.nth(0)).toMatchAriaSnapshot();
86
+ await expect(listOfWordsListChildren.nth(1700)).toMatchAriaSnapshot();
87
+
88
+ /*
89
+ fileWriter(filepath, data)
90
+ fileReader(filepath)
91
+ */
92
+ console.log("end!")
93
+ });
static/tests/test-helper.ts CHANGED
@@ -1,5 +1,5 @@
1
  import fs from 'node:fs'
2
- import { Page, expect } from '@playwright/test';
3
 
4
  interface CellObject {
5
  table: number
@@ -110,4 +110,14 @@ export async function testWithLoop(page: Page, testLLMTextFilePath: string, cell
110
  await loopOverTablesAndClickOnUrls(page, cellArray2[idx], 100)
111
  }
112
  console.log("end!")
113
- }
 
 
 
 
 
 
 
 
 
 
 
1
  import fs from 'node:fs'
2
+ import { Locator, Page, expect } from '@playwright/test';
3
 
4
  interface CellObject {
5
  table: number
 
110
  await loopOverTablesAndClickOnUrls(page, cellArray2[idx], 100)
111
  }
112
  console.log("end!")
113
+ }
114
+
115
+ export async function assertCellAndLink(page: Page, gameEditor: Locator, idCell: string, expectedCellString: string, assertScreenshot: boolean = true) {
116
+ let tableOfWordsElNth0 = page.getByLabel(idCell).getByRole('cell');
117
+ await expect(tableOfWordsElNth0).toMatchAriaSnapshot(`- cell "${idCell}-link": "${expectedCellString}"`);
118
+ await page.getByLabel(`${idCell}-link`).click();
119
+ await page.waitForTimeout(100);
120
+ if (assertScreenshot) {
121
+ await expect(gameEditor).toHaveScreenshot();
122
+ }
123
+ }