cindyangelira
commited on
Commit
•
82d775a
1
Parent(s):
8902f7a
Add BERTopic model
Browse files- README.md +80 -0
- config.json +29 -0
- ctfidf.safetensors +3 -0
- ctfidf_config.json +4114 -0
- topic_embeddings.safetensors +3 -0
- topics.json +1365 -0
README.md
ADDED
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
---
|
3 |
+
tags:
|
4 |
+
- bertopic
|
5 |
+
library_name: bertopic
|
6 |
+
pipeline_tag: text-classification
|
7 |
+
---
|
8 |
+
|
9 |
+
# BERTopic_hurricane_tweet
|
10 |
+
|
11 |
+
This is a [BERTopic](https://github.com/MaartenGr/BERTopic) model.
|
12 |
+
BERTopic is a flexible and modular topic modeling framework that allows for the generation of easily interpretable topics from large datasets.
|
13 |
+
|
14 |
+
## Usage
|
15 |
+
|
16 |
+
To use this model, please install BERTopic:
|
17 |
+
|
18 |
+
```
|
19 |
+
pip install -U bertopic
|
20 |
+
```
|
21 |
+
|
22 |
+
You can use the model as follows:
|
23 |
+
|
24 |
+
```python
|
25 |
+
from bertopic import BERTopic
|
26 |
+
topic_model = BERTopic.load("cindyangelira/BERTopic_hurricane_tweet")
|
27 |
+
|
28 |
+
topic_model.get_topic_info()
|
29 |
+
```
|
30 |
+
|
31 |
+
## Topic overview
|
32 |
+
|
33 |
+
* Number of topics: 11
|
34 |
+
* Number of training documents: 811
|
35 |
+
|
36 |
+
<details>
|
37 |
+
<summary>Click here for an overview of all topics.</summary>
|
38 |
+
|
39 |
+
| Topic ID | Topic Keywords | Topic Frequency | Label |
|
40 |
+
|----------|----------------|-----------------|-------|
|
41 |
+
| -1 | medicare - theft - medical - harvey - identity | 1 | -1_medicare_theft_medical_harvey |
|
42 |
+
| 0 | gofundme - donate - houstonstrong - texas - houston | 111 | Weather Updates |
|
43 |
+
| 1 | plaza - txmedcenter - medical - instagram - here | 516 | Relief Efforts |
|
44 |
+
| 2 | hurricaneharvey - houston - harvey - hurricane - houstonflood | 74 | Rescue Operations |
|
45 |
+
| 3 | harvey - hurricane - flooded - houston - tx | 33 | Flooding Reports |
|
46 |
+
| 4 | houston - astros - harvey - snow - houstonstrong | 28 | Storm Damage Reports |
|
47 |
+
| 5 | harvey - reliefforharvey - hurricaneharvey - relief - houstonians | 23 | 5_harvey_reliefforharvey_hurricaneharvey_relief |
|
48 |
+
| 6 | rescued - hurricaneharvey - - - | 14 | 6_rescued_hurricaneharvey__ |
|
49 |
+
| 7 | hurricaneharvey - hurricane - - - | 4 | 7_hurricaneharvey_hurricane__ |
|
50 |
+
| 8 | harvey - flooding - houston - floodwaters - flood | 4 | 8_harvey_flooding_houston_floodwaters |
|
51 |
+
| 9 | houston - hurricaneseason - hurricaneharvey - harvey - weather | 3 | 9_houston_hurricaneseason_hurricaneharvey_harvey |
|
52 |
+
|
53 |
+
</details>
|
54 |
+
|
55 |
+
## Training hyperparameters
|
56 |
+
|
57 |
+
* calculate_probabilities: False
|
58 |
+
* language: None
|
59 |
+
* low_memory: False
|
60 |
+
* min_topic_size: 15
|
61 |
+
* n_gram_range: (1, 1)
|
62 |
+
* nr_topics: None
|
63 |
+
* seed_topic_list: None
|
64 |
+
* top_n_words: 10
|
65 |
+
* verbose: False
|
66 |
+
* zeroshot_min_similarity: 0.85
|
67 |
+
* zeroshot_topic_list: ['Weather Updates', 'Evacuation Information', 'Emergency Services', 'Relief Efforts', 'Rescue Operations', 'Flooding Reports', 'Traffic and Road Closures', 'Government and Local Authority Announcements', 'Personal Stories and Experiences', 'Storm Damage Reports', 'Others']
|
68 |
+
|
69 |
+
## Framework versions
|
70 |
+
|
71 |
+
* Numpy: 1.26.4
|
72 |
+
* HDBSCAN: 0.8.38.post1
|
73 |
+
* UMAP: 0.5.6
|
74 |
+
* Pandas: 2.2.2
|
75 |
+
* Scikit-Learn: 1.2.2
|
76 |
+
* Sentence-transformers: 3.1.0
|
77 |
+
* Transformers: 4.44.0
|
78 |
+
* Numba: 0.60.0
|
79 |
+
* Plotly: 5.22.0
|
80 |
+
* Python: 3.10.14
|
config.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"calculate_probabilities": false,
|
3 |
+
"language": null,
|
4 |
+
"low_memory": false,
|
5 |
+
"min_topic_size": 15,
|
6 |
+
"n_gram_range": [
|
7 |
+
1,
|
8 |
+
1
|
9 |
+
],
|
10 |
+
"nr_topics": null,
|
11 |
+
"seed_topic_list": null,
|
12 |
+
"top_n_words": 10,
|
13 |
+
"verbose": false,
|
14 |
+
"zeroshot_min_similarity": 0.85,
|
15 |
+
"zeroshot_topic_list": [
|
16 |
+
"Weather Updates",
|
17 |
+
"Evacuation Information",
|
18 |
+
"Emergency Services",
|
19 |
+
"Relief Efforts",
|
20 |
+
"Rescue Operations",
|
21 |
+
"Flooding Reports",
|
22 |
+
"Traffic and Road Closures",
|
23 |
+
"Government and Local Authority Announcements",
|
24 |
+
"Personal Stories and Experiences",
|
25 |
+
"Storm Damage Reports",
|
26 |
+
"Others"
|
27 |
+
],
|
28 |
+
"embedding_model": "thenlper/gte-small"
|
29 |
+
}
|
ctfidf.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:adcf3ac897c64e30d7441c95960eaf2beef4d24bc28dd0d5b1e67f60e30b07eb
|
3 |
+
size 103504
|
ctfidf_config.json
ADDED
@@ -0,0 +1,4114 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"ctfidf_model": {
|
3 |
+
"bm25_weighting": false,
|
4 |
+
"reduce_frequent_words": false
|
5 |
+
},
|
6 |
+
"vectorizer_model": {
|
7 |
+
"params": {
|
8 |
+
"analyzer": "word",
|
9 |
+
"binary": false,
|
10 |
+
"decode_error": "strict",
|
11 |
+
"encoding": "utf-8",
|
12 |
+
"input": "content",
|
13 |
+
"lowercase": true,
|
14 |
+
"max_df": 1.0,
|
15 |
+
"max_features": null,
|
16 |
+
"min_df": 1,
|
17 |
+
"ngram_range": [
|
18 |
+
1,
|
19 |
+
1
|
20 |
+
],
|
21 |
+
"stop_words": null,
|
22 |
+
"strip_accents": null,
|
23 |
+
"token_pattern": "(?u)\\b\\w\\w+\\b",
|
24 |
+
"vocabulary": null
|
25 |
+
},
|
26 |
+
"vocab": {
|
27 |
+
"hoping": 1827,
|
28 |
+
"those": 3655,
|
29 |
+
"that": 3622,
|
30 |
+
"were": 3959,
|
31 |
+
"affected": 188,
|
32 |
+
"by": 576,
|
33 |
+
"hurricaneharvey": 1909,
|
34 |
+
"tropicalstormharvey": 3747,
|
35 |
+
"stay": 3438,
|
36 |
+
"strong": 3478,
|
37 |
+
"and": 246,
|
38 |
+
"believe": 437,
|
39 |
+
"in": 1953,
|
40 |
+
"the": 3624,
|
41 |
+
"power": 2849,
|
42 |
+
"of": 2619,
|
43 |
+
"prayer": 2856,
|
44 |
+
"hewillgetyouthrough": 1779,
|
45 |
+
"water": 3927,
|
46 |
+
"level": 2238,
|
47 |
+
"is": 2032,
|
48 |
+
"suppose": 3529,
|
49 |
+
"to": 3692,
|
50 |
+
"rise": 3130,
|
51 |
+
"feet": 1439,
|
52 |
+
"tomorrow": 3697,
|
53 |
+
"orange": 2663,
|
54 |
+
"tx": 3780,
|
55 |
+
"please": 2818,
|
56 |
+
"help": 1764,
|
57 |
+
"if": 1935,
|
58 |
+
"you": 4062,
|
59 |
+
"can": 750,
|
60 |
+
"rescue": 3078,
|
61 |
+
"my": 2519,
|
62 |
+
"car": 766,
|
63 |
+
"completely": 950,
|
64 |
+
"gone": 1629,
|
65 |
+
"am": 232,
|
66 |
+
"grateful": 1656,
|
67 |
+
"be": 418,
|
68 |
+
"able": 148,
|
69 |
+
"leave": 2218,
|
70 |
+
"ina": 1954,
|
71 |
+
"safer": 3173,
|
72 |
+
"place": 2802,
|
73 |
+
"material": 2375,
|
74 |
+
"things": 3647,
|
75 |
+
"mean": 2397,
|
76 |
+
"nothing": 2595,
|
77 |
+
"right": 3125,
|
78 |
+
"now": 2599,
|
79 |
+
"shopfreeradical": 3283,
|
80 |
+
"your": 4065,
|
81 |
+
"pins": 2796,
|
82 |
+
"are": 284,
|
83 |
+
"awesome": 344,
|
84 |
+
"maybe": 2386,
|
85 |
+
"after": 192,
|
86 |
+
"recover": 3011,
|
87 |
+
"from": 1537,
|
88 |
+
"buy": 573,
|
89 |
+
"one": 2643,
|
90 |
+
"light": 2250,
|
91 |
+
"at": 320,
|
92 |
+
"end": 1318,
|
93 |
+
"tunnel": 3766,
|
94 |
+
"good": 1632,
|
95 |
+
"riddance": 3121,
|
96 |
+
"congratulations": 969,
|
97 |
+
"turn": 3767,
|
98 |
+
"tragedy": 3727,
|
99 |
+
"into": 2015,
|
100 |
+
"brand": 518,
|
101 |
+
"marketing": 2360,
|
102 |
+
"harvey": 1719,
|
103 |
+
"houstonflooding": 1858,
|
104 |
+
"students": 3487,
|
105 |
+
"faculty": 1402,
|
106 |
+
"due": 1259,
|
107 |
+
"flooding": 1487,
|
108 |
+
"houston": 1850,
|
109 |
+
"stafford": 3420,
|
110 |
+
"northwest": 2591,
|
111 |
+
"campuses": 749,
|
112 |
+
"will": 3987,
|
113 |
+
"closed": 897,
|
114 |
+
"31": 76,
|
115 |
+
"day": 1080,
|
116 |
+
"for": 1508,
|
117 |
+
"us": 3838,
|
118 |
+
"aftermath": 193,
|
119 |
+
"has": 1724,
|
120 |
+
"many": 2349,
|
121 |
+
"areas": 286,
|
122 |
+
"still": 3449,
|
123 |
+
"under": 3804,
|
124 |
+
"floodwaters": 1490,
|
125 |
+
"sadly": 3171,
|
126 |
+
"death": 1091,
|
127 |
+
"toll": 3696,
|
128 |
+
"rising": 3131,
|
129 |
+
"ve": 3861,
|
130 |
+
"been": 426,
|
131 |
+
"looking": 2298,
|
132 |
+
"way": 3935,
|
133 |
+
"donate": 1215,
|
134 |
+
"link": 2260,
|
135 |
+
"bio": 468,
|
136 |
+
"texas": 3601,
|
137 |
+
"instagram": 1995,
|
138 |
+
"com": 930,
|
139 |
+
"bybt2cchrqn": 609,
|
140 |
+
"we": 3939,
|
141 |
+
"humans": 1896,
|
142 |
+
"helping": 1768,
|
143 |
+
"it": 2037,
|
144 |
+
"doesn": 1203,
|
145 |
+
"matter": 2377,
|
146 |
+
"black": 473,
|
147 |
+
"white": 3976,
|
148 |
+
"rich": 3117,
|
149 |
+
"poor": 2836,
|
150 |
+
"jjwatt": 2074,
|
151 |
+
"want": 3912,
|
152 |
+
"put": 2945,
|
153 |
+
"charity": 832,
|
154 |
+
"basketball": 374,
|
155 |
+
"game": 1570,
|
156 |
+
"tournament": 3716,
|
157 |
+
"together": 3694,
|
158 |
+
"where": 3972,
|
159 |
+
"all": 219,
|
160 |
+
"rapper": 2975,
|
161 |
+
"hooper": 1823,
|
162 |
+
"friends": 1535,
|
163 |
+
"dad": 1061,
|
164 |
+
"pepper": 2759,
|
165 |
+
"dog": 1205,
|
166 |
+
"very": 3865,
|
167 |
+
"lucky": 2322,
|
168 |
+
"have": 1731,
|
169 |
+
"no": 2576,
|
170 |
+
"house": 1844,
|
171 |
+
"during": 1260,
|
172 |
+
"hurricane": 1907,
|
173 |
+
"victims": 3871,
|
174 |
+
"donating": 1219,
|
175 |
+
"100": 7,
|
176 |
+
"debut": 1096,
|
177 |
+
"album": 213,
|
178 |
+
"sales": 3181,
|
179 |
+
"rest": 3099,
|
180 |
+
"2017": 36,
|
181 |
+
"directly": 1169,
|
182 |
+
"relief": 3043,
|
183 |
+
"update": 3827,
|
184 |
+
"busy": 569,
|
185 |
+
"documenting": 1200,
|
186 |
+
"high": 1784,
|
187 |
+
"rescues": 3080,
|
188 |
+
"re": 2982,
|
189 |
+
"headed": 1742,
|
190 |
+
"east": 1272,
|
191 |
+
"beaumonttx": 420,
|
192 |
+
"orangetx": 2664,
|
193 |
+
"thanks": 3619,
|
194 |
+
"prayers": 2857,
|
195 |
+
"keep": 2124,
|
196 |
+
"saying": 3199,
|
197 |
+
"not": 2594,
|
198 |
+
"wearing": 3944,
|
199 |
+
"nails": 2525,
|
200 |
+
"more": 2486,
|
201 |
+
"but": 570,
|
202 |
+
"they": 3644,
|
203 |
+
"lifeeeee": 2244,
|
204 |
+
"love": 2312,
|
205 |
+
"done": 1222,
|
206 |
+
"yes": 4055,
|
207 |
+
"dates": 1075,
|
208 |
+
"listed": 2264,
|
209 |
+
"being": 435,
|
210 |
+
"constantly": 979,
|
211 |
+
"updated": 3828,
|
212 |
+
"as": 303,
|
213 |
+
"shifts": 3272,
|
214 |
+
"fill": 1458,
|
215 |
+
"up": 3826,
|
216 |
+
"on": 2641,
|
217 |
+
"sept": 3241,
|
218 |
+
"elena": 1299,
|
219 |
+
"thank": 3617,
|
220 |
+
"support": 3524,
|
221 |
+
"sure": 3530,
|
222 |
+
"view": 3877,
|
223 |
+
"desktop": 1135,
|
224 |
+
"mobile": 2472,
|
225 |
+
"may": 2385,
|
226 |
+
"bring": 535,
|
227 |
+
"such": 3496,
|
228 |
+
"useful": 3845,
|
229 |
+
"tool": 3705,
|
230 |
+
"insure": 2002,
|
231 |
+
"how": 1879,
|
232 |
+
"better": 452,
|
233 |
+
"get": 1588,
|
234 |
+
"same": 3183,
|
235 |
+
"damn": 1068,
|
236 |
+
"getting": 1590,
|
237 |
+
"trump": 3753,
|
238 |
+
"worrying": 4028,
|
239 |
+
"bout": 510,
|
240 |
+
"shit": 3278,
|
241 |
+
"missouri": 2458,
|
242 |
+
"tax": 3569,
|
243 |
+
"cuts": 1055,
|
244 |
+
"ha": 1684,
|
245 |
+
"boats": 496,
|
246 |
+
"tkn": 3688,
|
247 |
+
"pics": 2789,
|
248 |
+
"going": 1625,
|
249 |
+
"through": 3662,
|
250 |
+
"devastated": 1147,
|
251 |
+
"did": 1156,
|
252 |
+
"go": 1614,
|
253 |
+
"need": 2542,
|
254 |
+
"plz": 2823,
|
255 |
+
"would": 4032,
|
256 |
+
"like": 2254,
|
257 |
+
"families": 1411,
|
258 |
+
"hisd": 1793,
|
259 |
+
"then": 3637,
|
260 |
+
"check": 835,
|
261 |
+
"out": 2678,
|
262 |
+
"this": 3652,
|
263 |
+
"houstonisd": 1865,
|
264 |
+
"org": 2665,
|
265 |
+
"page": 2698,
|
266 |
+
"164281": 23,
|
267 |
+
"okay": 2637,
|
268 |
+
"got": 1639,
|
269 |
+
"shop": 3282,
|
270 |
+
"vac": 3851,
|
271 |
+
"storage": 3455,
|
272 |
+
"tubs": 3762,
|
273 |
+
"fuck": 1545,
|
274 |
+
"ton": 3699,
|
275 |
+
"gatorade": 1577,
|
276 |
+
"im": 1941,
|
277 |
+
"ready": 2988,
|
278 |
+
"tube": 3761,
|
279 |
+
"makeup": 2340,
|
280 |
+
"influencers": 1979,
|
281 |
+
"so": 3338,
|
282 |
+
"generously": 1585,
|
283 |
+
"giving": 1604,
|
284 |
+
"people": 2758,
|
285 |
+
"fam": 1409,
|
286 |
+
"responds": 3095,
|
287 |
+
"newsroom": 2566,
|
288 |
+
"articl": 299,
|
289 |
+
"beltway": 440,
|
290 |
+
"today": 3693,
|
291 |
+
"wow": 4035,
|
292 |
+
"university": 3815,
|
293 |
+
"north": 2589,
|
294 |
+
"waive": 3903,
|
295 |
+
"application": 275,
|
296 |
+
"fees": 1438,
|
297 |
+
"immediately": 1945,
|
298 |
+
"enroll": 1324,
|
299 |
+
"itmustbejam": 2040,
|
300 |
+
"08": 5,
|
301 |
+
"29": 54,
|
302 |
+
"class": 880,
|
303 |
+
"players": 2812,
|
304 |
+
"hearing": 1753,
|
305 |
+
"bust": 567,
|
306 |
+
"truly": 3752,
|
307 |
+
"think": 3648,
|
308 |
+
"around": 294,
|
309 |
+
"qb": 2948,
|
310 |
+
"mitchell": 2460,
|
311 |
+
"trubisky": 3748,
|
312 |
+
"wr": 4036,
|
313 |
+
"zay": 4076,
|
314 |
+
"jones": 2092,
|
315 |
+
"corey": 999,
|
316 |
+
"davis": 1077,
|
317 |
+
"deshone": 1133,
|
318 |
+
"kizer": 2159,
|
319 |
+
"new": 2560,
|
320 |
+
"team": 3580,
|
321 |
+
"lb": 2206,
|
322 |
+
"jared": 2057,
|
323 |
+
"rb": 2978,
|
324 |
+
"joe": 2079,
|
325 |
+
"mixon": 2465,
|
326 |
+
"john": 2082,
|
327 |
+
"ross": 3152,
|
328 |
+
"gareon": 1572,
|
329 |
+
"conley": 972,
|
330 |
+
"don": 1213,
|
331 |
+
"fall": 1406,
|
332 |
+
"category": 785,
|
333 |
+
"medical": 2405,
|
334 |
+
"jadeveon": 2051,
|
335 |
+
"clowney": 903,
|
336 |
+
"was": 3918,
|
337 |
+
"looked": 2297,
|
338 |
+
"texans": 3600,
|
339 |
+
"staff": 3419,
|
340 |
+
"he": 1741,
|
341 |
+
"walk": 3907,
|
342 |
+
"off": 2620,
|
343 |
+
"field": 1452,
|
344 |
+
"tonight": 3701,
|
345 |
+
"7pm": 128,
|
346 |
+
"start": 3426,
|
347 |
+
"time": 3673,
|
348 |
+
"benefit": 441,
|
349 |
+
"concert": 957,
|
350 |
+
"excited": 1367,
|
351 |
+
"part": 2718,
|
352 |
+
"bdtjstsfezl": 414,
|
353 |
+
"along": 225,
|
354 |
+
"south": 3369,
|
355 |
+
"thousands": 3659,
|
356 |
+
"remain": 3047,
|
357 |
+
"displaced": 1187,
|
358 |
+
"recovery": 3015,
|
359 |
+
"continues": 986,
|
360 |
+
"pr": 2851,
|
361 |
+
"2pqmvzb": 65,
|
362 |
+
"news": 2564,
|
363 |
+
"ll": 2275,
|
364 |
+
"live": 2270,
|
365 |
+
"evening": 1348,
|
366 |
+
"presenting": 2876,
|
367 |
+
"coverage": 1017,
|
368 |
+
"celebrating": 800,
|
369 |
+
"holiday": 1809,
|
370 |
+
"season": 3217,
|
371 |
+
"amid": 241,
|
372 |
+
"komunews": 2167,
|
373 |
+
"didn": 1157,
|
374 |
+
"make": 2337,
|
375 |
+
"see": 3221,
|
376 |
+
"jim": 2070,
|
377 |
+
"james": 2052,
|
378 |
+
"last": 2191,
|
379 |
+
"night": 2573,
|
380 |
+
"currently": 1050,
|
381 |
+
"making": 2341,
|
382 |
+
"81": 131,
|
383 |
+
"billion": 466,
|
384 |
+
"plan": 2805,
|
385 |
+
"govabbott": 1643,
|
386 |
+
"says": 3200,
|
387 |
+
"strategy": 3467,
|
388 |
+
"best": 447,
|
389 |
+
"what": 3967,
|
390 |
+
"state": 3430,
|
391 |
+
"needs": 2545,
|
392 |
+
"houstonpublicmedia": 1867,
|
393 |
+
"artic": 298,
|
394 |
+
"davis_land": 1078,
|
395 |
+
"spirit": 3397,
|
396 |
+
"resilient": 3087,
|
397 |
+
"months": 2484,
|
398 |
+
"destroyed": 1139,
|
399 |
+
"their": 3633,
|
400 |
+
"homes": 1816,
|
401 |
+
"these": 3640,
|
402 |
+
"houstonians": 1863,
|
403 |
+
"returned": 3107,
|
404 |
+
"decorate": 1101,
|
405 |
+
"empty": 1313,
|
406 |
+
"houses": 1847,
|
407 |
+
"houstonstrong": 1873,
|
408 |
+
"happy": 1705,
|
409 |
+
"funnysaturday": 1557,
|
410 |
+
"relationshipstatus": 3040,
|
411 |
+
"lol": 2292,
|
412 |
+
"click": 887,
|
413 |
+
"bdwg5wglxxl": 417,
|
414 |
+
"home": 1813,
|
415 |
+
"alone": 224,
|
416 |
+
"hungry": 1901,
|
417 |
+
"sick": 3299,
|
418 |
+
"do": 1197,
|
419 |
+
"anything": 263,
|
420 |
+
"mee": 2413,
|
421 |
+
"having": 1734,
|
422 |
+
"worst": 4030,
|
423 |
+
"cramps": 1023,
|
424 |
+
"ever": 1352,
|
425 |
+
"someone": 3352,
|
426 |
+
"come": 932,
|
427 |
+
"pls": 2820,
|
428 |
+
"let": 2233,
|
429 |
+
"without": 4000,
|
430 |
+
"taking": 3555,
|
431 |
+
"our": 2677,
|
432 |
+
"parksmart": 2716,
|
433 |
+
"precinct": 2863,
|
434 |
+
"survey": 3535,
|
435 |
+
"feedback": 1433,
|
436 |
+
"about": 150,
|
437 |
+
"parks": 2715,
|
438 |
+
"trails": 3729,
|
439 |
+
"create": 1027,
|
440 |
+
"greenspaces": 1668,
|
441 |
+
"harris": 1715,
|
442 |
+
"county": 1012,
|
443 |
+
"learn": 2213,
|
444 |
+
"parksmartprecinct1": 2717,
|
445 |
+
"say": 3198,
|
446 |
+
"expected": 1377,
|
447 |
+
"lamar": 2184,
|
448 |
+
"jackson": 2049,
|
449 |
+
"play": 2810,
|
450 |
+
"michael": 2435,
|
451 |
+
"his": 1792,
|
452 |
+
"draft": 1233,
|
453 |
+
"status": 3437,
|
454 |
+
"with": 3999,
|
455 |
+
"int": 2003,
|
456 |
+
"against": 195,
|
457 |
+
"weak": 3941,
|
458 |
+
"defense": 1109,
|
459 |
+
"fee": 1431,
|
460 |
+
"tickets": 3670,
|
461 |
+
"fast": 1421,
|
462 |
+
"45": 91,
|
463 |
+
"cash": 780,
|
464 |
+
"only": 2647,
|
465 |
+
"here": 1774,
|
466 |
+
"cactus": 735,
|
467 |
+
"thesuffers": 3642,
|
468 |
+
"newportfolkfest": 2563,
|
469 |
+
"ages": 197,
|
470 |
+
"show": 3293,
|
471 |
+
"fri": 1531,
|
472 |
+
"12": 13,
|
473 |
+
"22": 41,
|
474 |
+
"hobhouston": 1805,
|
475 |
+
"proceeds": 2890,
|
476 |
+
"greaterhoucf": 1662,
|
477 |
+
"pic": 2787,
|
478 |
+
"lineup": 2259,
|
479 |
+
"long": 2294,
|
480 |
+
"ago": 199,
|
481 |
+
"puerto": 2931,
|
482 |
+
"rico": 3120,
|
483 |
+
"electricity": 1297,
|
484 |
+
"arelisrhdz": 287,
|
485 |
+
"txlege": 3783,
|
486 |
+
"job": 2077,
|
487 |
+
"restaurant": 3101,
|
488 |
+
"humble": 1897,
|
489 |
+
"hiring": 1791,
|
490 |
+
"impacted": 1948,
|
491 |
+
"flood": 1485,
|
492 |
+
"story": 3461,
|
493 |
+
"abc13": 145,
|
494 |
+
"careers": 772,
|
495 |
+
"res": 3077,
|
496 |
+
"hounews": 1840,
|
497 |
+
"score": 3211,
|
498 |
+
"some": 3350,
|
499 |
+
"goals": 1616,
|
500 |
+
"stevenash": 3446,
|
501 |
+
"kickinforhouston": 2138,
|
502 |
+
"celebritysoccermatch": 803,
|
503 |
+
"two": 3778,
|
504 |
+
"independent": 1971,
|
505 |
+
"research": 3081,
|
506 |
+
"teams": 3583,
|
507 |
+
"netherlands": 2553,
|
508 |
+
"california": 739,
|
509 |
+
"reported": 3068,
|
510 |
+
"deluge": 1120,
|
511 |
+
"significantly": 3304,
|
512 |
+
"heavier": 1757,
|
513 |
+
"than": 3616,
|
514 |
+
"before": 428,
|
515 |
+
"era": 1336,
|
516 |
+
"human": 1895,
|
517 |
+
"caused": 791,
|
518 |
+
"globalwarming": 1613,
|
519 |
+
"climatechange": 893,
|
520 |
+
"txwx": 3786,
|
521 |
+
"hourecovers": 1842,
|
522 |
+
"washingtonpost": 3920,
|
523 |
+
"post": 2842,
|
524 |
+
"houstonfoodbank": 1860,
|
525 |
+
"watch": 3925,
|
526 |
+
"ms": 2499,
|
527 |
+
"anna": 252,
|
528 |
+
"medina": 2410,
|
529 |
+
"leidy": 2228,
|
530 |
+
"martinez": 2366,
|
531 |
+
"varnett": 3858,
|
532 |
+
"parent": 2711,
|
533 |
+
"liaisons": 2241,
|
534 |
+
"talk": 3556,
|
535 |
+
"interview": 2013,
|
536 |
+
"abc13houston": 146,
|
537 |
+
"friday": 1532,
|
538 |
+
"dec": 1097,
|
539 |
+
"cdn": 797,
|
540 |
+
"edl": 1286,
|
541 |
+
"io": 2025,
|
542 |
+
"iocbdxzsjym3qdg": 2026,
|
543 |
+
"mindful": 2444,
|
544 |
+
"true": 3750,
|
545 |
+
"yourself": 4066,
|
546 |
+
"when": 3971,
|
547 |
+
"filing": 1457,
|
548 |
+
"or": 2662,
|
549 |
+
"needing": 2544,
|
550 |
+
"taxes": 3570,
|
551 |
+
"offering": 2622,
|
552 |
+
"advance": 183,
|
553 |
+
"loans": 2283,
|
554 |
+
"2500": 45,
|
555 |
+
"return": 3106,
|
556 |
+
"year": 4053,
|
557 |
+
"round": 3153,
|
558 |
+
"service": 3247,
|
559 |
+
"5425": 102,
|
560 |
+
"fry": 1542,
|
561 |
+
"rd": 2981,
|
562 |
+
"ste": 3443,
|
563 |
+
"1303": 16,
|
564 |
+
"katy": 2120,
|
565 |
+
"77449": 125,
|
566 |
+
"281": 52,
|
567 |
+
"856": 132,
|
568 |
+
"6568": 113,
|
569 |
+
"2018": 38,
|
570 |
+
"filled": 1459,
|
571 |
+
"experiences": 1380,
|
572 |
+
"non": 2583,
|
573 |
+
"profit": 2896,
|
574 |
+
"networking": 2555,
|
575 |
+
"cafe": 736,
|
576 |
+
"providing": 2916,
|
577 |
+
"bevy": 457,
|
578 |
+
"ideas": 1931,
|
579 |
+
"information": 1981,
|
580 |
+
"events": 1350,
|
581 |
+
"topics": 3709,
|
582 |
+
"npos": 2601,
|
583 |
+
"grow": 1674,
|
584 |
+
"flourish": 1492,
|
585 |
+
"skin": 3320,
|
586 |
+
"care": 770,
|
587 |
+
"routine": 3154,
|
588 |
+
"anyone": 262,
|
589 |
+
"plays": 2815,
|
590 |
+
"west": 3961,
|
591 |
+
"harder": 1711,
|
592 |
+
"conference": 964,
|
593 |
+
"invalid": 2016,
|
594 |
+
"back": 351,
|
595 |
+
"flavors": 1478,
|
596 |
+
"ring": 3127,
|
597 |
+
"open": 2650,
|
598 |
+
"11": 11,
|
599 |
+
"growler": 1675,
|
600 |
+
"fills": 1460,
|
601 |
+
"10": 6,
|
602 |
+
"20": 33,
|
603 |
+
"build": 550,
|
604 |
+
"case": 778,
|
605 |
+
"35": 82,
|
606 |
+
"remodeled": 3052,
|
607 |
+
"which": 3974,
|
608 |
+
"overdue": 2688,
|
609 |
+
"had": 1686,
|
610 |
+
"bit": 470,
|
611 |
+
"though": 3656,
|
612 |
+
"choose": 855,
|
613 |
+
"design": 1134,
|
614 |
+
"abode": 149,
|
615 |
+
"store": 3456,
|
616 |
+
"between": 454,
|
617 |
+
"bdvr13pfvf9": 416,
|
618 |
+
"ua1424": 3791,
|
619 |
+
"tell": 3588,
|
620 |
+
"ua": 3790,
|
621 |
+
"said": 3177,
|
622 |
+
"sorry": 3363,
|
623 |
+
"fuming": 1551,
|
624 |
+
"everyone": 1355,
|
625 |
+
"1ks": 30,
|
626 |
+
"who": 3979,
|
627 |
+
"agree": 200,
|
628 |
+
"homophobic": 1818,
|
629 |
+
"google": 1637,
|
630 |
+
"gay": 1579,
|
631 |
+
"rights": 3126,
|
632 |
+
"russia": 3164,
|
633 |
+
"find": 1464,
|
634 |
+
"look": 2296,
|
635 |
+
"first": 1470,
|
636 |
+
"prisoners": 2886,
|
637 |
+
"holocaust": 1812,
|
638 |
+
"camps": 748,
|
639 |
+
"wore": 4016,
|
640 |
+
"inverted": 2019,
|
641 |
+
"pink": 2795,
|
642 |
+
"triangles": 3744,
|
643 |
+
"jokes": 2091,
|
644 |
+
"seem": 3224,
|
645 |
+
"little": 2269,
|
646 |
+
"issue": 2035,
|
647 |
+
"god": 1618,
|
648 |
+
"hate": 1726,
|
649 |
+
"hard": 1708,
|
650 |
+
"ass": 310,
|
651 |
+
"rolls": 3146,
|
652 |
+
"randomly": 2971,
|
653 |
+
"ringtone": 3128,
|
654 |
+
"reason": 2996,
|
655 |
+
"hit": 1800,
|
656 |
+
"past": 2731,
|
657 |
+
"august": 330,
|
658 |
+
"dear": 1090,
|
659 |
+
"friend": 1533,
|
660 |
+
"1st": 32,
|
661 |
+
"reach": 2983,
|
662 |
+
"me": 2395,
|
663 |
+
"ask": 307,
|
664 |
+
"could": 1005,
|
665 |
+
"suffers": 3505,
|
666 |
+
"including": 1963,
|
667 |
+
"shakey": 3257,
|
668 |
+
"graves": 1657,
|
669 |
+
"rally": 2969,
|
670 |
+
"chron": 861,
|
671 |
+
"entertainment": 1327,
|
672 |
+
"musi": 2511,
|
673 |
+
"via": 3869,
|
674 |
+
"houstonchron": 1854,
|
675 |
+
"kings": 2152,
|
676 |
+
"court": 1014,
|
677 |
+
"bayoucityblues": 378,
|
678 |
+
"since": 3308,
|
679 |
+
"chelsea": 839,
|
680 |
+
"family": 1413,
|
681 |
+
"newport": 2562,
|
682 |
+
"folks": 1500,
|
683 |
+
"presents": 2877,
|
684 |
+
"hustlegrade": 1925,
|
685 |
+
"newpo": 2561,
|
686 |
+
"wits": 4002,
|
687 |
+
"writer": 4041,
|
688 |
+
"caitweissorcutt": 737,
|
689 |
+
"reached": 2984,
|
690 |
+
"volunteered": 3890,
|
691 |
+
"grbcc": 1660,
|
692 |
+
"read": 2985,
|
693 |
+
"her": 1773,
|
694 |
+
"article": 300,
|
695 |
+
"twc_org": 3772,
|
696 |
+
"she": 3265,
|
697 |
+
"used": 3844,
|
698 |
+
"writing": 4042,
|
699 |
+
"children": 846,
|
700 |
+
"heal": 1744,
|
701 |
+
"tinyurl": 3678,
|
702 |
+
"ybcvp8pn": 4052,
|
703 |
+
"tech": 3586,
|
704 |
+
"art": 296,
|
705 |
+
"data": 1073,
|
706 |
+
"driven": 1242,
|
707 |
+
"installations": 1996,
|
708 |
+
"issues": 2036,
|
709 |
+
"mass": 2371,
|
710 |
+
"incarceration": 1959,
|
711 |
+
"theartnewspaper": 3626,
|
712 |
+
"hig": 1783,
|
713 |
+
"three": 3661,
|
714 |
+
"city": 875,
|
715 |
+
"begins": 432,
|
716 |
+
"mailing": 2334,
|
717 |
+
"letters": 2236,
|
718 |
+
"homeowners": 1815,
|
719 |
+
"much": 2504,
|
720 |
+
"damage": 1065,
|
721 |
+
"relative": 3041,
|
722 |
+
"value": 3856,
|
723 |
+
"required": 3076,
|
724 |
+
"elevate": 1301,
|
725 |
+
"far": 1418,
|
726 |
+
"611": 109,
|
727 |
+
"just": 2103,
|
728 |
+
"beginning": 431,
|
729 |
+
"houstonchronicle": 1855,
|
730 |
+
"busines": 562,
|
731 |
+
"hcphtx": 1737,
|
732 |
+
"building": 552,
|
733 |
+
"healthycommunities": 1750,
|
734 |
+
"2day": 58,
|
735 |
+
"harriscounty": 1716,
|
736 |
+
"galenapark": 1565,
|
737 |
+
"communityoutreach": 943,
|
738 |
+
"awards": 342,
|
739 |
+
"contract": 987,
|
740 |
+
"final": 1461,
|
741 |
+
"piece": 2793,
|
742 |
+
"brays": 526,
|
743 |
+
"bayou": 377,
|
744 |
+
"aimed": 207,
|
745 |
+
"oft": 2631,
|
746 |
+
"flooded": 1486,
|
747 |
+
"neighborhoods": 2548,
|
748 |
+
"meyerland": 2431,
|
749 |
+
"center": 804,
|
750 |
+
"po": 2826,
|
751 |
+
"community": 942,
|
752 |
+
"meeting": 2415,
|
753 |
+
"lots": 2309,
|
754 |
+
"lstarlegal": 2319,
|
755 |
+
"onsite": 2648,
|
756 |
+
"trying": 3756,
|
757 |
+
"spread": 3404,
|
758 |
+
"word": 4014,
|
759 |
+
"disaster": 1174,
|
760 |
+
"intake": 2004,
|
761 |
+
"line": 2257,
|
762 |
+
"legal": 2223,
|
763 |
+
"fema": 1441,
|
764 |
+
"denials": 1124,
|
765 |
+
"bad": 357,
|
766 |
+
"landlords": 2186,
|
767 |
+
"unpaid": 3820,
|
768 |
+
"wages": 3898,
|
769 |
+
"866": 133,
|
770 |
+
"659": 114,
|
771 |
+
"0666": 3,
|
772 |
+
"eqhou": 1331,
|
773 |
+
"equitablerecovery": 1334,
|
774 |
+
"texashousers": 3605,
|
775 |
+
"marvin": 2367,
|
776 |
+
"odum": 2618,
|
777 |
+
"chief": 843,
|
778 |
+
"officer": 2624,
|
779 |
+
"listening": 2265,
|
780 |
+
"stories": 3457,
|
781 |
+
"explaining": 1383,
|
782 |
+
"implement": 1950,
|
783 |
+
"neighborhood": 2547,
|
784 |
+
"houstonrising": 1870,
|
785 |
+
"honor": 1821,
|
786 |
+
"speaking": 3384,
|
787 |
+
"grand": 1651,
|
788 |
+
"opening": 2652,
|
789 |
+
"united": 3814,
|
790 |
+
"health": 1745,
|
791 |
+
"partners": 2721,
|
792 |
+
"inc": 1958,
|
793 |
+
"services": 3248,
|
794 |
+
"clinic": 894,
|
795 |
+
"blessings": 481,
|
796 |
+
"uhp": 3797,
|
797 |
+
"organizations": 2669,
|
798 |
+
"supporting": 3527,
|
799 |
+
"partnership": 2722,
|
800 |
+
"heart_to_heart": 1755,
|
801 |
+
"ehcec": 1295,
|
802 |
+
"allhands": 221,
|
803 |
+
"pastorsnormaandjosecarballo": 2732,
|
804 |
+
"theedeffect": 3629,
|
805 |
+
"judge": 2101,
|
806 |
+
"goes": 1621,
|
807 |
+
"down": 1228,
|
808 |
+
"walked": 3908,
|
809 |
+
"replacement": 3066,
|
810 |
+
"comes": 934,
|
811 |
+
"isn": 2033,
|
812 |
+
"dangerous": 1069,
|
813 |
+
"taso": 3565,
|
814 |
+
"officials": 2629,
|
815 |
+
"well": 3956,
|
816 |
+
"texashsfootball": 3606,
|
817 |
+
"medicare": 2406,
|
818 |
+
"takes": 3554,
|
819 |
+
"aim": 206,
|
820 |
+
"identity": 1932,
|
821 |
+
"theft": 3630,
|
822 |
+
"bubly": 543,
|
823 |
+
"jymf": 2115,
|
824 |
+
"jylt": 2114,
|
825 |
+
"jyiq": 2113,
|
826 |
+
"jwzl": 2112,
|
827 |
+
"jwpn": 2108,
|
828 |
+
"jwnq": 2107,
|
829 |
+
"jwtc": 2111,
|
830 |
+
"jwre": 2109,
|
831 |
+
"jwrr": 2110,
|
832 |
+
"although": 229,
|
833 |
+
"cars": 776,
|
834 |
+
"floating": 1484,
|
835 |
+
"street": 3471,
|
836 |
+
"every": 1353,
|
837 |
+
"hospital": 1831,
|
838 |
+
"fully": 1550,
|
839 |
+
"operational": 2655,
|
840 |
+
"tmcceomckeon": 3689,
|
841 |
+
"stateoftmc": 3434,
|
842 |
+
"arkema": 290,
|
843 |
+
"chemsafetyboard": 840,
|
844 |
+
"also": 228,
|
845 |
+
"states": 3435,
|
846 |
+
"neutralizing": 2557,
|
847 |
+
"containers": 983,
|
848 |
+
"organic": 2667,
|
849 |
+
"peroxide": 2768,
|
850 |
+
"logistically": 2291,
|
851 |
+
"wouldn": 4033,
|
852 |
+
"sense": 3239,
|
853 |
+
"15": 18,
|
854 |
+
"000": 1,
|
855 |
+
"gallon": 1567,
|
856 |
+
"houstonfloods": 1859,
|
857 |
+
"khou11": 2135,
|
858 |
+
"join": 2085,
|
859 |
+
"texastribune": 3611,
|
860 |
+
"discuss": 1180,
|
861 |
+
"nov": 2597,
|
862 |
+
"30": 71,
|
863 |
+
"twuhouston": 3779,
|
864 |
+
"executive": 1371,
|
865 |
+
"director": 1170,
|
866 |
+
"ushahmd": 3846,
|
867 |
+
"details": 1142,
|
868 |
+
"ly": 2325,
|
869 |
+
"2zotxky": 70,
|
870 |
+
"ttevents": 3759,
|
871 |
+
"month": 2483,
|
872 |
+
"old": 2638,
|
873 |
+
"jax": 2060,
|
874 |
+
"appeared": 273,
|
875 |
+
"volunteer": 3889,
|
876 |
+
"rushed": 3162,
|
877 |
+
"gulfgateah": 1679,
|
878 |
+
"went": 3958,
|
879 |
+
"rays": 2977,
|
880 |
+
"small": 3327,
|
881 |
+
"fracture": 1526,
|
882 |
+
"found": 1518,
|
883 |
+
"hip": 1789,
|
884 |
+
"neutered": 2556,
|
885 |
+
"while": 3975,
|
886 |
+
"bills": 467,
|
887 |
+
"barriodogs": 368,
|
888 |
+
"donations": 1221,
|
889 |
+
"htm": 1886,
|
890 |
+
"differently": 1162,
|
891 |
+
"world": 4024,
|
892 |
+
"edemmett": 1284,
|
893 |
+
"houwx": 1878,
|
894 |
+
"addicksreservoir": 175,
|
895 |
+
"barkerreservoir": 367,
|
896 |
+
"addicksandbarker": 174,
|
897 |
+
"nyti": 2609,
|
898 |
+
"2hqxvd5": 59,
|
899 |
+
"weeks": 3952,
|
900 |
+
"apply": 276,
|
901 |
+
"physical": 2784,
|
902 |
+
"loan": 2282,
|
903 |
+
"deadline": 1087,
|
904 |
+
"november": 2598,
|
905 |
+
"24": 43,
|
906 |
+
"visit": 3880,
|
907 |
+
"sbagov": 3201,
|
908 |
+
"businessrecoverycenter": 566,
|
909 |
+
"uhsbdc": 3798,
|
910 |
+
"2302": 42,
|
911 |
+
"fannin": 1416,
|
912 |
+
"midtown": 2438,
|
913 |
+
"smallbizhelp": 3328,
|
914 |
+
"stuck": 3485,
|
915 |
+
"station": 3436,
|
916 |
+
"days": 1086,
|
917 |
+
"scyllalopez": 3214,
|
918 |
+
"sw": 3542,
|
919 |
+
"early": 1268,
|
920 |
+
"childhood": 845,
|
921 |
+
"conducted": 961,
|
922 |
+
"joint": 2088,
|
923 |
+
"pto": 2924,
|
924 |
+
"despite": 1137,
|
925 |
+
"delays": 1115,
|
926 |
+
"selected": 3228,
|
927 |
+
"volunteers": 3892,
|
928 |
+
"board": 495,
|
929 |
+
"18": 28,
|
930 |
+
"school": 3205,
|
931 |
+
"apps": 283,
|
932 |
+
"great": 1661,
|
933 |
+
"resilience": 3086,
|
934 |
+
"compassion": 946,
|
935 |
+
"aimee": 208,
|
936 |
+
"woodall": 4010,
|
937 |
+
"leadershiphoust": 2210,
|
938 |
+
"citizens": 873,
|
939 |
+
"laugh": 2199,
|
940 |
+
"situation": 3315,
|
941 |
+
"holidays": 1811,
|
942 |
+
"depression": 1129,
|
943 |
+
"horrible": 1829,
|
944 |
+
"further": 1561,
|
945 |
+
"tweet": 3774,
|
946 |
+
"moments": 2478,
|
947 |
+
"know": 2164,
|
948 |
+
"prominent": 2903,
|
949 |
+
"mental": 2422,
|
950 |
+
"physicians": 2786,
|
951 |
+
"express": 1386,
|
952 |
+
"concern": 956,
|
953 |
+
"regarding": 3028,
|
954 |
+
"president": 2879,
|
955 |
+
"condition": 959,
|
956 |
+
"owes": 2692,
|
957 |
+
"nation": 2531,
|
958 |
+
"seek": 3223,
|
959 |
+
"expert": 1381,
|
960 |
+
"speak": 3381,
|
961 |
+
"benefiting": 442,
|
962 |
+
"pulled": 2935,
|
963 |
+
"incredible": 1968,
|
964 |
+
"ways": 3938,
|
965 |
+
"continue": 985,
|
966 |
+
"ensure": 1326,
|
967 |
+
"opportunity": 2659,
|
968 |
+
"resources": 3089,
|
969 |
+
"newsweek": 2567,
|
970 |
+
"harve": 1717,
|
971 |
+
"maps": 2351,
|
972 |
+
"response": 3096,
|
973 |
+
"debris": 1093,
|
974 |
+
"januaryadvisors": 2056,
|
975 |
+
"hurrican": 1906,
|
976 |
+
"courtney": 1016,
|
977 |
+
"wright": 4039,
|
978 |
+
"lost": 2307,
|
979 |
+
"everything": 1357,
|
980 |
+
"celebrate": 799,
|
981 |
+
"graduates": 1650,
|
982 |
+
"master": 2373,
|
983 |
+
"counseling": 1008,
|
984 |
+
"uh": 3795,
|
985 |
+
"edu": 1287,
|
986 |
+
"education": 1288,
|
987 |
+
"features": 1428,
|
988 |
+
"cw": 1056,
|
989 |
+
"uhcoegrad": 3796,
|
990 |
+
"forevercoog": 1511,
|
991 |
+
"kprc2cathy": 2169,
|
992 |
+
"refugio": 3024,
|
993 |
+
"defending": 1108,
|
994 |
+
"2a": 55,
|
995 |
+
"division": 1193,
|
996 |
+
"champions": 814,
|
997 |
+
"title": 3687,
|
998 |
+
"again": 194,
|
999 |
+
"bobcats": 497,
|
1000 |
+
"beat": 419,
|
1001 |
+
"st": 3416,
|
1002 |
+
"augustine": 331,
|
1003 |
+
"63": 111,
|
1004 |
+
"21": 40,
|
1005 |
+
"semifinals": 3232,
|
1006 |
+
"berry": 444,
|
1007 |
+
"cypress": 1058,
|
1008 |
+
"div1": 1192,
|
1009 |
+
"playing": 2813,
|
1010 |
+
"coach": 909,
|
1011 |
+
"jason": 2059,
|
1012 |
+
"herring": 1778,
|
1013 |
+
"50": 98,
|
1014 |
+
"kids": 2145,
|
1015 |
+
"football": 1507,
|
1016 |
+
"sign": 3302,
|
1017 |
+
"hope": 1824,
|
1018 |
+
"realworldmtv": 2995,
|
1019 |
+
"super": 3518,
|
1020 |
+
"bowl": 512,
|
1021 |
+
"series": 3242,
|
1022 |
+
"win": 3991,
|
1023 |
+
"name": 2526,
|
1024 |
+
"mtv": 2503,
|
1025 |
+
"challengemtv": 810,
|
1026 |
+
"reverend": 3110,
|
1027 |
+
"jesse": 2066,
|
1028 |
+
"sr": 3414,
|
1029 |
+
"cbc": 794,
|
1030 |
+
"foundation": 1519,
|
1031 |
+
"economic": 1280,
|
1032 |
+
"summit": 3510,
|
1033 |
+
"bckz9qegwar": 393,
|
1034 |
+
"avid": 336,
|
1035 |
+
"mc": 2391,
|
1036 |
+
"williams": 3989,
|
1037 |
+
"adopted": 180,
|
1038 |
+
"adopt": 179,
|
1039 |
+
"project": 2899,
|
1040 |
+
"roseville": 3151,
|
1041 |
+
"minnesota": 2448,
|
1042 |
+
"provides": 2915,
|
1043 |
+
"work": 4017,
|
1044 |
+
"collaborating": 921,
|
1045 |
+
"hangout": 1699,
|
1046 |
+
"interviewing": 2014,
|
1047 |
+
"pen": 2755,
|
1048 |
+
"pals": 2704,
|
1049 |
+
"real": 2991,
|
1050 |
+
"avid4college": 337,
|
1051 |
+
"projectadoorehouston": 2900,
|
1052 |
+
"exhibition": 1374,
|
1053 |
+
"already": 227,
|
1054 |
+
"full": 1549,
|
1055 |
+
"proud": 2912,
|
1056 |
+
"hisdfineart": 1795,
|
1057 |
+
"made": 2332,
|
1058 |
+
"possible": 2841,
|
1059 |
+
"hisdstrong": 1796,
|
1060 |
+
"october": 2617,
|
1061 |
+
"collected": 924,
|
1062 |
+
"56": 104,
|
1063 |
+
"167": 24,
|
1064 |
+
"million": 2441,
|
1065 |
+
"17": 25,
|
1066 |
+
"58": 105,
|
1067 |
+
"over": 2686,
|
1068 |
+
"prior": 2885,
|
1069 |
+
"bump": 557,
|
1070 |
+
"attributed": 327,
|
1071 |
+
"repair": 3061,
|
1072 |
+
"activities": 170,
|
1073 |
+
"took": 3704,
|
1074 |
+
"following": 1502,
|
1075 |
+
"athletes": 322,
|
1076 |
+
"lifted": 2249,
|
1077 |
+
"kaepernick": 2117,
|
1078 |
+
"si": 3297,
|
1079 |
+
"award": 339,
|
1080 |
+
"theblaze": 3627,
|
1081 |
+
"05": 2,
|
1082 |
+
"tribute": 3745,
|
1083 |
+
"responders": 3094,
|
1084 |
+
"ho": 1804,
|
1085 |
+
"invidious": 2023,
|
1086 |
+
"projectsegfau": 2901,
|
1087 |
+
"lt": 2320,
|
1088 |
+
"e1khdbrm15o": 1264,
|
1089 |
+
"youtube": 4068,
|
1090 |
+
"hurt": 1921,
|
1091 |
+
"should": 3289,
|
1092 |
+
"doing": 1208,
|
1093 |
+
"fixit": 1476,
|
1094 |
+
"budgeted": 546,
|
1095 |
+
"spayneuter": 3380,
|
1096 |
+
"forum": 1515,
|
1097 |
+
"mayor": 2387,
|
1098 |
+
"sylvesterturner": 3548,
|
1099 |
+
"dropped": 1247,
|
1100 |
+
"servant": 3244,
|
1101 |
+
"leadership": 2209,
|
1102 |
+
"nuggets": 2604,
|
1103 |
+
"audience": 328,
|
1104 |
+
"crossing": 1039,
|
1105 |
+
"bridge": 533,
|
1106 |
+
"other": 2674,
|
1107 |
+
"morning": 2487,
|
1108 |
+
"housymphony": 1877,
|
1109 |
+
"performing": 2765,
|
1110 |
+
"arts": 302,
|
1111 |
+
"enjoying": 1322,
|
1112 |
+
"unwrapped": 3825,
|
1113 |
+
"toy": 3719,
|
1114 |
+
"christmas": 860,
|
1115 |
+
"saintarnold": 3179,
|
1116 |
+
"pub": 2925,
|
1117 |
+
"crawl": 1025,
|
1118 |
+
"lawnmower": 2202,
|
1119 |
+
"ale": 217,
|
1120 |
+
"pint": 2797,
|
1121 |
+
"bb": 379,
|
1122 |
+
"pumpkinator": 2937,
|
1123 |
+
"bottles": 508,
|
1124 |
+
"pm": 2824,
|
1125 |
+
"special": 3386,
|
1126 |
+
"cask": 782,
|
1127 |
+
"enjoy": 1320,
|
1128 |
+
"weather": 3946,
|
1129 |
+
"a1": 142,
|
1130 |
+
"delayed": 1114,
|
1131 |
+
"ended": 1319,
|
1132 |
+
"finishing": 1467,
|
1133 |
+
"district": 1191,
|
1134 |
+
"runner": 3159,
|
1135 |
+
"slugfest": 3326,
|
1136 |
+
"playoffs": 2814,
|
1137 |
+
"galveston": 1568,
|
1138 |
+
"ball": 361,
|
1139 |
+
"averaged": 335,
|
1140 |
+
"60": 107,
|
1141 |
+
"points": 2833,
|
1142 |
+
"per": 2760,
|
1143 |
+
"thru": 3663,
|
1144 |
+
"hogfbchat": 1806,
|
1145 |
+
"loaded": 2281,
|
1146 |
+
"bus": 561,
|
1147 |
+
"shannondepot": 3260,
|
1148 |
+
"cut": 1053,
|
1149 |
+
"yo": 4061,
|
1150 |
+
"half": 1690,
|
1151 |
+
"dude": 1258,
|
1152 |
+
"defend": 1107,
|
1153 |
+
"byeaajxjfue": 626,
|
1154 |
+
"christamas": 858,
|
1155 |
+
"miracle": 2450,
|
1156 |
+
"waking": 3906,
|
1157 |
+
"streets": 3473,
|
1158 |
+
"havey2017": 1733,
|
1159 |
+
"houstonflood": 1857,
|
1160 |
+
"nice": 2570,
|
1161 |
+
"performance": 2764,
|
1162 |
+
"mcgregor": 2392,
|
1163 |
+
"ufc": 3793,
|
1164 |
+
"sucks": 3498,
|
1165 |
+
"boxing": 514,
|
1166 |
+
"baby": 348,
|
1167 |
+
"mma": 2470,
|
1168 |
+
"showtimeboxing": 3296,
|
1169 |
+
"mayweather": 2388,
|
1170 |
+
"tmt": 3691,
|
1171 |
+
"text": 3613,
|
1172 |
+
"90999": 136,
|
1173 |
+
"byw5ioyhydh": 700,
|
1174 |
+
"few": 1447,
|
1175 |
+
"onelove": 2644,
|
1176 |
+
"weareallone": 3943,
|
1177 |
+
"byb8k9ind7b": 588,
|
1178 |
+
"hey": 1780,
|
1179 |
+
"floydmayweather": 1493,
|
1180 |
+
"really": 2993,
|
1181 |
+
"money": 2481,
|
1182 |
+
"counting": 1010,
|
1183 |
+
"safe": 3172,
|
1184 |
+
"suffer": 3502,
|
1185 |
+
"destruction": 1140,
|
1186 |
+
"photo": 2782,
|
1187 |
+
"randytravisfox5": 2973,
|
1188 |
+
"speaks": 3385,
|
1189 |
+
"babysitter": 349,
|
1190 |
+
"perished": 2767,
|
1191 |
+
"greens": 1667,
|
1192 |
+
"fox26houston": 1522,
|
1193 |
+
"fox5atlanta": 1523,
|
1194 |
+
"another": 256,
|
1195 |
+
"delivering": 1118,
|
1196 |
+
"supplies": 3522,
|
1197 |
+
"byb3srdh7_k": 583,
|
1198 |
+
"blast": 477,
|
1199 |
+
"volunteering": 3891,
|
1200 |
+
"byb65kxnkkyh": 586,
|
1201 |
+
"thankful": 3618,
|
1202 |
+
"blessed": 479,
|
1203 |
+
"beyond": 458,
|
1204 |
+
"americares": 240,
|
1205 |
+
"sent": 3240,
|
1206 |
+
"shipment": 3274,
|
1207 |
+
"critical": 1033,
|
1208 |
+
"medicines": 2409,
|
1209 |
+
"hharveyamericares": 1781,
|
1210 |
+
"snap": 3331,
|
1211 |
+
"muslimsrepresent": 2515,
|
1212 |
+
"props": 2908,
|
1213 |
+
"guy": 1681,
|
1214 |
+
"expressiveness": 1387,
|
1215 |
+
"weird": 3954,
|
1216 |
+
"question": 2952,
|
1217 |
+
"alcohol": 214,
|
1218 |
+
"beer": 427,
|
1219 |
+
"wine": 3993,
|
1220 |
+
"asked": 308,
|
1221 |
+
"answered": 258,
|
1222 |
+
"members": 2419,
|
1223 |
+
"hours": 1843,
|
1224 |
+
"coming": 936,
|
1225 |
+
"patrickharris": 2740,
|
1226 |
+
"missing": 2456,
|
1227 |
+
"bybwyhgnpcm": 617,
|
1228 |
+
"boy": 515,
|
1229 |
+
"ain": 209,
|
1230 |
+
"truth": 3754,
|
1231 |
+
"prayforhouston": 2860,
|
1232 |
+
"happening": 1703,
|
1233 |
+
"amount": 243,
|
1234 |
+
"devastation": 1150,
|
1235 |
+
"unimaginable": 3811,
|
1236 |
+
"storify": 3458,
|
1237 |
+
"helpful": 1767,
|
1238 |
+
"tips": 3680,
|
1239 |
+
"links": 2261,
|
1240 |
+
"updating": 3830,
|
1241 |
+
"needed": 2543,
|
1242 |
+
"staciewyatt": 3417,
|
1243 |
+
"hurr": 1904,
|
1244 |
+
"howcanihelp": 1880,
|
1245 |
+
"howcanyouhelp": 1881,
|
1246 |
+
"bybty1ajzl8": 612,
|
1247 |
+
"items": 2039,
|
1248 |
+
"clean": 883,
|
1249 |
+
"bbq": 380,
|
1250 |
+
"cooking": 994,
|
1251 |
+
"prepping": 2871,
|
1252 |
+
"food": 1503,
|
1253 |
+
"travel": 3735,
|
1254 |
+
"favorite": 1424,
|
1255 |
+
"katylibrarians": 2121,
|
1256 |
+
"facebook": 1395,
|
1257 |
+
"sjhlibrary": 3316,
|
1258 |
+
"vide": 3873,
|
1259 |
+
"repost": 3072,
|
1260 |
+
"tag": 3552,
|
1261 |
+
"screenshot": 3213,
|
1262 |
+
"mommies": 2479,
|
1263 |
+
"bybq8zta1ne": 604,
|
1264 |
+
"catbirdsbar": 784,
|
1265 |
+
"clothing": 901,
|
1266 |
+
"etc": 1341,
|
1267 |
+
"them": 3635,
|
1268 |
+
"shelters": 3268,
|
1269 |
+
"hardworkingwoman": 1714,
|
1270 |
+
"backtowork": 354,
|
1271 |
+
"bybtbw7dmwp": 610,
|
1272 |
+
"there": 3639,
|
1273 |
+
"questioning": 2953,
|
1274 |
+
"why": 3982,
|
1275 |
+
"evacuate": 1345,
|
1276 |
+
"htx": 1889,
|
1277 |
+
"nytimes": 2610,
|
1278 |
+
"huge": 1893,
|
1279 |
+
"business": 563,
|
1280 |
+
"joined": 2086,
|
1281 |
+
"marketplace": 2361,
|
1282 |
+
"bybr1w_ndry": 606,
|
1283 |
+
"cnn": 907,
|
1284 |
+
"prayersfortexas": 2859,
|
1285 |
+
"staystrong": 3441,
|
1286 |
+
"faith": 1404,
|
1287 |
+
"bybnlrlay": 602,
|
1288 |
+
"crazy": 1026,
|
1289 |
+
"associates": 317,
|
1290 |
+
"rndc": 3133,
|
1291 |
+
"rep": 3060,
|
1292 |
+
"sondy": 3357,
|
1293 |
+
"coker": 918,
|
1294 |
+
"helped": 1765,
|
1295 |
+
"deliver": 1117,
|
1296 |
+
"break": 530,
|
1297 |
+
"spirits": 3398,
|
1298 |
+
"brotherhood": 540,
|
1299 |
+
"ipt1963": 2028,
|
1300 |
+
"houstoniotas": 1864,
|
1301 |
+
"fortbendiotas": 1514,
|
1302 |
+
"iotasmakingadifference": 2027,
|
1303 |
+
"share": 3262,
|
1304 |
+
"scam": 3202,
|
1305 |
+
"personal": 2770,
|
1306 |
+
"khou": 2134,
|
1307 |
+
"kprc2": 2168,
|
1308 |
+
"htown": 1887,
|
1309 |
+
"clothes": 900,
|
1310 |
+
"away": 343,
|
1311 |
+
"most": 2490,
|
1312 |
+
"handsonbayarea": 1696,
|
1313 |
+
"hold": 1807,
|
1314 |
+
"next": 2568,
|
1315 |
+
"send": 3235,
|
1316 |
+
"receive": 3003,
|
1317 |
+
"cashsupport": 781,
|
1318 |
+
"even": 1347,
|
1319 |
+
"effected": 1290,
|
1320 |
+
"jazzyrae07": 2061,
|
1321 |
+
"desserae": 1138,
|
1322 |
+
"bybldexaul9": 599,
|
1323 |
+
"mrsockgame": 2498,
|
1324 |
+
"side": 3300,
|
1325 |
+
"town": 3718,
|
1326 |
+
"bybgat5ah": 595,
|
1327 |
+
"hearts": 1756,
|
1328 |
+
"deeply": 1105,
|
1329 |
+
"saddened": 3170,
|
1330 |
+
"bybhtepfllz": 596,
|
1331 |
+
"thurs": 3664,
|
1332 |
+
"aug": 329,
|
1333 |
+
"30th": 75,
|
1334 |
+
"accept": 156,
|
1335 |
+
"tcwwcares": 3572,
|
1336 |
+
"weserve": 3960,
|
1337 |
+
"meet": 2414,
|
1338 |
+
"single": 3311,
|
1339 |
+
"person": 2769,
|
1340 |
+
"suffered": 3503,
|
1341 |
+
"feel": 1434,
|
1342 |
+
"vote": 3893,
|
1343 |
+
"ya": 4048,
|
1344 |
+
"votehimout": 3894,
|
1345 |
+
"squarecash": 3413,
|
1346 |
+
"take": 3553,
|
1347 |
+
"bybih8tfsre": 598,
|
1348 |
+
"pray4houston": 2855,
|
1349 |
+
"truestory": 3751,
|
1350 |
+
"i10": 1928,
|
1351 |
+
"bloodmoneyent": 488,
|
1352 |
+
"bybi8kmjxtv": 597,
|
1353 |
+
"bybxkogal46": 619,
|
1354 |
+
"75": 123,
|
1355 |
+
"houstinfloods": 1849,
|
1356 |
+
"bybaru0fjjp": 591,
|
1357 |
+
"mrs": 2497,
|
1358 |
+
"shirley": 3275,
|
1359 |
+
"hero": 1776,
|
1360 |
+
"tv": 3770,
|
1361 |
+
"gave": 1578,
|
1362 |
+
"honestly": 1820,
|
1363 |
+
"telling": 3589,
|
1364 |
+
"picture": 2790,
|
1365 |
+
"pretty": 2881,
|
1366 |
+
"insane": 1991,
|
1367 |
+
"thoughtfully": 3657,
|
1368 |
+
"consider": 974,
|
1369 |
+
"clear": 885,
|
1370 |
+
"suffering": 3504,
|
1371 |
+
"losses": 2306,
|
1372 |
+
"shout": 3291,
|
1373 |
+
"mittelstadtkisd": 2462,
|
1374 |
+
"praying": 2862,
|
1375 |
+
"pray": 2854,
|
1376 |
+
"texasstrong": 3609,
|
1377 |
+
"harveyrelief": 1723,
|
1378 |
+
"bybyvgzjblg": 620,
|
1379 |
+
"ingridnilsen": 1985,
|
1380 |
+
"period": 2766,
|
1381 |
+
"products": 2894,
|
1382 |
+
"contact": 982,
|
1383 |
+
"girl": 1598,
|
1384 |
+
"byba0egdapqh": 590,
|
1385 |
+
"teachers": 3575,
|
1386 |
+
"saturday": 3191,
|
1387 |
+
"doors": 1225,
|
1388 |
+
"00": 0,
|
1389 |
+
"bybwotvh8pf": 615,
|
1390 |
+
"surrounding": 3534,
|
1391 |
+
"area": 285,
|
1392 |
+
"bybcefwh9": 593,
|
1393 |
+
"kickin": 2137,
|
1394 |
+
"dry": 1252,
|
1395 |
+
"week": 3950,
|
1396 |
+
"finally": 1462,
|
1397 |
+
"target": 3562,
|
1398 |
+
"places": 2803,
|
1399 |
+
"close": 896,
|
1400 |
+
"drove": 1249,
|
1401 |
+
"candelaris_washington": 756,
|
1402 |
+
"bybxafsjvhl": 618,
|
1403 |
+
"episode": 1330,
|
1404 |
+
"recorded": 3009,
|
1405 |
+
"trypod": 3757,
|
1406 |
+
"apocalypse": 269,
|
1407 |
+
"zombies": 4082,
|
1408 |
+
"wasteland": 3922,
|
1409 |
+
"ffvii": 1450,
|
1410 |
+
"fallout4": 1408,
|
1411 |
+
"podernfamily": 2830,
|
1412 |
+
"traeabn": 3725,
|
1413 |
+
"iputonformycity": 2029,
|
1414 |
+
"helpforhouston": 1766,
|
1415 |
+
"nancyatravis": 2528,
|
1416 |
+
"loving": 2315,
|
1417 |
+
"haiku": 1688,
|
1418 |
+
"sending": 3236,
|
1419 |
+
"sharing": 3264,
|
1420 |
+
"words": 4015,
|
1421 |
+
"sun": 3511,
|
1422 |
+
"normal": 2586,
|
1423 |
+
"newspapers": 2565,
|
1424 |
+
"airline": 211,
|
1425 |
+
"drive": 1241,
|
1426 |
+
"storm": 3459,
|
1427 |
+
"customers": 1052,
|
1428 |
+
"boostmobile": 504,
|
1429 |
+
"justincapers": 2106,
|
1430 |
+
"joy": 2098,
|
1431 |
+
"wasn": 3921,
|
1432 |
+
"pain": 2700,
|
1433 |
+
"sunny": 3513,
|
1434 |
+
"rain": 2961,
|
1435 |
+
"lmao": 2277,
|
1436 |
+
"hurricaneseason": 1918,
|
1437 |
+
"third": 3651,
|
1438 |
+
"ward": 3917,
|
1439 |
+
"bybwsuqawu9": 616,
|
1440 |
+
"message": 2424,
|
1441 |
+
"bybtw8vforp": 611,
|
1442 |
+
"joining": 2087,
|
1443 |
+
"uschamber": 3842,
|
1444 |
+
"call": 741,
|
1445 |
+
"coordinate": 996,
|
1446 |
+
"efforts": 1293,
|
1447 |
+
"businesses": 564,
|
1448 |
+
"mattsitkowski": 2381,
|
1449 |
+
"inner": 1988,
|
1450 |
+
"loop": 2301,
|
1451 |
+
"southeast": 3370,
|
1452 |
+
"offices": 2625,
|
1453 |
+
"regular": 3033,
|
1454 |
+
"operating": 2653,
|
1455 |
+
"pharmacy": 2777,
|
1456 |
+
"rxopen": 3165,
|
1457 |
+
"redcross": 3017,
|
1458 |
+
"estimates": 1340,
|
1459 |
+
"mln": 2468,
|
1460 |
+
"hurricaneharveyrelief": 1911,
|
1461 |
+
"usccfoundation": 3840,
|
1462 |
+
"amazing": 234,
|
1463 |
+
"wait": 3900,
|
1464 |
+
"focused": 1499,
|
1465 |
+
"provide": 2914,
|
1466 |
+
"aaron": 143,
|
1467 |
+
"cox": 1020,
|
1468 |
+
"txbiz": 3781,
|
1469 |
+
"southwest": 3375,
|
1470 |
+
"office": 2623,
|
1471 |
+
"inability": 1955,
|
1472 |
+
"gain": 1564,
|
1473 |
+
"access": 158,
|
1474 |
+
"posted": 2843,
|
1475 |
+
"ktzdamc": 2173,
|
1476 |
+
"lilbthebasedgod": 2255,
|
1477 |
+
"keyboardkid206": 2133,
|
1478 |
+
"clammyclams": 879,
|
1479 |
+
"texasbased": 3602,
|
1480 |
+
"basedworld": 373,
|
1481 |
+
"shamed": 3258,
|
1482 |
+
"does": 1202,
|
1483 |
+
"proven": 2913,
|
1484 |
+
"liar": 2242,
|
1485 |
+
"stranded": 3465,
|
1486 |
+
"4days": 95,
|
1487 |
+
"godis": 1619,
|
1488 |
+
"byblu7tj8hk": 601,
|
1489 |
+
"klein": 2160,
|
1490 |
+
"schools": 3207,
|
1491 |
+
"working": 4021,
|
1492 |
+
"agj123": 198,
|
1493 |
+
"nrichnia": 2603,
|
1494 |
+
"kleinisd": 2161,
|
1495 |
+
"mittelstadt": 2461,
|
1496 |
+
"haudejags": 1727,
|
1497 |
+
"thoughts": 3658,
|
1498 |
+
"ones": 2645,
|
1499 |
+
"sprint": 3409,
|
1500 |
+
"jen": 2065,
|
1501 |
+
"dtr": 1257,
|
1502 |
+
"won": 4006,
|
1503 |
+
"restore": 3102,
|
1504 |
+
"byesprint": 629,
|
1505 |
+
"nobuenocs": 2580,
|
1506 |
+
"sprintsucks": 3410,
|
1507 |
+
"supporter": 3526,
|
1508 |
+
"remember": 3050,
|
1509 |
+
"prayersforhouston": 2858,
|
1510 |
+
"neighbors": 2549,
|
1511 |
+
"strangers": 3466,
|
1512 |
+
"beautiful": 421,
|
1513 |
+
"thing": 3646,
|
1514 |
+
"hurricaneharvey2017": 1910,
|
1515 |
+
"bybpvtfhaex": 603,
|
1516 |
+
"local": 2284,
|
1517 |
+
"media": 2403,
|
1518 |
+
"tireless": 3682,
|
1519 |
+
"hpmnews887": 1882,
|
1520 |
+
"granny": 1654,
|
1521 |
+
"calling": 743,
|
1522 |
+
"everybody": 1354,
|
1523 |
+
"mama": 2344,
|
1524 |
+
"stop": 3453,
|
1525 |
+
"complaining": 948,
|
1526 |
+
"something": 3353,
|
1527 |
+
"shirts": 3277,
|
1528 |
+
"weekend": 3951,
|
1529 |
+
"paulmalignaggi": 2742,
|
1530 |
+
"man": 2345,
|
1531 |
+
"nonsense": 2585,
|
1532 |
+
"fan": 1415,
|
1533 |
+
"base": 369,
|
1534 |
+
"fundraiser": 1554,
|
1535 |
+
"lmk": 2279,
|
1536 |
+
"otw": 2676,
|
1537 |
+
"thx": 3667,
|
1538 |
+
"tipsonacting": 3681,
|
1539 |
+
"hou": 1837,
|
1540 |
+
"appreciates": 281,
|
1541 |
+
"saint": 3178,
|
1542 |
+
"ppl": 2850,
|
1543 |
+
"youcaring": 4063,
|
1544 |
+
"regrann": 3032,
|
1545 |
+
"hurricaneharveyreposts": 1912,
|
1546 |
+
"important": 1951,
|
1547 |
+
"number": 2605,
|
1548 |
+
"byb7hrba2xt": 587,
|
1549 |
+
"website": 3948,
|
1550 |
+
"attention": 325,
|
1551 |
+
"idea": 1930,
|
1552 |
+
"seen": 3226,
|
1553 |
+
"point": 2831,
|
1554 |
+
"him": 1788,
|
1555 |
+
"speed": 3390,
|
1556 |
+
"completion": 952,
|
1557 |
+
"wywd": 4044,
|
1558 |
+
"parents": 2712,
|
1559 |
+
"bless": 478,
|
1560 |
+
"tony": 3702,
|
1561 |
+
"co": 908,
|
1562 |
+
"friendswood": 1536,
|
1563 |
+
"brandiuntz": 519,
|
1564 |
+
"blog": 485,
|
1565 |
+
"johnny": 2084,
|
1566 |
+
"steele": 3444,
|
1567 |
+
"park": 2714,
|
1568 |
+
"buffalo": 547,
|
1569 |
+
"byb98bjgnts": 589,
|
1570 |
+
"video": 3874,
|
1571 |
+
"shows": 3295,
|
1572 |
+
"dressed": 1238,
|
1573 |
+
"spider": 3395,
|
1574 |
+
"costume": 1004,
|
1575 |
+
"smile": 3330,
|
1576 |
+
"shelter": 3266,
|
1577 |
+
"jockey": 2078,
|
1578 |
+
"underwear": 3807,
|
1579 |
+
"hopeforhouston": 1825,
|
1580 |
+
"free": 1529,
|
1581 |
+
"app": 271,
|
1582 |
+
"saves": 3195,
|
1583 |
+
"lives": 2272,
|
1584 |
+
"metro": 2427,
|
1585 |
+
"uk": 3799,
|
1586 |
+
"metrouk": 2429,
|
1587 |
+
"fruitoftheloom": 1541,
|
1588 |
+
"hanes": 1697,
|
1589 |
+
"meditating": 2411,
|
1590 |
+
"urgency": 3835,
|
1591 |
+
"climate": 892,
|
1592 |
+
"change": 819,
|
1593 |
+
"thinking": 3649,
|
1594 |
+
"bybvm6bhnix": 614,
|
1595 |
+
"unlikely": 3818,
|
1596 |
+
"partnerships": 2723,
|
1597 |
+
"wake": 3905,
|
1598 |
+
"thisishouston": 3653,
|
1599 |
+
"bybvkksh7xw": 613,
|
1600 |
+
"type": 3788,
|
1601 |
+
"feed": 1432,
|
1602 |
+
"appreciate": 279,
|
1603 |
+
"trend": 3742,
|
1604 |
+
"montrose": 2485,
|
1605 |
+
"lgbtq": 2239,
|
1606 |
+
"fund": 1553,
|
1607 |
+
"reason2race": 2997,
|
1608 |
+
"dnicol": 1196,
|
1609 |
+
"hu": 1891,
|
1610 |
+
"maddow": 2330,
|
1611 |
+
"maddowblog": 2331,
|
1612 |
+
"msnbc": 2501,
|
1613 |
+
"harveyflood": 1721,
|
1614 |
+
"bybqkdqd": 605,
|
1615 |
+
"yv": 4074,
|
1616 |
+
"owe": 2691,
|
1617 |
+
"sowwcharity": 3376,
|
1618 |
+
"conservative": 973,
|
1619 |
+
"senator": 3233,
|
1620 |
+
"union": 3812,
|
1621 |
+
"tedcruz": 3587,
|
1622 |
+
"cruzcrew": 1045,
|
1623 |
+
"cruz2018": 1044,
|
1624 |
+
"keeptexasred": 2126,
|
1625 |
+
"imwithabbott": 1952,
|
1626 |
+
"prolife": 2902,
|
1627 |
+
"buying": 574,
|
1628 |
+
"shoes": 3280,
|
1629 |
+
"never": 2558,
|
1630 |
+
"wear": 3942,
|
1631 |
+
"kicks": 2140,
|
1632 |
+
"gatherin": 1576,
|
1633 |
+
"dust": 1261,
|
1634 |
+
"closet": 899,
|
1635 |
+
"em": 1305,
|
1636 |
+
"use": 3843,
|
1637 |
+
"sell": 3230,
|
1638 |
+
"c0lbymartin": 733,
|
1639 |
+
"raising": 2968,
|
1640 |
+
"zoey": 4079,
|
1641 |
+
"fights": 1455,
|
1642 |
+
"parvovirus": 2726,
|
1643 |
+
"gofundme": 1623,
|
1644 |
+
"zoeys": 4080,
|
1645 |
+
"pa": 2696,
|
1646 |
+
"tmobile": 3690,
|
1647 |
+
"commitforlife": 938,
|
1648 |
+
"streaming": 3470,
|
1649 |
+
"netflix": 2552,
|
1650 |
+
"platelets": 2809,
|
1651 |
+
"20th": 39,
|
1652 |
+
"proving": 2917,
|
1653 |
+
"carrier": 775,
|
1654 |
+
"choice": 853,
|
1655 |
+
"matters": 2378,
|
1656 |
+
"forward": 1516,
|
1657 |
+
"300th": 73,
|
1658 |
+
"donation": 1220,
|
1659 |
+
"sometime": 3354,
|
1660 |
+
"caring": 773,
|
1661 |
+
"too": 3703,
|
1662 |
+
"late": 2193,
|
1663 |
+
"gift": 1595,
|
1664 |
+
"9k": 138,
|
1665 |
+
"enrolled": 1325,
|
1666 |
+
"charactereducation": 825,
|
1667 |
+
"martialarts": 2365,
|
1668 |
+
"program": 2897,
|
1669 |
+
"25": 44,
|
1670 |
+
"years": 4054,
|
1671 |
+
"characterthroughkarate": 826,
|
1672 |
+
"cause": 790,
|
1673 |
+
"kickstartkids": 2141,
|
1674 |
+
"give": 1600,
|
1675 |
+
"mdandersonbloodbank": 2393,
|
1676 |
+
"chance": 817,
|
1677 |
+
"97": 137,
|
1678 |
+
"voting": 3896,
|
1679 |
+
"record": 3008,
|
1680 |
+
"fought": 1517,
|
1681 |
+
"tooth": 3706,
|
1682 |
+
"nail": 2524,
|
1683 |
+
"protect": 2909,
|
1684 |
+
"constitution": 980,
|
1685 |
+
"bill": 465,
|
1686 |
+
"pass": 2727,
|
1687 |
+
"covers": 1018,
|
1688 |
+
"homeless": 1814,
|
1689 |
+
"any": 260,
|
1690 |
+
"extra": 1389,
|
1691 |
+
"comforters": 935,
|
1692 |
+
"wanna": 3911,
|
1693 |
+
"dm": 1195,
|
1694 |
+
"helps": 1772,
|
1695 |
+
"imagine": 1943,
|
1696 |
+
"feeling": 1435,
|
1697 |
+
"stress": 3476,
|
1698 |
+
"consideration": 975,
|
1699 |
+
"changing": 820,
|
1700 |
+
"baseball": 370,
|
1701 |
+
"afford": 189,
|
1702 |
+
"shifted": 3271,
|
1703 |
+
"dollars": 1211,
|
1704 |
+
"else": 1304,
|
1705 |
+
"anymore": 261,
|
1706 |
+
"tamales": 3560,
|
1707 |
+
"greatly": 1665,
|
1708 |
+
"appreciated": 280,
|
1709 |
+
"present": 2874,
|
1710 |
+
"wrap": 4037,
|
1711 |
+
"hug": 1892,
|
1712 |
+
"peace": 2752,
|
1713 |
+
"bdgg4ocfpw": 410,
|
1714 |
+
"forget": 1512,
|
1715 |
+
"guys": 1682,
|
1716 |
+
"boss": 506,
|
1717 |
+
"donated": 1216,
|
1718 |
+
"country": 1011,
|
1719 |
+
"senegal": 3237,
|
1720 |
+
"jack": 2047,
|
1721 |
+
"primary": 2884,
|
1722 |
+
"root": 3149,
|
1723 |
+
"problem": 2889,
|
1724 |
+
"creates": 1028,
|
1725 |
+
"solutions": 3349,
|
1726 |
+
"future": 1562,
|
1727 |
+
"youth": 4067,
|
1728 |
+
"paws": 2743,
|
1729 |
+
"supported": 3525,
|
1730 |
+
"somebody": 3351,
|
1731 |
+
"deductible": 1104,
|
1732 |
+
"unfinished": 3809,
|
1733 |
+
"december": 1099,
|
1734 |
+
"31st": 78,
|
1735 |
+
"potential": 2846,
|
1736 |
+
"greatest": 1663,
|
1737 |
+
"unfinishedinternational": 3810,
|
1738 |
+
"dedication": 1103,
|
1739 |
+
"tirrmh": 3683,
|
1740 |
+
"honored": 1822,
|
1741 |
+
"partner": 2719,
|
1742 |
+
"cyclehouston": 1057,
|
1743 |
+
"women": 4004,
|
1744 |
+
"bestof2017": 448,
|
1745 |
+
"petro": 2774,
|
1746 |
+
"muck": 2505,
|
1747 |
+
"direct": 1168,
|
1748 |
+
"indirect": 1972,
|
1749 |
+
"aid": 204,
|
1750 |
+
"sold": 3346,
|
1751 |
+
"available": 333,
|
1752 |
+
"door": 1224,
|
1753 |
+
"dawdle": 1079,
|
1754 |
+
"lauren": 2200,
|
1755 |
+
"lhsf": 2240,
|
1756 |
+
"presented": 2875,
|
1757 |
+
"hi": 1782,
|
1758 |
+
"pantries": 2708,
|
1759 |
+
"extend": 1388,
|
1760 |
+
"its": 2041,
|
1761 |
+
"outlying": 2682,
|
1762 |
+
"communities": 941,
|
1763 |
+
"recovering": 3013,
|
1764 |
+
"seniors": 3238,
|
1765 |
+
"councilmembertamayo": 1007,
|
1766 |
+
"southhoustonfiredepartment": 3372,
|
1767 |
+
"later": 2195,
|
1768 |
+
"serving": 3249,
|
1769 |
+
"putting": 2946,
|
1770 |
+
"faces": 1397,
|
1771 |
+
"louisfarrakhan": 2310,
|
1772 |
+
"regardless": 3029,
|
1773 |
+
"depth": 1130,
|
1774 |
+
"darkness": 1071,
|
1775 |
+
"always": 230,
|
1776 |
+
"adult": 181,
|
1777 |
+
"activity": 171,
|
1778 |
+
"dayhab": 1083,
|
1779 |
+
"health4texas": 1746,
|
1780 |
+
"report": 3067,
|
1781 |
+
"reveals": 3109,
|
1782 |
+
"zip": 4078,
|
1783 |
+
"codes": 913,
|
1784 |
+
"lowest": 2318,
|
1785 |
+
"highest": 1786,
|
1786 |
+
"percentage": 2761,
|
1787 |
+
"housing": 1848,
|
1788 |
+
"assistance": 315,
|
1789 |
+
"approvals": 282,
|
1790 |
+
"interactive": 2005,
|
1791 |
+
"map": 2350,
|
1792 |
+
"includes": 1962,
|
1793 |
+
"41": 90,
|
1794 |
+
"counties": 1009,
|
1795 |
+
"2kmgpu1": 62,
|
1796 |
+
"elenamarks": 1300,
|
1797 |
+
"leftovers": 2222,
|
1798 |
+
"chaotic": 823,
|
1799 |
+
"mess": 2423,
|
1800 |
+
"photography": 2783,
|
1801 |
+
"bc5vfrtaugz": 384,
|
1802 |
+
"hall": 1691,
|
1803 |
+
"famer": 1410,
|
1804 |
+
"dikembe": 1164,
|
1805 |
+
"mutombo": 2517,
|
1806 |
+
"officialmutombo": 2628,
|
1807 |
+
"donates": 1218,
|
1808 |
+
"50k": 101,
|
1809 |
+
"wanted": 3913,
|
1810 |
+
"personally": 2771,
|
1811 |
+
"finds": 1465,
|
1812 |
+
"least": 2217,
|
1813 |
+
"moment": 2477,
|
1814 |
+
"eye": 1392,
|
1815 |
+
"cesarmillan": 806,
|
1816 |
+
"literature": 2268,
|
1817 |
+
"dogs": 1206,
|
1818 |
+
"become": 424,
|
1819 |
+
"insufferable": 1999,
|
1820 |
+
"dramatic": 1236,
|
1821 |
+
"experience": 1379,
|
1822 |
+
"once": 2642,
|
1823 |
+
"calm": 744,
|
1824 |
+
"terror": 3595,
|
1825 |
+
"kingwood": 2153,
|
1826 |
+
"teahouse": 3577,
|
1827 |
+
"damages": 1067,
|
1828 |
+
"apologies": 270,
|
1829 |
+
"inconvenience": 1965,
|
1830 |
+
"list": 2263,
|
1831 |
+
"locations": 2288,
|
1832 |
+
"teahousebeverage": 3578,
|
1833 |
+
"locatio": 2286,
|
1834 |
+
"teahousett": 3579,
|
1835 |
+
"inside": 1993,
|
1836 |
+
"gap": 1571,
|
1837 |
+
"destructionlevel100": 1141,
|
1838 |
+
"thegap": 3632,
|
1839 |
+
"bdntip8bola": 412,
|
1840 |
+
"exactly": 1358,
|
1841 |
+
"stopping": 3454,
|
1842 |
+
"200": 34,
|
1843 |
+
"young": 4064,
|
1844 |
+
"vet": 3866,
|
1845 |
+
"thinks": 3650,
|
1846 |
+
"respond": 3092,
|
1847 |
+
"gonna": 1630,
|
1848 |
+
"pursue": 2942,
|
1849 |
+
"ophelia": 2657,
|
1850 |
+
"thelumineers": 3634,
|
1851 |
+
"mumfordandsons": 2508,
|
1852 |
+
"obsessed": 2615,
|
1853 |
+
"songs": 3359,
|
1854 |
+
"forever": 1510,
|
1855 |
+
"bands": 362,
|
1856 |
+
"cia": 866,
|
1857 |
+
"bravery": 524,
|
1858 |
+
"an": 244,
|
1859 |
+
"lady": 2181,
|
1860 |
+
"plug": 2821,
|
1861 |
+
"succeed": 3493,
|
1862 |
+
"willing": 3990,
|
1863 |
+
"cancer": 754,
|
1864 |
+
"career": 771,
|
1865 |
+
"aside": 306,
|
1866 |
+
"challenge": 808,
|
1867 |
+
"because": 423,
|
1868 |
+
"stakes": 3421,
|
1869 |
+
"sidelines": 3301,
|
1870 |
+
"westinforcongress": 3962,
|
1871 |
+
"chip": 849,
|
1872 |
+
"whatever": 3968,
|
1873 |
+
"fight": 1453,
|
1874 |
+
"patients": 2737,
|
1875 |
+
"healthcare": 1747,
|
1876 |
+
"secure": 3219,
|
1877 |
+
"actblue": 167,
|
1878 |
+
"contribut": 988,
|
1879 |
+
"fantasy": 1417,
|
1880 |
+
"championship": 815,
|
1881 |
+
"life": 2243,
|
1882 |
+
"hole": 1808,
|
1883 |
+
"reporters": 3070,
|
1884 |
+
"bellavm": 439,
|
1885 |
+
"positive": 2840,
|
1886 |
+
"face": 1394,
|
1887 |
+
"glenn": 1612,
|
1888 |
+
"jars": 2058,
|
1889 |
+
"preserved": 2878,
|
1890 |
+
"lemons": 2230,
|
1891 |
+
"lemon": 2229,
|
1892 |
+
"marmalade": 2362,
|
1893 |
+
"chess": 842,
|
1894 |
+
"pie": 2792,
|
1895 |
+
"welcome": 3955,
|
1896 |
+
"torchystacos": 3711,
|
1897 |
+
"justadayinhtown": 2104,
|
1898 |
+
"style": 3491,
|
1899 |
+
"nearby": 2540,
|
1900 |
+
"bc4movghcro": 383,
|
1901 |
+
"clint_dempsey": 895,
|
1902 |
+
"kylemartino": 2176,
|
1903 |
+
"worn": 4027,
|
1904 |
+
"kits": 2157,
|
1905 |
+
"stuholden": 3490,
|
1906 |
+
"organizing": 2671,
|
1907 |
+
"event": 1349,
|
1908 |
+
"leesasleep": 2220,
|
1909 |
+
"mlsinaustin": 2469,
|
1910 |
+
"fs1": 1543,
|
1911 |
+
"dynamocharities": 1263,
|
1912 |
+
"jdadaceo": 2063,
|
1913 |
+
"joinus": 2089,
|
1914 |
+
"issaconcert": 2034,
|
1915 |
+
"concert4charity": 958,
|
1916 |
+
"bcvkej0ndzm": 405,
|
1917 |
+
"reliefgang": 3045,
|
1918 |
+
"houstonconcerts": 1856,
|
1919 |
+
"houstonartist": 1852,
|
1920 |
+
"bcvzybfntzw": 406,
|
1921 |
+
"glad": 1609,
|
1922 |
+
"celebrities": 802,
|
1923 |
+
"match": 2374,
|
1924 |
+
"fun": 1552,
|
1925 |
+
"charitable": 830,
|
1926 |
+
"dayfornight2017": 1081,
|
1927 |
+
"dayfornightfest": 1082,
|
1928 |
+
"att": 324,
|
1929 |
+
"hundreds": 1899,
|
1930 |
+
"toys": 3722,
|
1931 |
+
"pop": 2837,
|
1932 |
+
"shops": 3285,
|
1933 |
+
"clubs": 904,
|
1934 |
+
"pick": 2788,
|
1935 |
+
"holidaygifts": 1810,
|
1936 |
+
"greatfutures": 1664,
|
1937 |
+
"major": 2336,
|
1938 |
+
"renovation": 3056,
|
1939 |
+
"result": 3103,
|
1940 |
+
"robinson_hisd": 3138,
|
1941 |
+
"construction": 981,
|
1942 |
+
"svcs": 3541,
|
1943 |
+
"soon": 3361,
|
1944 |
+
"facelift": 1396,
|
1945 |
+
"boot": 505,
|
1946 |
+
"buildhisd": 551,
|
1947 |
+
"dsanders247": 1255,
|
1948 |
+
"gwensim04097612": 1683,
|
1949 |
+
"schoolhealthleadership": 3206,
|
1950 |
+
"mtg": 2502,
|
1951 |
+
"collaborations": 922,
|
1952 |
+
"investincommunity": 2022,
|
1953 |
+
"selfcare": 3229,
|
1954 |
+
"myveryshortstory": 2522,
|
1955 |
+
"tuesdaythoughts": 3763,
|
1956 |
+
"realdonaldtrump": 2992,
|
1957 |
+
"starbucks": 3425,
|
1958 |
+
"chipotle": 850,
|
1959 |
+
"yale": 4050,
|
1960 |
+
"houstonsnow": 1872,
|
1961 |
+
"survived": 3537,
|
1962 |
+
"survive": 3536,
|
1963 |
+
"rebuild": 2998,
|
1964 |
+
"snow": 3332,
|
1965 |
+
"bccneldf0t1": 390,
|
1966 |
+
"baconday": 356,
|
1967 |
+
"bacon": 355,
|
1968 |
+
"digitalmarketing": 1163,
|
1969 |
+
"haha": 1687,
|
1970 |
+
"handle": 1695,
|
1971 |
+
"eating": 1276,
|
1972 |
+
"saturdayafternoongroove": 3192,
|
1973 |
+
"saturdayfeeling": 3193,
|
1974 |
+
"miagradneykhou": 2434,
|
1975 |
+
"almost": 223,
|
1976 |
+
"chapter": 824,
|
1977 |
+
"unused": 3823,
|
1978 |
+
"fixer": 1475,
|
1979 |
+
"upper": 3832,
|
1980 |
+
"planet": 2806,
|
1981 |
+
"exercise": 1373,
|
1982 |
+
"actually": 172,
|
1983 |
+
"paper": 2709,
|
1984 |
+
"thesis": 3641,
|
1985 |
+
"argument": 289,
|
1986 |
+
"sitting": 3314,
|
1987 |
+
"missed": 2455,
|
1988 |
+
"vocal": 3887,
|
1989 |
+
"chords": 856,
|
1990 |
+
"ff": 1448,
|
1991 |
+
"yesterday": 4056,
|
1992 |
+
"fins": 1468,
|
1993 |
+
"hayden": 1735,
|
1994 |
+
"heroes": 1777,
|
1995 |
+
"10th": 10,
|
1996 |
+
"floor": 1491,
|
1997 |
+
"delivery": 1119,
|
1998 |
+
"rocky": 3142,
|
1999 |
+
"juarez": 2100,
|
2000 |
+
"rockets": 3140,
|
2001 |
+
"firstshot": 1471,
|
2002 |
+
"owner": 2695,
|
2003 |
+
"tilman": 3672,
|
2004 |
+
"fertitta": 1446,
|
2005 |
+
"clutch": 905,
|
2006 |
+
"animal": 251,
|
2007 |
+
"lover": 2314,
|
2008 |
+
"pet": 2773,
|
2009 |
+
"member": 2418,
|
2010 |
+
"couple": 1013,
|
2011 |
+
"bucks": 544,
|
2012 |
+
"save": 3194,
|
2013 |
+
"furbaby": 1558,
|
2014 |
+
"passiton": 2730,
|
2015 |
+
"thankyou": 3621,
|
2016 |
+
"tundras": 3764,
|
2017 |
+
"emergen": 1308,
|
2018 |
+
"instead": 1998,
|
2019 |
+
"necessary": 2541,
|
2020 |
+
"equipment": 1333,
|
2021 |
+
"teach": 3573,
|
2022 |
+
"locals": 2285,
|
2023 |
+
"hunt": 1902,
|
2024 |
+
"themselves": 3636,
|
2025 |
+
"unnecessary": 3819,
|
2026 |
+
"adults": 182,
|
2027 |
+
"capable": 763,
|
2028 |
+
"learning": 2215,
|
2029 |
+
"tho": 3654,
|
2030 |
+
"jackie": 2048,
|
2031 |
+
"comrade": 955,
|
2032 |
+
"surely": 3531,
|
2033 |
+
"savings": 3196,
|
2034 |
+
"government": 1644,
|
2035 |
+
"mom": 2476,
|
2036 |
+
"struggles": 3483,
|
2037 |
+
"pay": 2744,
|
2038 |
+
"stru": 3480,
|
2039 |
+
"preparing": 2870,
|
2040 |
+
"dinner": 1166,
|
2041 |
+
"star": 3424,
|
2042 |
+
"eve": 1346,
|
2043 |
+
"item": 2038,
|
2044 |
+
"big": 460,
|
2045 |
+
"impacts": 1949,
|
2046 |
+
"vannessitav": 3857,
|
2047 |
+
"taste": 3566,
|
2048 |
+
"boutta": 511,
|
2049 |
+
"hair": 1689,
|
2050 |
+
"killing": 2147,
|
2051 |
+
"bother": 507,
|
2052 |
+
"christian": 859,
|
2053 |
+
"organization": 2668,
|
2054 |
+
"net": 2551,
|
2055 |
+
"bc8nvgrl0q7": 385,
|
2056 |
+
"favor": 1423,
|
2057 |
+
"came": 745,
|
2058 |
+
"gifts": 1597,
|
2059 |
+
"told": 3695,
|
2060 |
+
"heart": 1754,
|
2061 |
+
"broke": 538,
|
2062 |
+
"pieces": 2794,
|
2063 |
+
"chuck": 863,
|
2064 |
+
"gena": 1581,
|
2065 |
+
"norris": 2588,
|
2066 |
+
"chucknorris": 864,
|
2067 |
+
"kickstartkidsor": 2142,
|
2068 |
+
"kroger": 2172,
|
2069 |
+
"shoppers": 3284,
|
2070 |
+
"log": 2290,
|
2071 |
+
"account": 160,
|
2072 |
+
"online": 2646,
|
2073 |
+
"select": 3227,
|
2074 |
+
"jamies": 2053,
|
2075 |
+
"charities": 831,
|
2076 |
+
"causes": 792,
|
2077 |
+
"penny": 2756,
|
2078 |
+
"push": 2943,
|
2079 |
+
"sometimes": 3355,
|
2080 |
+
"each": 1265,
|
2081 |
+
"vmxfucgig_q": 3886,
|
2082 |
+
"paypal": 2749,
|
2083 |
+
"cha": 807,
|
2084 |
+
"claim": 877,
|
2085 |
+
"whole": 3980,
|
2086 |
+
"paycheck": 2745,
|
2087 |
+
"ok": 2636,
|
2088 |
+
"notice": 2596,
|
2089 |
+
"flaws": 1479,
|
2090 |
+
"christ": 857,
|
2091 |
+
"jesus": 2067,
|
2092 |
+
"empower": 1312,
|
2093 |
+
"earn": 1269,
|
2094 |
+
"eternal": 1342,
|
2095 |
+
"works": 4022,
|
2096 |
+
"elite": 1302,
|
2097 |
+
"controller": 991,
|
2098 |
+
"ahead": 203,
|
2099 |
+
"speakerryan": 3383,
|
2100 |
+
"nose": 2592,
|
2101 |
+
"spite": 3399,
|
2102 |
+
"1200": 15,
|
2103 |
+
"suit": 3507,
|
2104 |
+
"eventually": 1351,
|
2105 |
+
"american": 238,
|
2106 |
+
"extremely": 1391,
|
2107 |
+
"upset": 3833,
|
2108 |
+
"disadvantaged": 1173,
|
2109 |
+
"sooner": 3362,
|
2110 |
+
"backfire": 352,
|
2111 |
+
"knows": 2165,
|
2112 |
+
"_ambitouskay": 141,
|
2113 |
+
"oh": 2633,
|
2114 |
+
"hear": 1751,
|
2115 |
+
"collusion": 929,
|
2116 |
+
"idiot": 1933,
|
2117 |
+
"conspiracy": 977,
|
2118 |
+
"crime": 1031,
|
2119 |
+
"pucker": 2929,
|
2120 |
+
"ticket": 3668,
|
2121 |
+
"defensive": 1110,
|
2122 |
+
"driving": 1244,
|
2123 |
+
"dismiss": 1186,
|
2124 |
+
"30am": 74,
|
2125 |
+
"4pm": 96,
|
2126 |
+
"insurance": 2000,
|
2127 |
+
"discounts": 1178,
|
2128 |
+
"346": 81,
|
2129 |
+
"319": 77,
|
2130 |
+
"4704": 92,
|
2131 |
+
"defensivedriving": 1111,
|
2132 |
+
"drivingsafety": 1245,
|
2133 |
+
"ticketdismissal": 3669,
|
2134 |
+
"courtapproved": 1015,
|
2135 |
+
"insurancediscount": 2001,
|
2136 |
+
"southside": 3374,
|
2137 |
+
"puertorico": 2932,
|
2138 |
+
"maria": 2354,
|
2139 |
+
"hurricanemaria": 1916,
|
2140 |
+
"huracanmaria": 1903,
|
2141 |
+
"apagon": 265,
|
2142 |
+
"superblackout": 3519,
|
2143 |
+
"prselevanta": 2918,
|
2144 |
+
"prstrong": 2919,
|
2145 |
+
"puertoricostrong": 2934,
|
2146 |
+
"dallasnews": 1064,
|
2147 |
+
"opinion": 2658,
|
2148 |
+
"edito": 1285,
|
2149 |
+
"makes": 2339,
|
2150 |
+
"desperate": 1136,
|
2151 |
+
"plea": 2817,
|
2152 |
+
"nbcnews": 2538,
|
2153 |
+
"storyline": 3463,
|
2154 |
+
"hurric": 1905,
|
2155 |
+
"fb": 1425,
|
2156 |
+
"yr": 4071,
|
2157 |
+
"betzabe": 455,
|
2158 |
+
"gomez": 1627,
|
2159 |
+
"santa": 3188,
|
2160 |
+
"letter": 2235,
|
2161 |
+
"asking": 309,
|
2162 |
+
"daddy": 1062,
|
2163 |
+
"fixed": 1474,
|
2164 |
+
"roof": 3147,
|
2165 |
+
"dialysis": 1154,
|
2166 |
+
"total": 3713,
|
2167 |
+
"redo": 3021,
|
2168 |
+
"siblings": 3298,
|
2169 |
+
"witness": 4001,
|
2170 |
+
"democraps": 1123,
|
2171 |
+
"fighting": 1454,
|
2172 |
+
"federal": 1430,
|
2173 |
+
"dem": 1121,
|
2174 |
+
"sports": 3403,
|
2175 |
+
"erikajayne": 1337,
|
2176 |
+
"gofund": 1622,
|
2177 |
+
"haven": 1732,
|
2178 |
+
"recovered": 3012,
|
2179 |
+
"will_gilchristt": 3988,
|
2180 |
+
"cdcgov": 796,
|
2181 |
+
"dr": 1232,
|
2182 |
+
"fitzgerald": 1473,
|
2183 |
+
"innovative": 1989,
|
2184 |
+
"mobilehealthunits": 2473,
|
2185 |
+
"congrats": 968,
|
2186 |
+
"thursdaythoughts": 3666,
|
2187 |
+
"teamkollective": 3582,
|
2188 |
+
"krew": 2171,
|
2189 |
+
"encouragement": 1315,
|
2190 |
+
"horrific": 1830,
|
2191 |
+
"fires": 1469,
|
2192 |
+
"calistrong": 740,
|
2193 |
+
"kollectivemedia": 2166,
|
2194 |
+
"retweet": 3108,
|
2195 |
+
"responsibility": 3097,
|
2196 |
+
"lived": 2271,
|
2197 |
+
"reading": 2987,
|
2198 |
+
"th": 3615,
|
2199 |
+
"nws": 2608,
|
2200 |
+
"act": 166,
|
2201 |
+
"kaiserfamfound": 2118,
|
2202 |
+
"study": 3489,
|
2203 |
+
"struggle": 3482,
|
2204 |
+
"se": 3215,
|
2205 |
+
"survivors": 3539,
|
2206 |
+
"effects": 1291,
|
2207 |
+
"financial": 1463,
|
2208 |
+
"distress": 1189,
|
2209 |
+
"hardship": 1712,
|
2210 |
+
"latinos": 2198,
|
2211 |
+
"african": 191,
|
2212 |
+
"americans": 239,
|
2213 |
+
"low": 2316,
|
2214 |
+
"income": 1964,
|
2215 |
+
"aren": 288,
|
2216 |
+
"receiving": 3005,
|
2217 |
+
"weat": 3945,
|
2218 |
+
"host": 1833,
|
2219 |
+
"wednesday": 3949,
|
2220 |
+
"harvey2017": 1720,
|
2221 |
+
"toydrive": 3720,
|
2222 |
+
"charterschools": 833,
|
2223 |
+
"elementaryschool": 1298,
|
2224 |
+
"houstoncharterschool": 1853,
|
2225 |
+
"varnettpublicschool": 3859,
|
2226 |
+
"waters": 3930,
|
2227 |
+
"rose": 3150,
|
2228 |
+
"saw": 3197,
|
2229 |
+
"goodness": 1636,
|
2230 |
+
"sthcatholic": 3447,
|
2231 |
+
"braving": 525,
|
2232 |
+
"circumstances": 868,
|
2233 |
+
"classmates": 881,
|
2234 |
+
"absolute": 153,
|
2235 |
+
"sths": 3448,
|
2236 |
+
"eagle": 1266,
|
2237 |
+
"lisa_stauber": 2262,
|
2238 |
+
"rebuildhoustondigital": 2999,
|
2239 |
+
"organized": 2670,
|
2240 |
+
"royalsonestahou": 3155,
|
2241 |
+
"space": 3378,
|
2242 |
+
"blogelevated": 486,
|
2243 |
+
"ladygaga": 2182,
|
2244 |
+
"postponed": 2844,
|
2245 |
+
"joanneworldtourhouston": 2076,
|
2246 |
+
"literally": 2267,
|
2247 |
+
"rebuilding": 3000,
|
2248 |
+
"ugly": 3794,
|
2249 |
+
"sweater": 3544,
|
2250 |
+
"party": 2725,
|
2251 |
+
"excuse": 1369,
|
2252 |
+
"middle": 2437,
|
2253 |
+
"realtorlife": 2994,
|
2254 |
+
"happyholidays": 1707,
|
2255 |
+
"probably": 2888,
|
2256 |
+
"800": 130,
|
2257 |
+
"patrick": 2739,
|
2258 |
+
"fronting": 1539,
|
2259 |
+
"spends": 3393,
|
2260 |
+
"dorky": 1227,
|
2261 |
+
"canada": 751,
|
2262 |
+
"gladly": 1610,
|
2263 |
+
"sex": 3256,
|
2264 |
+
"workers": 4019,
|
2265 |
+
"whorenexxxtdoor": 3981,
|
2266 |
+
"kissasins": 2155,
|
2267 |
+
"missyxmartinez": 2459,
|
2268 |
+
"dressember": 1239,
|
2269 |
+
"belize": 438,
|
2270 |
+
"bachelorette": 350,
|
2271 |
+
"involved": 2024,
|
2272 |
+
"campaign": 746,
|
2273 |
+
"nh": 2569,
|
2274 |
+
"dress": 1237,
|
2275 |
+
"mvp": 2518,
|
2276 |
+
"kimberly": 2148,
|
2277 |
+
"casekeenum7": 779,
|
2278 |
+
"teamed": 3581,
|
2279 |
+
"academy": 155,
|
2280 |
+
"bikes": 464,
|
2281 |
+
"htownpride": 1888,
|
2282 |
+
"skol": 3321,
|
2283 |
+
"bigblueether": 461,
|
2284 |
+
"raised": 2966,
|
2285 |
+
"175": 27,
|
2286 |
+
"500": 99,
|
2287 |
+
"means": 2398,
|
2288 |
+
"300": 72,
|
2289 |
+
"symbol": 3549,
|
2290 |
+
"netneutrality": 2554,
|
2291 |
+
"indivisiblehouston": 1974,
|
2292 |
+
"actio": 168,
|
2293 |
+
"refund": 3025,
|
2294 |
+
"blacklivesmatter": 474,
|
2295 |
+
"90": 135,
|
2296 |
+
"teaching": 3576,
|
2297 |
+
"celebration": 801,
|
2298 |
+
"25th": 48,
|
2299 |
+
"anniversary": 253,
|
2300 |
+
"gallery": 1566,
|
2301 |
+
"furniture": 1560,
|
2302 |
+
"tune": 3765,
|
2303 |
+
"tasty": 3568,
|
2304 |
+
"police": 2834,
|
2305 |
+
"department": 1127,
|
2306 |
+
"called": 742,
|
2307 |
+
"fuckin": 1547,
|
2308 |
+
"mfs": 2432,
|
2309 |
+
"pointless": 2832,
|
2310 |
+
"hung": 1900,
|
2311 |
+
"sci": 3208,
|
2312 |
+
"served": 3246,
|
2313 |
+
"men": 2421,
|
2314 |
+
"venison": 3863,
|
2315 |
+
"harvested": 1718,
|
2316 |
+
"processed": 2891,
|
2317 |
+
"1500": 19,
|
2318 |
+
"713": 119,
|
2319 |
+
"748": 122,
|
2320 |
+
"0700": 4,
|
2321 |
+
"location": 2287,
|
2322 |
+
"until": 3822,
|
2323 |
+
"clicked": 890,
|
2324 |
+
"butt": 572,
|
2325 |
+
"25k": 47,
|
2326 |
+
"shape": 3261,
|
2327 |
+
"podcast": 2829,
|
2328 |
+
"racist": 2958,
|
2329 |
+
"uncle": 3803,
|
2330 |
+
"miss": 2454,
|
2331 |
+
"america": 237,
|
2332 |
+
"fact": 1400,
|
2333 |
+
"blood": 487,
|
2334 |
+
"bc": 381,
|
2335 |
+
"iron": 2030,
|
2336 |
+
"surprised": 3533,
|
2337 |
+
"cherish": 841,
|
2338 |
+
"daughter": 1076,
|
2339 |
+
"johnkasich": 2083,
|
2340 |
+
"costs": 1003,
|
2341 |
+
"lifetime": 2248,
|
2342 |
+
"living": 2274,
|
2343 |
+
"husband": 1924,
|
2344 |
+
"wayneg": 3937,
|
2345 |
+
"wayne": 3936,
|
2346 |
+
"gifford": 1594,
|
2347 |
+
"59": 106,
|
2348 |
+
"urgent": 3836,
|
2349 |
+
"healthinsurance": 1748,
|
2350 |
+
"usa": 3839,
|
2351 |
+
"cancertreatment": 755,
|
2352 |
+
"viralarmy": 3879,
|
2353 |
+
"survivor": 3538,
|
2354 |
+
"fundraising": 1555,
|
2355 |
+
"mission": 2457,
|
2356 |
+
"guatemala": 1676,
|
2357 |
+
"cute": 1054,
|
2358 |
+
"apparel": 272,
|
2359 |
+
"bonfire": 499,
|
2360 |
+
"citizen": 872,
|
2361 |
+
"reminder": 3051,
|
2362 |
+
"disasterassistance": 1175,
|
2363 |
+
"gov": 1642,
|
2364 |
+
"wic": 3983,
|
2365 |
+
"trending": 3743,
|
2366 |
+
"effect": 1289,
|
2367 |
+
"metrohouston": 2428,
|
2368 |
+
"unit": 3813,
|
2369 |
+
"restart": 3100,
|
2370 |
+
"transit": 3732,
|
2371 |
+
"ghpartnership": 1591,
|
2372 |
+
"stateofmetro": 3431,
|
2373 |
+
"panel": 2706,
|
2374 |
+
"discussing": 1181,
|
2375 |
+
"publichealth": 2927,
|
2376 |
+
"nacds": 2523,
|
2377 |
+
"awarded": 340,
|
2378 |
+
"excellence": 1363,
|
2379 |
+
"patient": 2735,
|
2380 |
+
"jcpenney": 2062,
|
2381 |
+
"texan": 3599,
|
2382 |
+
"pro": 2887,
|
2383 |
+
"bowlers": 513,
|
2384 |
+
"jjoe2424": 2073,
|
2385 |
+
"clownejd": 902,
|
2386 |
+
"champion": 813,
|
2387 |
+
"abreg_1": 152,
|
2388 |
+
"givingtuesday": 1607,
|
2389 |
+
"ymcahouston": 4060,
|
2390 |
+
"washer": 3919,
|
2391 |
+
"dryer": 1253,
|
2392 |
+
"tistheseason": 3685,
|
2393 |
+
"captured": 765,
|
2394 |
+
"minds": 2445,
|
2395 |
+
"lately": 2194,
|
2396 |
+
"astros": 319,
|
2397 |
+
"stateofthecounty": 3433,
|
2398 |
+
"shown": 3294,
|
2399 |
+
"houstonian": 1862,
|
2400 |
+
"speaker": 3382,
|
2401 |
+
"strauss": 3468,
|
2402 |
+
"mattressmack": 2380,
|
2403 |
+
"furnishing": 1559,
|
2404 |
+
"grandparents": 1653,
|
2405 |
+
"swept": 3546,
|
2406 |
+
"agchouston": 196,
|
2407 |
+
"industry": 1977,
|
2408 |
+
"workforce": 4020,
|
2409 |
+
"khsmustangfball": 2136,
|
2410 |
+
"humbleisd_khs": 1898,
|
2411 |
+
"coach_bcampbell": 910,
|
2412 |
+
"punch": 2938,
|
2413 |
+
"kingwoodstrong": 2154,
|
2414 |
+
"joelosteen": 2081,
|
2415 |
+
"victoriaosteen": 3872,
|
2416 |
+
"lakewoodch": 2183,
|
2417 |
+
"frauded": 1527,
|
2418 |
+
"earned": 1270,
|
2419 |
+
"millions": 2442,
|
2420 |
+
"bought": 509,
|
2421 |
+
"compound": 954,
|
2422 |
+
"famous": 1414,
|
2423 |
+
"turned": 3768,
|
2424 |
+
"church": 865,
|
2425 |
+
"gold": 1626,
|
2426 |
+
"encrusted": 1317,
|
2427 |
+
"palace": 2702,
|
2428 |
+
"refused": 3026,
|
2429 |
+
"fearing": 1427,
|
2430 |
+
"dirty": 1171,
|
2431 |
+
"riff": 3123,
|
2432 |
+
"raff": 2960,
|
2433 |
+
"bethematch": 449,
|
2434 |
+
"group": 1673,
|
2435 |
+
"cancel": 753,
|
2436 |
+
"lot": 2308,
|
2437 |
+
"ops": 2660,
|
2438 |
+
"registering": 3031,
|
2439 |
+
"besomeon": 445,
|
2440 |
+
"dfshou": 1152,
|
2441 |
+
"sciencemarchhou": 3210,
|
2442 |
+
"senatorsylvia": 3234,
|
2443 |
+
"completes": 951,
|
2444 |
+
"remarks": 3049,
|
2445 |
+
"leading": 2211,
|
2446 |
+
"crowd": 1040,
|
2447 |
+
"puede": 2930,
|
2448 |
+
"chant": 822,
|
2449 |
+
"promises": 2904,
|
2450 |
+
"hardships": 1713,
|
2451 |
+
"prep": 2866,
|
2452 |
+
"student": 3486,
|
2453 |
+
"bitia": 471,
|
2454 |
+
"thanksgiving": 3620,
|
2455 |
+
"teacher": 3574,
|
2456 |
+
"hei": 1759,
|
2457 |
+
"grad": 1646,
|
2458 |
+
"spa": 3377,
|
2459 |
+
"rushing": 3163,
|
2460 |
+
"mall": 2343,
|
2461 |
+
"company": 944,
|
2462 |
+
"rt": 3156,
|
2463 |
+
"ebay": 1277,
|
2464 |
+
"soup": 3367,
|
2465 |
+
"kitchen": 2156,
|
2466 |
+
"advocate": 186,
|
2467 |
+
"namus": 2527,
|
2468 |
+
"lifegift": 2245,
|
2469 |
+
"bone": 498,
|
2470 |
+
"marrow": 2364,
|
2471 |
+
"organdonation": 2666,
|
2472 |
+
"donor": 1223,
|
2473 |
+
"different": 1161,
|
2474 |
+
"relate": 3038,
|
2475 |
+
"product": 2893,
|
2476 |
+
"hygiene": 1926,
|
2477 |
+
"bags": 359,
|
2478 |
+
"bcsrhczgha_x": 404,
|
2479 |
+
"houstonrockets": 1871,
|
2480 |
+
"lasts": 2192,
|
2481 |
+
"unable": 3801,
|
2482 |
+
"giveblood": 1602,
|
2483 |
+
"near": 2539,
|
2484 |
+
"ciso": 869,
|
2485 |
+
"son": 3356,
|
2486 |
+
"noa": 2578,
|
2487 |
+
"giveaways": 1601,
|
2488 |
+
"yet": 4058,
|
2489 |
+
"swing": 3547,
|
2490 |
+
"toyota": 3721,
|
2491 |
+
"2p": 64,
|
2492 |
+
"autographed": 332,
|
2493 |
+
"player": 2811,
|
2494 |
+
"shirt": 3276,
|
2495 |
+
"rednation": 3020,
|
2496 |
+
"coolest": 995,
|
2497 |
+
"phlebotomists": 2778,
|
2498 |
+
"four": 1521,
|
2499 |
+
"left": 2221,
|
2500 |
+
"successfully": 3495,
|
2501 |
+
"credit": 1029,
|
2502 |
+
"turntxblue": 3769,
|
2503 |
+
"betosenate2018": 451,
|
2504 |
+
"effort": 1292,
|
2505 |
+
"betofortexas": 450,
|
2506 |
+
"ca": 734,
|
2507 |
+
"mixed": 2464,
|
2508 |
+
"enough": 1323,
|
2509 |
+
"posts": 2845,
|
2510 |
+
"acknowledge": 163,
|
2511 |
+
"collective": 927,
|
2512 |
+
"pac": 2697,
|
2513 |
+
"female": 1442,
|
2514 |
+
"candidates": 757,
|
2515 |
+
"successful": 3494,
|
2516 |
+
"kitties": 2158,
|
2517 |
+
"cat": 783,
|
2518 |
+
"overpopulation": 2690,
|
2519 |
+
"rely": 3046,
|
2520 |
+
"ur": 3834,
|
2521 |
+
"happen": 1701,
|
2522 |
+
"funeral": 1556,
|
2523 |
+
"expenses": 1378,
|
2524 |
+
"eddie": 1283,
|
2525 |
+
"resident": 3084,
|
2526 |
+
"aldine": 215,
|
2527 |
+
"hd140": 1739,
|
2528 |
+
"tragically": 3728,
|
2529 |
+
"killed": 2146,
|
2530 |
+
"drunk": 1251,
|
2531 |
+
"driver": 1243,
|
2532 |
+
"repstevechabot": 3074,
|
2533 |
+
"investigators": 2021,
|
2534 |
+
"unqualified": 3821,
|
2535 |
+
"dash": 1072,
|
2536 |
+
"drafts": 1234,
|
2537 |
+
"collecting": 925,
|
2538 |
+
"canned": 758,
|
2539 |
+
"bank": 364,
|
2540 |
+
"galvestonbrewin": 1569,
|
2541 |
+
"fellow": 1440,
|
2542 |
+
"waterfund": 3928,
|
2543 |
+
"waterwednesday": 3931,
|
2544 |
+
"publicworks": 2928,
|
2545 |
+
"national": 2532,
|
2546 |
+
"society": 3343,
|
2547 |
+
"400": 88,
|
2548 |
+
"goal": 1615,
|
2549 |
+
"bndfr": 494,
|
2550 |
+
"7clnc": 127,
|
2551 |
+
"wetback": 3964,
|
2552 |
+
"mexican": 2430,
|
2553 |
+
"mariachi": 2355,
|
2554 |
+
"singer": 3310,
|
2555 |
+
"2nd": 63,
|
2556 |
+
"grade": 1647,
|
2557 |
+
"disrespected": 1188,
|
2558 |
+
"talked": 3557,
|
2559 |
+
"horrendous": 1828,
|
2560 |
+
"college": 928,
|
2561 |
+
"15th": 20,
|
2562 |
+
"operation": 2654,
|
2563 |
+
"bcnkqdkhppp": 395,
|
2564 |
+
"tis": 3684,
|
2565 |
+
"dropping": 1248,
|
2566 |
+
"bullied": 554,
|
2567 |
+
"xmas": 4046,
|
2568 |
+
"cards": 769,
|
2569 |
+
"encouraging": 1316,
|
2570 |
+
"voices": 3888,
|
2571 |
+
"heard": 1752,
|
2572 |
+
"spent": 3394,
|
2573 |
+
"smarter": 3329,
|
2574 |
+
"among": 242,
|
2575 |
+
"muhammad": 2506,
|
2576 |
+
"equity": 1335,
|
2577 |
+
"demands": 1122,
|
2578 |
+
"price": 2882,
|
2579 |
+
"coworker": 1019,
|
2580 |
+
"apartment": 266,
|
2581 |
+
"nationwide": 2533,
|
2582 |
+
"pitched": 2799,
|
2583 |
+
"brb": 527,
|
2584 |
+
"sobbing": 3339,
|
2585 |
+
"opened": 2651,
|
2586 |
+
"tested": 3596,
|
2587 |
+
"burglars": 558,
|
2588 |
+
"worship": 4029,
|
2589 |
+
"track": 3723,
|
2590 |
+
"crooks": 1036,
|
2591 |
+
"10pm": 9,
|
2592 |
+
"add": 173,
|
2593 |
+
"mix": 2463,
|
2594 |
+
"irs": 2031,
|
2595 |
+
"public": 2926,
|
2596 |
+
"criticism": 1034,
|
2597 |
+
"gods": 1620,
|
2598 |
+
"obedient": 2613,
|
2599 |
+
"tithe": 3686,
|
2600 |
+
"pockets": 2828,
|
2601 |
+
"purses": 2941,
|
2602 |
+
"stayhumble": 3439,
|
2603 |
+
"ship": 3273,
|
2604 |
+
"channel": 821,
|
2605 |
+
"port_houston": 2839,
|
2606 |
+
"stateofport": 3432,
|
2607 |
+
"shoutout": 3292,
|
2608 |
+
"waiving": 3904,
|
2609 |
+
"charges": 829,
|
2610 |
+
"classy": 882,
|
2611 |
+
"move": 2494,
|
2612 |
+
"incl": 1961,
|
2613 |
+
"rent": 3057,
|
2614 |
+
"increased": 1966,
|
2615 |
+
"wishes": 3997,
|
2616 |
+
"readyharris": 2989,
|
2617 |
+
"disasterpio": 1176,
|
2618 |
+
"fenwickamanda": 1445,
|
2619 |
+
"houstontx": 1875,
|
2620 |
+
"walter": 3910,
|
2621 |
+
"creolegrrl": 1030,
|
2622 |
+
"leaders": 2208,
|
2623 |
+
"pio": 2798,
|
2624 |
+
"testimony": 3597,
|
2625 |
+
"2aidycs": 56,
|
2626 |
+
"lay": 2205,
|
2627 |
+
"blame": 475,
|
2628 |
+
"terms": 3592,
|
2629 |
+
"prepared": 2868,
|
2630 |
+
"analysis": 245,
|
2631 |
+
"determination": 1146,
|
2632 |
+
"crosby": 1037,
|
2633 |
+
"plant": 2808,
|
2634 |
+
"explosion": 1385,
|
2635 |
+
"ft": 1544,
|
2636 |
+
"shoaling": 3279,
|
2637 |
+
"responded": 3093,
|
2638 |
+
"crimestophou": 1032,
|
2639 |
+
"2647325": 50,
|
2640 |
+
"idk": 1934,
|
2641 |
+
"kid": 2143,
|
2642 |
+
"therapy": 3638,
|
2643 |
+
"garner": 1574,
|
2644 |
+
"battling": 376,
|
2645 |
+
"robert": 3136,
|
2646 |
+
"wonderful": 4007,
|
2647 |
+
"jh": 2068,
|
2648 |
+
"angel": 247,
|
2649 |
+
"tree": 3741,
|
2650 |
+
"brighten": 534,
|
2651 |
+
"jamieshope": 2054,
|
2652 |
+
"angeltree": 248,
|
2653 |
+
"angeltreemission": 249,
|
2654 |
+
"familiesbattlingcancer": 1412,
|
2655 |
+
"60k": 108,
|
2656 |
+
"sister": 3312,
|
2657 |
+
"alberneisha_": 212,
|
2658 |
+
"eagles": 1267,
|
2659 |
+
"keaton": 2123,
|
2660 |
+
"texasdfps": 3603,
|
2661 |
+
"cps": 1021,
|
2662 |
+
"rainbow": 2962,
|
2663 |
+
"room": 3148,
|
2664 |
+
"web": 3947,
|
2665 |
+
"site": 3313,
|
2666 |
+
"lmfaooo": 2278,
|
2667 |
+
"af": 187,
|
2668 |
+
"sad": 3169,
|
2669 |
+
"sanchez": 3185,
|
2670 |
+
"14": 17,
|
2671 |
+
"nathalia": 2530,
|
2672 |
+
"bullying": 556,
|
2673 |
+
"starting": 3428,
|
2674 |
+
"trash": 3734,
|
2675 |
+
"suckers": 3497,
|
2676 |
+
"the_raheel": 3625,
|
2677 |
+
"coin": 916,
|
2678 |
+
"anyway": 264,
|
2679 |
+
"unwanted": 3824,
|
2680 |
+
"backpacks": 353,
|
2681 |
+
"blankets": 476,
|
2682 |
+
"die": 1158,
|
2683 |
+
"ribcage": 3114,
|
2684 |
+
"underfunded": 3805,
|
2685 |
+
"music": 2512,
|
2686 |
+
"cartoon": 777,
|
2687 |
+
"skeletons": 3317,
|
2688 |
+
"frost": 1540,
|
2689 |
+
"rickey": 3119,
|
2690 |
+
"kevin": 2131,
|
2691 |
+
"brantley": 520,
|
2692 |
+
"justice": 2105,
|
2693 |
+
"brantleys": 521,
|
2694 |
+
"729": 120,
|
2695 |
+
"pounds": 2848,
|
2696 |
+
"maudemarkslibrary": 2383,
|
2697 |
+
"abc13syh": 147,
|
2698 |
+
"curekids": 1048,
|
2699 |
+
"50555": 100,
|
2700 |
+
"cure": 1047,
|
2701 |
+
"radiothon": 2959,
|
2702 |
+
"waited": 3901,
|
2703 |
+
"patiently": 2736,
|
2704 |
+
"ymca": 4059,
|
2705 |
+
"reopen": 3058,
|
2706 |
+
"excuses": 1370,
|
2707 |
+
"weight": 3953,
|
2708 |
+
"loss": 2305,
|
2709 |
+
"burn": 559,
|
2710 |
+
"begin": 430,
|
2711 |
+
"feeltheburn": 1437,
|
2712 |
+
"lifestylechanges": 2247,
|
2713 |
+
"lessons": 2232,
|
2714 |
+
"learned": 2214,
|
2715 |
+
"shared": 3263,
|
2716 |
+
"control": 990,
|
2717 |
+
"meteorologist": 2426,
|
2718 |
+
"jefflindner1": 2064,
|
2719 |
+
"tspehouston": 3758,
|
2720 |
+
"hcfcd": 1736,
|
2721 |
+
"axelrad": 345,
|
2722 |
+
"recognize": 3007,
|
2723 |
+
"citizenshipmonth": 874,
|
2724 |
+
"houstonheros": 1861,
|
2725 |
+
"click2daily": 888,
|
2726 |
+
"session": 3250,
|
2727 |
+
"bcmacademyhisd": 394,
|
2728 |
+
"mdbiofoundation": 2394,
|
2729 |
+
"science": 3209,
|
2730 |
+
"lab": 2179,
|
2731 |
+
"traveling": 3737,
|
2732 |
+
"visiting": 3881,
|
2733 |
+
"learningundefeated": 2216,
|
2734 |
+
"dennis": 1125,
|
2735 |
+
"quaid": 2949,
|
2736 |
+
"hometown": 1817,
|
2737 |
+
"makeing": 2338,
|
2738 |
+
"especially": 1339,
|
2739 |
+
"pizza": 2801,
|
2740 |
+
"modpizza": 2474,
|
2741 |
+
"responsible": 3098,
|
2742 |
+
"development": 1151,
|
2743 |
+
"becoming": 425,
|
2744 |
+
"topic": 3708,
|
2745 |
+
"discussion": 1182,
|
2746 |
+
"across": 165,
|
2747 |
+
"uticaod": 3849,
|
2748 |
+
"20171110": 37,
|
2749 |
+
"outstanding": 2685,
|
2750 |
+
"kleinisdbret": 2162,
|
2751 |
+
"hcsotexas": 1738,
|
2752 |
+
"constableherman": 978,
|
2753 |
+
"aldineisd": 216,
|
2754 |
+
"springisd": 3408,
|
2755 |
+
"lonestarcollege": 2293,
|
2756 |
+
"veteransday": 3868,
|
2757 |
+
"ww2": 4043,
|
2758 |
+
"marcusluttrell": 2353,
|
2759 |
+
"melanieluttrull": 2417,
|
2760 |
+
"foxandfriends": 1524,
|
2761 |
+
"ffweekend": 1451,
|
2762 |
+
"worldseries2017": 4026,
|
2763 |
+
"brought": 541,
|
2764 |
+
"closer": 898,
|
2765 |
+
"iwanttobepartofthesquad": 2045,
|
2766 |
+
"josealtuve27": 2095,
|
2767 |
+
"expect": 1376,
|
2768 |
+
"ost": 2672,
|
2769 |
+
"panelist": 2707,
|
2770 |
+
"challenges": 811,
|
2771 |
+
"practices": 2853,
|
2772 |
+
"cruisingwithcase": 1043,
|
2773 |
+
"repaired": 3062,
|
2774 |
+
"whitefishenergy": 3977,
|
2775 |
+
"failed": 1403,
|
2776 |
+
"puertoricoselevanta": 2933,
|
2777 |
+
"buzzfeed": 575,
|
2778 |
+
"nidhiprakash": 2572,
|
2779 |
+
"mo": 2471,
|
2780 |
+
"professionals": 2895,
|
2781 |
+
"entrepreneurs": 1329,
|
2782 |
+
"led": 2219,
|
2783 |
+
"charge": 827,
|
2784 |
+
"others": 2675,
|
2785 |
+
"ghphype": 1592,
|
2786 |
+
"exemplary": 1372,
|
2787 |
+
"generation": 1584,
|
2788 |
+
"awarding": 341,
|
2789 |
+
"hypeimpact": 1927,
|
2790 |
+
"highlights": 1787,
|
2791 |
+
"studios": 3488,
|
2792 |
+
"drop": 1246,
|
2793 |
+
"1618091": 22,
|
2794 |
+
"sponsors": 3402,
|
2795 |
+
"honda": 1819,
|
2796 |
+
"dealers": 1089,
|
2797 |
+
"jimwalkerlaw": 2071,
|
2798 |
+
"citgo": 870,
|
2799 |
+
"biglots": 463,
|
2800 |
+
"patriciaabc13": 2738,
|
2801 |
+
"info": 1980,
|
2802 |
+
"interesting": 2008,
|
2803 |
+
"readers": 2986,
|
2804 |
+
"completed": 949,
|
2805 |
+
"similar": 3306,
|
2806 |
+
"examining": 1360,
|
2807 |
+
"motivations": 2492,
|
2808 |
+
"latin": 2197,
|
2809 |
+
"grandmother": 1652,
|
2810 |
+
"mary": 2368,
|
2811 |
+
"robinson": 3137,
|
2812 |
+
"tonie": 3700,
|
2813 |
+
"4rmxtbs": 97,
|
2814 |
+
"pc": 2750,
|
2815 |
+
"tw_dn_cpgnpg_a": 3771,
|
2816 |
+
"rcid": 2979,
|
2817 |
+
"546d0f1e7c5e46e59d0c84bc0f809b14": 103,
|
2818 |
+
"died": 1159,
|
2819 |
+
"26": 49,
|
2820 |
+
"sunny991rick": 3514,
|
2821 |
+
"rodryanshow": 3143,
|
2822 |
+
"kprcbritta": 2170,
|
2823 |
+
"waiting": 3902,
|
2824 |
+
"child": 844,
|
2825 |
+
"stjude": 3451,
|
2826 |
+
"thatshirtsaveslives": 3623,
|
2827 |
+
"795": 126,
|
2828 |
+
"1800": 29,
|
2829 |
+
"kinda": 2150,
|
2830 |
+
"um": 3800,
|
2831 |
+
"watched": 3926,
|
2832 |
+
"boyfriend": 516,
|
2833 |
+
"wikipedia": 3985,
|
2834 |
+
"raise": 2965,
|
2835 |
+
"7000": 118,
|
2836 |
+
"bury": 560,
|
2837 |
+
"9th": 139,
|
2838 |
+
"accepting": 157,
|
2839 |
+
"secret": 3218,
|
2840 |
+
"sheltering": 3267,
|
2841 |
+
"hardbor": 1709,
|
2842 |
+
"slightly": 3325,
|
2843 |
+
"athletic": 323,
|
2844 |
+
"ath": 321,
|
2845 |
+
"spring": 3406,
|
2846 |
+
"disgusting": 1184,
|
2847 |
+
"strolled": 3477,
|
2848 |
+
"cant": 761,
|
2849 |
+
"moms": 2480,
|
2850 |
+
"talking": 3558,
|
2851 |
+
"ab": 144,
|
2852 |
+
"yall": 4051,
|
2853 |
+
"average": 334,
|
2854 |
+
"discouraging": 1179,
|
2855 |
+
"dorian": 1226,
|
2856 |
+
"asshole": 312,
|
2857 |
+
"hasn": 1725,
|
2858 |
+
"payed": 2746,
|
2859 |
+
"symbolic": 3550,
|
2860 |
+
"entitled": 1328,
|
2861 |
+
"sue": 3500,
|
2862 |
+
"woman": 4003,
|
2863 |
+
"assault": 311,
|
2864 |
+
"remorseful": 3053,
|
2865 |
+
"clearly": 886,
|
2866 |
+
"silencebreakers": 3305,
|
2867 |
+
"48": 93,
|
2868 |
+
"degrees": 1113,
|
2869 |
+
"outside": 2684,
|
2870 |
+
"ing": 1983,
|
2871 |
+
"lik": 2253,
|
2872 |
+
"champ": 812,
|
2873 |
+
"sting": 3450,
|
2874 |
+
"cold": 919,
|
2875 |
+
"legs": 2227,
|
2876 |
+
"less": 2231,
|
2877 |
+
"houstonweather": 1876,
|
2878 |
+
"donater": 1217,
|
2879 |
+
"timeline": 3674,
|
2880 |
+
"stream": 3469,
|
2881 |
+
"twitch": 3777,
|
2882 |
+
"suedeyoung": 3501,
|
2883 |
+
"cora": 998,
|
2884 |
+
"kicking": 2139,
|
2885 |
+
"resolution": 3088,
|
2886 |
+
"fflarmy": 1449,
|
2887 |
+
"committing": 940,
|
2888 |
+
"healthy": 1749,
|
2889 |
+
"lifestyle": 2246,
|
2890 |
+
"cravings": 1024,
|
2891 |
+
"goo": 1631,
|
2892 |
+
"gl": 1608,
|
2893 |
+
"49bl9t": 94,
|
2894 |
+
"apcpwk": 268,
|
2895 |
+
"dhs": 1153,
|
2896 |
+
"inspector": 1994,
|
2897 |
+
"general": 1583,
|
2898 |
+
"criticized": 1035,
|
2899 |
+
"several": 3254,
|
2900 |
+
"immigration": 1947,
|
2901 |
+
"detention": 1145,
|
2902 |
+
"spoiled": 3401,
|
2903 |
+
"moldy": 2475,
|
2904 |
+
"inadequate": 1956,
|
2905 |
+
"inappropriate": 1957,
|
2906 |
+
"treatment": 3740,
|
2907 |
+
"detainees": 1144,
|
2908 |
+
"locking": 2289,
|
2909 |
+
"detainee": 1143,
|
2910 |
+
"coffee": 915,
|
2911 |
+
"interfering": 2009,
|
2912 |
+
"muslims": 2514,
|
2913 |
+
"mariasacchetti": 2356,
|
2914 |
+
"imm": 1944,
|
2915 |
+
"emergency": 1309,
|
2916 |
+
"passenger": 2729,
|
2917 |
+
"doingthingsright": 1209,
|
2918 |
+
"ua1745phltoiah": 3792,
|
2919 |
+
"lashonda": 2190,
|
2920 |
+
"kelly": 2127,
|
2921 |
+
"flightattendantsrule": 1482,
|
2922 |
+
"op_universal": 2649,
|
2923 |
+
"mbahamoute": 2390,
|
2924 |
+
"explain": 1382,
|
2925 |
+
"ypgtexas": 4070,
|
2926 |
+
"videos": 3875,
|
2927 |
+
"bgca_clubs": 459,
|
2928 |
+
"forces": 1509,
|
2929 |
+
"cheer": 837,
|
2930 |
+
"kevinhattery": 2132,
|
2931 |
+
"jorge": 2093,
|
2932 |
+
"vasquez": 3860,
|
2933 |
+
"m12": 2327,
|
2934 |
+
"council": 1006,
|
2935 |
+
"amanda4houston": 233,
|
2936 |
+
"breadoflifehou": 529,
|
2937 |
+
"serve": 3245,
|
2938 |
+
"luc": 2321,
|
2939 |
+
"mbah": 2389,
|
2940 |
+
"moute": 2493,
|
2941 |
+
"committed": 939,
|
2942 |
+
"ekie": 1296,
|
2943 |
+
"saga": 3175,
|
2944 |
+
"birraporetti": 469,
|
2945 |
+
"reopened": 3059,
|
2946 |
+
"bcqztj5n96x": 401,
|
2947 |
+
"ypg": 4069,
|
2948 |
+
"supports": 3528,
|
2949 |
+
"alongside": 226,
|
2950 |
+
"downtown": 1230,
|
2951 |
+
"bread": 528,
|
2952 |
+
"household": 1845,
|
2953 |
+
"sunday": 3512,
|
2954 |
+
"11am": 12,
|
2955 |
+
"3pm": 86,
|
2956 |
+
"butler": 571,
|
2957 |
+
"stadium": 3418,
|
2958 |
+
"qualify": 2950,
|
2959 |
+
"houstonstyle": 1874,
|
2960 |
+
"hsmsports": 1885,
|
2961 |
+
"rocket": 3139,
|
2962 |
+
"oflife": 2630,
|
2963 |
+
"congresswomen": 971,
|
2964 |
+
"jacksonleetx18": 2050,
|
2965 |
+
"cbcf": 795,
|
2966 |
+
"touring": 3714,
|
2967 |
+
"ii": 1936,
|
2968 |
+
"economy": 1281,
|
2969 |
+
"econsummithou": 1282,
|
2970 |
+
"speech": 3389,
|
2971 |
+
"quick": 2955,
|
2972 |
+
"congressionalblackcaucus": 970,
|
2973 |
+
"mid": 2436,
|
2974 |
+
"codyjohnsonband": 914,
|
2975 |
+
"perform": 2763,
|
2976 |
+
"voters": 3895,
|
2977 |
+
"march": 2352,
|
2978 |
+
"increasing": 1967,
|
2979 |
+
"protecting": 2910,
|
2980 |
+
"solid": 3347,
|
2981 |
+
"plans": 2807,
|
2982 |
+
"letswork": 2234,
|
2983 |
+
"hd146": 1740,
|
2984 |
+
"kca_medicare": 2122,
|
2985 |
+
"kelseycare": 2128,
|
2986 |
+
"advantage": 185,
|
2987 |
+
"submit": 3492,
|
2988 |
+
"receipts": 3002,
|
2989 |
+
"form": 1513,
|
2990 |
+
"task": 3564,
|
2991 |
+
"dollar": 1210,
|
2992 |
+
"industries": 1976,
|
2993 |
+
"miracles": 2451,
|
2994 |
+
"fucking": 1548,
|
2995 |
+
"internet": 2011,
|
2996 |
+
"invent": 2018,
|
2997 |
+
"machine": 2328,
|
2998 |
+
"simulate": 3307,
|
2999 |
+
"happiness": 1704,
|
3000 |
+
"sing": 3309,
|
3001 |
+
"hank": 1700,
|
3002 |
+
"jr": 2099,
|
3003 |
+
"traditionesque": 3724,
|
3004 |
+
"song": 3358,
|
3005 |
+
"debt": 1095,
|
3006 |
+
"applaud": 274,
|
3007 |
+
"buffalobayou": 548,
|
3008 |
+
"bringing": 536,
|
3009 |
+
"valuable": 3854,
|
3010 |
+
"green": 1666,
|
3011 |
+
"spaces": 3379,
|
3012 |
+
"gifted17": 1596,
|
3013 |
+
"362": 83,
|
3014 |
+
"ty": 3787,
|
3015 |
+
"prufrockpress": 2920,
|
3016 |
+
"colleagues": 923,
|
3017 |
+
"thierry": 3645,
|
3018 |
+
"must": 2516,
|
3019 |
+
"file": 1456,
|
3020 |
+
"thursday": 3665,
|
3021 |
+
"register": 3030,
|
3022 |
+
"helpline": 1771,
|
3023 |
+
"621": 110,
|
3024 |
+
"3362": 80,
|
3025 |
+
"houstonpubmedia": 1868,
|
3026 |
+
"own": 2694,
|
3027 |
+
"invaluable": 2017,
|
3028 |
+
"source": 3368,
|
3029 |
+
"comcast": 931,
|
3030 |
+
"haul50": 1729,
|
3031 |
+
"associate": 316,
|
3032 |
+
"phoenix": 2779,
|
3033 |
+
"ashes": 305,
|
3034 |
+
"float": 1483,
|
3035 |
+
"debristhanksgiving": 1094,
|
3036 |
+
"parade": 2710,
|
3037 |
+
"joannetour": 2075,
|
3038 |
+
"remarkable": 3048,
|
3039 |
+
"superbowl": 3520,
|
3040 |
+
"plus": 2822,
|
3041 |
+
"hitting": 1801,
|
3042 |
+
"booked": 501,
|
3043 |
+
"facials": 1398,
|
3044 |
+
"stronger": 3479,
|
3045 |
+
"mymarykaylife": 2520,
|
3046 |
+
"masoud": 2370,
|
3047 |
+
"farshchi": 1419,
|
3048 |
+
"artist": 301,
|
3049 |
+
"bcan9x4hyag": 387,
|
3050 |
+
"contributes": 989,
|
3051 |
+
"milion": 2440,
|
3052 |
+
"gregabbott_tx": 1669,
|
3053 |
+
"hello": 1763,
|
3054 |
+
"lovely": 2313,
|
3055 |
+
"clients": 891,
|
3056 |
+
"landfall": 2185,
|
3057 |
+
"bzrlagdldbq": 732,
|
3058 |
+
"ricekinderinst": 3116,
|
3059 |
+
"storyboard": 3462,
|
3060 |
+
"hurricaneharveys": 1913,
|
3061 |
+
"garethemery": 1573,
|
3062 |
+
"flag": 1477,
|
3063 |
+
"mark": 2358,
|
3064 |
+
"painting": 2701,
|
3065 |
+
"treasures": 3738,
|
3066 |
+
"baaba6vluo3": 347,
|
3067 |
+
"drake": 1235,
|
3068 |
+
"sale": 3180,
|
3069 |
+
"bae": 358,
|
3070 |
+
"laofksu": 2188,
|
3071 |
+
"bzkg5f5liry": 731,
|
3072 |
+
"bzkg0d4lw_f": 730,
|
3073 |
+
"front": 1538,
|
3074 |
+
"lines": 2258,
|
3075 |
+
"red": 3016,
|
3076 |
+
"cross": 1038,
|
3077 |
+
"bzjzkl4f2zl": 729,
|
3078 |
+
"bzjzeiflnjq": 728,
|
3079 |
+
"nrg": 2602,
|
3080 |
+
"bzhe8shlq6d": 725,
|
3081 |
+
"haul": 1728,
|
3082 |
+
"bzhere4flgd": 726,
|
3083 |
+
"helpinghouston": 1769,
|
3084 |
+
"hurricanes": 1917,
|
3085 |
+
"bysvv": 680,
|
3086 |
+
"hn0vy": 1803,
|
3087 |
+
"download": 1229,
|
3088 |
+
"click2pins": 889,
|
3089 |
+
"crowdsourced": 1041,
|
3090 |
+
"roads": 3135,
|
3091 |
+
"gas": 1575,
|
3092 |
+
"recovers": 3014,
|
3093 |
+
"4000": 89,
|
3094 |
+
"meals": 2396,
|
3095 |
+
"bzheyoplcqq": 727,
|
3096 |
+
"byo77ycljee": 650,
|
3097 |
+
"nasa": 2529,
|
3098 |
+
"astronauts": 318,
|
3099 |
+
"byoibptlswg": 655,
|
3100 |
+
"spreading": 3405,
|
3101 |
+
"byo1uejltwz": 646,
|
3102 |
+
"byoiiw2fogg": 656,
|
3103 |
+
"rice": 3115,
|
3104 |
+
"owls": 2693,
|
3105 |
+
"byojoa7fwun": 658,
|
3106 |
+
"byo1jvvlb52": 645,
|
3107 |
+
"bymbsbxfpee": 637,
|
3108 |
+
"byo16dtftcz": 644,
|
3109 |
+
"byojadlfimg": 657,
|
3110 |
+
"byo2bpflvp6": 647,
|
3111 |
+
"bymbzwkfsji": 638,
|
3112 |
+
"fraction": 1525,
|
3113 |
+
"blocks": 484,
|
3114 |
+
"worth": 4031,
|
3115 |
+
"bymawxjno8": 636,
|
3116 |
+
"assignments": 313,
|
3117 |
+
"bymdm9blri4": 639,
|
3118 |
+
"aiding": 205,
|
3119 |
+
"byi5gbed002": 633,
|
3120 |
+
"agu": 201,
|
3121 |
+
"byguk5zaxwq": 631,
|
3122 |
+
"neverforget": 2559,
|
3123 |
+
"northeast": 2590,
|
3124 |
+
"bybdijtfex7": 594,
|
3125 |
+
"heading": 1743,
|
3126 |
+
"george": 1587,
|
3127 |
+
"brown": 542,
|
3128 |
+
"convention": 992,
|
3129 |
+
"byzqqkdgklz": 723,
|
3130 |
+
"sunshine": 3517,
|
3131 |
+
"sunset": 3516,
|
3132 |
+
"mosaic": 2488,
|
3133 |
+
"byzmlb9f6j3": 722,
|
3134 |
+
"brave": 523,
|
3135 |
+
"_______________": 140,
|
3136 |
+
"floods": 1488,
|
3137 |
+
"byapjrejae1": 581,
|
3138 |
+
"blue": 492,
|
3139 |
+
"skies": 3319,
|
3140 |
+
"bya08e7b9hj": 579,
|
3141 |
+
"meditation": 2412,
|
3142 |
+
"cats": 787,
|
3143 |
+
"catsofinstagram": 788,
|
3144 |
+
"bya1rmzaukc": 580,
|
3145 |
+
"juice": 2102,
|
3146 |
+
"battery": 375,
|
3147 |
+
"charger": 828,
|
3148 |
+
"byzi": 720,
|
3149 |
+
"lyaulh": 2326,
|
3150 |
+
"byzishpgt1s": 721,
|
3151 |
+
"byzzmkxgrg8": 724,
|
3152 |
+
"gotreal": 1640,
|
3153 |
+
"byywgv0lkrg": 715,
|
3154 |
+
"wet": 3963,
|
3155 |
+
"nofilter": 2582,
|
3156 |
+
"sheltie": 3269,
|
3157 |
+
"byyrbaaghgh": 714,
|
3158 |
+
"confederateflag": 962,
|
3159 |
+
"confederatestatues": 963,
|
3160 |
+
"equality": 1332,
|
3161 |
+
"byybut": 712,
|
3162 |
+
"dxuo": 1262,
|
3163 |
+
"kindness": 2151,
|
3164 |
+
"bywjjddhnlo": 703,
|
3165 |
+
"thecalvary": 3628,
|
3166 |
+
"bywxxhzjhpt": 707,
|
3167 |
+
"byws1gmn8jj": 706,
|
3168 |
+
"bywogkkgc8d": 704,
|
3169 |
+
"reporter": 3069,
|
3170 |
+
"rashivats": 2976,
|
3171 |
+
"byyqvzcj5is": 713,
|
3172 |
+
"288": 53,
|
3173 |
+
"southmore": 3373,
|
3174 |
+
"yesweather": 4057,
|
3175 |
+
"historic": 1797,
|
3176 |
+
"byworc6f8o4": 705,
|
3177 |
+
"emergencycontact": 1310,
|
3178 |
+
"coastguard": 912,
|
3179 |
+
"byvzz": 699,
|
3180 |
+
"adncy": 178,
|
3181 |
+
"operations": 2656,
|
3182 |
+
"industryabout": 1978,
|
3183 |
+
"industrial": 1975,
|
3184 |
+
"byvsb_glaob": 696,
|
3185 |
+
"pamrollins_": 2705,
|
3186 |
+
"uscg": 3841,
|
3187 |
+
"byu4adxh0jt": 691,
|
3188 |
+
"predicting": 2865,
|
3189 |
+
"inches": 1960,
|
3190 |
+
"main": 2335,
|
3191 |
+
"interstate": 2012,
|
3192 |
+
"byt9g9ygnye": 683,
|
3193 |
+
"massive": 2372,
|
3194 |
+
"stalls": 3422,
|
3195 |
+
"besomeone": 446,
|
3196 |
+
"streetart": 3472,
|
3197 |
+
"bytwv5ljcmp": 690,
|
3198 |
+
"hour": 1841,
|
3199 |
+
"respite": 3091,
|
3200 |
+
"wonders": 4009,
|
3201 |
+
"sheltiepage": 3270,
|
3202 |
+
"byttou5ltja": 688,
|
3203 |
+
"heights": 1760,
|
3204 |
+
"gulfcoast": 1678,
|
3205 |
+
"byt33hbhnpy": 682,
|
3206 |
+
"blvd": 493,
|
3207 |
+
"whiteoakbayou": 3978,
|
3208 |
+
"river": 3132,
|
3209 |
+
"bytdctddkg4": 684,
|
3210 |
+
"chanclas": 818,
|
3211 |
+
"staysafe": 3440,
|
3212 |
+
"fashion": 1420,
|
3213 |
+
"lookitup": 2299,
|
3214 |
+
"sandals": 3186,
|
3215 |
+
"bytlhxvgmza": 686,
|
3216 |
+
"sabrina": 3167,
|
3217 |
+
"sabrinatheteenagewitch": 3168,
|
3218 |
+
"bysbgybhbt1": 679,
|
3219 |
+
"xtremefabracing": 4047,
|
3220 |
+
"get_repost": 1589,
|
3221 |
+
"prayfortexas": 2861,
|
3222 |
+
"bytojfznsx6": 687,
|
3223 |
+
"claims": 878,
|
3224 |
+
"ingodwetrust": 1984,
|
3225 |
+
"lightning": 2252,
|
3226 |
+
"arrived": 295,
|
3227 |
+
"byr72kqg1gv": 671,
|
3228 |
+
"itself": 2043,
|
3229 |
+
"byrhmvqgkrm": 673,
|
3230 |
+
"moscowmule": 2489,
|
3231 |
+
"eastside": 1274,
|
3232 |
+
"byrxblvbfio": 678,
|
3233 |
+
"split": 3400,
|
3234 |
+
"waves": 3934,
|
3235 |
+
"monk": 2482,
|
3236 |
+
"sea": 3216,
|
3237 |
+
"neighbor": 2546,
|
3238 |
+
"roguesapparel": 3144,
|
3239 |
+
"hurricaneharvery": 1908,
|
3240 |
+
"goodmorningpost": 1635,
|
3241 |
+
"byqrv5snyev": 669,
|
3242 |
+
"hurricanharvey": 1919,
|
3243 |
+
"byqqwsubjvk": 668,
|
3244 |
+
"tweeting": 3775,
|
3245 |
+
"htxharvey": 1890,
|
3246 |
+
"hurricaneharvy": 1914,
|
3247 |
+
"livetweet": 2273,
|
3248 |
+
"yagirlkeepingyouupdated": 4049,
|
3249 |
+
"soho": 3344,
|
3250 |
+
"tip": 3679,
|
3251 |
+
"craft": 1022,
|
3252 |
+
"breweries": 532,
|
3253 |
+
"byrdhgnh5ch": 672,
|
3254 |
+
"road": 3134,
|
3255 |
+
"block": 482,
|
3256 |
+
"cattle": 789,
|
3257 |
+
"kwcares": 2175,
|
3258 |
+
"kw": 2174,
|
3259 |
+
"byeqrvogcos": 628,
|
3260 |
+
"precious": 2864,
|
3261 |
+
"bye": 625,
|
3262 |
+
"qylazyp": 2957,
|
3263 |
+
"sand\u00eda": 3187,
|
3264 |
+
"bullock": 555,
|
3265 |
+
"respect": 3090,
|
3266 |
+
"byn36vbdi9r": 641,
|
3267 |
+
"caravan": 767,
|
3268 |
+
"kenzi": 2129,
|
3269 |
+
"by4p9noa3vb": 577,
|
3270 |
+
"fence": 1443,
|
3271 |
+
"bygpfqdgc_4a": 630,
|
3272 |
+
"byd6upwhemf": 624,
|
3273 |
+
"goodevening": 1633,
|
3274 |
+
"happyfriday": 1706,
|
3275 |
+
"byptktdf1iy": 662,
|
3276 |
+
"bylhwqwhrnk": 635,
|
3277 |
+
"handinhand": 1694,
|
3278 |
+
"fuckery": 1546,
|
3279 |
+
"by7btsnbwx4": 578,
|
3280 |
+
"coping": 997,
|
3281 |
+
"mechanism": 2400,
|
3282 |
+
"canadianclub": 752,
|
3283 |
+
"byhbzm7bkq2": 632,
|
3284 |
+
"goawayharvey": 1617,
|
3285 |
+
"bycnukgbe9j": 622,
|
3286 |
+
"bybsz5id5x7": 608,
|
3287 |
+
"byblqx4g5ku": 600,
|
3288 |
+
"bybax1ubhjz": 592,
|
3289 |
+
"32": 79,
|
3290 |
+
"bybssp1dfkr": 607,
|
3291 |
+
"readytorebuild": 2990,
|
3292 |
+
"timetoshine": 3676,
|
3293 |
+
"byz6pm_gwvw9": 717,
|
3294 |
+
"businessinsideruk": 565,
|
3295 |
+
"byzb7e0bfzw": 718,
|
3296 |
+
"safety": 3174,
|
3297 |
+
"helpless": 1770,
|
3298 |
+
"byzbm": 719,
|
3299 |
+
"zgyor": 4077,
|
3300 |
+
"eastneworleans": 1273,
|
3301 |
+
"byxsoxmb": 709,
|
3302 |
+
"mk": 2466,
|
3303 |
+
"byxkgvhb8vzq": 708,
|
3304 |
+
"eclipse2017": 1279,
|
3305 |
+
"texasweather": 3612,
|
3306 |
+
"texashumor": 3607,
|
3307 |
+
"byoexj_lyuo": 654,
|
3308 |
+
"category3": 786,
|
3309 |
+
"sustained": 3540,
|
3310 |
+
"winds": 3992,
|
3311 |
+
"120": 14,
|
3312 |
+
"mph": 2496,
|
3313 |
+
"bypojs3f3hd": 661,
|
3314 |
+
"bypxgy": 663,
|
3315 |
+
"g9qq": 1563,
|
3316 |
+
"byrkxopadew": 674,
|
3317 |
+
"noaa": 2579,
|
3318 |
+
"hurricanehunters": 1915,
|
3319 |
+
"fly": 1497,
|
3320 |
+
"byozllnfiyz": 659,
|
3321 |
+
"strengthened": 3475,
|
3322 |
+
"maximum": 2384,
|
3323 |
+
"byncn0thqa5": 642,
|
3324 |
+
"haunted": 1730,
|
3325 |
+
"images": 1942,
|
3326 |
+
"bytduoiaeaf": 685,
|
3327 |
+
"cantor": 762,
|
3328 |
+
"byt2tfddtnj": 681,
|
3329 |
+
"squad": 3411,
|
3330 |
+
"katie_cleary": 2119,
|
3331 |
+
"maggieq": 2333,
|
3332 |
+
"runwaydonemyway": 3160,
|
3333 |
+
"bymjsjxf4sp": 640,
|
3334 |
+
"byqnq2ubugj": 667,
|
3335 |
+
"woodshed": 4013,
|
3336 |
+
"gotta": 1641,
|
3337 |
+
"ground": 1672,
|
3338 |
+
"harden": 1710,
|
3339 |
+
"byei3wagtyz": 627,
|
3340 |
+
"began": 429,
|
3341 |
+
"unleash": 3816,
|
3342 |
+
"wrath": 4038,
|
3343 |
+
"port": 2838,
|
3344 |
+
"byd6sojftgb": 623,
|
3345 |
+
"byy8hjfhdpp": 711,
|
3346 |
+
"finish": 1466,
|
3347 |
+
"repairing": 3063,
|
3348 |
+
"fallen": 1407,
|
3349 |
+
"compared": 945,
|
3350 |
+
"bybz4moafjo": 621,
|
3351 |
+
"byz0amfgi2e": 716,
|
3352 |
+
"rejoin": 3037,
|
3353 |
+
"parisclimateaccords": 2713,
|
3354 |
+
"byw9ulofpn9": 701,
|
3355 |
+
"strength": 3474,
|
3356 |
+
"bywhas2b0c3": 702,
|
3357 |
+
"seeing": 3222,
|
3358 |
+
"loosing": 2302,
|
3359 |
+
"byvwwhtn2mr": 698,
|
3360 |
+
"byvv1u5baqu": 697,
|
3361 |
+
"byvq5fgbfst": 695,
|
3362 |
+
"redcrossla": 3018,
|
3363 |
+
"byviqlanrtz": 694,
|
3364 |
+
"byu7xadh7rr": 692,
|
3365 |
+
"dire": 1167,
|
3366 |
+
"byuq50xgxix": 693,
|
3367 |
+
"27": 51,
|
3368 |
+
"70": 117,
|
3369 |
+
"pressure": 2880,
|
3370 |
+
"girls": 1599,
|
3371 |
+
"stormwatch": 3460,
|
3372 |
+
"byqc_snbiso": 666,
|
3373 |
+
"protection": 2911,
|
3374 |
+
"byqyp4uhuw7": 670,
|
3375 |
+
"coast": 911,
|
3376 |
+
"byrvobthe4m": 677,
|
3377 |
+
"testing": 3598,
|
3378 |
+
"dryrobe": 1254,
|
3379 |
+
"waterproof": 3929,
|
3380 |
+
"byq0opuh08h": 664,
|
3381 |
+
"southern": 3371,
|
3382 |
+
"parts": 2724,
|
3383 |
+
"byq9uycgrhp": 665,
|
3384 |
+
"byttzgnh8s8": 689,
|
3385 |
+
"wishing": 3998,
|
3386 |
+
"security": 3220,
|
3387 |
+
"path": 2733,
|
3388 |
+
"vibes": 3870,
|
3389 |
+
"bypje_bjox_": 660,
|
3390 |
+
"tomytexasfamandfriends": 3698,
|
3391 |
+
"prepareforbattle": 2869,
|
3392 |
+
"stayup": 3442,
|
3393 |
+
"byo91bxnqbd": 652,
|
3394 |
+
"gulf": 1677,
|
3395 |
+
"prepare": 2867,
|
3396 |
+
"byo8x3caaqq": 651,
|
3397 |
+
"keeping": 2125,
|
3398 |
+
"byo6kjugxbu": 649,
|
3399 |
+
"braceforimpact": 517,
|
3400 |
+
"twinliquors": 3776,
|
3401 |
+
"dollarsale": 1212,
|
3402 |
+
"byodlvtfglj": 653,
|
3403 |
+
"bynr4gkbf6jh": 643,
|
3404 |
+
"seriously": 3243,
|
3405 |
+
"goin": 1624,
|
3406 |
+
"byo3evtndzh": 648,
|
3407 |
+
"cedra": 798,
|
3408 |
+
"1607": 21,
|
3409 |
+
"oak": 2611,
|
3410 |
+
"prescriptions": 2873,
|
3411 |
+
"marijuana": 2357,
|
3412 |
+
"example": 1361,
|
3413 |
+
"misled": 2453,
|
3414 |
+
"hell": 1762,
|
3415 |
+
"regulate": 3034,
|
3416 |
+
"legally": 2224,
|
3417 |
+
"beverage": 456,
|
3418 |
+
"decade": 1098,
|
3419 |
+
"geeze": 1580,
|
3420 |
+
"centers": 805,
|
3421 |
+
"specialty": 3388,
|
3422 |
+
"egregious": 1294,
|
3423 |
+
"behavior": 433,
|
3424 |
+
"unacceptable": 3802,
|
3425 |
+
"answer": 257,
|
3426 |
+
"bettet": 453,
|
3427 |
+
"solution": 3348,
|
3428 |
+
"angle": 250,
|
3429 |
+
"yusuf": 4073,
|
3430 |
+
"tourism": 3715,
|
3431 |
+
"zachsmidt": 4075,
|
3432 |
+
"nowhere": 2600,
|
3433 |
+
"bduyay0b9kv": 415,
|
3434 |
+
"train": 3730,
|
3435 |
+
"accident": 159,
|
3436 |
+
"bka": 472,
|
3437 |
+
"interest": 2007,
|
3438 |
+
"phantom": 2776,
|
3439 |
+
"limb": 2256,
|
3440 |
+
"review": 3112,
|
3441 |
+
"management": 2347,
|
3442 |
+
"plp": 2819,
|
3443 |
+
"britishpainsoc": 537,
|
3444 |
+
"journals": 2097,
|
3445 |
+
"sagepub": 3176,
|
3446 |
+
"doi": 1207,
|
3447 |
+
"pdf": 2751,
|
3448 |
+
"chronicpain": 862,
|
3449 |
+
"meded": 2402,
|
3450 |
+
"foamed": 1498,
|
3451 |
+
"checking": 836,
|
3452 |
+
"peanut": 2753,
|
3453 |
+
"munchkin": 2509,
|
3454 |
+
"memorial": 2420,
|
3455 |
+
"hermann": 1775,
|
3456 |
+
"plaza": 2816,
|
3457 |
+
"swarmapp": 3543,
|
3458 |
+
"dtkwdlmm9zy": 1256,
|
3459 |
+
"systems": 3551,
|
3460 |
+
"paying": 2747,
|
3461 |
+
"indebted": 1969,
|
3462 |
+
"residents": 3085,
|
3463 |
+
"employees": 1311,
|
3464 |
+
"avoid": 338,
|
3465 |
+
"kind": 2149,
|
3466 |
+
"practice": 2852,
|
3467 |
+
"settings": 3253,
|
3468 |
+
"hospitals": 1832,
|
3469 |
+
"doctors": 1199,
|
3470 |
+
"actions": 169,
|
3471 |
+
"tfw": 3614,
|
3472 |
+
"vacation": 3853,
|
3473 |
+
"naturally": 2535,
|
3474 |
+
"gravitate": 1658,
|
3475 |
+
"towards": 3717,
|
3476 |
+
"supply": 3523,
|
3477 |
+
"bdqr7ojlorp": 413,
|
3478 |
+
"potentially": 2847,
|
3479 |
+
"deadly": 1088,
|
3480 |
+
"treatable": 3739,
|
3481 |
+
"illnesses": 1940,
|
3482 |
+
"blocked": 483,
|
3483 |
+
"refugees": 3023,
|
3484 |
+
"severe": 3255,
|
3485 |
+
"conditions": 960,
|
3486 |
+
"admissions": 177,
|
3487 |
+
"resume": 3104,
|
3488 |
+
"travelban": 3736,
|
3489 |
+
"muslimban": 2513,
|
3490 |
+
"afr": 190,
|
3491 |
+
"genuinely": 1586,
|
3492 |
+
"chitterlings": 852,
|
3493 |
+
"tastebuds": 3567,
|
3494 |
+
"broken": 539,
|
3495 |
+
"book": 500,
|
3496 |
+
"socialmedia": 3341,
|
3497 |
+
"socialmediamarketing": 3342,
|
3498 |
+
"bdn7qiahb3_": 411,
|
3499 |
+
"ps": 2921,
|
3500 |
+
"wife": 3984,
|
3501 |
+
"signed": 3303,
|
3502 |
+
"va": 3850,
|
3503 |
+
"benefits": 443,
|
3504 |
+
"started": 3427,
|
3505 |
+
"doctor": 1198,
|
3506 |
+
"longer": 2295,
|
3507 |
+
"except": 1365,
|
3508 |
+
"cost": 1002,
|
3509 |
+
"pocket": 2827,
|
3510 |
+
"cms": 906,
|
3511 |
+
"appointment": 277,
|
3512 |
+
"donald": 1214,
|
3513 |
+
"talks": 3559,
|
3514 |
+
"adequate": 176,
|
3515 |
+
"roll": 3145,
|
3516 |
+
"reimbursements": 3036,
|
3517 |
+
"gutting": 1680,
|
3518 |
+
"payouts": 2748,
|
3519 |
+
"reduce": 3022,
|
3520 |
+
"medicaid": 2404,
|
3521 |
+
"nursing": 2606,
|
3522 |
+
"sarfraz": 3189,
|
3523 |
+
"aly": 231,
|
3524 |
+
"oakbend": 2612,
|
3525 |
+
"physician": 2785,
|
3526 |
+
"msju": 2500,
|
3527 |
+
"vacant": 3852,
|
3528 |
+
"zombie": 4081,
|
3529 |
+
"factories": 1401,
|
3530 |
+
"producing": 2892,
|
3531 |
+
"medications": 2407,
|
3532 |
+
"prices": 2883,
|
3533 |
+
"legislature": 2225,
|
3534 |
+
"cheaper": 834,
|
3535 |
+
"male": 2342,
|
3536 |
+
"pattern": 2741,
|
3537 |
+
"baldness": 360,
|
3538 |
+
"convincing": 993,
|
3539 |
+
"drs": 1250,
|
3540 |
+
"grays": 1659,
|
3541 |
+
"omg": 2640,
|
3542 |
+
"married": 2363,
|
3543 |
+
"hampshire": 1692,
|
3544 |
+
"veterans": 3867,
|
3545 |
+
"lmpm": 2280,
|
3546 |
+
"rush": 3161,
|
3547 |
+
"ambulances": 235,
|
3548 |
+
"sum": 3508,
|
3549 |
+
"normally": 2587,
|
3550 |
+
"urine": 3837,
|
3551 |
+
"sample": 3184,
|
3552 |
+
"hrs": 1883,
|
3553 |
+
"wound": 4034,
|
3554 |
+
"3lkaonr64jb": 85,
|
3555 |
+
"visits": 3882,
|
3556 |
+
"nicu": 2571,
|
3557 |
+
"woodlands": 4011,
|
3558 |
+
"lljb": 2276,
|
3559 |
+
"1000": 8,
|
3560 |
+
"pale": 2703,
|
3561 |
+
"instant": 1997,
|
3562 |
+
"indebtedness": 1970,
|
3563 |
+
"announces": 255,
|
3564 |
+
"l7gm": 2177,
|
3565 |
+
"mature": 2382,
|
3566 |
+
"hire": 1790,
|
3567 |
+
"brat": 522,
|
3568 |
+
"easy": 1275,
|
3569 |
+
"breezy": 531,
|
3570 |
+
"nodelays": 2581,
|
3571 |
+
"worksforme": 4023,
|
3572 |
+
"unfair": 3808,
|
3573 |
+
"repeal": 3064,
|
3574 |
+
"repealed": 3065,
|
3575 |
+
"default": 1106,
|
3576 |
+
"times": 3675,
|
3577 |
+
"sugery": 3506,
|
3578 |
+
"europe": 1343,
|
3579 |
+
"higher": 1785,
|
3580 |
+
"europeans": 1344,
|
3581 |
+
"bc0uwewnnvb": 382,
|
3582 |
+
"republican": 3075,
|
3583 |
+
"war": 3916,
|
3584 |
+
"shouldn": 3290,
|
3585 |
+
"happened": 1702,
|
3586 |
+
"oclark38": 2616,
|
3587 |
+
"proper": 2906,
|
3588 |
+
"belessed": 436,
|
3589 |
+
"bczl4qohuz0": 409,
|
3590 |
+
"\u0645\u0627\u0634\u0627\u0621\u0627\u0644\u0644\u0647": 4084,
|
3591 |
+
"la": 2178,
|
3592 |
+
"fitness": 1472,
|
3593 |
+
"bcx25w9ara": 407,
|
3594 |
+
"vitamin": 3884,
|
3595 |
+
"iv": 2044,
|
3596 |
+
"lead": 2207,
|
3597 |
+
"wellness": 3957,
|
3598 |
+
"bcxu3wvh9ol": 408,
|
3599 |
+
"40": 87,
|
3600 |
+
"square": 3412,
|
3601 |
+
"foot": 1506,
|
3602 |
+
"cos": 1001,
|
3603 |
+
"k5c7": 2116,
|
3604 |
+
"pearland": 2754,
|
3605 |
+
"objective": 2614,
|
3606 |
+
"gender": 1582,
|
3607 |
+
"comment": 937,
|
3608 |
+
"mlb": 2467,
|
3609 |
+
"investigate": 2020,
|
3610 |
+
"whether": 3973,
|
3611 |
+
"shohei": 3281,
|
3612 |
+
"ohtani": 2635,
|
3613 |
+
"leaked": 2212,
|
3614 |
+
"official": 2626,
|
3615 |
+
"buster": 568,
|
3616 |
+
"olney": 2639,
|
3617 |
+
"es": 1338,
|
3618 |
+
"pn": 2825,
|
3619 |
+
"rip": 3129,
|
3620 |
+
"spending": 3392,
|
3621 |
+
"habits": 1685,
|
3622 |
+
"prerequisites": 2872,
|
3623 |
+
"semester": 3231,
|
3624 |
+
"hopefully": 1826,
|
3625 |
+
"diet": 1160,
|
3626 |
+
"coke": 917,
|
3627 |
+
"verifies": 3864,
|
3628 |
+
"earth": 1271,
|
3629 |
+
"drinks": 1240,
|
3630 |
+
"standards": 3423,
|
3631 |
+
"using": 3847,
|
3632 |
+
"marked": 2359,
|
3633 |
+
"purpose": 2940,
|
3634 |
+
"violation": 3878,
|
3635 |
+
"international": 2010,
|
3636 |
+
"laws": 2203,
|
3637 |
+
"armed": 293,
|
3638 |
+
"conflict": 966,
|
3639 |
+
"outrage": 2683,
|
3640 |
+
"training": 3731,
|
3641 |
+
"civility": 876,
|
3642 |
+
"freshmen": 1530,
|
3643 |
+
"pvamu": 2947,
|
3644 |
+
"graduated": 1649,
|
3645 |
+
"chiropractor": 851,
|
3646 |
+
"existed": 1375,
|
3647 |
+
"tingly": 3677,
|
3648 |
+
"top": 3707,
|
3649 |
+
"bcivsoojiks": 392,
|
3650 |
+
"gop": 1638,
|
3651 |
+
"polls": 2835,
|
3652 |
+
"term": 3591,
|
3653 |
+
"illness": 1939,
|
3654 |
+
"bchotyij5be": 391,
|
3655 |
+
"met": 2425,
|
3656 |
+
"niner": 2574,
|
3657 |
+
"crowneplaza": 1042,
|
3658 |
+
"reliant": 3042,
|
3659 |
+
"dlllmob": 1194,
|
3660 |
+
"7yfvizmws5y": 129,
|
3661 |
+
"wharton": 3966,
|
3662 |
+
"ii1q": 1937,
|
3663 |
+
"setting": 3252,
|
3664 |
+
"vietnamese": 3876,
|
3665 |
+
"buddhist": 545,
|
3666 |
+
"temple": 3590,
|
3667 |
+
"partnering": 2720,
|
3668 |
+
"remote": 3054,
|
3669 |
+
"ram": 2970,
|
3670 |
+
"dental": 1126,
|
3671 |
+
"flu": 1494,
|
3672 |
+
"shots": 3288,
|
3673 |
+
"6am": 115,
|
3674 |
+
"1pm": 31,
|
3675 |
+
"17355": 26,
|
3676 |
+
"groeschke": 1671,
|
3677 |
+
"77084": 124,
|
3678 |
+
"advancing": 184,
|
3679 |
+
"sonic": 3360,
|
3680 |
+
"speeds": 3391,
|
3681 |
+
"skyline": 3322,
|
3682 |
+
"sunrise": 3515,
|
3683 |
+
"unless": 3817,
|
3684 |
+
"received": 3004,
|
3685 |
+
"offer": 2621,
|
3686 |
+
"listing": 2266,
|
3687 |
+
"email": 1306,
|
3688 |
+
"satisfied": 3190,
|
3689 |
+
"pushing": 2944,
|
3690 |
+
"above": 151,
|
3691 |
+
"topknotagent": 3710,
|
3692 |
+
"no_pain_no_gain": 2577,
|
3693 |
+
"goodmorning": 1634,
|
3694 |
+
"bcacfceaxxs": 386,
|
3695 |
+
"ohitisyou": 2634,
|
3696 |
+
"terrific": 3594,
|
3697 |
+
"bcarxmubmzz": 388,
|
3698 |
+
"exam": 1359,
|
3699 |
+
"ascertain": 304,
|
3700 |
+
"competence": 947,
|
3701 |
+
"rocking": 3141,
|
3702 |
+
"6ng2ntwmck4": 116,
|
3703 |
+
"milby": 2439,
|
3704 |
+
"hs": 1884,
|
3705 |
+
"sweet": 3545,
|
3706 |
+
"graduate": 1648,
|
3707 |
+
"med": 2401,
|
3708 |
+
"set": 3251,
|
3709 |
+
"joseph": 2096,
|
3710 |
+
"naval": 2536,
|
3711 |
+
"recent": 3006,
|
3712 |
+
"lighting": 2251,
|
3713 |
+
"quarterdeck": 2951,
|
3714 |
+
"nmcclejeune": 2575,
|
3715 |
+
"camplejeune": 747,
|
3716 |
+
"usnavy": 3848,
|
3717 |
+
"promote": 2905,
|
3718 |
+
"households": 1846,
|
3719 |
+
"hurts": 1923,
|
3720 |
+
"taxpayers": 3571,
|
3721 |
+
"rehabilitation": 3035,
|
3722 |
+
"corporate": 1000,
|
3723 |
+
"accountability": 161,
|
3724 |
+
"elle": 1303,
|
3725 |
+
"collection": 926,
|
3726 |
+
"bcs0vfxa06s": 402,
|
3727 |
+
"bcqfprygafd": 398,
|
3728 |
+
"paid": 2699,
|
3729 |
+
"mine": 2446,
|
3730 |
+
"disability": 1172,
|
3731 |
+
"ins": 1990,
|
3732 |
+
"spine": 3396,
|
3733 |
+
"deformed": 1112,
|
3734 |
+
"largest": 2189,
|
3735 |
+
"surgery": 3532,
|
3736 |
+
"reshape": 3082,
|
3737 |
+
"yrs": 4072,
|
3738 |
+
"recoup": 3010,
|
3739 |
+
"pension": 2757,
|
3740 |
+
"2trade": 66,
|
3741 |
+
"represent": 3073,
|
3742 |
+
"china": 847,
|
3743 |
+
"exchange": 1366,
|
3744 |
+
"delegation": 1116,
|
3745 |
+
"enjoyed": 1321,
|
3746 |
+
"translating": 3733,
|
3747 |
+
"history": 1798,
|
3748 |
+
"txmedcenter": 3784,
|
3749 |
+
"womeninstem": 4005,
|
3750 |
+
"optometry": 2661,
|
3751 |
+
"givingback": 1605,
|
3752 |
+
"bcqt3peae7l": 399,
|
3753 |
+
"cardiologist": 768,
|
3754 |
+
"jianwei": 2069,
|
3755 |
+
"feng": 1444,
|
3756 |
+
"founded": 1520,
|
3757 |
+
"shanghai": 3259,
|
3758 |
+
"gleaming": 1611,
|
3759 |
+
"chinese": 848,
|
3760 |
+
"facility": 1399,
|
3761 |
+
"dedicated": 1102,
|
3762 |
+
"reversing": 3111,
|
3763 |
+
"disease": 1183,
|
3764 |
+
"medicine": 2408,
|
3765 |
+
"houinchina": 1839,
|
3766 |
+
"bcoqzuejef8": 397,
|
3767 |
+
"bcoe": 396,
|
3768 |
+
"xjj7rw": 4045,
|
3769 |
+
"bcqtpsagisq": 400,
|
3770 |
+
"daily": 1063,
|
3771 |
+
"sketch": 3318,
|
3772 |
+
"74": 121,
|
3773 |
+
"icon": 1929,
|
3774 |
+
"progress": 2898,
|
3775 |
+
"byb5mbgfgcv": 585,
|
3776 |
+
"confirm": 965,
|
3777 |
+
"sum1": 3509,
|
3778 |
+
"rcvd": 2980,
|
3779 |
+
"hlp": 1802,
|
3780 |
+
"b4": 346,
|
3781 |
+
"revisiting": 3113,
|
3782 |
+
"wasting": 3924,
|
3783 |
+
"amctheatres": 236,
|
3784 |
+
"regalmovies": 3027,
|
3785 |
+
"cinemark": 867,
|
3786 |
+
"latest": 2196,
|
3787 |
+
"flicks": 1481,
|
3788 |
+
"canoeing": 760,
|
3789 |
+
"whatismylife": 3969,
|
3790 |
+
"lunch": 2323,
|
3791 |
+
"luxury": 2324,
|
3792 |
+
"announced": 254,
|
3793 |
+
"properties": 2907,
|
3794 |
+
"meanwhile": 2399,
|
3795 |
+
"allowing": 222,
|
3796 |
+
"built": 553,
|
3797 |
+
"plain": 2804,
|
3798 |
+
"insanity": 1992,
|
3799 |
+
"screaming": 3212,
|
3800 |
+
"bloody": 489,
|
3801 |
+
"murder": 2510,
|
3802 |
+
"houstonraf": 1869,
|
3803 |
+
"sudden": 3499,
|
3804 |
+
"downtownhouston": 1231,
|
3805 |
+
"randomskystudio": 2972,
|
3806 |
+
"lowes": 2317,
|
3807 |
+
"blowing": 490,
|
3808 |
+
"masonitedoors": 2369,
|
3809 |
+
"vendor": 3862,
|
3810 |
+
"truck": 3749,
|
3811 |
+
"teamworkmakesthedreamwork": 3584,
|
3812 |
+
"based": 372,
|
3813 |
+
"decor": 1100,
|
3814 |
+
"looks": 2300,
|
3815 |
+
"d_d_bass": 1060,
|
3816 |
+
"moved": 2495,
|
3817 |
+
"hampton": 1693,
|
3818 |
+
"inn": 1987,
|
3819 |
+
"phoenixbeerusa": 2780,
|
3820 |
+
"houstonpolice": 1866,
|
3821 |
+
"crying": 1046,
|
3822 |
+
"sound": 3365,
|
3823 |
+
"lanesborough": 2187,
|
3824 |
+
"apartments": 267,
|
3825 |
+
"richdaleapts": 3118,
|
3826 |
+
"sounds": 3366,
|
3827 |
+
"multiple": 2507,
|
3828 |
+
"immigrant": 1946,
|
3829 |
+
"daylaborers": 1085,
|
3830 |
+
"confront": 967,
|
3831 |
+
"perfect": 2762,
|
3832 |
+
"exploitation": 1384,
|
3833 |
+
"cleanup": 884,
|
3834 |
+
"txbuilders": 3782,
|
3835 |
+
"houbuilders": 1838,
|
3836 |
+
"wagetheft": 3899,
|
3837 |
+
"labor": 2180,
|
3838 |
+
"daylabor": 1084,
|
3839 |
+
"harveyrecovery": 1722,
|
3840 |
+
"interc": 2006,
|
3841 |
+
"pt": 2922,
|
3842 |
+
"2ick7pv": 60,
|
3843 |
+
"reneefeltz": 3055,
|
3844 |
+
"alleges": 220,
|
3845 |
+
"rainwater": 2964,
|
3846 |
+
"accumulated": 162,
|
3847 |
+
"wastewater": 3923,
|
3848 |
+
"tanks": 3561,
|
3849 |
+
"overflowed": 2689,
|
3850 |
+
"containment": 984,
|
3851 |
+
"dikes": 1165,
|
3852 |
+
"mingling": 2447,
|
3853 |
+
"floodwater": 1489,
|
3854 |
+
"seems": 3225,
|
3855 |
+
"joker": 2090,
|
3856 |
+
"patience": 2734,
|
3857 |
+
"nostressing": 2593,
|
3858 |
+
"hurryup": 1920,
|
3859 |
+
"outdoor": 2681,
|
3860 |
+
"bcscihkh9w1": 403,
|
3861 |
+
"understand": 3806,
|
3862 |
+
"behind": 434,
|
3863 |
+
"schedule": 3204,
|
3864 |
+
"ridiculous": 3122,
|
3865 |
+
"customer": 1051,
|
3866 |
+
"managers": 2348,
|
3867 |
+
"run": 3158,
|
3868 |
+
"phone": 2781,
|
3869 |
+
"hang": 1698,
|
3870 |
+
"chef": 838,
|
3871 |
+
"jose": 2094,
|
3872 |
+
"doesnt": 1204,
|
3873 |
+
"flwx": 1496,
|
3874 |
+
"flawx": 1480,
|
3875 |
+
"lawx": 2204,
|
3876 |
+
"cawx": 793,
|
3877 |
+
"2yfcn0p": 69,
|
3878 |
+
"passed": 2728,
|
3879 |
+
"fluff": 1495,
|
3880 |
+
"dangers": 1070,
|
3881 |
+
"wapo": 3915,
|
3882 |
+
"2wze0la": 68,
|
3883 |
+
"tid": 3671,
|
3884 |
+
"ss_tw": 3415,
|
3885 |
+
"vs": 3897,
|
3886 |
+
"complex": 953,
|
3887 |
+
"ptcares": 2923,
|
3888 |
+
"foodie": 1505,
|
3889 |
+
"foodblogger": 1504,
|
3890 |
+
"vlogger": 3885,
|
3891 |
+
"alerts": 218,
|
3892 |
+
"pictures": 2791,
|
3893 |
+
"updates": 3829,
|
3894 |
+
"louisiana": 2311,
|
3895 |
+
"cypresstx": 1059,
|
3896 |
+
"tarping": 3563,
|
3897 |
+
"thegael": 3631,
|
3898 |
+
"8pm": 134,
|
3899 |
+
"bar": 365,
|
3900 |
+
"specials": 3387,
|
3901 |
+
"wallbangers": 3909,
|
3902 |
+
"winners": 3994,
|
3903 |
+
"jj": 2072,
|
3904 |
+
"watt": 3933,
|
3905 |
+
"mattress": 2379,
|
3906 |
+
"mack": 2329,
|
3907 |
+
"cajun": 738,
|
3908 |
+
"navy": 2537,
|
3909 |
+
"losers": 2304,
|
3910 |
+
"joel": 2080,
|
3911 |
+
"osteen": 2673,
|
3912 |
+
"arlington": 291,
|
3913 |
+
"rangers": 2974,
|
3914 |
+
"coldplay": 920,
|
3915 |
+
"manage": 2346,
|
3916 |
+
"ryan": 3166,
|
3917 |
+
"cannot": 759,
|
3918 |
+
"troll": 3746,
|
3919 |
+
"disliking": 1185,
|
3920 |
+
"sleep": 3324,
|
3921 |
+
"stomach": 3452,
|
3922 |
+
"bug": 549,
|
3923 |
+
"kept": 2130,
|
3924 |
+
"worked": 4018,
|
3925 |
+
"relations": 3039,
|
3926 |
+
"fake": 1405,
|
3927 |
+
"diamonds": 1155,
|
3928 |
+
"tub": 3760,
|
3929 |
+
"absolutely": 154,
|
3930 |
+
"devastating": 1149,
|
3931 |
+
"straight": 3464,
|
3932 |
+
"hot": 1836,
|
3933 |
+
"grew": 1670,
|
3934 |
+
"lose": 2303,
|
3935 |
+
"mind": 2443,
|
3936 |
+
"mother": 2491,
|
3937 |
+
"law": 2201,
|
3938 |
+
"letting": 2237,
|
3939 |
+
"hurting": 1922,
|
3940 |
+
"struck": 3481,
|
3941 |
+
"deplorable": 1128,
|
3942 |
+
"nuts": 2607,
|
3943 |
+
"struggling": 3484,
|
3944 |
+
"govt": 1645,
|
3945 |
+
"minorly": 2449,
|
3946 |
+
"wild": 3986,
|
3947 |
+
"barbara": 366,
|
3948 |
+
"torrential": 3712,
|
3949 |
+
"rains": 2963,
|
3950 |
+
"armadillo": 292,
|
3951 |
+
"rigged": 3124,
|
3952 |
+
"cities": 871,
|
3953 |
+
"arthur": 297,
|
3954 |
+
"bcc6syubxfz": 389,
|
3955 |
+
"wrist": 4040,
|
3956 |
+
"heavily": 1758,
|
3957 |
+
"myself": 2521,
|
3958 |
+
"nervous": 2550,
|
3959 |
+
"bang": 363,
|
3960 |
+
"shot": 3287,
|
3961 |
+
"friendly": 1534,
|
3962 |
+
"aint": 210,
|
3963 |
+
"wants": 3914,
|
3964 |
+
"mgmt": 2433,
|
3965 |
+
"terrible": 3593,
|
3966 |
+
"depths": 1131,
|
3967 |
+
"soul": 3364,
|
3968 |
+
"blows": 491,
|
3969 |
+
"short": 3286,
|
3970 |
+
"answers": 259,
|
3971 |
+
"questions": 2954,
|
3972 |
+
"threats": 3660,
|
3973 |
+
"featuring": 1429,
|
3974 |
+
"persse": 2772,
|
3975 |
+
"debboun": 1092,
|
3976 |
+
"2wvsw0f": 67,
|
3977 |
+
"retired": 3105,
|
3978 |
+
"steveharvey": 3445,
|
3979 |
+
"kidding": 2144,
|
3980 |
+
"pitcher": 2800,
|
3981 |
+
"matt": 2376,
|
3982 |
+
"scary": 3203,
|
3983 |
+
"outcome": 2679,
|
3984 |
+
"capture": 764,
|
3985 |
+
"social": 3340,
|
3986 |
+
"pure": 2939,
|
3987 |
+
"excitement": 1368,
|
3988 |
+
"worldseries": 4025,
|
3989 |
+
"snowintexas": 3337,
|
3990 |
+
"whatnext": 3970,
|
3991 |
+
"itsbeginningtolookalotlikechristmas": 2042,
|
3992 |
+
"feels": 1436,
|
3993 |
+
"biggest": 462,
|
3994 |
+
"overcome": 2687,
|
3995 |
+
"natural": 2534,
|
3996 |
+
"tragedies": 3726,
|
3997 |
+
"superbowlli": 3521,
|
3998 |
+
"historyearned": 1799,
|
3999 |
+
"springer": 3407,
|
4000 |
+
"hugs": 1894,
|
4001 |
+
"residences": 3083,
|
4002 |
+
"emancipation": 1307,
|
4003 |
+
"choir": 854,
|
4004 |
+
"megabus": 2416,
|
4005 |
+
"carols": 774,
|
4006 |
+
"hosted": 1834,
|
4007 |
+
"solar": 3345,
|
4008 |
+
"eclipse": 1278,
|
4009 |
+
"extreme": 1390,
|
4010 |
+
"raises": 2967,
|
4011 |
+
"37": 84,
|
4012 |
+
"deshaun": 1132,
|
4013 |
+
"watson": 3932,
|
4014 |
+
"tears": 3585,
|
4015 |
+
"acl": 164,
|
4016 |
+
"snowfall": 3334,
|
4017 |
+
"books": 502,
|
4018 |
+
"held": 1761,
|
4019 |
+
"boom": 503,
|
4020 |
+
"snowed": 3333,
|
4021 |
+
"texassnow2017": 3608,
|
4022 |
+
"comeback": 933,
|
4023 |
+
"freaking": 1528,
|
4024 |
+
"followed": 1501,
|
4025 |
+
"champs": 816,
|
4026 |
+
"none": 2584,
|
4027 |
+
"often": 2632,
|
4028 |
+
"hosts": 1835,
|
4029 |
+
"winter": 3996,
|
4030 |
+
"wonderland": 4008,
|
4031 |
+
"outdone": 2680,
|
4032 |
+
"miracleshappen": 2452,
|
4033 |
+
"gon": 1628,
|
4034 |
+
"try": 3755,
|
4035 |
+
"winning": 3995,
|
4036 |
+
"legit": 2226,
|
4037 |
+
"snowing": 3335,
|
4038 |
+
"officially": 2627,
|
4039 |
+
"quite": 2956,
|
4040 |
+
"iwillneverforget2017": 2046,
|
4041 |
+
"2008": 35,
|
4042 |
+
"ike": 1938,
|
4043 |
+
"devastates": 1148,
|
4044 |
+
"snowinggggg": 3336,
|
4045 |
+
"pulls": 2936,
|
4046 |
+
"everyones": 1356,
|
4047 |
+
"attraction": 326,
|
4048 |
+
"baseballvictory": 371,
|
4049 |
+
"texasforever": 3604,
|
4050 |
+
"salvationarmyus": 3182,
|
4051 |
+
"reliefforharvey": 3044,
|
4052 |
+
"kleinspirit": 2163,
|
4053 |
+
"byb0qekjgp6": 582,
|
4054 |
+
"wea": 3940,
|
4055 |
+
"challengeaccepted": 809,
|
4056 |
+
"became": 422,
|
4057 |
+
"encourage": 1314,
|
4058 |
+
"uplift": 3831,
|
4059 |
+
"hisd_supe": 1794,
|
4060 |
+
"blessing": 480,
|
4061 |
+
"ruined": 3157,
|
4062 |
+
"distribution": 1190,
|
4063 |
+
"631": 112,
|
4064 |
+
"individuals": 1973,
|
4065 |
+
"253": 46,
|
4066 |
+
"givehope": 1603,
|
4067 |
+
"disasters": 1177,
|
4068 |
+
"tzuchi": 3789,
|
4069 |
+
"givingreliefday": 1606,
|
4070 |
+
"assist": 314,
|
4071 |
+
"byy1vgyan1g": 710,
|
4072 |
+
"rescued": 3079,
|
4073 |
+
"fear": 1426,
|
4074 |
+
"eyes": 1393,
|
4075 |
+
"pets": 2775,
|
4076 |
+
"gid_man84": 1593,
|
4077 |
+
"wewillrebuild": 3965,
|
4078 |
+
"agwesthouston": 202,
|
4079 |
+
"texastough": 3610,
|
4080 |
+
"reporting": 3071,
|
4081 |
+
"byb4cixacai": 584,
|
4082 |
+
"damaged": 1066,
|
4083 |
+
"appraisals": 278,
|
4084 |
+
"jan": 2055,
|
4085 |
+
"considered": 976,
|
4086 |
+
"valuation": 3855,
|
4087 |
+
"2katwnu": 61,
|
4088 |
+
"graphics": 1655,
|
4089 |
+
"excellent": 1364,
|
4090 |
+
"examples": 1362,
|
4091 |
+
"visualizing": 3883,
|
4092 |
+
"houstonafterharvey": 1851,
|
4093 |
+
"datajournalism": 1074,
|
4094 |
+
"twdb": 3773,
|
4095 |
+
"txwater": 3785,
|
4096 |
+
"infrastructure": 1982,
|
4097 |
+
"fatality": 1422,
|
4098 |
+
"injuries": 1986,
|
4099 |
+
"byrtconasvu": 675,
|
4100 |
+
"documents": 1201,
|
4101 |
+
"redesignated": 3019,
|
4102 |
+
"zones": 4083,
|
4103 |
+
"thewoodlands": 3643,
|
4104 |
+
"woodlandstx": 4012,
|
4105 |
+
"2bcdron": 57,
|
4106 |
+
"stat": 3429,
|
4107 |
+
"receding": 3001,
|
4108 |
+
"slammed": 3323,
|
4109 |
+
"byiodcrgvdy": 634,
|
4110 |
+
"current": 1049,
|
4111 |
+
"byruvnngw5k": 676
|
4112 |
+
}
|
4113 |
+
}
|
4114 |
+
}
|
topic_embeddings.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:424a94e26b16ecef876276c005189898d919d07bb1a2ba8b13741b304fdba860
|
3 |
+
size 16984
|
topics.json
ADDED
@@ -0,0 +1,1365 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"topic_representations": {
|
3 |
+
"-1": [
|
4 |
+
[
|
5 |
+
"medicare",
|
6 |
+
0.8955153226852417
|
7 |
+
],
|
8 |
+
[
|
9 |
+
"theft",
|
10 |
+
0.8535788059234619
|
11 |
+
],
|
12 |
+
[
|
13 |
+
"medical",
|
14 |
+
0.8435977697372437
|
15 |
+
],
|
16 |
+
[
|
17 |
+
"harvey",
|
18 |
+
0.8430477976799011
|
19 |
+
],
|
20 |
+
[
|
21 |
+
"identity",
|
22 |
+
0.8389641642570496
|
23 |
+
],
|
24 |
+
[
|
25 |
+
"their",
|
26 |
+
0.8366485834121704
|
27 |
+
],
|
28 |
+
[
|
29 |
+
"all",
|
30 |
+
0.8325579166412354
|
31 |
+
],
|
32 |
+
[
|
33 |
+
"takes",
|
34 |
+
0.8319923281669617
|
35 |
+
],
|
36 |
+
[
|
37 |
+
"us",
|
38 |
+
0.8296456336975098
|
39 |
+
],
|
40 |
+
[
|
41 |
+
"for",
|
42 |
+
0.8295441269874573
|
43 |
+
]
|
44 |
+
],
|
45 |
+
"0": [
|
46 |
+
[
|
47 |
+
"gofundme",
|
48 |
+
0.8726317882537842
|
49 |
+
],
|
50 |
+
[
|
51 |
+
"donate",
|
52 |
+
0.8683326840400696
|
53 |
+
],
|
54 |
+
[
|
55 |
+
"houstonstrong",
|
56 |
+
0.8644014596939087
|
57 |
+
],
|
58 |
+
[
|
59 |
+
"texas",
|
60 |
+
0.8631389737129211
|
61 |
+
],
|
62 |
+
[
|
63 |
+
"houston",
|
64 |
+
0.8629835247993469
|
65 |
+
],
|
66 |
+
[
|
67 |
+
"donating",
|
68 |
+
0.8624067306518555
|
69 |
+
],
|
70 |
+
[
|
71 |
+
"hurricaneharvey",
|
72 |
+
0.8574003577232361
|
73 |
+
],
|
74 |
+
[
|
75 |
+
"give",
|
76 |
+
0.8569909334182739
|
77 |
+
],
|
78 |
+
[
|
79 |
+
"friends",
|
80 |
+
0.8564832210540771
|
81 |
+
],
|
82 |
+
[
|
83 |
+
"harvey",
|
84 |
+
0.8544131517410278
|
85 |
+
]
|
86 |
+
],
|
87 |
+
"1": [
|
88 |
+
[
|
89 |
+
"plaza",
|
90 |
+
0.8947713375091553
|
91 |
+
],
|
92 |
+
[
|
93 |
+
"txmedcenter",
|
94 |
+
0.8715131878852844
|
95 |
+
],
|
96 |
+
[
|
97 |
+
"medical",
|
98 |
+
0.8684705495834351
|
99 |
+
],
|
100 |
+
[
|
101 |
+
"instagram",
|
102 |
+
0.8632118105888367
|
103 |
+
],
|
104 |
+
[
|
105 |
+
"here",
|
106 |
+
0.8609963059425354
|
107 |
+
],
|
108 |
+
[
|
109 |
+
"hospital",
|
110 |
+
0.858394205570221
|
111 |
+
],
|
112 |
+
[
|
113 |
+
"in",
|
114 |
+
0.8583239912986755
|
115 |
+
],
|
116 |
+
[
|
117 |
+
"there",
|
118 |
+
0.8581446409225464
|
119 |
+
],
|
120 |
+
[
|
121 |
+
"center",
|
122 |
+
0.8538973927497864
|
123 |
+
],
|
124 |
+
[
|
125 |
+
"the",
|
126 |
+
0.8497641682624817
|
127 |
+
]
|
128 |
+
],
|
129 |
+
"2": [
|
130 |
+
[
|
131 |
+
"hurricaneharvey",
|
132 |
+
0.8714401125907898
|
133 |
+
],
|
134 |
+
[
|
135 |
+
"houston",
|
136 |
+
0.8662378191947937
|
137 |
+
],
|
138 |
+
[
|
139 |
+
"harvey",
|
140 |
+
0.8627565503120422
|
141 |
+
],
|
142 |
+
[
|
143 |
+
"hurricane",
|
144 |
+
0.8611820340156555
|
145 |
+
],
|
146 |
+
[
|
147 |
+
"houstonflood",
|
148 |
+
0.851617157459259
|
149 |
+
],
|
150 |
+
[
|
151 |
+
"houstonraf",
|
152 |
+
0.8426744341850281
|
153 |
+
],
|
154 |
+
[
|
155 |
+
"storm",
|
156 |
+
0.8418062329292297
|
157 |
+
],
|
158 |
+
[
|
159 |
+
"foodblogger",
|
160 |
+
0.8380143642425537
|
161 |
+
],
|
162 |
+
[
|
163 |
+
"houstonpolice",
|
164 |
+
0.8378098011016846
|
165 |
+
],
|
166 |
+
[
|
167 |
+
"apartment",
|
168 |
+
0.8374165296554565
|
169 |
+
]
|
170 |
+
],
|
171 |
+
"3": [
|
172 |
+
[
|
173 |
+
"harvey",
|
174 |
+
0.9001993536949158
|
175 |
+
],
|
176 |
+
[
|
177 |
+
"hurricane",
|
178 |
+
0.886783242225647
|
179 |
+
],
|
180 |
+
[
|
181 |
+
"flooded",
|
182 |
+
0.883945643901825
|
183 |
+
],
|
184 |
+
[
|
185 |
+
"houston",
|
186 |
+
0.8761025071144104
|
187 |
+
],
|
188 |
+
[
|
189 |
+
"tx",
|
190 |
+
0.8594523072242737
|
191 |
+
],
|
192 |
+
[
|
193 |
+
"rains",
|
194 |
+
0.8434157371520996
|
195 |
+
],
|
196 |
+
[
|
197 |
+
"hurting",
|
198 |
+
0.8398659825325012
|
199 |
+
],
|
200 |
+
[
|
201 |
+
"lost",
|
202 |
+
0.8363582491874695
|
203 |
+
],
|
204 |
+
[
|
205 |
+
"shit",
|
206 |
+
0.8357421159744263
|
207 |
+
],
|
208 |
+
[
|
209 |
+
"lose",
|
210 |
+
0.8357206583023071
|
211 |
+
]
|
212 |
+
],
|
213 |
+
"4": [
|
214 |
+
[
|
215 |
+
"houston",
|
216 |
+
0.8930066823959351
|
217 |
+
],
|
218 |
+
[
|
219 |
+
"astros",
|
220 |
+
0.8825562596321106
|
221 |
+
],
|
222 |
+
[
|
223 |
+
"harvey",
|
224 |
+
0.8736034035682678
|
225 |
+
],
|
226 |
+
[
|
227 |
+
"snow",
|
228 |
+
0.8731540441513062
|
229 |
+
],
|
230 |
+
[
|
231 |
+
"houstonstrong",
|
232 |
+
0.8727693557739258
|
233 |
+
],
|
234 |
+
[
|
235 |
+
"houstonsnow",
|
236 |
+
0.8622442483901978
|
237 |
+
],
|
238 |
+
[
|
239 |
+
"superbowl",
|
240 |
+
0.8535255789756775
|
241 |
+
],
|
242 |
+
[
|
243 |
+
"snowed",
|
244 |
+
0.8524239659309387
|
245 |
+
],
|
246 |
+
[
|
247 |
+
"snowing",
|
248 |
+
0.8506771326065063
|
249 |
+
],
|
250 |
+
[
|
251 |
+
"hurricane",
|
252 |
+
0.8504209518432617
|
253 |
+
]
|
254 |
+
],
|
255 |
+
"5": [
|
256 |
+
[
|
257 |
+
"harvey",
|
258 |
+
0.8992438912391663
|
259 |
+
],
|
260 |
+
[
|
261 |
+
"reliefforharvey",
|
262 |
+
0.8824164867401123
|
263 |
+
],
|
264 |
+
[
|
265 |
+
"hurricaneharvey",
|
266 |
+
0.8823093175888062
|
267 |
+
],
|
268 |
+
[
|
269 |
+
"relief",
|
270 |
+
0.8744150400161743
|
271 |
+
],
|
272 |
+
[
|
273 |
+
"houstonians",
|
274 |
+
0.8735128045082092
|
275 |
+
],
|
276 |
+
[
|
277 |
+
"helping",
|
278 |
+
0.8720337748527527
|
279 |
+
],
|
280 |
+
[
|
281 |
+
"disasters",
|
282 |
+
0.8668538331985474
|
283 |
+
],
|
284 |
+
[
|
285 |
+
"hurricane",
|
286 |
+
0.8656492233276367
|
287 |
+
],
|
288 |
+
[
|
289 |
+
"floods",
|
290 |
+
0.8646556735038757
|
291 |
+
],
|
292 |
+
[
|
293 |
+
"donated",
|
294 |
+
0.8619292378425598
|
295 |
+
]
|
296 |
+
],
|
297 |
+
"6": [
|
298 |
+
[
|
299 |
+
"rescued",
|
300 |
+
0.9001535177230835
|
301 |
+
],
|
302 |
+
[
|
303 |
+
"hurricaneharvey",
|
304 |
+
0.880566418170929
|
305 |
+
],
|
306 |
+
[
|
307 |
+
"",
|
308 |
+
0.8775564432144165
|
309 |
+
],
|
310 |
+
[
|
311 |
+
"",
|
312 |
+
0.8775564432144165
|
313 |
+
],
|
314 |
+
[
|
315 |
+
"",
|
316 |
+
0.8775564432144165
|
317 |
+
],
|
318 |
+
[
|
319 |
+
"",
|
320 |
+
0.8775564432144165
|
321 |
+
],
|
322 |
+
[
|
323 |
+
"",
|
324 |
+
0.8775564432144165
|
325 |
+
],
|
326 |
+
[
|
327 |
+
"",
|
328 |
+
0.8775564432144165
|
329 |
+
],
|
330 |
+
[
|
331 |
+
"",
|
332 |
+
0.8775564432144165
|
333 |
+
],
|
334 |
+
[
|
335 |
+
"",
|
336 |
+
0.8775564432144165
|
337 |
+
]
|
338 |
+
],
|
339 |
+
"7": [
|
340 |
+
[
|
341 |
+
"hurricaneharvey",
|
342 |
+
0.9384258985519409
|
343 |
+
],
|
344 |
+
[
|
345 |
+
"hurricane",
|
346 |
+
0.9019902348518372
|
347 |
+
],
|
348 |
+
[
|
349 |
+
"",
|
350 |
+
0.8873435854911804
|
351 |
+
],
|
352 |
+
[
|
353 |
+
"",
|
354 |
+
0.8873435854911804
|
355 |
+
],
|
356 |
+
[
|
357 |
+
"",
|
358 |
+
0.8873435854911804
|
359 |
+
],
|
360 |
+
[
|
361 |
+
"",
|
362 |
+
0.8873435854911804
|
363 |
+
],
|
364 |
+
[
|
365 |
+
"",
|
366 |
+
0.8873435854911804
|
367 |
+
],
|
368 |
+
[
|
369 |
+
"",
|
370 |
+
0.8873435854911804
|
371 |
+
],
|
372 |
+
[
|
373 |
+
"",
|
374 |
+
0.8873435854911804
|
375 |
+
],
|
376 |
+
[
|
377 |
+
"",
|
378 |
+
0.8873435854911804
|
379 |
+
]
|
380 |
+
],
|
381 |
+
"8": [
|
382 |
+
[
|
383 |
+
"harvey",
|
384 |
+
0.8979874849319458
|
385 |
+
],
|
386 |
+
[
|
387 |
+
"flooding",
|
388 |
+
0.8955876231193542
|
389 |
+
],
|
390 |
+
[
|
391 |
+
"houston",
|
392 |
+
0.8912810683250427
|
393 |
+
],
|
394 |
+
[
|
395 |
+
"floodwaters",
|
396 |
+
0.8902901411056519
|
397 |
+
],
|
398 |
+
[
|
399 |
+
"flood",
|
400 |
+
0.8863808512687683
|
401 |
+
],
|
402 |
+
[
|
403 |
+
"hurricaneharvey",
|
404 |
+
0.8728881478309631
|
405 |
+
],
|
406 |
+
[
|
407 |
+
"",
|
408 |
+
0.8573969602584839
|
409 |
+
],
|
410 |
+
[
|
411 |
+
"",
|
412 |
+
0.8573969602584839
|
413 |
+
],
|
414 |
+
[
|
415 |
+
"",
|
416 |
+
0.8573969602584839
|
417 |
+
],
|
418 |
+
[
|
419 |
+
"",
|
420 |
+
0.8573969602584839
|
421 |
+
]
|
422 |
+
],
|
423 |
+
"9": [
|
424 |
+
[
|
425 |
+
"houston",
|
426 |
+
0.8810035586357117
|
427 |
+
],
|
428 |
+
[
|
429 |
+
"hurricaneseason",
|
430 |
+
0.8645628690719604
|
431 |
+
],
|
432 |
+
[
|
433 |
+
"hurricaneharvey",
|
434 |
+
0.8632858395576477
|
435 |
+
],
|
436 |
+
[
|
437 |
+
"harvey",
|
438 |
+
0.857503354549408
|
439 |
+
],
|
440 |
+
[
|
441 |
+
"weather",
|
442 |
+
0.8570172786712646
|
443 |
+
],
|
444 |
+
[
|
445 |
+
"hurricane",
|
446 |
+
0.8410874605178833
|
447 |
+
],
|
448 |
+
[
|
449 |
+
"",
|
450 |
+
0.8303780555725098
|
451 |
+
],
|
452 |
+
[
|
453 |
+
"",
|
454 |
+
0.8303780555725098
|
455 |
+
],
|
456 |
+
[
|
457 |
+
"",
|
458 |
+
0.8303780555725098
|
459 |
+
],
|
460 |
+
[
|
461 |
+
"",
|
462 |
+
0.8303780555725098
|
463 |
+
]
|
464 |
+
]
|
465 |
+
},
|
466 |
+
"topics": [
|
467 |
+
0,
|
468 |
+
0,
|
469 |
+
0,
|
470 |
+
-1,
|
471 |
+
-1,
|
472 |
+
0,
|
473 |
+
0,
|
474 |
+
2,
|
475 |
+
0,
|
476 |
+
2,
|
477 |
+
5,
|
478 |
+
0,
|
479 |
+
0,
|
480 |
+
0,
|
481 |
+
0,
|
482 |
+
0,
|
483 |
+
5,
|
484 |
+
0,
|
485 |
+
0,
|
486 |
+
0,
|
487 |
+
4,
|
488 |
+
0,
|
489 |
+
0,
|
490 |
+
0,
|
491 |
+
-1,
|
492 |
+
2,
|
493 |
+
0,
|
494 |
+
0,
|
495 |
+
0,
|
496 |
+
0,
|
497 |
+
0,
|
498 |
+
0,
|
499 |
+
0,
|
500 |
+
0,
|
501 |
+
6,
|
502 |
+
0,
|
503 |
+
0,
|
504 |
+
6,
|
505 |
+
0,
|
506 |
+
0,
|
507 |
+
0,
|
508 |
+
5,
|
509 |
+
0,
|
510 |
+
2,
|
511 |
+
0,
|
512 |
+
0,
|
513 |
+
0,
|
514 |
+
0,
|
515 |
+
0,
|
516 |
+
0,
|
517 |
+
-1,
|
518 |
+
-1,
|
519 |
+
-1,
|
520 |
+
0,
|
521 |
+
0,
|
522 |
+
-1,
|
523 |
+
0,
|
524 |
+
0,
|
525 |
+
0,
|
526 |
+
0,
|
527 |
+
0,
|
528 |
+
0,
|
529 |
+
0,
|
530 |
+
0,
|
531 |
+
0,
|
532 |
+
0,
|
533 |
+
0,
|
534 |
+
0,
|
535 |
+
0,
|
536 |
+
0,
|
537 |
+
0,
|
538 |
+
0,
|
539 |
+
0,
|
540 |
+
-1,
|
541 |
+
6,
|
542 |
+
0,
|
543 |
+
0,
|
544 |
+
0,
|
545 |
+
0,
|
546 |
+
0,
|
547 |
+
0,
|
548 |
+
0,
|
549 |
+
0,
|
550 |
+
0,
|
551 |
+
0,
|
552 |
+
-1,
|
553 |
+
0,
|
554 |
+
0,
|
555 |
+
0,
|
556 |
+
0,
|
557 |
+
-1,
|
558 |
+
0,
|
559 |
+
0,
|
560 |
+
0,
|
561 |
+
0,
|
562 |
+
0,
|
563 |
+
0,
|
564 |
+
0,
|
565 |
+
-1,
|
566 |
+
0,
|
567 |
+
0,
|
568 |
+
1,
|
569 |
+
0,
|
570 |
+
-1,
|
571 |
+
0,
|
572 |
+
0,
|
573 |
+
0,
|
574 |
+
0,
|
575 |
+
0,
|
576 |
+
0,
|
577 |
+
-1,
|
578 |
+
5,
|
579 |
+
2,
|
580 |
+
-1,
|
581 |
+
-1,
|
582 |
+
0,
|
583 |
+
0,
|
584 |
+
0,
|
585 |
+
-1,
|
586 |
+
5,
|
587 |
+
0,
|
588 |
+
-1,
|
589 |
+
-1,
|
590 |
+
-1,
|
591 |
+
0,
|
592 |
+
2,
|
593 |
+
-1,
|
594 |
+
0,
|
595 |
+
0,
|
596 |
+
0,
|
597 |
+
0,
|
598 |
+
-1,
|
599 |
+
0,
|
600 |
+
0,
|
601 |
+
0,
|
602 |
+
6,
|
603 |
+
-1,
|
604 |
+
0,
|
605 |
+
0,
|
606 |
+
-1,
|
607 |
+
0,
|
608 |
+
3,
|
609 |
+
0,
|
610 |
+
-1,
|
611 |
+
3,
|
612 |
+
0,
|
613 |
+
5,
|
614 |
+
-1,
|
615 |
+
0,
|
616 |
+
0,
|
617 |
+
3,
|
618 |
+
0,
|
619 |
+
0,
|
620 |
+
3,
|
621 |
+
0,
|
622 |
+
0,
|
623 |
+
-1,
|
624 |
+
0,
|
625 |
+
5,
|
626 |
+
3,
|
627 |
+
0,
|
628 |
+
0,
|
629 |
+
5,
|
630 |
+
0,
|
631 |
+
0,
|
632 |
+
0,
|
633 |
+
0,
|
634 |
+
0,
|
635 |
+
0,
|
636 |
+
0,
|
637 |
+
0,
|
638 |
+
0,
|
639 |
+
0,
|
640 |
+
0,
|
641 |
+
0,
|
642 |
+
1,
|
643 |
+
0,
|
644 |
+
0,
|
645 |
+
0,
|
646 |
+
0,
|
647 |
+
0,
|
648 |
+
-1,
|
649 |
+
1,
|
650 |
+
1,
|
651 |
+
1,
|
652 |
+
1,
|
653 |
+
1,
|
654 |
+
1,
|
655 |
+
1,
|
656 |
+
0,
|
657 |
+
1,
|
658 |
+
1,
|
659 |
+
1,
|
660 |
+
1,
|
661 |
+
1,
|
662 |
+
1,
|
663 |
+
1,
|
664 |
+
1,
|
665 |
+
4,
|
666 |
+
1,
|
667 |
+
-1,
|
668 |
+
0,
|
669 |
+
-1,
|
670 |
+
0,
|
671 |
+
-1,
|
672 |
+
-1,
|
673 |
+
0,
|
674 |
+
-1,
|
675 |
+
0,
|
676 |
+
0,
|
677 |
+
0,
|
678 |
+
0,
|
679 |
+
7,
|
680 |
+
0,
|
681 |
+
-1,
|
682 |
+
5,
|
683 |
+
0,
|
684 |
+
0,
|
685 |
+
0,
|
686 |
+
0,
|
687 |
+
2,
|
688 |
+
0,
|
689 |
+
0,
|
690 |
+
0,
|
691 |
+
4,
|
692 |
+
3,
|
693 |
+
0,
|
694 |
+
0,
|
695 |
+
3,
|
696 |
+
3,
|
697 |
+
0,
|
698 |
+
0,
|
699 |
+
3,
|
700 |
+
-1,
|
701 |
+
-1,
|
702 |
+
0,
|
703 |
+
0,
|
704 |
+
0,
|
705 |
+
-1,
|
706 |
+
0,
|
707 |
+
0,
|
708 |
+
0,
|
709 |
+
0,
|
710 |
+
0,
|
711 |
+
5,
|
712 |
+
-1,
|
713 |
+
-1,
|
714 |
+
-1,
|
715 |
+
0,
|
716 |
+
0,
|
717 |
+
0,
|
718 |
+
0,
|
719 |
+
0,
|
720 |
+
-1,
|
721 |
+
-1,
|
722 |
+
0,
|
723 |
+
-1,
|
724 |
+
0,
|
725 |
+
0,
|
726 |
+
0,
|
727 |
+
0,
|
728 |
+
0,
|
729 |
+
-1,
|
730 |
+
3,
|
731 |
+
0,
|
732 |
+
0,
|
733 |
+
-1,
|
734 |
+
7,
|
735 |
+
0,
|
736 |
+
0,
|
737 |
+
-1,
|
738 |
+
0,
|
739 |
+
0,
|
740 |
+
0,
|
741 |
+
0,
|
742 |
+
0,
|
743 |
+
0,
|
744 |
+
0,
|
745 |
+
0,
|
746 |
+
0,
|
747 |
+
0,
|
748 |
+
0,
|
749 |
+
0,
|
750 |
+
0,
|
751 |
+
0,
|
752 |
+
0,
|
753 |
+
0,
|
754 |
+
0,
|
755 |
+
0,
|
756 |
+
0,
|
757 |
+
0,
|
758 |
+
0,
|
759 |
+
0,
|
760 |
+
0,
|
761 |
+
0,
|
762 |
+
0,
|
763 |
+
-1,
|
764 |
+
-1,
|
765 |
+
-1,
|
766 |
+
-1,
|
767 |
+
0,
|
768 |
+
0,
|
769 |
+
0,
|
770 |
+
0,
|
771 |
+
-1,
|
772 |
+
-1,
|
773 |
+
-1,
|
774 |
+
-1,
|
775 |
+
0,
|
776 |
+
-1,
|
777 |
+
0,
|
778 |
+
0,
|
779 |
+
-1,
|
780 |
+
0,
|
781 |
+
-1,
|
782 |
+
0,
|
783 |
+
-1,
|
784 |
+
3,
|
785 |
+
3,
|
786 |
+
-1,
|
787 |
+
3,
|
788 |
+
5,
|
789 |
+
-1,
|
790 |
+
0,
|
791 |
+
0,
|
792 |
+
5,
|
793 |
+
0,
|
794 |
+
0,
|
795 |
+
3,
|
796 |
+
-1,
|
797 |
+
0,
|
798 |
+
0,
|
799 |
+
-1,
|
800 |
+
-1,
|
801 |
+
3,
|
802 |
+
3,
|
803 |
+
4,
|
804 |
+
0,
|
805 |
+
2,
|
806 |
+
0,
|
807 |
+
0,
|
808 |
+
-1,
|
809 |
+
0,
|
810 |
+
7,
|
811 |
+
-1,
|
812 |
+
0,
|
813 |
+
4,
|
814 |
+
0,
|
815 |
+
0,
|
816 |
+
2,
|
817 |
+
0,
|
818 |
+
8,
|
819 |
+
0,
|
820 |
+
0,
|
821 |
+
2,
|
822 |
+
0,
|
823 |
+
0,
|
824 |
+
0,
|
825 |
+
0,
|
826 |
+
0,
|
827 |
+
0,
|
828 |
+
0,
|
829 |
+
0,
|
830 |
+
0,
|
831 |
+
0,
|
832 |
+
0,
|
833 |
+
0,
|
834 |
+
0,
|
835 |
+
0,
|
836 |
+
0,
|
837 |
+
0,
|
838 |
+
0,
|
839 |
+
0,
|
840 |
+
0,
|
841 |
+
0,
|
842 |
+
1,
|
843 |
+
1,
|
844 |
+
2,
|
845 |
+
1,
|
846 |
+
0,
|
847 |
+
1,
|
848 |
+
1,
|
849 |
+
1,
|
850 |
+
1,
|
851 |
+
1,
|
852 |
+
1,
|
853 |
+
0,
|
854 |
+
1,
|
855 |
+
-1,
|
856 |
+
1,
|
857 |
+
1,
|
858 |
+
1,
|
859 |
+
1,
|
860 |
+
1,
|
861 |
+
0,
|
862 |
+
0,
|
863 |
+
0,
|
864 |
+
0,
|
865 |
+
0,
|
866 |
+
0,
|
867 |
+
0,
|
868 |
+
0,
|
869 |
+
0,
|
870 |
+
0,
|
871 |
+
0,
|
872 |
+
0,
|
873 |
+
0,
|
874 |
+
0,
|
875 |
+
0,
|
876 |
+
0,
|
877 |
+
0,
|
878 |
+
-1,
|
879 |
+
-1,
|
880 |
+
0,
|
881 |
+
0,
|
882 |
+
1,
|
883 |
+
1,
|
884 |
+
1,
|
885 |
+
-1,
|
886 |
+
1,
|
887 |
+
1,
|
888 |
+
-1,
|
889 |
+
-1,
|
890 |
+
-1,
|
891 |
+
-1,
|
892 |
+
-1,
|
893 |
+
-1,
|
894 |
+
-1,
|
895 |
+
-1,
|
896 |
+
-1,
|
897 |
+
0,
|
898 |
+
-1,
|
899 |
+
1,
|
900 |
+
-1,
|
901 |
+
1,
|
902 |
+
0,
|
903 |
+
0,
|
904 |
+
0,
|
905 |
+
0,
|
906 |
+
0,
|
907 |
+
0,
|
908 |
+
0,
|
909 |
+
0,
|
910 |
+
0,
|
911 |
+
0,
|
912 |
+
0,
|
913 |
+
0,
|
914 |
+
0,
|
915 |
+
0,
|
916 |
+
0,
|
917 |
+
0,
|
918 |
+
0,
|
919 |
+
0,
|
920 |
+
0,
|
921 |
+
0,
|
922 |
+
0,
|
923 |
+
0,
|
924 |
+
0,
|
925 |
+
0,
|
926 |
+
0,
|
927 |
+
2,
|
928 |
+
0,
|
929 |
+
0,
|
930 |
+
2,
|
931 |
+
0,
|
932 |
+
0,
|
933 |
+
0,
|
934 |
+
0,
|
935 |
+
0,
|
936 |
+
0,
|
937 |
+
-1,
|
938 |
+
2,
|
939 |
+
0,
|
940 |
+
-1,
|
941 |
+
0,
|
942 |
+
0,
|
943 |
+
0,
|
944 |
+
0,
|
945 |
+
0,
|
946 |
+
0,
|
947 |
+
0,
|
948 |
+
0,
|
949 |
+
0,
|
950 |
+
0,
|
951 |
+
-1,
|
952 |
+
0,
|
953 |
+
0,
|
954 |
+
0,
|
955 |
+
0,
|
956 |
+
0,
|
957 |
+
0,
|
958 |
+
0,
|
959 |
+
0,
|
960 |
+
0,
|
961 |
+
0,
|
962 |
+
0,
|
963 |
+
0,
|
964 |
+
0,
|
965 |
+
5,
|
966 |
+
0,
|
967 |
+
0,
|
968 |
+
0,
|
969 |
+
-1,
|
970 |
+
-1,
|
971 |
+
0,
|
972 |
+
0,
|
973 |
+
0,
|
974 |
+
-1,
|
975 |
+
0,
|
976 |
+
0,
|
977 |
+
0,
|
978 |
+
0,
|
979 |
+
-1,
|
980 |
+
-1,
|
981 |
+
0,
|
982 |
+
0,
|
983 |
+
0,
|
984 |
+
0,
|
985 |
+
0,
|
986 |
+
0,
|
987 |
+
0,
|
988 |
+
0,
|
989 |
+
0,
|
990 |
+
0,
|
991 |
+
0,
|
992 |
+
0,
|
993 |
+
0,
|
994 |
+
0,
|
995 |
+
0,
|
996 |
+
0,
|
997 |
+
0,
|
998 |
+
0,
|
999 |
+
0,
|
1000 |
+
0,
|
1001 |
+
0,
|
1002 |
+
0,
|
1003 |
+
1,
|
1004 |
+
1,
|
1005 |
+
1,
|
1006 |
+
-1,
|
1007 |
+
1,
|
1008 |
+
1,
|
1009 |
+
1,
|
1010 |
+
-1,
|
1011 |
+
1,
|
1012 |
+
1,
|
1013 |
+
1,
|
1014 |
+
1,
|
1015 |
+
1,
|
1016 |
+
1,
|
1017 |
+
0,
|
1018 |
+
1,
|
1019 |
+
1,
|
1020 |
+
0,
|
1021 |
+
1,
|
1022 |
+
1,
|
1023 |
+
1,
|
1024 |
+
1,
|
1025 |
+
1,
|
1026 |
+
-1,
|
1027 |
+
-1,
|
1028 |
+
0,
|
1029 |
+
-1,
|
1030 |
+
-1,
|
1031 |
+
-1,
|
1032 |
+
0,
|
1033 |
+
0,
|
1034 |
+
0,
|
1035 |
+
-1,
|
1036 |
+
2,
|
1037 |
+
2,
|
1038 |
+
0,
|
1039 |
+
0,
|
1040 |
+
0,
|
1041 |
+
0,
|
1042 |
+
0,
|
1043 |
+
4,
|
1044 |
+
4,
|
1045 |
+
0,
|
1046 |
+
3,
|
1047 |
+
3,
|
1048 |
+
3,
|
1049 |
+
-1,
|
1050 |
+
-1,
|
1051 |
+
0,
|
1052 |
+
0,
|
1053 |
+
0,
|
1054 |
+
4,
|
1055 |
+
4,
|
1056 |
+
3,
|
1057 |
+
4,
|
1058 |
+
4,
|
1059 |
+
4,
|
1060 |
+
4,
|
1061 |
+
4,
|
1062 |
+
4,
|
1063 |
+
4,
|
1064 |
+
4,
|
1065 |
+
4,
|
1066 |
+
4,
|
1067 |
+
4,
|
1068 |
+
4,
|
1069 |
+
4,
|
1070 |
+
0,
|
1071 |
+
-1,
|
1072 |
+
3,
|
1073 |
+
0,
|
1074 |
+
-1,
|
1075 |
+
0,
|
1076 |
+
-1,
|
1077 |
+
8,
|
1078 |
+
-1,
|
1079 |
+
0,
|
1080 |
+
1,
|
1081 |
+
1,
|
1082 |
+
1,
|
1083 |
+
1,
|
1084 |
+
1,
|
1085 |
+
1,
|
1086 |
+
1,
|
1087 |
+
-1,
|
1088 |
+
1,
|
1089 |
+
0,
|
1090 |
+
1,
|
1091 |
+
1,
|
1092 |
+
1,
|
1093 |
+
1,
|
1094 |
+
1,
|
1095 |
+
1,
|
1096 |
+
0,
|
1097 |
+
-1,
|
1098 |
+
1,
|
1099 |
+
3,
|
1100 |
+
0,
|
1101 |
+
3,
|
1102 |
+
3,
|
1103 |
+
-1,
|
1104 |
+
-1,
|
1105 |
+
0,
|
1106 |
+
0,
|
1107 |
+
0,
|
1108 |
+
0,
|
1109 |
+
3,
|
1110 |
+
0,
|
1111 |
+
-1,
|
1112 |
+
3,
|
1113 |
+
0,
|
1114 |
+
0,
|
1115 |
+
2,
|
1116 |
+
0,
|
1117 |
+
0,
|
1118 |
+
0,
|
1119 |
+
4,
|
1120 |
+
0,
|
1121 |
+
0,
|
1122 |
+
0,
|
1123 |
+
2,
|
1124 |
+
0,
|
1125 |
+
0,
|
1126 |
+
0,
|
1127 |
+
0,
|
1128 |
+
0,
|
1129 |
+
0,
|
1130 |
+
0,
|
1131 |
+
0,
|
1132 |
+
0,
|
1133 |
+
0,
|
1134 |
+
-1,
|
1135 |
+
0,
|
1136 |
+
0,
|
1137 |
+
0,
|
1138 |
+
0,
|
1139 |
+
0,
|
1140 |
+
0,
|
1141 |
+
0,
|
1142 |
+
0,
|
1143 |
+
0,
|
1144 |
+
0,
|
1145 |
+
0,
|
1146 |
+
0,
|
1147 |
+
0,
|
1148 |
+
0,
|
1149 |
+
0,
|
1150 |
+
0,
|
1151 |
+
0,
|
1152 |
+
0,
|
1153 |
+
3,
|
1154 |
+
-1,
|
1155 |
+
2,
|
1156 |
+
0,
|
1157 |
+
2,
|
1158 |
+
0,
|
1159 |
+
2,
|
1160 |
+
0,
|
1161 |
+
0,
|
1162 |
+
2,
|
1163 |
+
0,
|
1164 |
+
2,
|
1165 |
+
0,
|
1166 |
+
0,
|
1167 |
+
0,
|
1168 |
+
0,
|
1169 |
+
0,
|
1170 |
+
0,
|
1171 |
+
0,
|
1172 |
+
0,
|
1173 |
+
0,
|
1174 |
+
0,
|
1175 |
+
0,
|
1176 |
+
0,
|
1177 |
+
2,
|
1178 |
+
2,
|
1179 |
+
0,
|
1180 |
+
2,
|
1181 |
+
2,
|
1182 |
+
2,
|
1183 |
+
0,
|
1184 |
+
2,
|
1185 |
+
-1,
|
1186 |
+
0,
|
1187 |
+
0,
|
1188 |
+
0,
|
1189 |
+
3,
|
1190 |
+
0,
|
1191 |
+
0,
|
1192 |
+
2,
|
1193 |
+
0,
|
1194 |
+
0,
|
1195 |
+
0,
|
1196 |
+
0,
|
1197 |
+
2,
|
1198 |
+
0,
|
1199 |
+
0,
|
1200 |
+
0,
|
1201 |
+
-1,
|
1202 |
+
0,
|
1203 |
+
0,
|
1204 |
+
0,
|
1205 |
+
0,
|
1206 |
+
2,
|
1207 |
+
0,
|
1208 |
+
0,
|
1209 |
+
0,
|
1210 |
+
9,
|
1211 |
+
0,
|
1212 |
+
2,
|
1213 |
+
0,
|
1214 |
+
0,
|
1215 |
+
0,
|
1216 |
+
0,
|
1217 |
+
0,
|
1218 |
+
0,
|
1219 |
+
0,
|
1220 |
+
0,
|
1221 |
+
0,
|
1222 |
+
0,
|
1223 |
+
0,
|
1224 |
+
0,
|
1225 |
+
0,
|
1226 |
+
0,
|
1227 |
+
0,
|
1228 |
+
0,
|
1229 |
+
0,
|
1230 |
+
0,
|
1231 |
+
0,
|
1232 |
+
0,
|
1233 |
+
0,
|
1234 |
+
0,
|
1235 |
+
0,
|
1236 |
+
0,
|
1237 |
+
0,
|
1238 |
+
0,
|
1239 |
+
0,
|
1240 |
+
0,
|
1241 |
+
0,
|
1242 |
+
0,
|
1243 |
+
0,
|
1244 |
+
0,
|
1245 |
+
8,
|
1246 |
+
0,
|
1247 |
+
0,
|
1248 |
+
0,
|
1249 |
+
0,
|
1250 |
+
0,
|
1251 |
+
0,
|
1252 |
+
0,
|
1253 |
+
5,
|
1254 |
+
0,
|
1255 |
+
-1,
|
1256 |
+
0,
|
1257 |
+
0,
|
1258 |
+
0,
|
1259 |
+
0,
|
1260 |
+
0,
|
1261 |
+
0,
|
1262 |
+
0,
|
1263 |
+
0,
|
1264 |
+
0,
|
1265 |
+
0,
|
1266 |
+
0,
|
1267 |
+
0,
|
1268 |
+
0,
|
1269 |
+
7,
|
1270 |
+
0,
|
1271 |
+
0,
|
1272 |
+
0,
|
1273 |
+
0,
|
1274 |
+
0,
|
1275 |
+
0,
|
1276 |
+
0,
|
1277 |
+
0
|
1278 |
+
],
|
1279 |
+
"topic_sizes": {
|
1280 |
+
"0": 516,
|
1281 |
+
"-1": 111,
|
1282 |
+
"2": 33,
|
1283 |
+
"5": 14,
|
1284 |
+
"4": 23,
|
1285 |
+
"6": 4,
|
1286 |
+
"1": 74,
|
1287 |
+
"3": 28,
|
1288 |
+
"7": 4,
|
1289 |
+
"8": 3,
|
1290 |
+
"9": 1
|
1291 |
+
},
|
1292 |
+
"topic_mapper": [
|
1293 |
+
[
|
1294 |
+
-1,
|
1295 |
+
-1,
|
1296 |
+
-1
|
1297 |
+
],
|
1298 |
+
[
|
1299 |
+
0,
|
1300 |
+
0,
|
1301 |
+
9
|
1302 |
+
],
|
1303 |
+
[
|
1304 |
+
1,
|
1305 |
+
1,
|
1306 |
+
5
|
1307 |
+
],
|
1308 |
+
[
|
1309 |
+
2,
|
1310 |
+
2,
|
1311 |
+
6
|
1312 |
+
],
|
1313 |
+
[
|
1314 |
+
3,
|
1315 |
+
3,
|
1316 |
+
8
|
1317 |
+
],
|
1318 |
+
[
|
1319 |
+
4,
|
1320 |
+
4,
|
1321 |
+
7
|
1322 |
+
],
|
1323 |
+
[
|
1324 |
+
5,
|
1325 |
+
5,
|
1326 |
+
4
|
1327 |
+
],
|
1328 |
+
[
|
1329 |
+
6,
|
1330 |
+
6,
|
1331 |
+
2
|
1332 |
+
],
|
1333 |
+
[
|
1334 |
+
7,
|
1335 |
+
7,
|
1336 |
+
1
|
1337 |
+
],
|
1338 |
+
[
|
1339 |
+
8,
|
1340 |
+
8,
|
1341 |
+
3
|
1342 |
+
],
|
1343 |
+
[
|
1344 |
+
9,
|
1345 |
+
9,
|
1346 |
+
0
|
1347 |
+
]
|
1348 |
+
],
|
1349 |
+
"topic_labels": {
|
1350 |
+
"-1": "-1_medicare_theft_medical_harvey",
|
1351 |
+
"0": "Weather Updates",
|
1352 |
+
"1": "Relief Efforts",
|
1353 |
+
"2": "Rescue Operations",
|
1354 |
+
"3": "Flooding Reports",
|
1355 |
+
"4": "Storm Damage Reports",
|
1356 |
+
"5": "5_harvey_reliefforharvey_hurricaneharvey_relief",
|
1357 |
+
"6": "6_rescued_hurricaneharvey__",
|
1358 |
+
"7": "7_hurricaneharvey_hurricane__",
|
1359 |
+
"8": "8_harvey_flooding_houston_floodwaters",
|
1360 |
+
"9": "9_houston_hurricaneseason_hurricaneharvey_harvey"
|
1361 |
+
},
|
1362 |
+
"custom_labels": null,
|
1363 |
+
"_outliers": 1,
|
1364 |
+
"topic_aspects": {}
|
1365 |
+
}
|