shantanudave
commited on
Commit
•
af175cd
1
Parent(s):
ef7cdff
Add BERTopic model
Browse files- README.md +87 -0
- config.json +17 -0
- ctfidf.safetensors +3 -0
- ctfidf_config.json +3638 -0
- topic_embeddings.safetensors +3 -0
- topics.json +0 -0
README.md
ADDED
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
---
|
3 |
+
tags:
|
4 |
+
- bertopic
|
5 |
+
library_name: bertopic
|
6 |
+
pipeline_tag: text-classification
|
7 |
+
---
|
8 |
+
|
9 |
+
# BERTopic_june30
|
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("shantanudave/BERTopic_june30")
|
27 |
+
|
28 |
+
topic_model.get_topic_info()
|
29 |
+
```
|
30 |
+
|
31 |
+
## Topic overview
|
32 |
+
|
33 |
+
* Number of topics: 18
|
34 |
+
* Number of training documents: 8526
|
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 |
+
| 0 | payment - pay - card - bank - money | 742 | Payment Issues Detection |
|
42 |
+
| 1 | load - slow - search - article - doesnt | 705 | Slow Search Function |
|
43 |
+
| 2 | clothes - clothing - size - fashion - large size | 683 | Large Size Quality Clothing |
|
44 |
+
| 3 | bon - - - - | 668 | bon documents collection |
|
45 |
+
| 4 | clear - intuitive - clear easy - recommend - selection | 665 | Easy Clear Navigation |
|
46 |
+
| 5 | - - - - | 649 | Keyword-Driven Document Analysis |
|
47 |
+
| 6 | shopping - staff - friendly - store - satisfy | 578 | Friendly staff satisfaction |
|
48 |
+
| 7 | delivery - fast delivery - fast - shipping - ship | 563 | Fast Delivery Quality |
|
49 |
+
| 8 | cart - shop cart - log - password - add | 548 | Shopping Cart Issues |
|
50 |
+
| 9 | easy use - easy - use - use easy - quick easy | 531 | Quick & Easy Solutions |
|
51 |
+
| 10 | awesome - excellent - think - clearly - phenomenal | 462 | Really Phenomenal Clear Thinking |
|
52 |
+
| 11 | quality - price - quality quality - price quality - comfortable | 454 | Excellent Quality Price |
|
53 |
+
| 12 | work work - work - work quickly - flawlessly - work flawlessly | 390 | Efficient Flawless Work |
|
54 |
+
| 13 | super super - super - superb - superb super - super friendly | 349 | Superb Friendly Coat |
|
55 |
+
| 14 | really simple - ra - solve problem - control - satisfied easy | 145 | User-Friendly Problem Solver |
|
56 |
+
| 15 | clear clear - clear - fast clear - clear fast - super clear | 144 | Clear and Transparent Working |
|
57 |
+
| 16 | discover - stuff good - stuff - fact - clearly | 129 | Discovering Interesting Facts |
|
58 |
+
| 17 | satisfied - satisfaction - totally satisfied - satisfied good - completely satisfied | 121 | Utmost Satisfaction |
|
59 |
+
|
60 |
+
</details>
|
61 |
+
|
62 |
+
## Training hyperparameters
|
63 |
+
|
64 |
+
* calculate_probabilities: True
|
65 |
+
* language: None
|
66 |
+
* low_memory: False
|
67 |
+
* min_topic_size: 10
|
68 |
+
* n_gram_range: (1, 1)
|
69 |
+
* nr_topics: None
|
70 |
+
* seed_topic_list: None
|
71 |
+
* top_n_words: 10
|
72 |
+
* verbose: True
|
73 |
+
* zeroshot_min_similarity: 0.7
|
74 |
+
* zeroshot_topic_list: None
|
75 |
+
|
76 |
+
## Framework versions
|
77 |
+
|
78 |
+
* Numpy: 1.23.5
|
79 |
+
* HDBSCAN: 0.8.33
|
80 |
+
* UMAP: 0.5.5
|
81 |
+
* Pandas: 1.3.5
|
82 |
+
* Scikit-Learn: 1.4.1.post1
|
83 |
+
* Sentence-transformers: 2.6.1
|
84 |
+
* Transformers: 4.41.2
|
85 |
+
* Numba: 0.59.1
|
86 |
+
* Plotly: 5.22.0
|
87 |
+
* Python: 3.10.13
|
config.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"calculate_probabilities": true,
|
3 |
+
"language": null,
|
4 |
+
"low_memory": false,
|
5 |
+
"min_topic_size": 10,
|
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": true,
|
14 |
+
"zeroshot_min_similarity": 0.7,
|
15 |
+
"zeroshot_topic_list": null,
|
16 |
+
"embedding_model": "sentence-transformers/all-MiniLM-L6-v2"
|
17 |
+
}
|
ctfidf.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f6a1e538f7fba927e5701721e9d4fcf992508bfe26361ee865553841541c1bfd
|
3 |
+
size 160840
|
ctfidf_config.json
ADDED
@@ -0,0 +1,3638 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"ctfidf_model": {
|
3 |
+
"bm25_weighting": false,
|
4 |
+
"reduce_frequent_words": true
|
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": 2,
|
17 |
+
"ngram_range": [
|
18 |
+
1,
|
19 |
+
2
|
20 |
+
],
|
21 |
+
"stop_words": "english",
|
22 |
+
"strip_accents": null,
|
23 |
+
"token_pattern": "(?u)\\b\\w\\w+\\b",
|
24 |
+
"vocabulary": null
|
25 |
+
},
|
26 |
+
"vocab": {
|
27 |
+
"way": 3430,
|
28 |
+
"log": 1517,
|
29 |
+
"pay": 1963,
|
30 |
+
"dont": 822,
|
31 |
+
"understand": 3227,
|
32 |
+
"order": 1792,
|
33 |
+
"receive": 2362,
|
34 |
+
"confirmation": 559,
|
35 |
+
"ready": 2317,
|
36 |
+
"shop": 2659,
|
37 |
+
"cart": 341,
|
38 |
+
"reserve": 2441,
|
39 |
+
"think": 3033,
|
40 |
+
"bad": 168,
|
41 |
+
"process": 2160,
|
42 |
+
"bit": 231,
|
43 |
+
"complicate": 547,
|
44 |
+
"need": 1729,
|
45 |
+
"make": 1614,
|
46 |
+
"simpler": 2723,
|
47 |
+
"account": 29,
|
48 |
+
"advance": 74,
|
49 |
+
"service": 2613,
|
50 |
+
"good": 1174,
|
51 |
+
"type": 3206,
|
52 |
+
"shipment": 2657,
|
53 |
+
"initiative": 1356,
|
54 |
+
"high": 1252,
|
55 |
+
"postage": 2091,
|
56 |
+
"limit": 1470,
|
57 |
+
"payment": 1989,
|
58 |
+
"debit": 687,
|
59 |
+
"credit": 625,
|
60 |
+
"accept": 17,
|
61 |
+
"poor": 2068,
|
62 |
+
"site": 2727,
|
63 |
+
"pick": 2039,
|
64 |
+
"incorrectly": 1334,
|
65 |
+
"branch": 259,
|
66 |
+
"stone": 2864,
|
67 |
+
"age": 86,
|
68 |
+
"presence": 2113,
|
69 |
+
"small": 2796,
|
70 |
+
"brand": 263,
|
71 |
+
"try": 3179,
|
72 |
+
"time": 3049,
|
73 |
+
"disappoint": 761,
|
74 |
+
"unfortunately": 3236,
|
75 |
+
"buy": 294,
|
76 |
+
"sale": 2487,
|
77 |
+
"confirm": 558,
|
78 |
+
"quite": 2291,
|
79 |
+
"disappointing": 765,
|
80 |
+
"unnecessary": 3268,
|
81 |
+
"item": 1387,
|
82 |
+
"work": 3476,
|
83 |
+
"poorly": 2070,
|
84 |
+
"browser": 276,
|
85 |
+
"want": 3394,
|
86 |
+
"impossible": 1312,
|
87 |
+
"possible": 2074,
|
88 |
+
"bank": 196,
|
89 |
+
"error": 954,
|
90 |
+
"slow": 2774,
|
91 |
+
"message": 1670,
|
92 |
+
"option": 1782,
|
93 |
+
"button": 291,
|
94 |
+
"tell": 3005,
|
95 |
+
"turn": 3202,
|
96 |
+
"later": 1439,
|
97 |
+
"didnt": 729,
|
98 |
+
"easy": 871,
|
99 |
+
"addition": 62,
|
100 |
+
"tried": 3169,
|
101 |
+
"create": 623,
|
102 |
+
"hopeless": 1277,
|
103 |
+
"appear": 121,
|
104 |
+
"second": 2564,
|
105 |
+
"money": 1701,
|
106 |
+
"wasnt": 3422,
|
107 |
+
"ask": 132,
|
108 |
+
"wait": 3384,
|
109 |
+
"long": 1533,
|
110 |
+
"admit": 73,
|
111 |
+
"mistake": 1689,
|
112 |
+
"mention": 1662,
|
113 |
+
"fact": 1027,
|
114 |
+
"look": 1558,
|
115 |
+
"favorite": 1067,
|
116 |
+
"come": 509,
|
117 |
+
"list": 1478,
|
118 |
+
"drama": 858,
|
119 |
+
"address": 67,
|
120 |
+
"modify": 1697,
|
121 |
+
"management": 1637,
|
122 |
+
"super": 2952,
|
123 |
+
"unpleasant": 3270,
|
124 |
+
"lady": 1424,
|
125 |
+
"line": 1472,
|
126 |
+
"effort": 921,
|
127 |
+
"really": 2324,
|
128 |
+
"manager": 1638,
|
129 |
+
"wrong": 3596,
|
130 |
+
"experience": 1007,
|
131 |
+
"allow": 93,
|
132 |
+
"forget": 1121,
|
133 |
+
"visible": 3376,
|
134 |
+
"tab": 2987,
|
135 |
+
"withdrawn": 3463,
|
136 |
+
"store": 2869,
|
137 |
+
"waste": 3425,
|
138 |
+
"jacket": 1396,
|
139 |
+
"benefit": 221,
|
140 |
+
"right": 2472,
|
141 |
+
"ground": 1202,
|
142 |
+
"quality": 2225,
|
143 |
+
"funny": 1156,
|
144 |
+
"offer": 1760,
|
145 |
+
"direct": 752,
|
146 |
+
"systematically": 2986,
|
147 |
+
"say": 2514,
|
148 |
+
"respect": 2445,
|
149 |
+
"format": 1124,
|
150 |
+
"screen": 2533,
|
151 |
+
"hidden": 1250,
|
152 |
+
"function": 1150,
|
153 |
+
"bar": 204,
|
154 |
+
"card": 328,
|
155 |
+
"lousy": 1600,
|
156 |
+
"company": 528,
|
157 |
+
"bankrupt": 203,
|
158 |
+
"basically": 208,
|
159 |
+
"clear": 418,
|
160 |
+
"white": 3452,
|
161 |
+
"page": 1926,
|
162 |
+
"load": 1494,
|
163 |
+
"symbol": 2985,
|
164 |
+
"occasionally": 1758,
|
165 |
+
"cancel": 325,
|
166 |
+
"restart": 2451,
|
167 |
+
"fast": 1043,
|
168 |
+
"stuck": 2926,
|
169 |
+
"stick": 2859,
|
170 |
+
"stable": 2829,
|
171 |
+
"continue": 587,
|
172 |
+
"wish": 3461,
|
173 |
+
"information": 1346,
|
174 |
+
"gift": 1167,
|
175 |
+
"constant": 571,
|
176 |
+
"shame": 2639,
|
177 |
+
"place": 2048,
|
178 |
+
"twice": 3204,
|
179 |
+
"discount": 774,
|
180 |
+
"cancellation": 327,
|
181 |
+
"apply": 122,
|
182 |
+
"purchase": 2210,
|
183 |
+
"major": 1613,
|
184 |
+
"problem": 2141,
|
185 |
+
"access": 22,
|
186 |
+
"send": 2602,
|
187 |
+
"know": 1410,
|
188 |
+
"appreciate": 124,
|
189 |
+
"write": 3594,
|
190 |
+
"select": 2570,
|
191 |
+
"method": 1679,
|
192 |
+
"number": 1752,
|
193 |
+
"voucher": 3381,
|
194 |
+
"search": 2538,
|
195 |
+
"redeem": 2399,
|
196 |
+
"lack": 1423,
|
197 |
+
"technology": 2999,
|
198 |
+
"completely": 542,
|
199 |
+
"tire": 3135,
|
200 |
+
"joke": 1402,
|
201 |
+
"able": 1,
|
202 |
+
"job": 1400,
|
203 |
+
"difficult": 741,
|
204 |
+
"furthermore": 1157,
|
205 |
+
"clearly": 452,
|
206 |
+
"use": 3293,
|
207 |
+
"enter": 935,
|
208 |
+
"code": 493,
|
209 |
+
"improve": 1323,
|
210 |
+
"ideal": 1288,
|
211 |
+
"choose": 404,
|
212 |
+
"edit": 916,
|
213 |
+
"customer": 635,
|
214 |
+
"automatically": 141,
|
215 |
+
"fault": 1065,
|
216 |
+
"phone": 2030,
|
217 |
+
"help": 1247,
|
218 |
+
"lot": 1582,
|
219 |
+
"link": 1473,
|
220 |
+
"today": 3136,
|
221 |
+
"content": 585,
|
222 |
+
"annoy": 102,
|
223 |
+
"range": 2301,
|
224 |
+
"currently": 632,
|
225 |
+
"probably": 2138,
|
226 |
+
"newsletter": 1737,
|
227 |
+
"doesnt": 796,
|
228 |
+
"mail": 1608,
|
229 |
+
"arrive": 128,
|
230 |
+
"constantly": 573,
|
231 |
+
"hang": 1219,
|
232 |
+
"bug": 284,
|
233 |
+
"automatic": 139,
|
234 |
+
"entry": 951,
|
235 |
+
"rest": 2450,
|
236 |
+
"neat": 1727,
|
237 |
+
"clean": 417,
|
238 |
+
"worthless": 3589,
|
239 |
+
"close": 468,
|
240 |
+
"article": 129,
|
241 |
+
"save": 2510,
|
242 |
+
"identifier": 1292,
|
243 |
+
"talk": 2991,
|
244 |
+
"password": 1956,
|
245 |
+
"actually": 48,
|
246 |
+
"satisfied": 2492,
|
247 |
+
"mode": 1692,
|
248 |
+
"manage": 1634,
|
249 |
+
"invoice": 1383,
|
250 |
+
"product": 2173,
|
251 |
+
"selection": 2577,
|
252 |
+
"complicated": 550,
|
253 |
+
"loading": 1509,
|
254 |
+
"middle": 1680,
|
255 |
+
"complete": 536,
|
256 |
+
"secure": 2567,
|
257 |
+
"connection": 563,
|
258 |
+
"establish": 981,
|
259 |
+
"ill": 1293,
|
260 |
+
"competition": 533,
|
261 |
+
"structure": 2922,
|
262 |
+
"throw": 3045,
|
263 |
+
"properly": 2202,
|
264 |
+
"honestly": 1269,
|
265 |
+
"thing": 3024,
|
266 |
+
"ago": 88,
|
267 |
+
"wife": 3459,
|
268 |
+
"mark": 1641,
|
269 |
+
"minimum": 1681,
|
270 |
+
"valid": 3357,
|
271 |
+
"exit": 1003,
|
272 |
+
"gateway": 1162,
|
273 |
+
"mobile": 1690,
|
274 |
+
"finally": 1092,
|
275 |
+
"tablet": 2989,
|
276 |
+
"ing": 1354,
|
277 |
+
"regular": 2414,
|
278 |
+
"ship": 2654,
|
279 |
+
"plus": 2057,
|
280 |
+
"contact": 582,
|
281 |
+
"old": 1764,
|
282 |
+
"box": 257,
|
283 |
+
"banking": 201,
|
284 |
+
"frequently": 1134,
|
285 |
+
"connect": 562,
|
286 |
+
"late": 1436,
|
287 |
+
"click": 458,
|
288 |
+
"reader": 2316,
|
289 |
+
"instead": 1362,
|
290 |
+
"quickly": 2274,
|
291 |
+
"ultimately": 3208,
|
292 |
+
"needless": 1732,
|
293 |
+
"fully": 1142,
|
294 |
+
"mature": 1649,
|
295 |
+
"despite": 721,
|
296 |
+
"longer": 1549,
|
297 |
+
"unclear": 3217,
|
298 |
+
"useful": 3348,
|
299 |
+
"missing": 1688,
|
300 |
+
"exchange": 1000,
|
301 |
+
"werent": 3444,
|
302 |
+
"convenient": 593,
|
303 |
+
"include": 1329,
|
304 |
+
"slowly": 2793,
|
305 |
+
"transaction": 3155,
|
306 |
+
"absolutely": 14,
|
307 |
+
"stupid": 2934,
|
308 |
+
"weird": 3442,
|
309 |
+
"star": 2836,
|
310 |
+
"deduction": 690,
|
311 |
+
"chrome": 411,
|
312 |
+
"menu": 1664,
|
313 |
+
"clumsy": 491,
|
314 |
+
"main": 1609,
|
315 |
+
"point": 2060,
|
316 |
+
"fun": 1143,
|
317 |
+
"precisely": 2104,
|
318 |
+
"hand": 1214,
|
319 |
+
"day": 662,
|
320 |
+
"friendly": 1136,
|
321 |
+
"available": 145,
|
322 |
+
"hello": 1246,
|
323 |
+
"finalize": 1089,
|
324 |
+
"lose": 1579,
|
325 |
+
"pathetic": 1960,
|
326 |
+
"resolve": 2444,
|
327 |
+
"miss": 1686,
|
328 |
+
"various": 3367,
|
329 |
+
"happily": 1223,
|
330 |
+
"continuously": 590,
|
331 |
+
"people": 2020,
|
332 |
+
"strange": 2921,
|
333 |
+
"assume": 134,
|
334 |
+
"sell": 2589,
|
335 |
+
"proceed": 2158,
|
336 |
+
"uncomplicated": 3218,
|
337 |
+
"terrible": 3010,
|
338 |
+
"advise": 82,
|
339 |
+
"login": 1532,
|
340 |
+
"coupon": 615,
|
341 |
+
"little": 1488,
|
342 |
+
"trouble": 3173,
|
343 |
+
"unusable": 3277,
|
344 |
+
"server": 2612,
|
345 |
+
"physical": 2035,
|
346 |
+
"delete": 695,
|
347 |
+
"register": 2408,
|
348 |
+
"change": 380,
|
349 |
+
"step": 2857,
|
350 |
+
"preferably": 2109,
|
351 |
+
"block": 248,
|
352 |
+
"stop": 2865,
|
353 |
+
"moment": 1698,
|
354 |
+
"stage": 2832,
|
355 |
+
"display": 785,
|
356 |
+
"request": 2439,
|
357 |
+
"soon": 2805,
|
358 |
+
"start": 2839,
|
359 |
+
"quarter": 2262,
|
360 |
+
"hour": 1280,
|
361 |
+
"improvement": 1325,
|
362 |
+
"react": 2313,
|
363 |
+
"reason": 2350,
|
364 |
+
"id": 1285,
|
365 |
+
"case": 359,
|
366 |
+
"remove": 2432,
|
367 |
+
"functionality": 1155,
|
368 |
+
"correct": 603,
|
369 |
+
"prefer": 2105,
|
370 |
+
"force": 1117,
|
371 |
+
"galaxy": 1159,
|
372 |
+
"doubt": 855,
|
373 |
+
"trust": 3177,
|
374 |
+
"fix": 1107,
|
375 |
+
"future": 1158,
|
376 |
+
"update": 3280,
|
377 |
+
"scan": 2528,
|
378 |
+
"previously": 2125,
|
379 |
+
"price": 2126,
|
380 |
+
"free": 1131,
|
381 |
+
"blue": 250,
|
382 |
+
"addendum": 61,
|
383 |
+
"unknown": 3265,
|
384 |
+
"open": 1767,
|
385 |
+
"transfer": 3157,
|
386 |
+
"general": 1163,
|
387 |
+
"technical": 2997,
|
388 |
+
"havent": 1232,
|
389 |
+
"gotten": 1195,
|
390 |
+
"speak": 2816,
|
391 |
+
"employee": 924,
|
392 |
+
"ordered": 1905,
|
393 |
+
"month": 1716,
|
394 |
+
"book": 252,
|
395 |
+
"cheeky": 394,
|
396 |
+
"sad": 2485,
|
397 |
+
"delivery": 699,
|
398 |
+
"cash": 360,
|
399 |
+
"sizes": 2770,
|
400 |
+
"usually": 3353,
|
401 |
+
"fashion": 1040,
|
402 |
+
"size": 2737,
|
403 |
+
"miserable": 1685,
|
404 |
+
"desirable": 717,
|
405 |
+
"telephone": 3002,
|
406 |
+
"disadvantage": 759,
|
407 |
+
"delay": 694,
|
408 |
+
"efficient": 919,
|
409 |
+
"redirection": 2401,
|
410 |
+
"reach": 2312,
|
411 |
+
"decision": 689,
|
412 |
+
"internal": 1372,
|
413 |
+
"criterion": 627,
|
414 |
+
"truth": 3178,
|
415 |
+
"yesterday": 3600,
|
416 |
+
"away": 161,
|
417 |
+
"invalid": 1381,
|
418 |
+
"advertise": 79,
|
419 |
+
"scam": 2526,
|
420 |
+
"solution": 2801,
|
421 |
+
"person": 2024,
|
422 |
+
"happen": 1222,
|
423 |
+
"zero": 3605,
|
424 |
+
"promotional": 2197,
|
425 |
+
"return": 2456,
|
426 |
+
"collect": 500,
|
427 |
+
"traditional": 3153,
|
428 |
+
"different": 738,
|
429 |
+
"suddenly": 2942,
|
430 |
+
"satisfy": 2499,
|
431 |
+
"family": 1037,
|
432 |
+
"apparently": 119,
|
433 |
+
"accessible": 25,
|
434 |
+
"cause": 371,
|
435 |
+
"frustration": 1141,
|
436 |
+
"wont": 3468,
|
437 |
+
"let": 1461,
|
438 |
+
"add": 54,
|
439 |
+
"clothes": 472,
|
440 |
+
"real": 2319,
|
441 |
+
"garbage": 1160,
|
442 |
+
"black": 241,
|
443 |
+
"meet": 1657,
|
444 |
+
"support": 2969,
|
445 |
+
"center": 374,
|
446 |
+
"manually": 1640,
|
447 |
+
"live": 1493,
|
448 |
+
"week": 3438,
|
449 |
+
"end": 926,
|
450 |
+
"conclusion": 554,
|
451 |
+
"short": 2704,
|
452 |
+
"disappointed": 763,
|
453 |
+
"briefly": 267,
|
454 |
+
"switch": 2981,
|
455 |
+
"identical": 1291,
|
456 |
+
"hold": 1259,
|
457 |
+
"satisfactory": 2491,
|
458 |
+
"recently": 2376,
|
459 |
+
"idea": 1287,
|
460 |
+
"regularly": 2416,
|
461 |
+
"greatly": 1201,
|
462 |
+
"unable": 3209,
|
463 |
+
"possibility": 2072,
|
464 |
+
"supposedly": 2974,
|
465 |
+
"feed": 1071,
|
466 |
+
"trouser": 3174,
|
467 |
+
"pant": 1947,
|
468 |
+
"th": 3021,
|
469 |
+
"apology": 118,
|
470 |
+
"forth": 1125,
|
471 |
+
"cut": 645,
|
472 |
+
"afraid": 85,
|
473 |
+
"particularly": 1952,
|
474 |
+
"excellent": 986,
|
475 |
+
"total": 3143,
|
476 |
+
"disaster": 767,
|
477 |
+
"straight": 2919,
|
478 |
+
"unreliable": 3271,
|
479 |
+
"scanner": 2530,
|
480 |
+
"attention": 137,
|
481 |
+
"life": 1468,
|
482 |
+
"fight": 1078,
|
483 |
+
"air": 92,
|
484 |
+
"business": 288,
|
485 |
+
"course": 617,
|
486 |
+
"low": 1601,
|
487 |
+
"score": 2531,
|
488 |
+
"data": 651,
|
489 |
+
"continually": 586,
|
490 |
+
"disappear": 760,
|
491 |
+
"reliable": 2424,
|
492 |
+
"worst": 3586,
|
493 |
+
"finish": 1099,
|
494 |
+
"remain": 2428,
|
495 |
+
"blank": 242,
|
496 |
+
"sure": 2975,
|
497 |
+
"sorry": 2812,
|
498 |
+
"rude": 2481,
|
499 |
+
"treatment": 3166,
|
500 |
+
"history": 1256,
|
501 |
+
"respond": 2446,
|
502 |
+
"progress": 2196,
|
503 |
+
"near": 1725,
|
504 |
+
"report": 2438,
|
505 |
+
"normally": 1745,
|
506 |
+
"huge": 1282,
|
507 |
+
"irritate": 1385,
|
508 |
+
"check": 390,
|
509 |
+
"hell": 1245,
|
510 |
+
"morning": 1718,
|
511 |
+
"kind": 1408,
|
512 |
+
"fraud": 1129,
|
513 |
+
"stay": 2850,
|
514 |
+
"match": 1644,
|
515 |
+
"multiple": 1720,
|
516 |
+
"row": 2479,
|
517 |
+
"basket": 209,
|
518 |
+
"directly": 753,
|
519 |
+
"field": 1077,
|
520 |
+
"easily": 867,
|
521 |
+
"overview": 1917,
|
522 |
+
"highly": 1254,
|
523 |
+
"recommend": 2379,
|
524 |
+
"intuitive": 1376,
|
525 |
+
"concise": 553,
|
526 |
+
"pity": 2045,
|
527 |
+
"immediately": 1305,
|
528 |
+
"chose": 410,
|
529 |
+
"loyalty": 1604,
|
530 |
+
"competent": 531,
|
531 |
+
"quick": 2264,
|
532 |
+
"pleasure": 2055,
|
533 |
+
"generally": 1164,
|
534 |
+
"previous": 2123,
|
535 |
+
"insert": 1358,
|
536 |
+
"reverse": 2469,
|
537 |
+
"attempt": 135,
|
538 |
+
"successful": 2938,
|
539 |
+
"question": 2263,
|
540 |
+
"unsuccessful": 3275,
|
541 |
+
"follow": 1116,
|
542 |
+
"forward": 1126,
|
543 |
+
"visit": 3379,
|
544 |
+
"version": 3371,
|
545 |
+
"interruption": 1374,
|
546 |
+
"difficulty": 751,
|
547 |
+
"theyre": 3023,
|
548 |
+
"especially": 974,
|
549 |
+
"trace": 3149,
|
550 |
+
"big": 223,
|
551 |
+
"rubbish": 2480,
|
552 |
+
"blitz": 246,
|
553 |
+
"interrupt": 1373,
|
554 |
+
"sense": 2607,
|
555 |
+
"hassle": 1230,
|
556 |
+
"refresh": 2406,
|
557 |
+
"skip": 2771,
|
558 |
+
"leave": 1450,
|
559 |
+
"desire": 718,
|
560 |
+
"essential": 980,
|
561 |
+
"eventually": 983,
|
562 |
+
"reflect": 2405,
|
563 |
+
"profile": 2194,
|
564 |
+
"file": 1079,
|
565 |
+
"claim": 414,
|
566 |
+
"incredible": 1337,
|
567 |
+
"badly": 194,
|
568 |
+
"explanation": 1018,
|
569 |
+
"thrown": 3047,
|
570 |
+
"scratch": 2532,
|
571 |
+
"integration": 1365,
|
572 |
+
"computer": 551,
|
573 |
+
"imagine": 1303,
|
574 |
+
"whats": 3446,
|
575 |
+
"run": 2483,
|
576 |
+
"thought": 3044,
|
577 |
+
"outdated": 1912,
|
578 |
+
"practical": 2093,
|
579 |
+
"watch": 3427,
|
580 |
+
"cell": 372,
|
581 |
+
"reload": 2425,
|
582 |
+
"technically": 2998,
|
583 |
+
"rate": 2306,
|
584 |
+
"bikini": 228,
|
585 |
+
"told": 3140,
|
586 |
+
"reimbursement": 2417,
|
587 |
+
"personal": 2025,
|
588 |
+
"play": 2051,
|
589 |
+
"read": 2314,
|
590 |
+
"touch": 3148,
|
591 |
+
"press": 2117,
|
592 |
+
"shouldnt": 2708,
|
593 |
+
"blink": 245,
|
594 |
+
"copy": 601,
|
595 |
+
"background": 166,
|
596 |
+
"terribly": 3017,
|
597 |
+
"tragedy": 3154,
|
598 |
+
"freeze": 1133,
|
599 |
+
"situation": 2736,
|
600 |
+
"loyal": 1602,
|
601 |
+
"dozen": 857,
|
602 |
+
"extremely": 1022,
|
603 |
+
"response": 2447,
|
604 |
+
"german": 1166,
|
605 |
+
"value": 3361,
|
606 |
+
"browse": 273,
|
607 |
+
"incorrect": 1332,
|
608 |
+
"definitely": 692,
|
609 |
+
"parcel": 1948,
|
610 |
+
"locker": 1516,
|
611 |
+
"procedure": 2157,
|
612 |
+
"correctly": 606,
|
613 |
+
"useless": 3349,
|
614 |
+
"trash": 3164,
|
615 |
+
"install": 1359,
|
616 |
+
"sit": 2726,
|
617 |
+
"locally": 1513,
|
618 |
+
"incredibly": 1338,
|
619 |
+
"crazy": 622,
|
620 |
+
"past": 1959,
|
621 |
+
"hung": 1283,
|
622 |
+
"similar": 2712,
|
623 |
+
"hope": 1270,
|
624 |
+
"recover": 2396,
|
625 |
+
"apart": 116,
|
626 |
+
"flawlessly": 1111,
|
627 |
+
"date": 659,
|
628 |
+
"organize": 1908,
|
629 |
+
"original": 1910,
|
630 |
+
"shopping": 2690,
|
631 |
+
"test": 3019,
|
632 |
+
"care": 336,
|
633 |
+
"half": 1208,
|
634 |
+
"begin": 218,
|
635 |
+
"fatal": 1063,
|
636 |
+
"repeat": 2434,
|
637 |
+
"action": 45,
|
638 |
+
"intend": 1367,
|
639 |
+
"disgust": 784,
|
640 |
+
"status": 2848,
|
641 |
+
"rule": 2482,
|
642 |
+
"team": 2995,
|
643 |
+
"provide": 2207,
|
644 |
+
"failure": 1030,
|
645 |
+
"saw": 2513,
|
646 |
+
"horrible": 1278,
|
647 |
+
"pas": 1954,
|
648 |
+
"regrettable": 2413,
|
649 |
+
"correction": 605,
|
650 |
+
"recognize": 2378,
|
651 |
+
"handy": 1217,
|
652 |
+
"leaf": 1447,
|
653 |
+
"quote": 2297,
|
654 |
+
"totally": 3145,
|
655 |
+
"sum": 2949,
|
656 |
+
"position": 2071,
|
657 |
+
"suppose": 2971,
|
658 |
+
"reply": 2437,
|
659 |
+
"package": 1924,
|
660 |
+
"track": 3150,
|
661 |
+
"notification": 1750,
|
662 |
+
"pickup": 2042,
|
663 |
+
"accidentally": 26,
|
664 |
+
"currency": 629,
|
665 |
+
"complain": 534,
|
666 |
+
"opinion": 1779,
|
667 |
+
"concern": 552,
|
668 |
+
"depend": 712,
|
669 |
+
"mood": 1717,
|
670 |
+
"home": 1260,
|
671 |
+
"push": 2224,
|
672 |
+
"opt": 1781,
|
673 |
+
"rush": 2484,
|
674 |
+
"helpful": 1249,
|
675 |
+
"installation": 1360,
|
676 |
+
"language": 1429,
|
677 |
+
"set": 2636,
|
678 |
+
"web": 3437,
|
679 |
+
"nicely": 1739,
|
680 |
+
"collection": 501,
|
681 |
+
"carry": 340,
|
682 |
+
"broken": 271,
|
683 |
+
"user": 3351,
|
684 |
+
"taste": 2994,
|
685 |
+
"remains": 2430,
|
686 |
+
"catastrophic": 366,
|
687 |
+
"result": 2455,
|
688 |
+
"pair": 1944,
|
689 |
+
"additionally": 66,
|
690 |
+
"engine": 928,
|
691 |
+
"nightmare": 1741,
|
692 |
+
"description": 714,
|
693 |
+
"agree": 90,
|
694 |
+
"safe": 2486,
|
695 |
+
"post": 2090,
|
696 |
+
"cute": 646,
|
697 |
+
"billing": 229,
|
698 |
+
"charge": 383,
|
699 |
+
"disastrous": 773,
|
700 |
+
"validate": 3358,
|
701 |
+
"lei": 1459,
|
702 |
+
"single": 2725,
|
703 |
+
"catastrophe": 365,
|
704 |
+
"freak": 1130,
|
705 |
+
"dark": 649,
|
706 |
+
"chaotic": 382,
|
707 |
+
"buggy": 285,
|
708 |
+
"stock": 2861,
|
709 |
+
"wallet": 3393,
|
710 |
+
"awful": 164,
|
711 |
+
"torture": 3141,
|
712 |
+
"availability": 142,
|
713 |
+
"physically": 2037,
|
714 |
+
"patience": 1961,
|
715 |
+
"sent": 2608,
|
716 |
+
"specifically": 2820,
|
717 |
+
"security": 2569,
|
718 |
+
"functional": 1153,
|
719 |
+
"principle": 2136,
|
720 |
+
"maybe": 1651,
|
721 |
+
"compare": 530,
|
722 |
+
"uninstalled": 3264,
|
723 |
+
"horror": 1279,
|
724 |
+
"story": 2918,
|
725 |
+
"wide": 3456,
|
726 |
+
"weekend": 3441,
|
727 |
+
"pandemic": 1946,
|
728 |
+
"randomly": 2300,
|
729 |
+
"communication": 527,
|
730 |
+
"form": 1122,
|
731 |
+
"picture": 2043,
|
732 |
+
"faster": 1061,
|
733 |
+
"otto": 1911,
|
734 |
+
"solve": 2802,
|
735 |
+
"break": 265,
|
736 |
+
"text": 3020,
|
737 |
+
"setup": 2638,
|
738 |
+
"expect": 1005,
|
739 |
+
"cost": 608,
|
740 |
+
"policy": 2064,
|
741 |
+
"hardly": 1226,
|
742 |
+
"logical": 1531,
|
743 |
+
"membership": 1659,
|
744 |
+
"learn": 1449,
|
745 |
+
"included": 1330,
|
746 |
+
"stationary": 2846,
|
747 |
+
"indication": 1341,
|
748 |
+
"country": 614,
|
749 |
+
"flow": 1114,
|
750 |
+
"issue": 1386,
|
751 |
+
"june": 1403,
|
752 |
+
"daughter": 660,
|
753 |
+
"successfully": 2939,
|
754 |
+
"final": 1088,
|
755 |
+
"navigation": 1724,
|
756 |
+
"unfortunate": 3234,
|
757 |
+
"lay": 1444,
|
758 |
+
"initial": 1355,
|
759 |
+
"necessary": 1728,
|
760 |
+
"numerous": 1754,
|
761 |
+
"example": 985,
|
762 |
+
"entire": 947,
|
763 |
+
"receipt": 2361,
|
764 |
+
"partial": 1950,
|
765 |
+
"record": 2395,
|
766 |
+
"awesome": 163,
|
767 |
+
"view": 3372,
|
768 |
+
"mask": 1643,
|
769 |
+
"registration": 2412,
|
770 |
+
"crap": 620,
|
771 |
+
"woman": 3464,
|
772 |
+
"unfriendly": 3263,
|
773 |
+
"beginning": 219,
|
774 |
+
"pleasant": 2053,
|
775 |
+
"normal": 1744,
|
776 |
+
"session": 2634,
|
777 |
+
"actual": 47,
|
778 |
+
"spend": 2824,
|
779 |
+
"weak": 3435,
|
780 |
+
"cumbersome": 628,
|
781 |
+
"program": 2195,
|
782 |
+
"personally": 2027,
|
783 |
+
"consider": 567,
|
784 |
+
"regard": 2407,
|
785 |
+
"overall": 1915,
|
786 |
+
"transparent": 3160,
|
787 |
+
"wonder": 3465,
|
788 |
+
"worth": 3587,
|
789 |
+
"location": 1515,
|
790 |
+
"polish": 2065,
|
791 |
+
"special": 2817,
|
792 |
+
"recovery": 2397,
|
793 |
+
"unexpected": 3231,
|
794 |
+
"dev": 724,
|
795 |
+
"complaint": 535,
|
796 |
+
"opening": 1776,
|
797 |
+
"reasonably": 2358,
|
798 |
+
"damn": 648,
|
799 |
+
"piece": 2044,
|
800 |
+
"junk": 1405,
|
801 |
+
"matter": 1646,
|
802 |
+
"double": 854,
|
803 |
+
"pass": 1955,
|
804 |
+
"transport": 3163,
|
805 |
+
"succeed": 2936,
|
806 |
+
"faulty": 1066,
|
807 |
+
"landscape": 1427,
|
808 |
+
"rid": 2471,
|
809 |
+
"common": 526,
|
810 |
+
"warn": 3420,
|
811 |
+
"fall": 1036,
|
812 |
+
"behavior": 220,
|
813 |
+
"apartment": 117,
|
814 |
+
"phase": 2028,
|
815 |
+
"choice": 399,
|
816 |
+
"amaze": 98,
|
817 |
+
"smooth": 2797,
|
818 |
+
"certain": 375,
|
819 |
+
"reset": 2442,
|
820 |
+
"head": 1241,
|
821 |
+
"possibly": 2089,
|
822 |
+
"negatively": 1734,
|
823 |
+
"wow": 3593,
|
824 |
+
"exist": 1002,
|
825 |
+
"mess": 1669,
|
826 |
+
"world": 3584,
|
827 |
+
"kept": 1406,
|
828 |
+
"seller": 2601,
|
829 |
+
"practically": 2101,
|
830 |
+
"filter": 1081,
|
831 |
+
"memory": 1660,
|
832 |
+
"hard": 1225,
|
833 |
+
"execrable": 1001,
|
834 |
+
"pocket": 2059,
|
835 |
+
"bye": 323,
|
836 |
+
"exception": 998,
|
837 |
+
"carrier": 339,
|
838 |
+
"comment": 525,
|
839 |
+
"development": 727,
|
840 |
+
"absolute": 12,
|
841 |
+
"browsing": 282,
|
842 |
+
"flaw": 1109,
|
843 |
+
"window": 3460,
|
844 |
+
"promptly": 2201,
|
845 |
+
"forever": 1118,
|
846 |
+
"undeliverable": 3225,
|
847 |
+
"station": 2845,
|
848 |
+
"cashier": 364,
|
849 |
+
"expensive": 1006,
|
850 |
+
"lie": 1467,
|
851 |
+
"period": 2023,
|
852 |
+
"fail": 1029,
|
853 |
+
"suitable": 2948,
|
854 |
+
"frozen": 1140,
|
855 |
+
"android": 100,
|
856 |
+
"inability": 1328,
|
857 |
+
"wouldnt": 3590,
|
858 |
+
"border": 253,
|
859 |
+
"control": 591,
|
860 |
+
"theres": 3022,
|
861 |
+
"decent": 688,
|
862 |
+
"drawback": 859,
|
863 |
+
"guest": 1204,
|
864 |
+
"precise": 2103,
|
865 |
+
"accepted": 21,
|
866 |
+
"welcome": 3443,
|
867 |
+
"reduction": 2404,
|
868 |
+
"repeatedly": 2436,
|
869 |
+
"input": 1357,
|
870 |
+
"impractical": 1321,
|
871 |
+
"year": 3598,
|
872 |
+
"color": 502,
|
873 |
+
"jean": 1397,
|
874 |
+
"secondly": 2566,
|
875 |
+
"device": 728,
|
876 |
+
"log pay": 1524,
|
877 |
+
"dont understand": 848,
|
878 |
+
"order pay": 1851,
|
879 |
+
"receive confirmation": 2366,
|
880 |
+
"shop cart": 2662,
|
881 |
+
"cart reserve": 352,
|
882 |
+
"order dont": 1822,
|
883 |
+
"dont think": 846,
|
884 |
+
"bit complicate": 232,
|
885 |
+
"account think": 40,
|
886 |
+
"think pay": 3038,
|
887 |
+
"bad service": 184,
|
888 |
+
"service site": 2628,
|
889 |
+
"pick order": 2040,
|
890 |
+
"try make": 3189,
|
891 |
+
"make payment": 1625,
|
892 |
+
"payment time": 2015,
|
893 |
+
"time way": 3129,
|
894 |
+
"order confirm": 1811,
|
895 |
+
"order quite": 1861,
|
896 |
+
"payment work": 2018,
|
897 |
+
"work poorly": 3536,
|
898 |
+
"impossible order": 1317,
|
899 |
+
"order payment": 1852,
|
900 |
+
"payment possible": 2007,
|
901 |
+
"possible pay": 2082,
|
902 |
+
"addition error": 63,
|
903 |
+
"create account": 624,
|
904 |
+
"time second": 3109,
|
905 |
+
"second time": 2565,
|
906 |
+
"time money": 3088,
|
907 |
+
"money account": 1702,
|
908 |
+
"account shop": 39,
|
909 |
+
"shop order": 2674,
|
910 |
+
"order wasnt": 1899,
|
911 |
+
"wait long": 3388,
|
912 |
+
"service super": 2631,
|
913 |
+
"make effort": 1620,
|
914 |
+
"money order": 1707,
|
915 |
+
"order visible": 1896,
|
916 |
+
"receive order": 2371,
|
917 |
+
"store order": 2893,
|
918 |
+
"order order": 1848,
|
919 |
+
"experience time": 1017,
|
920 |
+
"credit card": 626,
|
921 |
+
"white page": 3454,
|
922 |
+
"page load": 1932,
|
923 |
+
"load symbol": 1506,
|
924 |
+
"order process": 1856,
|
925 |
+
"process restart": 2168,
|
926 |
+
"unfortunately stuck": 3259,
|
927 |
+
"stuck time": 2929,
|
928 |
+
"time time": 3119,
|
929 |
+
"time payment": 3094,
|
930 |
+
"payment process": 2009,
|
931 |
+
"come later": 512,
|
932 |
+
"continue shop": 589,
|
933 |
+
"shop wish": 2688,
|
934 |
+
"place order": 2049,
|
935 |
+
"order twice": 1890,
|
936 |
+
"access account": 23,
|
937 |
+
"account order": 34,
|
938 |
+
"order send": 1872,
|
939 |
+
"dont know": 831,
|
940 |
+
"payment method": 2002,
|
941 |
+
"shop completely": 2666,
|
942 |
+
"clearly use": 457,
|
943 |
+
"use slow": 3341,
|
944 |
+
"slow time": 2790,
|
945 |
+
"time tried": 3121,
|
946 |
+
"tried enter": 3170,
|
947 |
+
"error try": 971,
|
948 |
+
"try pay": 3192,
|
949 |
+
"pay ideal": 1974,
|
950 |
+
"make order": 1624,
|
951 |
+
"order choose": 1805,
|
952 |
+
"continue pay": 588,
|
953 |
+
"customer service": 641,
|
954 |
+
"service wait": 2633,
|
955 |
+
"pay work": 1988,
|
956 |
+
"work basically": 3482,
|
957 |
+
"slow pay": 2785,
|
958 |
+
"long time": 1543,
|
959 |
+
"time today": 3120,
|
960 |
+
"today shop": 3137,
|
961 |
+
"cart log": 344,
|
962 |
+
"purchase process": 2219,
|
963 |
+
"process shop": 2169,
|
964 |
+
"link payment": 1476,
|
965 |
+
"doesnt work": 821,
|
966 |
+
"constantly hang": 574,
|
967 |
+
"automatic entry": 140,
|
968 |
+
"want close": 3398,
|
969 |
+
"close look": 469,
|
970 |
+
"look article": 1559,
|
971 |
+
"know work": 1417,
|
972 |
+
"link work": 1477,
|
973 |
+
"work pay": 3532,
|
974 |
+
"work work": 3580,
|
975 |
+
"work use": 3574,
|
976 |
+
"impossible pay": 1318,
|
977 |
+
"actually satisfied": 52,
|
978 |
+
"time work": 3131,
|
979 |
+
"manage pay": 1635,
|
980 |
+
"try time": 3199,
|
981 |
+
"time make": 3086,
|
982 |
+
"make easy": 1619,
|
983 |
+
"easy use": 910,
|
984 |
+
"invoice product": 1384,
|
985 |
+
"selection work": 2588,
|
986 |
+
"work quite": 3543,
|
987 |
+
"quite bit": 2292,
|
988 |
+
"bit complicated": 233,
|
989 |
+
"loading time": 1510,
|
990 |
+
"time long": 3082,
|
991 |
+
"actually quite": 51,
|
992 |
+
"want complete": 3400,
|
993 |
+
"complete order": 538,
|
994 |
+
"order error": 1827,
|
995 |
+
"secure connection": 2568,
|
996 |
+
"connection establish": 565,
|
997 |
+
"cart order": 346,
|
998 |
+
"ill buy": 1294,
|
999 |
+
"really place": 2336,
|
1000 |
+
"purchase time": 2220,
|
1001 |
+
"time order": 3091,
|
1002 |
+
"function work": 1152,
|
1003 |
+
"work properly": 3539,
|
1004 |
+
"properly time": 2205,
|
1005 |
+
"time pay": 3093,
|
1006 |
+
"order today": 1887,
|
1007 |
+
"want order": 3405,
|
1008 |
+
"order account": 1794,
|
1009 |
+
"work offer": 3528,
|
1010 |
+
"use discount": 3308,
|
1011 |
+
"discount voucher": 779,
|
1012 |
+
"minimum purchase": 1682,
|
1013 |
+
"purchase buy": 2212,
|
1014 |
+
"buy purchase": 311,
|
1015 |
+
"payment gateway": 1998,
|
1016 |
+
"time finally": 3070,
|
1017 |
+
"stuck payment": 2928,
|
1018 |
+
"payment clear": 1993,
|
1019 |
+
"clear work": 450,
|
1020 |
+
"link ing": 1475,
|
1021 |
+
"work error": 3506,
|
1022 |
+
"error message": 961,
|
1023 |
+
"stuck way": 2930,
|
1024 |
+
"pay account": 1964,
|
1025 |
+
"think shame": 3040,
|
1026 |
+
"bank contact": 198,
|
1027 |
+
"didnt work": 737,
|
1028 |
+
"bank card": 197,
|
1029 |
+
"work payment": 3533,
|
1030 |
+
"bad experience": 178,
|
1031 |
+
"quickly payment": 2285,
|
1032 |
+
"button work": 293,
|
1033 |
+
"work worthless": 3581,
|
1034 |
+
"cart try": 357,
|
1035 |
+
"needless say": 1733,
|
1036 |
+
"say unfortunately": 2523,
|
1037 |
+
"unfortunately dont": 3242,
|
1038 |
+
"work unfortunately": 3571,
|
1039 |
+
"pay invoice": 1976,
|
1040 |
+
"longer work": 1557,
|
1041 |
+
"work bad": 3480,
|
1042 |
+
"payment bank": 1990,
|
1043 |
+
"able use": 10,
|
1044 |
+
"service order": 2622,
|
1045 |
+
"really thing": 2345,
|
1046 |
+
"use easy": 3312,
|
1047 |
+
"easy fast": 881,
|
1048 |
+
"fast convenient": 1045,
|
1049 |
+
"bad thing": 189,
|
1050 |
+
"purchase possible": 2217,
|
1051 |
+
"work buy": 3484,
|
1052 |
+
"order doesnt": 1821,
|
1053 |
+
"star deduction": 2837,
|
1054 |
+
"redeem gift": 2400,
|
1055 |
+
"banking work": 202,
|
1056 |
+
"main menu": 1610,
|
1057 |
+
"point deduction": 2061,
|
1058 |
+
"fun easy": 1145,
|
1059 |
+
"difficult work": 750,
|
1060 |
+
"card reader": 333,
|
1061 |
+
"annoy thing": 109,
|
1062 |
+
"work slowly": 3556,
|
1063 |
+
"customer friendly": 638,
|
1064 |
+
"phone work": 2033,
|
1065 |
+
"work make": 3523,
|
1066 |
+
"make bank": 1616,
|
1067 |
+
"order try": 1888,
|
1068 |
+
"problem miss": 2146,
|
1069 |
+
"discount code": 775,
|
1070 |
+
"use clear": 3301,
|
1071 |
+
"various payment": 3368,
|
1072 |
+
"happily order": 1224,
|
1073 |
+
"want sell": 3413,
|
1074 |
+
"sell payment": 2596,
|
1075 |
+
"purchase problem": 2218,
|
1076 |
+
"enter discount": 941,
|
1077 |
+
"proceed payment": 2159,
|
1078 |
+
"payment pay": 2005,
|
1079 |
+
"fast uncomplicated": 1060,
|
1080 |
+
"uncomplicated clear": 3219,
|
1081 |
+
"function doesnt": 1151,
|
1082 |
+
"work constantly": 3493,
|
1083 |
+
"work browser": 3483,
|
1084 |
+
"browser shop": 280,
|
1085 |
+
"cart bad": 342,
|
1086 |
+
"connection server": 566,
|
1087 |
+
"delete account": 696,
|
1088 |
+
"possible restart": 2083,
|
1089 |
+
"log payment": 1525,
|
1090 |
+
"shame pay": 2647,
|
1091 |
+
"good unfortunately": 1192,
|
1092 |
+
"card payment": 331,
|
1093 |
+
"stop order": 2866,
|
1094 |
+
"order option": 1847,
|
1095 |
+
"payment moment": 2003,
|
1096 |
+
"moment work": 1700,
|
1097 |
+
"order work": 1904,
|
1098 |
+
"work page": 3531,
|
1099 |
+
"page display": 1929,
|
1100 |
+
"order receive": 1864,
|
1101 |
+
"bad constantly": 172,
|
1102 |
+
"message soon": 1674,
|
1103 |
+
"start payment": 2841,
|
1104 |
+
"need improvement": 1731,
|
1105 |
+
"longer available": 1550,
|
1106 |
+
"available payment": 150,
|
1107 |
+
"unfortunately pay": 3251,
|
1108 |
+
"ideal work": 1290,
|
1109 |
+
"work dont": 3502,
|
1110 |
+
"prefer buy": 2106,
|
1111 |
+
"problem fix": 2143,
|
1112 |
+
"product previously": 2185,
|
1113 |
+
"ship free": 2655,
|
1114 |
+
"free order": 1132,
|
1115 |
+
"uncomplicated work": 3224,
|
1116 |
+
"buy account": 295,
|
1117 |
+
"order unfortunately": 1892,
|
1118 |
+
"unfortunately doesnt": 3241,
|
1119 |
+
"unfortunately error": 3243,
|
1120 |
+
"dont receive": 841,
|
1121 |
+
"order confirmation": 1812,
|
1122 |
+
"information come": 1348,
|
1123 |
+
"error open": 962,
|
1124 |
+
"account bad": 30,
|
1125 |
+
"order reason": 1863,
|
1126 |
+
"reason havent": 2351,
|
1127 |
+
"havent gotten": 1236,
|
1128 |
+
"money day": 1705,
|
1129 |
+
"twice send": 3205,
|
1130 |
+
"send didnt": 2603,
|
1131 |
+
"later receive": 1442,
|
1132 |
+
"order longer": 1841,
|
1133 |
+
"purchase account": 2211,
|
1134 |
+
"error longer": 959,
|
1135 |
+
"longer purchase": 1554,
|
1136 |
+
"clear fast": 425,
|
1137 |
+
"want change": 3396,
|
1138 |
+
"process delivery": 2162,
|
1139 |
+
"pay branch": 1967,
|
1140 |
+
"branch pay": 260,
|
1141 |
+
"pay cash": 1969,
|
1142 |
+
"fashion size": 1042,
|
1143 |
+
"selection store": 2587,
|
1144 |
+
"voucher code": 3382,
|
1145 |
+
"clear unfortunately": 448,
|
1146 |
+
"tried pay": 3171,
|
1147 |
+
"pay time": 1985,
|
1148 |
+
"payment error": 1997,
|
1149 |
+
"error shame": 965,
|
1150 |
+
"work click": 3488,
|
1151 |
+
"work come": 3489,
|
1152 |
+
"shop clear": 2664,
|
1153 |
+
"clear convenient": 423,
|
1154 |
+
"work log": 3519,
|
1155 |
+
"pay ing": 1975,
|
1156 |
+
"discount register": 777,
|
1157 |
+
"make purchase": 1626,
|
1158 |
+
"want send": 3414,
|
1159 |
+
"scam dont": 2527,
|
1160 |
+
"promotional code": 2198,
|
1161 |
+
"code use": 498,
|
1162 |
+
"money return": 1710,
|
1163 |
+
"work ideal": 3515,
|
1164 |
+
"ill delete": 1295,
|
1165 |
+
"work easy": 3504,
|
1166 |
+
"pay error": 1972,
|
1167 |
+
"possible order": 2081,
|
1168 |
+
"work shop": 3553,
|
1169 |
+
"cart suddenly": 355,
|
1170 |
+
"completely different": 544,
|
1171 |
+
"long use": 1545,
|
1172 |
+
"use store": 3342,
|
1173 |
+
"store easy": 2879,
|
1174 |
+
"easy accessible": 873,
|
1175 |
+
"wont let": 3471,
|
1176 |
+
"add card": 56,
|
1177 |
+
"buy clothes": 299,
|
1178 |
+
"clothes store": 482,
|
1179 |
+
"really annoy": 2325,
|
1180 |
+
"despite fact": 722,
|
1181 |
+
"support center": 2970,
|
1182 |
+
"impossible access": 1313,
|
1183 |
+
"waste time": 3426,
|
1184 |
+
"time longer": 3083,
|
1185 |
+
"want pay": 3406,
|
1186 |
+
"way order": 3432,
|
1187 |
+
"order use": 1894,
|
1188 |
+
"use bank": 3297,
|
1189 |
+
"dont want": 851,
|
1190 |
+
"want money": 3403,
|
1191 |
+
"time send": 3111,
|
1192 |
+
"longer pay": 1552,
|
1193 |
+
"good ill": 1182,
|
1194 |
+
"unable pay": 3211,
|
1195 |
+
"order th": 1884,
|
1196 |
+
"telephone contact": 3003,
|
1197 |
+
"pay unfortunately": 1987,
|
1198 |
+
"unfortunately click": 3239,
|
1199 |
+
"payment ideal": 1999,
|
1200 |
+
"process easy": 2163,
|
1201 |
+
"straight away": 2920,
|
1202 |
+
"pay order": 1978,
|
1203 |
+
"bad pay": 181,
|
1204 |
+
"time slow": 3114,
|
1205 |
+
"shame shop": 2649,
|
1206 |
+
"shop quality": 2675,
|
1207 |
+
"use different": 3306,
|
1208 |
+
"pay attention": 1965,
|
1209 |
+
"time bug": 3054,
|
1210 |
+
"understand problem": 3228,
|
1211 |
+
"ill order": 1296,
|
1212 |
+
"order update": 1893,
|
1213 |
+
"cash register": 363,
|
1214 |
+
"shop use": 2687,
|
1215 |
+
"use make": 3323,
|
1216 |
+
"stick really": 2860,
|
1217 |
+
"dont order": 839,
|
1218 |
+
"cart remain": 351,
|
1219 |
+
"wait money": 3390,
|
1220 |
+
"easy order": 891,
|
1221 |
+
"site slow": 2733,
|
1222 |
+
"slow unfortunately": 2791,
|
1223 |
+
"enter bank": 937,
|
1224 |
+
"bank place": 199,
|
1225 |
+
"order day": 1816,
|
1226 |
+
"day make": 674,
|
1227 |
+
"check connection": 392,
|
1228 |
+
"connection dont": 564,
|
1229 |
+
"try place": 3194,
|
1230 |
+
"order morning": 1845,
|
1231 |
+
"white screen": 3455,
|
1232 |
+
"stay away": 2851,
|
1233 |
+
"store use": 2915,
|
1234 |
+
"try open": 3190,
|
1235 |
+
"try shop": 3197,
|
1236 |
+
"pay good": 1973,
|
1237 |
+
"good basket": 1177,
|
1238 |
+
"basket disappear": 211,
|
1239 |
+
"money transfer": 1713,
|
1240 |
+
"use order": 3324,
|
1241 |
+
"order branch": 1801,
|
1242 |
+
"branch unfortunately": 262,
|
1243 |
+
"unfortunately shop": 3256,
|
1244 |
+
"shame log": 2644,
|
1245 |
+
"log time": 1530,
|
1246 |
+
"time close": 3057,
|
1247 |
+
"ordered quickly": 1906,
|
1248 |
+
"quickly easily": 2277,
|
1249 |
+
"really work": 2349,
|
1250 |
+
"highly recommend": 1255,
|
1251 |
+
"recommend clear": 2380,
|
1252 |
+
"clear intuitive": 428,
|
1253 |
+
"intuitive easy": 1377,
|
1254 |
+
"recommend unfortunately": 2392,
|
1255 |
+
"work enter": 3505,
|
1256 |
+
"normally work": 1746,
|
1257 |
+
"clear concise": 422,
|
1258 |
+
"able pay": 7,
|
1259 |
+
"competent friendly": 532,
|
1260 |
+
"payment make": 2001,
|
1261 |
+
"advance order": 76,
|
1262 |
+
"card data": 329,
|
1263 |
+
"remove cart": 2433,
|
1264 |
+
"unsuccessful order": 3276,
|
1265 |
+
"currently try": 634,
|
1266 |
+
"try look": 3188,
|
1267 |
+
"look forward": 1566,
|
1268 |
+
"forward visit": 1128,
|
1269 |
+
"away dont": 162,
|
1270 |
+
"store cart": 2874,
|
1271 |
+
"work problem": 3538,
|
1272 |
+
"lot trouble": 1597,
|
1273 |
+
"work annoy": 3479,
|
1274 |
+
"annoy unfortunately": 110,
|
1275 |
+
"unfortunately didnt": 3240,
|
1276 |
+
"forward delivery": 1127,
|
1277 |
+
"delivery make": 704,
|
1278 |
+
"look store": 1574,
|
1279 |
+
"store satisfy": 2903,
|
1280 |
+
"especially come": 976,
|
1281 |
+
"tell wait": 3006,
|
1282 |
+
"absolutely recommend": 16,
|
1283 |
+
"recommend work": 2394,
|
1284 |
+
"lot hassle": 1589,
|
1285 |
+
"cancel order": 326,
|
1286 |
+
"visible order": 3377,
|
1287 |
+
"list dont": 1481,
|
1288 |
+
"long wait": 1547,
|
1289 |
+
"wait order": 3391,
|
1290 |
+
"order correct": 1813,
|
1291 |
+
"leave desire": 1454,
|
1292 |
+
"enter address": 936,
|
1293 |
+
"order reflect": 1866,
|
1294 |
+
"lot use": 1598,
|
1295 |
+
"use buy": 3299,
|
1296 |
+
"disappointed order": 764,
|
1297 |
+
"order way": 1900,
|
1298 |
+
"file claim": 1080,
|
1299 |
+
"work disaster": 3500,
|
1300 |
+
"payment day": 1994,
|
1301 |
+
"work badly": 3481,
|
1302 |
+
"doesnt let": 808,
|
1303 |
+
"discount doesnt": 776,
|
1304 |
+
"finally order": 1094,
|
1305 |
+
"integration terrible": 1366,
|
1306 |
+
"work try": 3569,
|
1307 |
+
"open unfortunately": 1775,
|
1308 |
+
"unusable error": 3279,
|
1309 |
+
"desire page": 720,
|
1310 |
+
"update didnt": 3281,
|
1311 |
+
"work today": 3568,
|
1312 |
+
"cell phone": 373,
|
1313 |
+
"briefly reload": 268,
|
1314 |
+
"rate high": 2307,
|
1315 |
+
"order later": 1839,
|
1316 |
+
"later newsletter": 1440,
|
1317 |
+
"order good": 1833,
|
1318 |
+
"good use": 1193,
|
1319 |
+
"order time": 1886,
|
1320 |
+
"time ago": 3050,
|
1321 |
+
"price item": 2127,
|
1322 |
+
"item store": 1394,
|
1323 |
+
"personal data": 2026,
|
1324 |
+
"data lot": 653,
|
1325 |
+
"order customer": 1815,
|
1326 |
+
"payment play": 2006,
|
1327 |
+
"error display": 956,
|
1328 |
+
"time customer": 3058,
|
1329 |
+
"help dont": 1248,
|
1330 |
+
"wait day": 3387,
|
1331 |
+
"confirmation transfer": 561,
|
1332 |
+
"lose money": 1580,
|
1333 |
+
"payment card": 1991,
|
1334 |
+
"order make": 1843,
|
1335 |
+
"white background": 3453,
|
1336 |
+
"money collect": 1703,
|
1337 |
+
"transaction money": 3156,
|
1338 |
+
"order register": 1867,
|
1339 |
+
"order cart": 1803,
|
1340 |
+
"information order": 1351,
|
1341 |
+
"loyal customer": 1603,
|
1342 |
+
"day impossible": 670,
|
1343 |
+
"send order": 2604,
|
1344 |
+
"pay blitz": 1966,
|
1345 |
+
"pay traditional": 1986,
|
1346 |
+
"day wait": 682,
|
1347 |
+
"good arrive": 1175,
|
1348 |
+
"easy way": 912,
|
1349 |
+
"option work": 1789,
|
1350 |
+
"enter code": 938,
|
1351 |
+
"code payment": 496,
|
1352 |
+
"extremely poor": 1024,
|
1353 |
+
"response time": 2448,
|
1354 |
+
"value money": 3363,
|
1355 |
+
"bad slow": 188,
|
1356 |
+
"slow doesnt": 2777,
|
1357 |
+
"payment long": 2000,
|
1358 |
+
"payment receive": 2011,
|
1359 |
+
"receive information": 2368,
|
1360 |
+
"information incorrect": 1349,
|
1361 |
+
"parcel locker": 1949,
|
1362 |
+
"payment procedure": 2008,
|
1363 |
+
"try order": 3191,
|
1364 |
+
"address correctly": 68,
|
1365 |
+
"blitz money": 247,
|
1366 |
+
"time receive": 3103,
|
1367 |
+
"store shop": 2906,
|
1368 |
+
"locally available": 1514,
|
1369 |
+
"data time": 657,
|
1370 |
+
"time unable": 3123,
|
1371 |
+
"unable complete": 3210,
|
1372 |
+
"complete purchase": 541,
|
1373 |
+
"time hour": 3074,
|
1374 |
+
"card end": 330,
|
1375 |
+
"wont try": 3473,
|
1376 |
+
"basket time": 215,
|
1377 |
+
"ideal function": 1289,
|
1378 |
+
"order number": 1846,
|
1379 |
+
"store white": 2916,
|
1380 |
+
"screen turn": 2535,
|
1381 |
+
"order buy": 1802,
|
1382 |
+
"account use": 43,
|
1383 |
+
"experience terrible": 1016,
|
1384 |
+
"really time": 2347,
|
1385 |
+
"previous page": 2124,
|
1386 |
+
"payment quick": 2010,
|
1387 |
+
"number payment": 1753,
|
1388 |
+
"account log": 33,
|
1389 |
+
"work flawlessly": 3510,
|
1390 |
+
"order basket": 1800,
|
1391 |
+
"problem recommend": 2150,
|
1392 |
+
"clear organize": 430,
|
1393 |
+
"dont look": 835,
|
1394 |
+
"process order": 2164,
|
1395 |
+
"receive return": 2373,
|
1396 |
+
"receive pay": 2372,
|
1397 |
+
"pay return": 1981,
|
1398 |
+
"return dont": 2457,
|
1399 |
+
"order think": 1885,
|
1400 |
+
"day say": 680,
|
1401 |
+
"payment page": 2004,
|
1402 |
+
"card possible": 332,
|
1403 |
+
"shopping cart": 2691,
|
1404 |
+
"cart pity": 349,
|
1405 |
+
"pity order": 2046,
|
1406 |
+
"complete payment": 539,
|
1407 |
+
"error switch": 969,
|
1408 |
+
"switch payment": 2984,
|
1409 |
+
"finalize order": 1090,
|
1410 |
+
"order ordered": 1849,
|
1411 |
+
"didnt order": 735,
|
1412 |
+
"account want": 44,
|
1413 |
+
"order didnt": 1817,
|
1414 |
+
"ill probably": 1297,
|
1415 |
+
"phone doesnt": 2031,
|
1416 |
+
"doesnt know": 807,
|
1417 |
+
"know write": 1418,
|
1418 |
+
"account receive": 38,
|
1419 |
+
"receive confirm": 2365,
|
1420 |
+
"store work": 2917,
|
1421 |
+
"work moment": 3526,
|
1422 |
+
"work terribly": 3563,
|
1423 |
+
"enter order": 943,
|
1424 |
+
"half day": 1210,
|
1425 |
+
"day order": 675,
|
1426 |
+
"problem return": 2151,
|
1427 |
+
"finish order": 1100,
|
1428 |
+
"order turn": 1889,
|
1429 |
+
"actually time": 53,
|
1430 |
+
"time try": 3122,
|
1431 |
+
"try buy": 3181,
|
1432 |
+
"buy store": 317,
|
1433 |
+
"store time": 2913,
|
1434 |
+
"money shop": 1712,
|
1435 |
+
"order currently": 1814,
|
1436 |
+
"accept payment": 19,
|
1437 |
+
"return order": 2464,
|
1438 |
+
"think order": 3037,
|
1439 |
+
"time fact": 3067,
|
1440 |
+
"apparently didnt": 120,
|
1441 |
+
"week order": 3440,
|
1442 |
+
"order end": 1826,
|
1443 |
+
"basket change": 210,
|
1444 |
+
"service doesnt": 2618,
|
1445 |
+
"doesnt provide": 814,
|
1446 |
+
"buy pant": 308,
|
1447 |
+
"order come": 1809,
|
1448 |
+
"contact customer": 583,
|
1449 |
+
"dont recommend": 842,
|
1450 |
+
"havent buy": 1235,
|
1451 |
+
"experience make": 1013,
|
1452 |
+
"good order": 1184,
|
1453 |
+
"day later": 671,
|
1454 |
+
"later order": 1441,
|
1455 |
+
"shame really": 2648,
|
1456 |
+
"service store": 2629,
|
1457 |
+
"leaf desire": 1448,
|
1458 |
+
"receive tried": 2375,
|
1459 |
+
"long order": 1537,
|
1460 |
+
"order item": 1838,
|
1461 |
+
"message come": 1671,
|
1462 |
+
"stop work": 2867,
|
1463 |
+
"work pity": 3534,
|
1464 |
+
"account twice": 42,
|
1465 |
+
"make return": 1627,
|
1466 |
+
"return money": 2463,
|
1467 |
+
"return store": 2467,
|
1468 |
+
"wait bad": 3385,
|
1469 |
+
"thing send": 3027,
|
1470 |
+
"send return": 2605,
|
1471 |
+
"clear buy": 420,
|
1472 |
+
"order hope": 1835,
|
1473 |
+
"work open": 3529,
|
1474 |
+
"press button": 2118,
|
1475 |
+
"work quality": 3540,
|
1476 |
+
"whats point": 3448,
|
1477 |
+
"unfortunately order": 3250,
|
1478 |
+
"cash delivery": 361,
|
1479 |
+
"delivery option": 705,
|
1480 |
+
"store suppose": 2912,
|
1481 |
+
"regular customer": 2415,
|
1482 |
+
"receive say": 2374,
|
1483 |
+
"say order": 2520,
|
1484 |
+
"advance doesnt": 75,
|
1485 |
+
"work data": 3496,
|
1486 |
+
"data transfer": 658,
|
1487 |
+
"come late": 511,
|
1488 |
+
"satisfy ordered": 2505,
|
1489 |
+
"track order": 3151,
|
1490 |
+
"order say": 1869,
|
1491 |
+
"say error": 2517,
|
1492 |
+
"work right": 3547,
|
1493 |
+
"yesterday order": 3601,
|
1494 |
+
"order suddenly": 1881,
|
1495 |
+
"order shop": 1874,
|
1496 |
+
"time satisfy": 3107,
|
1497 |
+
"annoy bad": 103,
|
1498 |
+
"impossible open": 1316,
|
1499 |
+
"time use": 3126,
|
1500 |
+
"payment register": 2012,
|
1501 |
+
"register order": 2410,
|
1502 |
+
"order recommend": 1865,
|
1503 |
+
"product basket": 2176,
|
1504 |
+
"time didnt": 3061,
|
1505 |
+
"order wait": 1897,
|
1506 |
+
"wait business": 3386,
|
1507 |
+
"business day": 289,
|
1508 |
+
"day recommend": 678,
|
1509 |
+
"possible make": 2079,
|
1510 |
+
"purchase enter": 2214,
|
1511 |
+
"home page": 1263,
|
1512 |
+
"page time": 1938,
|
1513 |
+
"time return": 3105,
|
1514 |
+
"return enter": 2459,
|
1515 |
+
"message twice": 1676,
|
1516 |
+
"want purchase": 3409,
|
1517 |
+
"delivery store": 709,
|
1518 |
+
"home delivery": 1261,
|
1519 |
+
"possible choose": 2076,
|
1520 |
+
"account basket": 31,
|
1521 |
+
"recommend make": 2382,
|
1522 |
+
"store dont": 2878,
|
1523 |
+
"dont make": 836,
|
1524 |
+
"order address": 1796,
|
1525 |
+
"address time": 69,
|
1526 |
+
"language option": 1430,
|
1527 |
+
"error make": 960,
|
1528 |
+
"possibility order": 2073,
|
1529 |
+
"know order": 1412,
|
1530 |
+
"day delivery": 669,
|
1531 |
+
"delivery payment": 706,
|
1532 |
+
"customer number": 640,
|
1533 |
+
"process really": 2167,
|
1534 |
+
"big problem": 225,
|
1535 |
+
"work search": 3551,
|
1536 |
+
"search annoy": 2539,
|
1537 |
+
"work time": 3567,
|
1538 |
+
"shame impossible": 2643,
|
1539 |
+
"clear easy": 424,
|
1540 |
+
"easy search": 900,
|
1541 |
+
"search unfortunately": 2559,
|
1542 |
+
"day bad": 664,
|
1543 |
+
"let leave": 1463,
|
1544 |
+
"impossible make": 1315,
|
1545 |
+
"time wont": 3130,
|
1546 |
+
"save data": 2511,
|
1547 |
+
"data make": 654,
|
1548 |
+
"newsletter redeem": 1738,
|
1549 |
+
"attempt different": 136,
|
1550 |
+
"browser different": 277,
|
1551 |
+
"different address": 739,
|
1552 |
+
"order wont": 1903,
|
1553 |
+
"pair trouser": 1945,
|
1554 |
+
"directly shop": 754,
|
1555 |
+
"didnt receive": 736,
|
1556 |
+
"order able": 1793,
|
1557 |
+
"impossible place": 1319,
|
1558 |
+
"purchase try": 2222,
|
1559 |
+
"search engine": 2549,
|
1560 |
+
"use search": 3337,
|
1561 |
+
"bad time": 190,
|
1562 |
+
"time wrong": 3132,
|
1563 |
+
"store pity": 2895,
|
1564 |
+
"search work": 2561,
|
1565 |
+
"impossible choose": 1314,
|
1566 |
+
"service payment": 2623,
|
1567 |
+
"super slow": 2965,
|
1568 |
+
"click item": 464,
|
1569 |
+
"time load": 3080,
|
1570 |
+
"load click": 1498,
|
1571 |
+
"lose shopping": 1581,
|
1572 |
+
"cart start": 354,
|
1573 |
+
"finally ready": 1095,
|
1574 |
+
"ready pay": 2318,
|
1575 |
+
"receive message": 2369,
|
1576 |
+
"experience order": 1014,
|
1577 |
+
"doesnt arrive": 799,
|
1578 |
+
"status order": 2849,
|
1579 |
+
"telephone service": 3004,
|
1580 |
+
"doesnt care": 800,
|
1581 |
+
"really really": 2339,
|
1582 |
+
"pay card": 1968,
|
1583 |
+
"dont wait": 850,
|
1584 |
+
"service dont": 2619,
|
1585 |
+
"information money": 1350,
|
1586 |
+
"day return": 679,
|
1587 |
+
"validate order": 3359,
|
1588 |
+
"bad shopping": 186,
|
1589 |
+
"branch pick": 261,
|
1590 |
+
"buy product": 310,
|
1591 |
+
"extremely slow": 1026,
|
1592 |
+
"able buy": 2,
|
1593 |
+
"shame buy": 2640,
|
1594 |
+
"buy lot": 306,
|
1595 |
+
"dark mode": 650,
|
1596 |
+
"pay shopping": 1983,
|
1597 |
+
"shopping difficult": 2694,
|
1598 |
+
"password password": 1958,
|
1599 |
+
"password manager": 1957,
|
1600 |
+
"make difficult": 1618,
|
1601 |
+
"difficult tire": 748,
|
1602 |
+
"try finalize": 3184,
|
1603 |
+
"finalize purchase": 1091,
|
1604 |
+
"order stock": 1879,
|
1605 |
+
"let place": 1465,
|
1606 |
+
"enter manually": 942,
|
1607 |
+
"awful slow": 165,
|
1608 |
+
"slow load": 2782,
|
1609 |
+
"load apply": 1496,
|
1610 |
+
"apply search": 123,
|
1611 |
+
"search mark": 2554,
|
1612 |
+
"mark select": 1642,
|
1613 |
+
"select size": 2576,
|
1614 |
+
"size payment": 2757,
|
1615 |
+
"process real": 2166,
|
1616 |
+
"real torture": 2321,
|
1617 |
+
"torture make": 3142,
|
1618 |
+
"make extremely": 1621,
|
1619 |
+
"extremely difficult": 1023,
|
1620 |
+
"difficult buy": 742,
|
1621 |
+
"buy good": 304,
|
1622 |
+
"good check": 1179,
|
1623 |
+
"check availability": 391,
|
1624 |
+
"availability store": 144,
|
1625 |
+
"store buy": 2873,
|
1626 |
+
"buy physically": 309,
|
1627 |
+
"physically dont": 2038,
|
1628 |
+
"dont waste": 852,
|
1629 |
+
"time patience": 3092,
|
1630 |
+
"physical store": 2036,
|
1631 |
+
"store reliable": 2902,
|
1632 |
+
"soon account": 2806,
|
1633 |
+
"bad bad": 169,
|
1634 |
+
"order soon": 1878,
|
1635 |
+
"problem long": 2145,
|
1636 |
+
"long long": 1536,
|
1637 |
+
"good send": 1189,
|
1638 |
+
"work uninstalled": 3572,
|
1639 |
+
"code quickly": 497,
|
1640 |
+
"quickly pay": 2284,
|
1641 |
+
"improve lot": 1324,
|
1642 |
+
"lot especially": 1588,
|
1643 |
+
"order wide": 1901,
|
1644 |
+
"wide range": 3458,
|
1645 |
+
"range good": 2303,
|
1646 |
+
"especially actually": 975,
|
1647 |
+
"actually long": 50,
|
1648 |
+
"slow possible": 2786,
|
1649 |
+
"possible complete": 2077,
|
1650 |
+
"remain white": 2429,
|
1651 |
+
"work order": 3530,
|
1652 |
+
"address wrong": 71,
|
1653 |
+
"order communication": 1810,
|
1654 |
+
"order long": 1840,
|
1655 |
+
"work impossible": 3516,
|
1656 |
+
"page try": 1939,
|
1657 |
+
"terrible try": 3016,
|
1658 |
+
"make store": 1630,
|
1659 |
+
"load page": 1502,
|
1660 |
+
"long pay": 1540,
|
1661 |
+
"know really": 1414,
|
1662 |
+
"really think": 2346,
|
1663 |
+
"think lose": 3036,
|
1664 |
+
"dont unfortunately": 849,
|
1665 |
+
"account pay": 35,
|
1666 |
+
"pay dont": 1971,
|
1667 |
+
"recommend shop": 2388,
|
1668 |
+
"leave money": 1457,
|
1669 |
+
"store pay": 2894,
|
1670 |
+
"switch copy": 2982,
|
1671 |
+
"page dont": 1930,
|
1672 |
+
"quick easy": 2266,
|
1673 |
+
"bad customer": 173,
|
1674 |
+
"customer card": 637,
|
1675 |
+
"long work": 1548,
|
1676 |
+
"work longer": 3521,
|
1677 |
+
"longer order": 1551,
|
1678 |
+
"say item": 2518,
|
1679 |
+
"item available": 1388,
|
1680 |
+
"cost order": 610,
|
1681 |
+
"play store": 2052,
|
1682 |
+
"want place": 3407,
|
1683 |
+
"order return": 1868,
|
1684 |
+
"order charge": 1804,
|
1685 |
+
"fatal work": 1064,
|
1686 |
+
"time purchase": 3099,
|
1687 |
+
"havent bad": 1234,
|
1688 |
+
"visible store": 3378,
|
1689 |
+
"store problem": 2897,
|
1690 |
+
"day try": 681,
|
1691 |
+
"service use": 2632,
|
1692 |
+
"use doesnt": 3309,
|
1693 |
+
"dont accept": 823,
|
1694 |
+
"purchase good": 2215,
|
1695 |
+
"payment unfortunately": 2016,
|
1696 |
+
"currency country": 630,
|
1697 |
+
"broken payment": 272,
|
1698 |
+
"error shop": 966,
|
1699 |
+
"longer sent": 1555,
|
1700 |
+
"june th": 1404,
|
1701 |
+
"try complete": 3183,
|
1702 |
+
"error order": 963,
|
1703 |
+
"pay possible": 1979,
|
1704 |
+
"add value": 59,
|
1705 |
+
"fast delivery": 1047,
|
1706 |
+
"wasnt accept": 3423,
|
1707 |
+
"work good": 3512,
|
1708 |
+
"today try": 3139,
|
1709 |
+
"daughter order": 661,
|
1710 |
+
"receive money": 2370,
|
1711 |
+
"recommend navigation": 2383,
|
1712 |
+
"order unfortunate": 1891,
|
1713 |
+
"lay slow": 1445,
|
1714 |
+
"problem order": 2148,
|
1715 |
+
"order click": 1807,
|
1716 |
+
"click basket": 461,
|
1717 |
+
"order appear": 1797,
|
1718 |
+
"addition pay": 64,
|
1719 |
+
"work possible": 3537,
|
1720 |
+
"tried time": 3172,
|
1721 |
+
"time annoy": 3051,
|
1722 |
+
"time doesnt": 3063,
|
1723 |
+
"entire purchase": 949,
|
1724 |
+
"return form": 2460,
|
1725 |
+
"tell wrong": 3007,
|
1726 |
+
"time look": 3084,
|
1727 |
+
"basket sell": 214,
|
1728 |
+
"bit difficult": 234,
|
1729 |
+
"switch forth": 2983,
|
1730 |
+
"dont log": 834,
|
1731 |
+
"log addition": 1519,
|
1732 |
+
"screen work": 2536,
|
1733 |
+
"order history": 1834,
|
1734 |
+
"history receive": 1257,
|
1735 |
+
"recommend want": 2393,
|
1736 |
+
"click product": 465,
|
1737 |
+
"product dont": 2179,
|
1738 |
+
"dont product": 840,
|
1739 |
+
"main page": 1611,
|
1740 |
+
"page lot": 1933,
|
1741 |
+
"little difficult": 1489,
|
1742 |
+
"possible try": 2087,
|
1743 |
+
"work satisfied": 3548,
|
1744 |
+
"able log": 4,
|
1745 |
+
"code work": 499,
|
1746 |
+
"work really": 3544,
|
1747 |
+
"easy mobile": 888,
|
1748 |
+
"unfortunately work": 3262,
|
1749 |
+
"possible want": 2088,
|
1750 |
+
"good shop": 1190,
|
1751 |
+
"cart payment": 348,
|
1752 |
+
"bad difficult": 174,
|
1753 |
+
"complicate want": 549,
|
1754 |
+
"bit slow": 238,
|
1755 |
+
"instead bank": 1363,
|
1756 |
+
"session time": 2635,
|
1757 |
+
"bad search": 183,
|
1758 |
+
"slow order": 2784,
|
1759 |
+
"company policy": 529,
|
1760 |
+
"stock send": 2862,
|
1761 |
+
"day customer": 668,
|
1762 |
+
"use card": 3300,
|
1763 |
+
"time switch": 3117,
|
1764 |
+
"order useless": 1895,
|
1765 |
+
"use bad": 3296,
|
1766 |
+
"basket information": 212,
|
1767 |
+
"order second": 1870,
|
1768 |
+
"wont order": 3472,
|
1769 |
+
"transparent intuitive": 3162,
|
1770 |
+
"constantly wrong": 579,
|
1771 |
+
"order shame": 1873,
|
1772 |
+
"shame store": 2651,
|
1773 |
+
"make time": 1632,
|
1774 |
+
"maybe pay": 1652,
|
1775 |
+
"week ago": 3439,
|
1776 |
+
"ago order": 89,
|
1777 |
+
"store bug": 2872,
|
1778 |
+
"possible store": 2085,
|
1779 |
+
"store excellent": 2881,
|
1780 |
+
"work want": 3575,
|
1781 |
+
"pay suddenly": 1984,
|
1782 |
+
"suddenly error": 2943,
|
1783 |
+
"store make": 2891,
|
1784 |
+
"screen enter": 2534,
|
1785 |
+
"charge make": 384,
|
1786 |
+
"make shame": 1629,
|
1787 |
+
"really bad": 2327,
|
1788 |
+
"account try": 41,
|
1789 |
+
"unexpected error": 3232,
|
1790 |
+
"option cancel": 1784,
|
1791 |
+
"dev team": 725,
|
1792 |
+
"order wish": 1902,
|
1793 |
+
"cash pay": 362,
|
1794 |
+
"payment cart": 1992,
|
1795 |
+
"confirmation purchase": 560,
|
1796 |
+
"change language": 381,
|
1797 |
+
"dont option": 838,
|
1798 |
+
"pay shop": 1982,
|
1799 |
+
"shop really": 2677,
|
1800 |
+
"disaster doesnt": 768,
|
1801 |
+
"doesnt open": 813,
|
1802 |
+
"use complete": 3304,
|
1803 |
+
"quick response": 2269,
|
1804 |
+
"write day": 3595,
|
1805 |
+
"want buy": 3395,
|
1806 |
+
"work normally": 3527,
|
1807 |
+
"lot display": 1585,
|
1808 |
+
"display impossible": 789,
|
1809 |
+
"payment short": 2013,
|
1810 |
+
"order problem": 1855,
|
1811 |
+
"time site": 3113,
|
1812 |
+
"site work": 2735,
|
1813 |
+
"immediately payment": 1307,
|
1814 |
+
"payment easy": 1996,
|
1815 |
+
"select country": 2572,
|
1816 |
+
"possible log": 2078,
|
1817 |
+
"dont let": 832,
|
1818 |
+
"let order": 1464,
|
1819 |
+
"discount work": 780,
|
1820 |
+
"possible tablet": 2086,
|
1821 |
+
"tablet landscape": 2990,
|
1822 |
+
"landscape format": 1428,
|
1823 |
+
"come wont": 517,
|
1824 |
+
"didnt discount": 731,
|
1825 |
+
"page open": 1934,
|
1826 |
+
"make little": 1622,
|
1827 |
+
"account havent": 32,
|
1828 |
+
"havent receive": 1237,
|
1829 |
+
"use account": 3294,
|
1830 |
+
"list order": 1483,
|
1831 |
+
"time unfortunately": 3124,
|
1832 |
+
"completely useless": 546,
|
1833 |
+
"cart time": 356,
|
1834 |
+
"doesnt change": 801,
|
1835 |
+
"soon make": 2808,
|
1836 |
+
"useless order": 3350,
|
1837 |
+
"order bad": 1799,
|
1838 |
+
"bad order": 180,
|
1839 |
+
"havent able": 1233,
|
1840 |
+
"quite slow": 2296,
|
1841 |
+
"order display": 1820,
|
1842 |
+
"able order": 6,
|
1843 |
+
"pick store": 2041,
|
1844 |
+
"unable place": 3212,
|
1845 |
+
"button visible": 292,
|
1846 |
+
"order progress": 1858,
|
1847 |
+
"order edit": 1825,
|
1848 |
+
"try register": 3196,
|
1849 |
+
"clear search": 439,
|
1850 |
+
"search filter": 2550,
|
1851 |
+
"filter doesnt": 1082,
|
1852 |
+
"code doesnt": 494,
|
1853 |
+
"pay result": 1980,
|
1854 |
+
"gift card": 1168,
|
1855 |
+
"stock store": 2863,
|
1856 |
+
"service really": 2626,
|
1857 |
+
"really appreciate": 2326,
|
1858 |
+
"dont money": 837,
|
1859 |
+
"unfortunately store": 3258,
|
1860 |
+
"store doesnt": 2877,
|
1861 |
+
"money whats": 1715,
|
1862 |
+
"error unexpected": 972,
|
1863 |
+
"unexpected exception": 3233,
|
1864 |
+
"pay doesnt": 1970,
|
1865 |
+
"work stuck": 3560,
|
1866 |
+
"problem moment": 2147,
|
1867 |
+
"moment dont": 1699,
|
1868 |
+
"day buy": 665,
|
1869 |
+
"buy service": 314,
|
1870 |
+
"pay leave": 1977,
|
1871 |
+
"leave moment": 1456,
|
1872 |
+
"option order": 1787,
|
1873 |
+
"entire message": 948,
|
1874 |
+
"want open": 3404,
|
1875 |
+
"store shopping": 2907,
|
1876 |
+
"cart work": 358,
|
1877 |
+
"save password": 2512,
|
1878 |
+
"card switch": 335,
|
1879 |
+
"page payment": 1936,
|
1880 |
+
"order purchase": 1859,
|
1881 |
+
"money send": 1711,
|
1882 |
+
"product bad": 2175,
|
1883 |
+
"immediately uninstalled": 1308,
|
1884 |
+
"catastrophic forever": 368,
|
1885 |
+
"forever load": 1120,
|
1886 |
+
"load purchase": 1503,
|
1887 |
+
"enter delivery": 940,
|
1888 |
+
"delivery address": 700,
|
1889 |
+
"package supposedly": 1925,
|
1890 |
+
"quality payment": 2244,
|
1891 |
+
"option doesnt": 1786,
|
1892 |
+
"discount unfortunately": 778,
|
1893 |
+
"bad discount": 175,
|
1894 |
+
"link banking": 1474,
|
1895 |
+
"impossible use": 1320,
|
1896 |
+
"didnt buy": 730,
|
1897 |
+
"data correctly": 652,
|
1898 |
+
"work despite": 3499,
|
1899 |
+
"update impossible": 3283,
|
1900 |
+
"money company": 1704,
|
1901 |
+
"doesnt send": 819,
|
1902 |
+
"error end": 958,
|
1903 |
+
"time message": 3087,
|
1904 |
+
"message work": 1677,
|
1905 |
+
"error constantly": 955,
|
1906 |
+
"open second": 1773,
|
1907 |
+
"bad use": 192,
|
1908 |
+
"use experience": 3314,
|
1909 |
+
"cart pay": 347,
|
1910 |
+
"money twice": 1714,
|
1911 |
+
"order site": 1875,
|
1912 |
+
"allow work": 95,
|
1913 |
+
"dont confirmation": 826,
|
1914 |
+
"real shame": 2320,
|
1915 |
+
"use quickly": 3333,
|
1916 |
+
"quickly overview": 2283,
|
1917 |
+
"order information": 1836,
|
1918 |
+
"payment status": 2014,
|
1919 |
+
"disaster problem": 770,
|
1920 |
+
"page error": 1931,
|
1921 |
+
"error white": 973,
|
1922 |
+
"page work": 1941,
|
1923 |
+
"make credit": 1617,
|
1924 |
+
"code order": 495,
|
1925 |
+
"difficult place": 744,
|
1926 |
+
"validate payment": 3360,
|
1927 |
+
"page white": 1940,
|
1928 |
+
"really clothes": 2329,
|
1929 |
+
"accept addition": 18,
|
1930 |
+
"lot pay": 1593,
|
1931 |
+
"properly soon": 2204,
|
1932 |
+
"soon want": 2811,
|
1933 |
+
"clear problem": 433,
|
1934 |
+
"terrible time": 3015,
|
1935 |
+
"try problem": 3195,
|
1936 |
+
"site pay": 2730,
|
1937 |
+
"order invoice": 1837,
|
1938 |
+
"hope work": 1274,
|
1939 |
+
"filter search": 1084,
|
1940 |
+
"search choose": 2543,
|
1941 |
+
"choose color": 406,
|
1942 |
+
"store stock": 2910,
|
1943 |
+
"room": 2476,
|
1944 |
+
"graphic": 1200,
|
1945 |
+
"obvious": 1757,
|
1946 |
+
"chance": 379,
|
1947 |
+
"success": 2937,
|
1948 |
+
"cover": 618,
|
1949 |
+
"image": 1300,
|
1950 |
+
"annoying": 113,
|
1951 |
+
"deactivate": 684,
|
1952 |
+
"reception": 2377,
|
1953 |
+
"annoyance": 112,
|
1954 |
+
"zoom": 3608,
|
1955 |
+
"bore": 254,
|
1956 |
+
"simple": 2714,
|
1957 |
+
"structured": 2925,
|
1958 |
+
"endless": 927,
|
1959 |
+
"bite": 239,
|
1960 |
+
"navigate": 1723,
|
1961 |
+
"luck": 1605,
|
1962 |
+
"individual": 1342,
|
1963 |
+
"review": 2470,
|
1964 |
+
"glass": 1173,
|
1965 |
+
"st": 2827,
|
1966 |
+
"note": 1748,
|
1967 |
+
"state": 2844,
|
1968 |
+
"preview": 2122,
|
1969 |
+
"feedback": 1072,
|
1970 |
+
"youve": 3604,
|
1971 |
+
"unbelievably": 3216,
|
1972 |
+
"prepared": 2112,
|
1973 |
+
"presentation": 2115,
|
1974 |
+
"speed": 2823,
|
1975 |
+
"loop": 1578,
|
1976 |
+
"exactly": 984,
|
1977 |
+
"worked": 3582,
|
1978 |
+
"heart": 1243,
|
1979 |
+
"fit": 1102,
|
1980 |
+
"performance": 2022,
|
1981 |
+
"surf": 2976,
|
1982 |
+
"potential": 2092,
|
1983 |
+
"developer": 726,
|
1984 |
+
"displayed": 794,
|
1985 |
+
"oh": 1763,
|
1986 |
+
"encourage": 925,
|
1987 |
+
"crash": 621,
|
1988 |
+
"unstable": 3274,
|
1989 |
+
"fairly": 1035,
|
1990 |
+
"narrow": 1722,
|
1991 |
+
"pretty": 2119,
|
1992 |
+
"nonexistent": 1743,
|
1993 |
+
"hide": 1251,
|
1994 |
+
"impression": 1322,
|
1995 |
+
"feel": 1073,
|
1996 |
+
"specific": 2819,
|
1997 |
+
"average": 159,
|
1998 |
+
"phenomenal": 2029,
|
1999 |
+
"drive": 861,
|
2000 |
+
"table": 2988,
|
2001 |
+
"photo": 2034,
|
2002 |
+
"enlarge": 933,
|
2003 |
+
"partly": 1953,
|
2004 |
+
"unavailable": 3213,
|
2005 |
+
"significant": 2710,
|
2006 |
+
"advertising": 80,
|
2007 |
+
"build": 286,
|
2008 |
+
"inconvenient": 1331,
|
2009 |
+
"default": 691,
|
2010 |
+
"hit": 1258,
|
2011 |
+
"relatively": 2420,
|
2012 |
+
"measurement": 1655,
|
2013 |
+
"scroll": 2537,
|
2014 |
+
"guide": 1206,
|
2015 |
+
"specify": 2821,
|
2016 |
+
"rarely": 2305,
|
2017 |
+
"hear": 1242,
|
2018 |
+
"minute": 1684,
|
2019 |
+
"design": 715,
|
2020 |
+
"fluidity": 1115,
|
2021 |
+
"category": 369,
|
2022 |
+
"easier": 866,
|
2023 |
+
"sort": 2813,
|
2024 |
+
"usable": 3291,
|
2025 |
+
"share": 2653,
|
2026 |
+
"department": 711,
|
2027 |
+
"slightly": 2773,
|
2028 |
+
"layout": 1446,
|
2029 |
+
"remember": 2431,
|
2030 |
+
"embarrass": 923,
|
2031 |
+
"searching": 2562,
|
2032 |
+
"correspond": 607,
|
2033 |
+
"hammer": 1213,
|
2034 |
+
"manageable": 1636,
|
2035 |
+
"limited": 1471,
|
2036 |
+
"extent": 1020,
|
2037 |
+
"tedious": 3000,
|
2038 |
+
"stays": 2855,
|
2039 |
+
"pure": 2223,
|
2040 |
+
"anger": 101,
|
2041 |
+
"standard": 2833,
|
2042 |
+
"chart": 385,
|
2043 |
+
"base": 206,
|
2044 |
+
"satisfaction": 2490,
|
2045 |
+
"contain": 584,
|
2046 |
+
"la": 1420,
|
2047 |
+
"summary": 2950,
|
2048 |
+
"urgently": 3290,
|
2049 |
+
"non": 1742,
|
2050 |
+
"icon": 1284,
|
2051 |
+
"hopefully": 1275,
|
2052 |
+
"bring": 270,
|
2053 |
+
"unresponsive": 3273,
|
2054 |
+
"better": 222,
|
2055 |
+
"spoil": 2825,
|
2056 |
+
"clothe": 471,
|
2057 |
+
"rating": 2308,
|
2058 |
+
"term": 3009,
|
2059 |
+
"significantly": 2711,
|
2060 |
+
"jerky": 1398,
|
2061 |
+
"outfit": 1913,
|
2062 |
+
"interface": 1371,
|
2063 |
+
"sudden": 2940,
|
2064 |
+
"erased": 952,
|
2065 |
+
"avoid": 160,
|
2066 |
+
"interesting": 1369,
|
2067 |
+
"sin": 2724,
|
2068 |
+
"reduce": 2402,
|
2069 |
+
"destination": 723,
|
2070 |
+
"news": 1736,
|
2071 |
+
"consult": 580,
|
2072 |
+
"immediate": 1304,
|
2073 |
+
"clarity": 415,
|
2074 |
+
"house": 1281,
|
2075 |
+
"reality": 2322,
|
2076 |
+
"handle": 1215,
|
2077 |
+
"material": 1645,
|
2078 |
+
"occur": 1759,
|
2079 |
+
"edge": 915,
|
2080 |
+
"accordingly": 28,
|
2081 |
+
"used": 3347,
|
2082 |
+
"stuff": 2931,
|
2083 |
+
"underground": 3226,
|
2084 |
+
"label": 1421,
|
2085 |
+
"light": 1469,
|
2086 |
+
"guess": 1203,
|
2087 |
+
"skirt": 2772,
|
2088 |
+
"mean": 1653,
|
2089 |
+
"oblige": 1755,
|
2090 |
+
"zip": 3606,
|
2091 |
+
"city": 413,
|
2092 |
+
"dress": 860,
|
2093 |
+
"jewelry": 1399,
|
2094 |
+
"hair": 1207,
|
2095 |
+
"word": 3475,
|
2096 |
+
"space": 2815,
|
2097 |
+
"corner": 602,
|
2098 |
+
"translation": 3158,
|
2099 |
+
"invest": 1382,
|
2100 |
+
"dead": 685,
|
2101 |
+
"pointless": 2063,
|
2102 |
+
"laborious": 1422,
|
2103 |
+
"shut": 2709,
|
2104 |
+
"current": 631,
|
2105 |
+
"tap": 2992,
|
2106 |
+
"modest": 1696,
|
2107 |
+
"felt": 1076,
|
2108 |
+
"reinstall": 2418,
|
2109 |
+
"unreservedly": 3272,
|
2110 |
+
"vain": 3356,
|
2111 |
+
"member": 1658,
|
2112 |
+
"blouse": 249,
|
2113 |
+
"interested": 1368,
|
2114 |
+
"enjoy": 930,
|
2115 |
+
"condition": 556,
|
2116 |
+
"teen": 3001,
|
2117 |
+
"unnecessarily": 3266,
|
2118 |
+
"large": 1432,
|
2119 |
+
"chop": 409,
|
2120 |
+
"protection": 2206,
|
2121 |
+
"activate": 46,
|
2122 |
+
"disabled": 758,
|
2123 |
+
"disable": 757,
|
2124 |
+
"research": 2440,
|
2125 |
+
"consistently": 570,
|
2126 |
+
"ahead": 91,
|
2127 |
+
"discourage": 781,
|
2128 |
+
"related": 2419,
|
2129 |
+
"solid": 2800,
|
2130 |
+
"pain": 1942,
|
2131 |
+
"dirt": 756,
|
2132 |
+
"specialist": 2818,
|
2133 |
+
"kick": 1407,
|
2134 |
+
"bumpy": 287,
|
2135 |
+
"intrusive": 1375,
|
2136 |
+
"unobtrusive": 3269,
|
2137 |
+
"readable": 2315,
|
2138 |
+
"soon ill": 2807,
|
2139 |
+
"buy dont": 301,
|
2140 |
+
"room improvement": 2477,
|
2141 |
+
"work clear": 3487,
|
2142 |
+
"time hope": 3073,
|
2143 |
+
"long load": 1534,
|
2144 |
+
"product load": 2181,
|
2145 |
+
"completely annoy": 543,
|
2146 |
+
"super annoying": 2954,
|
2147 |
+
"register time": 2411,
|
2148 |
+
"search function": 2551,
|
2149 |
+
"late update": 1437,
|
2150 |
+
"time open": 3089,
|
2151 |
+
"open product": 1772,
|
2152 |
+
"doesnt help": 806,
|
2153 |
+
"error restart": 964,
|
2154 |
+
"available size": 154,
|
2155 |
+
"size doesnt": 2746,
|
2156 |
+
"doesnt load": 809,
|
2157 |
+
"load doesnt": 1499,
|
2158 |
+
"lot long": 1590,
|
2159 |
+
"work choose": 3486,
|
2160 |
+
"simple clear": 2715,
|
2161 |
+
"load screen": 1505,
|
2162 |
+
"work day": 3498,
|
2163 |
+
"annoy dont": 104,
|
2164 |
+
"access browser": 24,
|
2165 |
+
"incredibly slow": 1339,
|
2166 |
+
"load time": 1507,
|
2167 |
+
"slow lot": 2783,
|
2168 |
+
"doesnt save": 817,
|
2169 |
+
"fast clear": 1044,
|
2170 |
+
"easy navigate": 889,
|
2171 |
+
"service suddenly": 2630,
|
2172 |
+
"suddenly work": 2947,
|
2173 |
+
"work restart": 3546,
|
2174 |
+
"search doesnt": 2548,
|
2175 |
+
"doesnt update": 820,
|
2176 |
+
"click article": 460,
|
2177 |
+
"time despite": 3060,
|
2178 |
+
"load clear": 1497,
|
2179 |
+
"load really": 1504,
|
2180 |
+
"time really": 3102,
|
2181 |
+
"quite long": 2294,
|
2182 |
+
"say easy": 2516,
|
2183 |
+
"use purchase": 3330,
|
2184 |
+
"slow forever": 2781,
|
2185 |
+
"shopping fun": 2698,
|
2186 |
+
"fun search": 1147,
|
2187 |
+
"hang work": 1221,
|
2188 |
+
"presentation clear": 2116,
|
2189 |
+
"unfortunately load": 3247,
|
2190 |
+
"short time": 2706,
|
2191 |
+
"forever dont": 1119,
|
2192 |
+
"repeat time": 2435,
|
2193 |
+
"time click": 3056,
|
2194 |
+
"thrown time": 3048,
|
2195 |
+
"log day": 1520,
|
2196 |
+
"day log": 672,
|
2197 |
+
"log set": 1527,
|
2198 |
+
"longer possible": 1553,
|
2199 |
+
"add list": 57,
|
2200 |
+
"dont search": 844,
|
2201 |
+
"search search": 2555,
|
2202 |
+
"search clear": 2544,
|
2203 |
+
"bit long": 237,
|
2204 |
+
"clear quite": 437,
|
2205 |
+
"shame doesnt": 2642,
|
2206 |
+
"doesnt offer": 812,
|
2207 |
+
"little slow": 1492,
|
2208 |
+
"slow clear": 2775,
|
2209 |
+
"quickly slow": 2289,
|
2210 |
+
"work complain": 3490,
|
2211 |
+
"log log": 1522,
|
2212 |
+
"wait moment": 3389,
|
2213 |
+
"time shop": 3112,
|
2214 |
+
"load little": 1501,
|
2215 |
+
"little long": 1491,
|
2216 |
+
"actually big": 49,
|
2217 |
+
"shop unfortunately": 2686,
|
2218 |
+
"unfortunately hardly": 3244,
|
2219 |
+
"possible moment": 2080,
|
2220 |
+
"dont feel": 829,
|
2221 |
+
"look look": 1568,
|
2222 |
+
"store search": 2904,
|
2223 |
+
"search item": 2552,
|
2224 |
+
"miss search": 1687,
|
2225 |
+
"filter function": 1083,
|
2226 |
+
"long loading": 1535,
|
2227 |
+
"annoy shop": 108,
|
2228 |
+
"shop store": 2682,
|
2229 |
+
"bad work": 193,
|
2230 |
+
"bad long": 179,
|
2231 |
+
"time want": 3128,
|
2232 |
+
"super super": 2966,
|
2233 |
+
"really long": 2335,
|
2234 |
+
"difficult slow": 746,
|
2235 |
+
"make work": 1633,
|
2236 |
+
"work say": 3550,
|
2237 |
+
"say try": 2522,
|
2238 |
+
"try later": 3186,
|
2239 |
+
"time super": 3116,
|
2240 |
+
"slow really": 2787,
|
2241 |
+
"terribly slow": 3018,
|
2242 |
+
"drive crazy": 862,
|
2243 |
+
"dont time": 847,
|
2244 |
+
"size table": 2766,
|
2245 |
+
"easy understand": 909,
|
2246 |
+
"order excellent": 1828,
|
2247 |
+
"update doesnt": 3282,
|
2248 |
+
"doesnt display": 802,
|
2249 |
+
"work doesnt": 3501,
|
2250 |
+
"quickly clear": 2276,
|
2251 |
+
"wish list": 3462,
|
2252 |
+
"fun miss": 1146,
|
2253 |
+
"havent try": 1239,
|
2254 |
+
"finally favorite": 1093,
|
2255 |
+
"reload time": 2426,
|
2256 |
+
"hope improve": 1271,
|
2257 |
+
"structure look": 2924,
|
2258 |
+
"quite quickly": 2295,
|
2259 |
+
"open load": 1770,
|
2260 |
+
"plus size": 2058,
|
2261 |
+
"scan code": 2529,
|
2262 |
+
"work completely": 3491,
|
2263 |
+
"list unfortunately": 1486,
|
2264 |
+
"work able": 3477,
|
2265 |
+
"really dont": 2330,
|
2266 |
+
"search long": 2553,
|
2267 |
+
"quality bad": 2227,
|
2268 |
+
"bad color": 170,
|
2269 |
+
"color dont": 505,
|
2270 |
+
"update problem": 3287,
|
2271 |
+
"whats happen": 3447,
|
2272 |
+
"work update": 3573,
|
2273 |
+
"clear order": 429,
|
2274 |
+
"select good": 2573,
|
2275 |
+
"order super": 1882,
|
2276 |
+
"load forever": 1500,
|
2277 |
+
"unfortunate good": 3235,
|
2278 |
+
"good little": 1183,
|
2279 |
+
"complete disaster": 537,
|
2280 |
+
"way slow": 3433,
|
2281 |
+
"time error": 3065,
|
2282 |
+
"bite clear": 240,
|
2283 |
+
"slow search": 2789,
|
2284 |
+
"know terrible": 1416,
|
2285 |
+
"clear relatively": 438,
|
2286 |
+
"blank page": 243,
|
2287 |
+
"time process": 3097,
|
2288 |
+
"item longer": 1391,
|
2289 |
+
"structure absolutely": 2923,
|
2290 |
+
"whats really": 3449,
|
2291 |
+
"measurement table": 1656,
|
2292 |
+
"size guide": 2751,
|
2293 |
+
"work correctly": 3494,
|
2294 |
+
"shame size": 2650,
|
2295 |
+
"size buy": 2741,
|
2296 |
+
"buy overall": 307,
|
2297 |
+
"bad unfortunately": 191,
|
2298 |
+
"availability directly": 143,
|
2299 |
+
"account rarely": 37,
|
2300 |
+
"phone number": 2032,
|
2301 |
+
"time information": 3076,
|
2302 |
+
"image work": 1302,
|
2303 |
+
"work hand": 3513,
|
2304 |
+
"clear simple": 443,
|
2305 |
+
"view product": 3374,
|
2306 |
+
"dont buy": 824,
|
2307 |
+
"buy look": 305,
|
2308 |
+
"display available": 786,
|
2309 |
+
"category lot": 370,
|
2310 |
+
"unfortunately save": 3254,
|
2311 |
+
"size size": 2763,
|
2312 |
+
"click add": 459,
|
2313 |
+
"add wish": 60,
|
2314 |
+
"later work": 1443,
|
2315 |
+
"view selection": 3375,
|
2316 |
+
"selection small": 2586,
|
2317 |
+
"start time": 2843,
|
2318 |
+
"super annoy": 2953,
|
2319 |
+
"article view": 131,
|
2320 |
+
"dont work": 853,
|
2321 |
+
"available time": 157,
|
2322 |
+
"time easy": 3064,
|
2323 |
+
"log profile": 1526,
|
2324 |
+
"work suppose": 3562,
|
2325 |
+
"receive good": 2367,
|
2326 |
+
"work simple": 3554,
|
2327 |
+
"stuck dont": 2927,
|
2328 |
+
"leave come": 1452,
|
2329 |
+
"come long": 513,
|
2330 |
+
"long page": 1539,
|
2331 |
+
"currently sort": 633,
|
2332 |
+
"restart time": 2454,
|
2333 |
+
"time problem": 3096,
|
2334 |
+
"order possible": 1853,
|
2335 |
+
"installation work": 1361,
|
2336 |
+
"size user": 2768,
|
2337 |
+
"user friendly": 3352,
|
2338 |
+
"home screen": 1264,
|
2339 |
+
"menu look": 1666,
|
2340 |
+
"unfortunately search": 3255,
|
2341 |
+
"whats wrong": 3451,
|
2342 |
+
"work fast": 3508,
|
2343 |
+
"annoy sell": 107,
|
2344 |
+
"doesnt remember": 816,
|
2345 |
+
"thing wish": 3032,
|
2346 |
+
"color available": 504,
|
2347 |
+
"annoy work": 111,
|
2348 |
+
"work forever": 3511,
|
2349 |
+
"say didnt": 2515,
|
2350 |
+
"work actually": 3478,
|
2351 |
+
"order future": 1832,
|
2352 |
+
"display start": 792,
|
2353 |
+
"cart complete": 343,
|
2354 |
+
"overview quickly": 1922,
|
2355 |
+
"select article": 2571,
|
2356 |
+
"difficult use": 749,
|
2357 |
+
"different color": 740,
|
2358 |
+
"look place": 1569,
|
2359 |
+
"time leave": 3078,
|
2360 |
+
"leave completely": 1453,
|
2361 |
+
"annoy long": 105,
|
2362 |
+
"order really": 1862,
|
2363 |
+
"work strange": 3559,
|
2364 |
+
"day constantly": 667,
|
2365 |
+
"unusable bad": 3278,
|
2366 |
+
"ship time": 2656,
|
2367 |
+
"update long": 3285,
|
2368 |
+
"list menu": 1482,
|
2369 |
+
"overview article": 1918,
|
2370 |
+
"return search": 2465,
|
2371 |
+
"search stick": 2557,
|
2372 |
+
"shop look": 2672,
|
2373 |
+
"list pity": 1485,
|
2374 |
+
"watch work": 3429,
|
2375 |
+
"properly long": 2203,
|
2376 |
+
"page page": 1935,
|
2377 |
+
"update work": 3288,
|
2378 |
+
"come end": 510,
|
2379 |
+
"product satisfy": 2187,
|
2380 |
+
"select product": 2574,
|
2381 |
+
"basket update": 216,
|
2382 |
+
"menu bit": 1665,
|
2383 |
+
"available satisfied": 152,
|
2384 |
+
"satisfied work": 2498,
|
2385 |
+
"hardly work": 1229,
|
2386 |
+
"work look": 3522,
|
2387 |
+
"look item": 1567,
|
2388 |
+
"click different": 463,
|
2389 |
+
"list page": 1484,
|
2390 |
+
"standard size": 2835,
|
2391 |
+
"size chart": 2742,
|
2392 |
+
"range size": 2304,
|
2393 |
+
"color product": 507,
|
2394 |
+
"buy time": 319,
|
2395 |
+
"look time": 1576,
|
2396 |
+
"time fun": 3071,
|
2397 |
+
"work long": 3520,
|
2398 |
+
"selection dont": 2579,
|
2399 |
+
"clear practical": 432,
|
2400 |
+
"slow complicate": 2776,
|
2401 |
+
"want step": 3416,
|
2402 |
+
"step start": 2858,
|
2403 |
+
"start begin": 2840,
|
2404 |
+
"error doesnt": 957,
|
2405 |
+
"doesnt good": 804,
|
2406 |
+
"finish shopping": 1101,
|
2407 |
+
"matter extremely": 1648,
|
2408 |
+
"product information": 2180,
|
2409 |
+
"display doesnt": 788,
|
2410 |
+
"didnt help": 733,
|
2411 |
+
"display correctly": 787,
|
2412 |
+
"color article": 503,
|
2413 |
+
"page annoy": 1927,
|
2414 |
+
"shop fun": 2671,
|
2415 |
+
"restart doesnt": 2452,
|
2416 |
+
"try log": 3187,
|
2417 |
+
"complete process": 540,
|
2418 |
+
"easy set": 902,
|
2419 |
+
"set dont": 2637,
|
2420 |
+
"wouldnt bad": 3591,
|
2421 |
+
"easy browse": 874,
|
2422 |
+
"message restart": 1672,
|
2423 |
+
"hopefully work": 1276,
|
2424 |
+
"work stay": 3558,
|
2425 |
+
"slowly time": 2795,
|
2426 |
+
"problem work": 2156,
|
2427 |
+
"search use": 2560,
|
2428 |
+
"use work": 3346,
|
2429 |
+
"doesnt search": 818,
|
2430 |
+
"work filter": 3509,
|
2431 |
+
"make sure": 1631,
|
2432 |
+
"log shop": 1528,
|
2433 |
+
"cart lose": 345,
|
2434 |
+
"sale sell": 2488,
|
2435 |
+
"want look": 3402,
|
2436 |
+
"information product": 1352,
|
2437 |
+
"hope resolve": 1272,
|
2438 |
+
"doesnt allow": 797,
|
2439 |
+
"come search": 514,
|
2440 |
+
"use available": 3295,
|
2441 |
+
"want search": 3412,
|
2442 |
+
"item number": 1392,
|
2443 |
+
"relatively clear": 2421,
|
2444 |
+
"practical unfortunately": 2100,
|
2445 |
+
"product page": 2184,
|
2446 |
+
"half image": 1211,
|
2447 |
+
"page bad": 1928,
|
2448 |
+
"difficult search": 745,
|
2449 |
+
"constantly load": 575,
|
2450 |
+
"work thing": 3564,
|
2451 |
+
"order clear": 1806,
|
2452 |
+
"time select": 3110,
|
2453 |
+
"article sudden": 130,
|
2454 |
+
"sudden half": 2941,
|
2455 |
+
"half bad": 1209,
|
2456 |
+
"engine erased": 929,
|
2457 |
+
"erased short": 953,
|
2458 |
+
"short absolutely": 2705,
|
2459 |
+
"absolutely avoid": 15,
|
2460 |
+
"list click": 1479,
|
2461 |
+
"interesting shame": 1370,
|
2462 |
+
"display unfortunately": 793,
|
2463 |
+
"enter country": 939,
|
2464 |
+
"look product": 1570,
|
2465 |
+
"product time": 2189,
|
2466 |
+
"product type": 2190,
|
2467 |
+
"thing want": 3031,
|
2468 |
+
"filter size": 1085,
|
2469 |
+
"size really": 2760,
|
2470 |
+
"especially want": 979,
|
2471 |
+
"totally useless": 3147,
|
2472 |
+
"doesnt really": 815,
|
2473 |
+
"unfortunately immediately": 3245,
|
2474 |
+
"use lot": 3322,
|
2475 |
+
"unfortunately longer": 3248,
|
2476 |
+
"slow dont": 2778,
|
2477 |
+
"open long": 1771,
|
2478 |
+
"load wish": 1508,
|
2479 |
+
"friendly shop": 1138,
|
2480 |
+
"annoy look": 106,
|
2481 |
+
"want shop": 3415,
|
2482 |
+
"image display": 1301,
|
2483 |
+
"problem quick": 2149,
|
2484 |
+
"work havent": 3514,
|
2485 |
+
"able view": 11,
|
2486 |
+
"dont load": 833,
|
2487 |
+
"look search": 1573,
|
2488 |
+
"open article": 1768,
|
2489 |
+
"item display": 1390,
|
2490 |
+
"product display": 2178,
|
2491 |
+
"disaster update": 772,
|
2492 |
+
"update longer": 3286,
|
2493 |
+
"finally shop": 1097,
|
2494 |
+
"order easy": 1824,
|
2495 |
+
"search shame": 2556,
|
2496 |
+
"shame work": 2652,
|
2497 |
+
"option change": 1785,
|
2498 |
+
"want choose": 3397,
|
2499 |
+
"unfortunately unexpected": 3260,
|
2500 |
+
"error start": 968,
|
2501 |
+
"hang page": 1220,
|
2502 |
+
"page product": 1937,
|
2503 |
+
"convenient clear": 594,
|
2504 |
+
"clear quick": 435,
|
2505 |
+
"view order": 3373,
|
2506 |
+
"constantly long": 576,
|
2507 |
+
"watch home": 3428,
|
2508 |
+
"error time": 970,
|
2509 |
+
"half year": 1212,
|
2510 |
+
"enter search": 944,
|
2511 |
+
"work constant": 3492,
|
2512 |
+
"enlarge big": 934,
|
2513 |
+
"background whats": 167,
|
2514 |
+
"whats suppose": 3450,
|
2515 |
+
"suppose mean": 2973,
|
2516 |
+
"hardly usable": 1228,
|
2517 |
+
"shame make": 2645,
|
2518 |
+
"buy try": 320,
|
2519 |
+
"slow fast": 2780,
|
2520 |
+
"fast fast": 1050,
|
2521 |
+
"fun slow": 1149,
|
2522 |
+
"say work": 2524,
|
2523 |
+
"bit high": 236,
|
2524 |
+
"enter zip": 945,
|
2525 |
+
"zip code": 3607,
|
2526 |
+
"search difficult": 2547,
|
2527 |
+
"search category": 2542,
|
2528 |
+
"search come": 2546,
|
2529 |
+
"bad completely": 171,
|
2530 |
+
"lot dont": 1586,
|
2531 |
+
"open browse": 1769,
|
2532 |
+
"store really": 2900,
|
2533 |
+
"time extremely": 3066,
|
2534 |
+
"log doesnt": 1521,
|
2535 |
+
"work super": 3561,
|
2536 |
+
"size available": 2740,
|
2537 |
+
"available bad": 146,
|
2538 |
+
"bad really": 182,
|
2539 |
+
"intuitive use": 1379,
|
2540 |
+
"use load": 3318,
|
2541 |
+
"leave briefly": 1451,
|
2542 |
+
"browser version": 281,
|
2543 |
+
"browser page": 278,
|
2544 |
+
"problem log": 2144,
|
2545 |
+
"use time": 3344,
|
2546 |
+
"time lot": 3085,
|
2547 |
+
"use longer": 3320,
|
2548 |
+
"use easily": 3311,
|
2549 |
+
"able complete": 3,
|
2550 |
+
"order page": 1850,
|
2551 |
+
"thing order": 3026,
|
2552 |
+
"overview easy": 1919,
|
2553 |
+
"easy faster": 882,
|
2554 |
+
"service disaster": 2617,
|
2555 |
+
"doesnt matter": 811,
|
2556 |
+
"slow work": 2792,
|
2557 |
+
"favorite store": 1069,
|
2558 |
+
"slow recently": 2788,
|
2559 |
+
"try access": 3180,
|
2560 |
+
"product unfortunately": 2191,
|
2561 |
+
"clearly structure": 456,
|
2562 |
+
"right away": 2473,
|
2563 |
+
"lot patience": 1592,
|
2564 |
+
"try unfortunately": 3200,
|
2565 |
+
"doesnt appear": 798,
|
2566 |
+
"site doesnt": 2728,
|
2567 |
+
"place super": 2050,
|
2568 |
+
"problem unfortunately": 2154,
|
2569 |
+
"time real": 3101,
|
2570 |
+
"work shame": 3552,
|
2571 |
+
"time search": 3108,
|
2572 |
+
"look dont": 1563,
|
2573 |
+
"dont care": 825,
|
2574 |
+
"really enjoy": 2332,
|
2575 |
+
"enjoy shop": 931,
|
2576 |
+
"shop think": 2684,
|
2577 |
+
"size clear": 2743,
|
2578 |
+
"use filter": 3316,
|
2579 |
+
"want product": 3408,
|
2580 |
+
"immediately look": 1306,
|
2581 |
+
"product restart": 2186,
|
2582 |
+
"difficult doesnt": 743,
|
2583 |
+
"unnecessarily complicate": 3267,
|
2584 |
+
"large size": 1435,
|
2585 |
+
"open time": 1774,
|
2586 |
+
"matter click": 1647,
|
2587 |
+
"possible search": 2084,
|
2588 |
+
"load annoy": 1495,
|
2589 |
+
"data protection": 655,
|
2590 |
+
"work place": 3535,
|
2591 |
+
"disaster really": 771,
|
2592 |
+
"use pity": 3325,
|
2593 |
+
"bad doesnt": 176,
|
2594 |
+
"work think": 3565,
|
2595 |
+
"turn completely": 3203,
|
2596 |
+
"look scroll": 1572,
|
2597 |
+
"unfortunately unusable": 3261,
|
2598 |
+
"clearly lay": 454,
|
2599 |
+
"work message": 3525,
|
2600 |
+
"log message": 1523,
|
2601 |
+
"try check": 3182,
|
2602 |
+
"message time": 1675,
|
2603 |
+
"time log": 3081,
|
2604 |
+
"click restart": 466,
|
2605 |
+
"start search": 2842,
|
2606 |
+
"search case": 2541,
|
2607 |
+
"order slow": 1877,
|
2608 |
+
"time incredibly": 3075,
|
2609 |
+
"good terrible": 1191,
|
2610 |
+
"time filter": 3069,
|
2611 |
+
"constantly want": 578,
|
2612 |
+
"want view": 3418,
|
2613 |
+
"catastrophic constantly": 367,
|
2614 |
+
"ill shop": 1298,
|
2615 |
+
"shop time": 2685,
|
2616 |
+
"update log": 3284,
|
2617 |
+
"error soon": 967,
|
2618 |
+
"soon product": 2809,
|
2619 |
+
"time option": 3090,
|
2620 |
+
"want review": 3411,
|
2621 |
+
"filter want": 1086,
|
2622 |
+
"unfortunately bad": 3238,
|
2623 |
+
"restart message": 2453,
|
2624 |
+
"mode doesnt": 1693,
|
2625 |
+
"look filter": 1565,
|
2626 |
+
"size use": 2767,
|
2627 |
+
"language set": 1431,
|
2628 |
+
"didnt let": 734,
|
2629 |
+
"sell display": 2592,
|
2630 |
+
"time update": 3125,
|
2631 |
+
"order preview": 1854,
|
2632 |
+
"extra": 1021,
|
2633 |
+
"comfortable": 521,
|
2634 |
+
"modern": 1695,
|
2635 |
+
"clothing": 485,
|
2636 |
+
"surprise": 2977,
|
2637 |
+
"particular": 1951,
|
2638 |
+
"cheap": 386,
|
2639 |
+
"impeccable": 1309,
|
2640 |
+
"event": 982,
|
2641 |
+
"painful": 1943,
|
2642 |
+
"affordable": 83,
|
2643 |
+
"men": 1661,
|
2644 |
+
"wear": 3436,
|
2645 |
+
"glad": 1170,
|
2646 |
+
"grandma": 1198,
|
2647 |
+
"magazine": 1607,
|
2648 |
+
"variety": 3364,
|
2649 |
+
"ease": 865,
|
2650 |
+
"delight": 697,
|
2651 |
+
"wash": 3421,
|
2652 |
+
"consumer": 581,
|
2653 |
+
"notice": 1749,
|
2654 |
+
"inexpensive": 1344,
|
2655 |
+
"transparency": 3159,
|
2656 |
+
"organic": 1907,
|
2657 |
+
"beautifully": 217,
|
2658 |
+
"assortment": 133,
|
2659 |
+
"arent": 127,
|
2660 |
+
"certainly": 376,
|
2661 |
+
"young": 3602,
|
2662 |
+
"measure": 1654,
|
2663 |
+
"discrimination": 783,
|
2664 |
+
"local": 1511,
|
2665 |
+
"messy": 1678,
|
2666 |
+
"realize": 2323,
|
2667 |
+
"reasonable": 2353,
|
2668 |
+
"comfort": 519,
|
2669 |
+
"consistent": 568,
|
2670 |
+
"height": 1244,
|
2671 |
+
"finding": 1098,
|
2672 |
+
"nearby": 1726,
|
2673 |
+
"relevant": 2423,
|
2674 |
+
"coat": 492,
|
2675 |
+
"present": 2114,
|
2676 |
+
"important": 1311,
|
2677 |
+
"ratio": 2309,
|
2678 |
+
"covid": 619,
|
2679 |
+
"minus": 1683,
|
2680 |
+
"garment": 1161,
|
2681 |
+
"bargain": 205,
|
2682 |
+
"china": 398,
|
2683 |
+
"chain": 377,
|
2684 |
+
"guidance": 1205,
|
2685 |
+
"spectacular": 2822,
|
2686 |
+
"season": 2563,
|
2687 |
+
"travel": 3165,
|
2688 |
+
"bravo": 264,
|
2689 |
+
"shipping": 2658,
|
2690 |
+
"confidence": 557,
|
2691 |
+
"lately": 1438,
|
2692 |
+
"acceptable": 20,
|
2693 |
+
"accord": 27,
|
2694 |
+
"couch": 612,
|
2695 |
+
"opportunity": 1780,
|
2696 |
+
"saleswoman": 2489,
|
2697 |
+
"increasingly": 1336,
|
2698 |
+
"sustainable": 2979,
|
2699 |
+
"chic": 395,
|
2700 |
+
"individually": 1343,
|
2701 |
+
"girl": 1169,
|
2702 |
+
"red": 2398,
|
2703 |
+
"son": 2804,
|
2704 |
+
"cotton": 611,
|
2705 |
+
"summer": 2951,
|
2706 |
+
"glance": 1172,
|
2707 |
+
"staff": 2830,
|
2708 |
+
"soft": 2799,
|
2709 |
+
"divide": 795,
|
2710 |
+
"eat": 914,
|
2711 |
+
"responsible": 2449,
|
2712 |
+
"chubby": 412,
|
2713 |
+
"disappointment": 766,
|
2714 |
+
"abandon": 0,
|
2715 |
+
"mango": 1639,
|
2716 |
+
"discover": 782,
|
2717 |
+
"rely": 2427,
|
2718 |
+
"indicate": 1340,
|
2719 |
+
"optional": 1790,
|
2720 |
+
"plenty": 2056,
|
2721 |
+
"mainly": 1612,
|
2722 |
+
"budget": 283,
|
2723 |
+
"fair": 1031,
|
2724 |
+
"merchandise": 1668,
|
2725 |
+
"brief": 266,
|
2726 |
+
"moderate": 1694,
|
2727 |
+
"basic": 207,
|
2728 |
+
"waist": 3383,
|
2729 |
+
"polo": 2066,
|
2730 |
+
"prompt": 2199,
|
2731 |
+
"expand": 1004,
|
2732 |
+
"storage": 2868,
|
2733 |
+
"inform": 1345,
|
2734 |
+
"boy": 258,
|
2735 |
+
"prepare": 2111,
|
2736 |
+
"fantastic": 1039,
|
2737 |
+
"elegant": 922,
|
2738 |
+
"separate": 2609,
|
2739 |
+
"grade": 1196,
|
2740 |
+
"trend": 3167,
|
2741 |
+
"level": 1466,
|
2742 |
+
"informative": 1353,
|
2743 |
+
"surprising": 2978,
|
2744 |
+
"answer": 115,
|
2745 |
+
"bon": 251,
|
2746 |
+
"area": 126,
|
2747 |
+
"grandchild": 1197,
|
2748 |
+
"advice": 81,
|
2749 |
+
"wool": 3474,
|
2750 |
+
"outside": 1914,
|
2751 |
+
"damage": 647,
|
2752 |
+
"polyester": 2067,
|
2753 |
+
"bought": 255,
|
2754 |
+
"buyer": 322,
|
2755 |
+
"random": 2299,
|
2756 |
+
"spring": 2826,
|
2757 |
+
"join": 1401,
|
2758 |
+
"implementation": 1310,
|
2759 |
+
"brilliant": 269,
|
2760 |
+
"shot": 2707,
|
2761 |
+
"amazing": 99,
|
2762 |
+
"worry": 3585,
|
2763 |
+
"similarly": 2713,
|
2764 |
+
"feel comfortable": 1074,
|
2765 |
+
"size look": 2754,
|
2766 |
+
"pretty easy": 2121,
|
2767 |
+
"clothes quality": 480,
|
2768 |
+
"quality especially": 2234,
|
2769 |
+
"delivery day": 702,
|
2770 |
+
"quality clothes": 2229,
|
2771 |
+
"cheap affordable": 387,
|
2772 |
+
"prefer use": 2108,
|
2773 |
+
"option save": 1788,
|
2774 |
+
"data save": 656,
|
2775 |
+
"quality super": 2258,
|
2776 |
+
"really want": 2348,
|
2777 |
+
"size sell": 2761,
|
2778 |
+
"buy size": 316,
|
2779 |
+
"store fit": 2883,
|
2780 |
+
"fit try": 1106,
|
2781 |
+
"poor quality": 2069,
|
2782 |
+
"easily look": 869,
|
2783 |
+
"time difficult": 3062,
|
2784 |
+
"quality really": 2250,
|
2785 |
+
"enjoy shopping": 932,
|
2786 |
+
"selection size": 2585,
|
2787 |
+
"size color": 2744,
|
2788 |
+
"item time": 1395,
|
2789 |
+
"sell shame": 2598,
|
2790 |
+
"sell mark": 2594,
|
2791 |
+
"especially time": 978,
|
2792 |
+
"clothing store": 489,
|
2793 |
+
"size arent": 2738,
|
2794 |
+
"large selection": 1434,
|
2795 |
+
"selection order": 2582,
|
2796 |
+
"use quite": 3334,
|
2797 |
+
"clothes friendly": 477,
|
2798 |
+
"young old": 3603,
|
2799 |
+
"right size": 2475,
|
2800 |
+
"recommend quality": 2385,
|
2801 |
+
"customer buy": 636,
|
2802 |
+
"really shop": 2341,
|
2803 |
+
"shop clothes": 2665,
|
2804 |
+
"delivery service": 708,
|
2805 |
+
"item basket": 1389,
|
2806 |
+
"family quality": 1038,
|
2807 |
+
"order clothes": 1808,
|
2808 |
+
"clear pity": 431,
|
2809 |
+
"super easy": 2956,
|
2810 |
+
"good available": 1176,
|
2811 |
+
"time fast": 3068,
|
2812 |
+
"fast shopping": 1058,
|
2813 |
+
"clothes work": 484,
|
2814 |
+
"really quality": 2337,
|
2815 |
+
"quality large": 2238,
|
2816 |
+
"pretty clothes": 2120,
|
2817 |
+
"comfort home": 520,
|
2818 |
+
"display shop": 791,
|
2819 |
+
"available clear": 147,
|
2820 |
+
"consistent size": 569,
|
2821 |
+
"uncomplicated process": 3223,
|
2822 |
+
"process clear": 2161,
|
2823 |
+
"clear functional": 426,
|
2824 |
+
"clothing shop": 487,
|
2825 |
+
"quality clothing": 2230,
|
2826 |
+
"long unfortunately": 1544,
|
2827 |
+
"unfortunately return": 3253,
|
2828 |
+
"lot clothes": 1584,
|
2829 |
+
"fast safe": 1054,
|
2830 |
+
"comfortable fast": 522,
|
2831 |
+
"store nearby": 2892,
|
2832 |
+
"size fast": 2747,
|
2833 |
+
"clothes excellent": 474,
|
2834 |
+
"shopping site": 2700,
|
2835 |
+
"super practical": 2960,
|
2836 |
+
"clothes satisfied": 481,
|
2837 |
+
"reasonably price": 2359,
|
2838 |
+
"look clothes": 1562,
|
2839 |
+
"use quality": 3331,
|
2840 |
+
"time quality": 3100,
|
2841 |
+
"overview selection": 1923,
|
2842 |
+
"selection quality": 2583,
|
2843 |
+
"ratio right": 2311,
|
2844 |
+
"easy access": 872,
|
2845 |
+
"big minus": 224,
|
2846 |
+
"easy practical": 893,
|
2847 |
+
"practical comfortable": 2095,
|
2848 |
+
"money fast": 1706,
|
2849 |
+
"delivery clothes": 701,
|
2850 |
+
"order fit": 1831,
|
2851 |
+
"day receive": 677,
|
2852 |
+
"order size": 1876,
|
2853 |
+
"available store": 155,
|
2854 |
+
"time result": 3104,
|
2855 |
+
"big size": 226,
|
2856 |
+
"leave home": 1455,
|
2857 |
+
"quality site": 2256,
|
2858 |
+
"site reliable": 2732,
|
2859 |
+
"sell clothes": 2591,
|
2860 |
+
"quality service": 2255,
|
2861 |
+
"choice clothing": 400,
|
2862 |
+
"look super": 1575,
|
2863 |
+
"use practical": 3327,
|
2864 |
+
"choose clear": 405,
|
2865 |
+
"clear information": 427,
|
2866 |
+
"lot choice": 1583,
|
2867 |
+
"quality price": 2247,
|
2868 |
+
"price satisfied": 2132,
|
2869 |
+
"cheap super": 389,
|
2870 |
+
"try home": 3185,
|
2871 |
+
"chain store": 378,
|
2872 |
+
"cart regularly": 350,
|
2873 |
+
"time hardly": 3072,
|
2874 |
+
"improvement easy": 1326,
|
2875 |
+
"quality practical": 2245,
|
2876 |
+
"practical easy": 2096,
|
2877 |
+
"use simple": 3340,
|
2878 |
+
"easy return": 899,
|
2879 |
+
"size quickly": 2759,
|
2880 |
+
"excellent quality": 991,
|
2881 |
+
"clothes order": 479,
|
2882 |
+
"probably store": 2139,
|
2883 |
+
"care work": 337,
|
2884 |
+
"work quick": 3541,
|
2885 |
+
"variety family": 3365,
|
2886 |
+
"size generally": 2750,
|
2887 |
+
"basket search": 213,
|
2888 |
+
"search clothes": 2545,
|
2889 |
+
"clothes convenient": 473,
|
2890 |
+
"correct delivery": 604,
|
2891 |
+
"delivery quality": 707,
|
2892 |
+
"directly store": 755,
|
2893 |
+
"store service": 2905,
|
2894 |
+
"buy quality": 312,
|
2895 |
+
"quality use": 2260,
|
2896 |
+
"want finalize": 3401,
|
2897 |
+
"unfortunately annoy": 3237,
|
2898 |
+
"shopping convenient": 2693,
|
2899 |
+
"clothes fast": 475,
|
2900 |
+
"clothing quality": 486,
|
2901 |
+
"quality fast": 2235,
|
2902 |
+
"fast ship": 1057,
|
2903 |
+
"try store": 3198,
|
2904 |
+
"doesnt fit": 803,
|
2905 |
+
"fit return": 1105,
|
2906 |
+
"return straight": 2468,
|
2907 |
+
"store especially": 2880,
|
2908 |
+
"buy terrible": 318,
|
2909 |
+
"terrible service": 3014,
|
2910 |
+
"store size": 2908,
|
2911 |
+
"size filter": 2748,
|
2912 |
+
"time buy": 3055,
|
2913 |
+
"clothing size": 488,
|
2914 |
+
"size know": 2753,
|
2915 |
+
"store try": 2914,
|
2916 |
+
"excellent store": 994,
|
2917 |
+
"old people": 1766,
|
2918 |
+
"especially size": 977,
|
2919 |
+
"type product": 3207,
|
2920 |
+
"quality recommend": 2252,
|
2921 |
+
"recommend order": 2384,
|
2922 |
+
"size small": 2764,
|
2923 |
+
"wouldnt let": 3592,
|
2924 |
+
"worth store": 3588,
|
2925 |
+
"store quality": 2899,
|
2926 |
+
"come time": 516,
|
2927 |
+
"fast reliable": 1053,
|
2928 |
+
"use look": 3321,
|
2929 |
+
"shopping store": 2701,
|
2930 |
+
"clothes want": 483,
|
2931 |
+
"fashion shop": 1041,
|
2932 |
+
"quality doesnt": 2232,
|
2933 |
+
"size zip": 2769,
|
2934 |
+
"clear affordable": 419,
|
2935 |
+
"item shop": 1393,
|
2936 |
+
"thing size": 3029,
|
2937 |
+
"simple use": 2722,
|
2938 |
+
"lot shop": 1596,
|
2939 |
+
"shop buy": 2661,
|
2940 |
+
"absolute favorite": 13,
|
2941 |
+
"store clear": 2876,
|
2942 |
+
"think unfortunately": 3043,
|
2943 |
+
"size availability": 2739,
|
2944 |
+
"havent super": 1238,
|
2945 |
+
"selection large": 2580,
|
2946 |
+
"size quality": 2758,
|
2947 |
+
"list doesnt": 1480,
|
2948 |
+
"allow add": 94,
|
2949 |
+
"cart slow": 353,
|
2950 |
+
"prefer try": 2107,
|
2951 |
+
"quality size": 2257,
|
2952 |
+
"payment delivery": 1995,
|
2953 |
+
"stationary store": 2847,
|
2954 |
+
"soon store": 2810,
|
2955 |
+
"store large": 2888,
|
2956 |
+
"satisfy quality": 2507,
|
2957 |
+
"wide choice": 3457,
|
2958 |
+
"shop son": 2681,
|
2959 |
+
"think collection": 3034,
|
2960 |
+
"experience bad": 1008,
|
2961 |
+
"kind order": 1409,
|
2962 |
+
"quite clearly": 2293,
|
2963 |
+
"stay date": 2852,
|
2964 |
+
"order lot": 1842,
|
2965 |
+
"large collection": 1433,
|
2966 |
+
"quality quality": 2249,
|
2967 |
+
"friendly staff": 1139,
|
2968 |
+
"size fit": 2749,
|
2969 |
+
"clothes finally": 476,
|
2970 |
+
"comfortable quality": 523,
|
2971 |
+
"way buy": 3431,
|
2972 |
+
"total disappointment": 3144,
|
2973 |
+
"clear size": 444,
|
2974 |
+
"size order": 2756,
|
2975 |
+
"quickly look": 2282,
|
2976 |
+
"selection little": 2581,
|
2977 |
+
"fact order": 1028,
|
2978 |
+
"tap item": 2993,
|
2979 |
+
"size stock": 2765,
|
2980 |
+
"say look": 2519,
|
2981 |
+
"look buy": 1560,
|
2982 |
+
"shop dont": 2667,
|
2983 |
+
"order store": 1880,
|
2984 |
+
"store chain": 2875,
|
2985 |
+
"unfortunately star": 3257,
|
2986 |
+
"star store": 2838,
|
2987 |
+
"store availability": 2870,
|
2988 |
+
"work item": 3518,
|
2989 |
+
"bad size": 187,
|
2990 |
+
"add basket": 55,
|
2991 |
+
"price right": 2131,
|
2992 |
+
"site store": 2734,
|
2993 |
+
"cheap quality": 388,
|
2994 |
+
"price quality": 2129,
|
2995 |
+
"quality comfortable": 2231,
|
2996 |
+
"size modern": 2755,
|
2997 |
+
"fair quality": 1034,
|
2998 |
+
"fit recommend": 1104,
|
2999 |
+
"return easy": 2458,
|
3000 |
+
"think store": 3042,
|
3001 |
+
"product overview": 2183,
|
3002 |
+
"easily add": 868,
|
3003 |
+
"satisfy friendly": 2502,
|
3004 |
+
"hardly available": 1227,
|
3005 |
+
"shame order": 2646,
|
3006 |
+
"add shop": 58,
|
3007 |
+
"easy shop": 903,
|
3008 |
+
"use bit": 3298,
|
3009 |
+
"easy want": 911,
|
3010 |
+
"affordable price": 84,
|
3011 |
+
"local branch": 1512,
|
3012 |
+
"choose size": 408,
|
3013 |
+
"easy hope": 885,
|
3014 |
+
"people dont": 2021,
|
3015 |
+
"come store": 515,
|
3016 |
+
"sell usually": 2600,
|
3017 |
+
"usually fit": 3355,
|
3018 |
+
"display second": 790,
|
3019 |
+
"explanation short": 1019,
|
3020 |
+
"price performance": 2128,
|
3021 |
+
"quality lot": 2240,
|
3022 |
+
"quality choose": 2228,
|
3023 |
+
"point store": 2062,
|
3024 |
+
"time store": 3115,
|
3025 |
+
"color item": 506,
|
3026 |
+
"prompt delivery": 2200,
|
3027 |
+
"price use": 2135,
|
3028 |
+
"quality affordable": 2226,
|
3029 |
+
"customer work": 644,
|
3030 |
+
"disaster order": 769,
|
3031 |
+
"dont return": 843,
|
3032 |
+
"wasnt possible": 3424,
|
3033 |
+
"size shame": 2762,
|
3034 |
+
"shame clothes": 2641,
|
3035 |
+
"definitely use": 693,
|
3036 |
+
"use really": 3335,
|
3037 |
+
"dont fit": 830,
|
3038 |
+
"practical look": 2097,
|
3039 |
+
"close store": 470,
|
3040 |
+
"think especially": 3035,
|
3041 |
+
"sort shop": 2814,
|
3042 |
+
"shop lot": 2673,
|
3043 |
+
"usually affordable": 3354,
|
3044 |
+
"high quality": 1253,
|
3045 |
+
"quality long": 2239,
|
3046 |
+
"big store": 227,
|
3047 |
+
"fun shopping": 1148,
|
3048 |
+
"quality satisfy": 2254,
|
3049 |
+
"reasonable price": 2355,
|
3050 |
+
"shopping cheap": 2692,
|
3051 |
+
"constantly sell": 577,
|
3052 |
+
"usable mobile": 3292,
|
3053 |
+
"mobile data": 1691,
|
3054 |
+
"want clothes": 3399,
|
3055 |
+
"stuff bad": 2932,
|
3056 |
+
"easy quality": 895,
|
3057 |
+
"reasonable worth": 2357,
|
3058 |
+
"shopping time": 2702,
|
3059 |
+
"look quality": 1571,
|
3060 |
+
"clothes list": 478,
|
3061 |
+
"today super": 3138,
|
3062 |
+
"know buy": 1411,
|
3063 |
+
"search store": 2558,
|
3064 |
+
"store intuitive": 2886,
|
3065 |
+
"easy navigation": 890,
|
3066 |
+
"store lot": 2890,
|
3067 |
+
"unfortunately lot": 3249,
|
3068 |
+
"price store": 2134,
|
3069 |
+
"choice quality": 402,
|
3070 |
+
"bought clothes": 256,
|
3071 |
+
"make look": 1623,
|
3072 |
+
"selection affordable": 2578,
|
3073 |
+
"fit easy": 1103,
|
3074 |
+
"stay way": 2854,
|
3075 |
+
"order want": 1898,
|
3076 |
+
"havent use": 1240,
|
3077 |
+
"color white": 508,
|
3078 |
+
"stay store": 2853,
|
3079 |
+
"good good": 1180,
|
3080 |
+
"know store": 1415,
|
3081 |
+
"store know": 2887,
|
3082 |
+
"know quality": 1413,
|
3083 |
+
"additional": 65,
|
3084 |
+
"laid": 1425,
|
3085 |
+
"peace": 2019,
|
3086 |
+
"class": 416,
|
3087 |
+
"operation": 1778,
|
3088 |
+
"handling": 1216,
|
3089 |
+
"blind": 244,
|
3090 |
+
"orientation": 1909,
|
3091 |
+
"intuitively": 1380,
|
3092 |
+
"conclusive": 555,
|
3093 |
+
"effective": 917,
|
3094 |
+
"efficiently": 920,
|
3095 |
+
"entirely": 950,
|
3096 |
+
"understandable": 3229,
|
3097 |
+
"adequate": 72,
|
3098 |
+
"walk": 3392,
|
3099 |
+
"nickel": 1740,
|
3100 |
+
"agile": 87,
|
3101 |
+
"clearer": 451,
|
3102 |
+
"premium": 2110,
|
3103 |
+
"advantage": 77,
|
3104 |
+
"truly": 3176,
|
3105 |
+
"wonderfully": 3466,
|
3106 |
+
"operate": 1777,
|
3107 |
+
"excellently": 997,
|
3108 |
+
"professional": 2192,
|
3109 |
+
"leisure": 1460,
|
3110 |
+
"urgent": 3289,
|
3111 |
+
"lots": 1599,
|
3112 |
+
"attractive": 138,
|
3113 |
+
"ra": 2298,
|
3114 |
+
"downside": 856,
|
3115 |
+
"convenience": 592,
|
3116 |
+
"timely": 3133,
|
3117 |
+
"recommend easy": 2381,
|
3118 |
+
"work easily": 3503,
|
3119 |
+
"easy intuitive": 886,
|
3120 |
+
"store recommend": 2901,
|
3121 |
+
"think really": 3039,
|
3122 |
+
"really clear": 2328,
|
3123 |
+
"use product": 3329,
|
3124 |
+
"easy quick": 896,
|
3125 |
+
"shop especially": 2669,
|
3126 |
+
"feel free": 1075,
|
3127 |
+
"good quite": 1185,
|
3128 |
+
"uncomplicated easy": 3220,
|
3129 |
+
"use shopping": 3339,
|
3130 |
+
"really excellent": 2333,
|
3131 |
+
"time browse": 3053,
|
3132 |
+
"menu navigation": 1667,
|
3133 |
+
"instead clear": 1364,
|
3134 |
+
"quickly quickly": 2287,
|
3135 |
+
"use fast": 3315,
|
3136 |
+
"super simple": 2964,
|
3137 |
+
"really simple": 2342,
|
3138 |
+
"easy handling": 884,
|
3139 |
+
"able shop": 9,
|
3140 |
+
"excellent clear": 987,
|
3141 |
+
"flawlessly clear": 1112,
|
3142 |
+
"intuitive shopping": 1378,
|
3143 |
+
"clearly design": 453,
|
3144 |
+
"convenient use": 599,
|
3145 |
+
"fair large": 1032,
|
3146 |
+
"faster easy": 1062,
|
3147 |
+
"super clear": 2955,
|
3148 |
+
"clear selection": 440,
|
3149 |
+
"functional easy": 1154,
|
3150 |
+
"easy look": 887,
|
3151 |
+
"easy clear": 876,
|
3152 |
+
"use pleasant": 3326,
|
3153 |
+
"pleasant shopping": 2054,
|
3154 |
+
"shopping experience": 2696,
|
3155 |
+
"browser really": 279,
|
3156 |
+
"really easy": 2331,
|
3157 |
+
"easy work": 913,
|
3158 |
+
"clear user": 449,
|
3159 |
+
"work uncomplicated": 3570,
|
3160 |
+
"uncomplicated good": 3222,
|
3161 |
+
"look clear": 1561,
|
3162 |
+
"clear quickly": 436,
|
3163 |
+
"clear shopping": 442,
|
3164 |
+
"shopping easy": 2695,
|
3165 |
+
"easy simple": 904,
|
3166 |
+
"simple practical": 2717,
|
3167 |
+
"clear quality": 434,
|
3168 |
+
"quality easy": 2233,
|
3169 |
+
"use comfortable": 3303,
|
3170 |
+
"clearly lot": 455,
|
3171 |
+
"lot selection": 1595,
|
3172 |
+
"quickly efficiently": 2279,
|
3173 |
+
"range clear": 2302,
|
3174 |
+
"use shop": 3338,
|
3175 |
+
"convenient fast": 596,
|
3176 |
+
"suppose easy": 2972,
|
3177 |
+
"time product": 3098,
|
3178 |
+
"simple simple": 2719,
|
3179 |
+
"clear clear": 421,
|
3180 |
+
"fast correct": 1046,
|
3181 |
+
"easy smooth": 905,
|
3182 |
+
"smooth clear": 2798,
|
3183 |
+
"fast simple": 1059,
|
3184 |
+
"easy recommend": 898,
|
3185 |
+
"work intuitive": 3517,
|
3186 |
+
"satisfied recommend": 2497,
|
3187 |
+
"recommend store": 2389,
|
3188 |
+
"buy recommend": 313,
|
3189 |
+
"recommend recommend": 2386,
|
3190 |
+
"quick use": 2272,
|
3191 |
+
"want quickly": 3410,
|
3192 |
+
"excellent simple": 993,
|
3193 |
+
"use regularly": 3336,
|
3194 |
+
"recommend satisfied": 2387,
|
3195 |
+
"practical simple": 2099,
|
3196 |
+
"convenient shop": 598,
|
3197 |
+
"easy super": 907,
|
3198 |
+
"simple uncomplicated": 2721,
|
3199 |
+
"easy process": 894,
|
3200 |
+
"process simple": 2170,
|
3201 |
+
"buy easy": 302,
|
3202 |
+
"use want": 3345,
|
3203 |
+
"use little": 3317,
|
3204 |
+
"fast easy": 1048,
|
3205 |
+
"order easily": 1823,
|
3206 |
+
"little easy": 1490,
|
3207 |
+
"product look": 2182,
|
3208 |
+
"filter work": 1087,
|
3209 |
+
"work recommend": 3545,
|
3210 |
+
"super handy": 2959,
|
3211 |
+
"handy fast": 1218,
|
3212 |
+
"fast quickly": 1052,
|
3213 |
+
"transparent clear": 3161,
|
3214 |
+
"really store": 2343,
|
3215 |
+
"clear super": 445,
|
3216 |
+
"easy overview": 892,
|
3217 |
+
"overview quick": 1921,
|
3218 |
+
"quality pretty": 2246,
|
3219 |
+
"design easy": 716,
|
3220 |
+
"finally really": 1096,
|
3221 |
+
"simple easy": 2716,
|
3222 |
+
"complicate look": 548,
|
3223 |
+
"look easily": 1564,
|
3224 |
+
"work quickly": 3542,
|
3225 |
+
"quickly easy": 2278,
|
3226 |
+
"lot easy": 1587,
|
3227 |
+
"clear think": 446,
|
3228 |
+
"really recommend": 2340,
|
3229 |
+
"wonderfully clear": 3467,
|
3230 |
+
"overview quality": 1920,
|
3231 |
+
"select shop": 2575,
|
3232 |
+
"shop super": 2683,
|
3233 |
+
"easy easy": 880,
|
3234 |
+
"use dont": 3310,
|
3235 |
+
"easy quickly": 897,
|
3236 |
+
"ratio easy": 2310,
|
3237 |
+
"quickly good": 2281,
|
3238 |
+
"easy clearly": 877,
|
3239 |
+
"clear transparent": 447,
|
3240 |
+
"quickly simple": 2288,
|
3241 |
+
"dont thing": 845,
|
3242 |
+
"easy selection": 901,
|
3243 |
+
"search big": 2540,
|
3244 |
+
"information available": 1347,
|
3245 |
+
"available recommend": 151,
|
3246 |
+
"fun browse": 1144,
|
3247 |
+
"browse shop": 275,
|
3248 |
+
"quick quality": 2268,
|
3249 |
+
"easy sort": 906,
|
3250 |
+
"selection reasonable": 2584,
|
3251 |
+
"reasonable lot": 2354,
|
3252 |
+
"lot room": 1594,
|
3253 |
+
"problem easy": 2142,
|
3254 |
+
"quality favorite": 2236,
|
3255 |
+
"size information": 2752,
|
3256 |
+
"quality time": 2259,
|
3257 |
+
"order selection": 1871,
|
3258 |
+
"process work": 2172,
|
3259 |
+
"look work": 1577,
|
3260 |
+
"use quick": 3332,
|
3261 |
+
"site fast": 2729,
|
3262 |
+
"clear shop": 441,
|
3263 |
+
"use process": 3328,
|
3264 |
+
"process time": 2171,
|
3265 |
+
"site recommend": 2731,
|
3266 |
+
"feature": 1070,
|
3267 |
+
"bag": 195,
|
3268 |
+
"overdue": 1916,
|
3269 |
+
"alternative": 96,
|
3270 |
+
"increase": 1335,
|
3271 |
+
"enthusiastic": 946,
|
3272 |
+
"praise": 2102,
|
3273 |
+
"relax": 2422,
|
3274 |
+
"times": 3134,
|
3275 |
+
"childhood": 397,
|
3276 |
+
"friendliness": 1135,
|
3277 |
+
"dutch": 864,
|
3278 |
+
"seriously": 2611,
|
3279 |
+
"conveniently": 600,
|
3280 |
+
"child": 396,
|
3281 |
+
"effectively": 918,
|
3282 |
+
"vast": 3370,
|
3283 |
+
"calculate": 324,
|
3284 |
+
"comfortably": 524,
|
3285 |
+
"club": 490,
|
3286 |
+
"advantageous": 78,
|
3287 |
+
"listen": 1487,
|
3288 |
+
"warehouse": 3419,
|
3289 |
+
"vary": 3369,
|
3290 |
+
"gladly": 1171,
|
3291 |
+
"visually": 3380,
|
3292 |
+
"store staff": 2909,
|
3293 |
+
"staff easy": 2831,
|
3294 |
+
"store store": 2911,
|
3295 |
+
"home easy": 1262,
|
3296 |
+
"shop easy": 2668,
|
3297 |
+
"satisfied customer": 2493,
|
3298 |
+
"return good": 2461,
|
3299 |
+
"easy time": 908,
|
3300 |
+
"process quick": 2165,
|
3301 |
+
"shop experience": 2670,
|
3302 |
+
"shop shop": 2678,
|
3303 |
+
"long sell": 1541,
|
3304 |
+
"sell immediately": 2593,
|
3305 |
+
"product sell": 2188,
|
3306 |
+
"click collect": 462,
|
3307 |
+
"long overdue": 1538,
|
3308 |
+
"shop work": 2689,
|
3309 |
+
"work customer": 3495,
|
3310 |
+
"good sell": 1188,
|
3311 |
+
"alternative shopping": 97,
|
3312 |
+
"super friendly": 2958,
|
3313 |
+
"day come": 666,
|
3314 |
+
"easy buy": 875,
|
3315 |
+
"use convenient": 3305,
|
3316 |
+
"service satisfy": 2627,
|
3317 |
+
"satisfy price": 2506,
|
3318 |
+
"shop better": 2660,
|
3319 |
+
"satisfy easy": 2501,
|
3320 |
+
"service bad": 2614,
|
3321 |
+
"thing shop": 3028,
|
3322 |
+
"time place": 3095,
|
3323 |
+
"bit expensive": 235,
|
3324 |
+
"easy convenient": 878,
|
3325 |
+
"shop cheap": 2663,
|
3326 |
+
"log shopping": 1529,
|
3327 |
+
"home shopping": 1265,
|
3328 |
+
"generally satisfy": 1165,
|
3329 |
+
"buy want": 321,
|
3330 |
+
"recommend think": 2390,
|
3331 |
+
"work satisfy": 3549,
|
3332 |
+
"satisfy satisfy": 2508,
|
3333 |
+
"satisfy clear": 2500,
|
3334 |
+
"buy shop": 315,
|
3335 |
+
"dont experience": 828,
|
3336 |
+
"experience store": 1015,
|
3337 |
+
"thing easy": 3025,
|
3338 |
+
"unfortunately redeem": 3252,
|
3339 |
+
"work soon": 3557,
|
3340 |
+
"store good": 2884,
|
3341 |
+
"store available": 2871,
|
3342 |
+
"browse order": 274,
|
3343 |
+
"service buy": 2615,
|
3344 |
+
"recommend time": 2391,
|
3345 |
+
"buy brand": 297,
|
3346 |
+
"reason shop": 2352,
|
3347 |
+
"shop quickly": 2676,
|
3348 |
+
"order product": 1857,
|
3349 |
+
"shop shopping": 2679,
|
3350 |
+
"shopping use": 2703,
|
3351 |
+
"practical shopping": 2098,
|
3352 |
+
"quality reasonable": 2251,
|
3353 |
+
"satisfy order": 2504,
|
3354 |
+
"pity use": 2047,
|
3355 |
+
"able make": 5,
|
3356 |
+
"terrible prefer": 3013,
|
3357 |
+
"shopping fast": 2697,
|
3358 |
+
"fast efficient": 1049,
|
3359 |
+
"check store": 393,
|
3360 |
+
"choice service": 403,
|
3361 |
+
"store price": 2896,
|
3362 |
+
"service quality": 2624,
|
3363 |
+
"quality work": 2261,
|
3364 |
+
"work web": 3577,
|
3365 |
+
"money reason": 1709,
|
3366 |
+
"shopping shop": 2699,
|
3367 |
+
"super fast": 2957,
|
3368 |
+
"id look": 1286,
|
3369 |
+
"uncomplicated fast": 3221,
|
3370 |
+
"good satisfy": 1187,
|
3371 |
+
"shop site": 2680,
|
3372 |
+
"friendly experience": 1137,
|
3373 |
+
"problem want": 2155,
|
3374 |
+
"buy customer": 300,
|
3375 |
+
"convenient easy": 595,
|
3376 |
+
"leave store": 1458,
|
3377 |
+
"right satisfy": 2474,
|
3378 |
+
"use excellent": 3313,
|
3379 |
+
"service easy": 2620,
|
3380 |
+
"log account": 1518,
|
3381 |
+
"wrong password": 3597,
|
3382 |
+
"sell annoy": 2590,
|
3383 |
+
"disappoint especially": 762,
|
3384 |
+
"buy buy": 298,
|
3385 |
+
"easily shop": 870,
|
3386 |
+
"buy fast": 303,
|
3387 |
+
"fast service": 1056,
|
3388 |
+
"sell page": 2595,
|
3389 |
+
"ill store": 1299,
|
3390 |
+
"work matter": 3524,
|
3391 |
+
"store provide": 2898,
|
3392 |
+
"account possible": 36,
|
3393 |
+
"order disappoint": 1818,
|
3394 |
+
"simple quick": 2718,
|
3395 |
+
"quick efficient": 2267,
|
3396 |
+
"experience hope": 1011,
|
3397 |
+
"fair price": 1033,
|
3398 |
+
"return shop": 2466,
|
3399 |
+
"customer loyalty": 639,
|
3400 |
+
"buy bad": 296,
|
3401 |
+
"doesnt make": 810,
|
3402 |
+
"make sense": 1628,
|
3403 |
+
"card store": 334,
|
3404 |
+
"sell shop": 2599,
|
3405 |
+
"store fast": 2882,
|
3406 |
+
"want touch": 3417,
|
3407 |
+
"excellent shop": 992,
|
3408 |
+
"service fast": 2621,
|
3409 |
+
"offer really": 1761,
|
3410 |
+
"professional service": 2193,
|
3411 |
+
"home time": 1266,
|
3412 |
+
"store immediately": 2885,
|
3413 |
+
"product available": 2174,
|
3414 |
+
"available shop": 153,
|
3415 |
+
"standard answer": 2834,
|
3416 |
+
"hate": 1231,
|
3417 |
+
"birthday": 230,
|
3418 |
+
"deliver": 698,
|
3419 |
+
"unbelievable": 3215,
|
3420 |
+
"impudence": 1327,
|
3421 |
+
"print": 2137,
|
3422 |
+
"tend": 3008,
|
3423 |
+
"true": 3175,
|
3424 |
+
"patient": 1962,
|
3425 |
+
"trade": 3152,
|
3426 |
+
"maximum": 1650,
|
3427 |
+
"weve": 3445,
|
3428 |
+
"office": 1762,
|
3429 |
+
"notify": 1751,
|
3430 |
+
"busy": 290,
|
3431 |
+
"excessive": 999,
|
3432 |
+
"notch": 1747,
|
3433 |
+
"deposit": 713,
|
3434 |
+
"client": 467,
|
3435 |
+
"subject": 2935,
|
3436 |
+
"steal": 2856,
|
3437 |
+
"careful": 338,
|
3438 |
+
"count": 613,
|
3439 |
+
"honest": 1268,
|
3440 |
+
"courier": 616,
|
3441 |
+
"grandson": 1199,
|
3442 |
+
"land": 1426,
|
3443 |
+
"obtain": 1756,
|
3444 |
+
"drop": 863,
|
3445 |
+
"ser": 2610,
|
3446 |
+
"ordeal": 1791,
|
3447 |
+
"route": 2478,
|
3448 |
+
"gorgeous": 1194,
|
3449 |
+
"network": 1735,
|
3450 |
+
"province": 2208,
|
3451 |
+
"workmanship": 3583,
|
3452 |
+
"lucky": 1606,
|
3453 |
+
"resolution": 2443,
|
3454 |
+
"delivery time": 710,
|
3455 |
+
"extremely satisfied": 1025,
|
3456 |
+
"customer time": 643,
|
3457 |
+
"order experience": 1829,
|
3458 |
+
"time little": 3079,
|
3459 |
+
"long ship": 1542,
|
3460 |
+
"service quick": 2625,
|
3461 |
+
"day long": 673,
|
3462 |
+
"quickly available": 2275,
|
3463 |
+
"suddenly longer": 2944,
|
3464 |
+
"available order": 149,
|
3465 |
+
"available work": 158,
|
3466 |
+
"day ago": 663,
|
3467 |
+
"super satisfy": 2963,
|
3468 |
+
"satisfied easy": 2494,
|
3469 |
+
"lot order": 1591,
|
3470 |
+
"receive automatic": 2364,
|
3471 |
+
"order quality": 1860,
|
3472 |
+
"super quick": 2961,
|
3473 |
+
"suddenly sell": 2945,
|
3474 |
+
"understandable super": 3230,
|
3475 |
+
"year ago": 3599,
|
3476 |
+
"quickly fast": 2280,
|
3477 |
+
"satisfied quality": 2496,
|
3478 |
+
"long view": 1546,
|
3479 |
+
"suddenly turn": 2946,
|
3480 |
+
"completely satisfied": 545,
|
3481 |
+
"day place": 676,
|
3482 |
+
"old order": 1765,
|
3483 |
+
"dont dont": 827,
|
3484 |
+
"wont buy": 3470,
|
3485 |
+
"satisfy good": 2503,
|
3486 |
+
"quickly quality": 2286,
|
3487 |
+
"quality good": 2237,
|
3488 |
+
"bad shop": 185,
|
3489 |
+
"purchase day": 2213,
|
3490 |
+
"customer support": 642,
|
3491 |
+
"time day": 3059,
|
3492 |
+
"day work": 683,
|
3493 |
+
"work excellent": 3507,
|
3494 |
+
"order tell": 1883,
|
3495 |
+
"sell really": 2597,
|
3496 |
+
"order discount": 1819,
|
3497 |
+
"quick choose": 2265,
|
3498 |
+
"excellent price": 990,
|
3499 |
+
"price shame": 2133,
|
3500 |
+
"quick uncomplicated": 2271,
|
3501 |
+
"message say": 1673,
|
3502 |
+
"home work": 1267,
|
3503 |
+
"quality order": 2243,
|
3504 |
+
"need correct": 1730,
|
3505 |
+
"time available": 3052,
|
3506 |
+
"available later": 148,
|
3507 |
+
"purchase transaction": 2221,
|
3508 |
+
"fast quality": 1051,
|
3509 |
+
"delivery good": 703,
|
3510 |
+
"able place": 8,
|
3511 |
+
"say send": 2521,
|
3512 |
+
"practical big": 2094,
|
3513 |
+
"product correspond": 2177,
|
3514 |
+
"difficult time": 747,
|
3515 |
+
"favorite quality": 1068,
|
3516 |
+
"size correct": 2745,
|
3517 |
+
"good highly": 1181,
|
3518 |
+
"doesnt happen": 805,
|
3519 |
+
"experience long": 1012,
|
3520 |
+
"order fatal": 1830,
|
3521 |
+
"problem super": 2152,
|
3522 |
+
"quality low": 2241,
|
3523 |
+
"fast satisfy": 1055,
|
3524 |
+
"use disaster": 3307,
|
3525 |
+
"slow easy": 2779,
|
3526 |
+
"register cash": 2409,
|
3527 |
+
"probably wont": 2140,
|
3528 |
+
"wont arrive": 3469,
|
3529 |
+
"work wonderfully": 3579,
|
3530 |
+
"quality reliable": 2253,
|
3531 |
+
"order available": 1798,
|
3532 |
+
"easy handle": 883,
|
3533 |
+
"time satisfied": 3106,
|
3534 |
+
"say wrong": 2525,
|
3535 |
+
"mention make": 1663,
|
3536 |
+
"money quality": 1708,
|
3537 |
+
"try payment": 3193,
|
3538 |
+
"bank shame": 200,
|
3539 |
+
"form start": 1123,
|
3540 |
+
"bad dont": 177,
|
3541 |
+
"know zip": 1419,
|
3542 |
+
"order message": 1844,
|
3543 |
+
"choose home": 407,
|
3544 |
+
"problem time": 2153,
|
3545 |
+
"longer time": 1556,
|
3546 |
+
"multiple time": 1721,
|
3547 |
+
"value good": 3362,
|
3548 |
+
"good buy": 1178,
|
3549 |
+
"quality product": 2248,
|
3550 |
+
"price recommend": 2130,
|
3551 |
+
"quick satisfied": 2270,
|
3552 |
+
"satisfied good": 2495,
|
3553 |
+
"option bad": 1783,
|
3554 |
+
"convenient quickly": 597,
|
3555 |
+
"excellent value": 995,
|
3556 |
+
"time wait": 3127,
|
3557 |
+
"order add": 1795,
|
3558 |
+
"purchase history": 2216,
|
3559 |
+
"reasonable quality": 2356,
|
3560 |
+
"st time": 2828,
|
3561 |
+
"quickly work": 2290,
|
3562 |
+
"super quickly": 2962,
|
3563 |
+
"annoying day": 114,
|
3564 |
+
"payment use": 2017,
|
3565 |
+
"possible check": 2075,
|
3566 |
+
"quality material": 2242,
|
3567 |
+
"reduce number": 2403,
|
3568 |
+
"choice fast": 401,
|
3569 |
+
"store longer": 2889,
|
3570 |
+
"didnt fit": 732,
|
3571 |
+
"come work": 518,
|
3572 |
+
"incorrect work": 1333,
|
3573 |
+
"terrible order": 3012,
|
3574 |
+
"cost dont": 609,
|
3575 |
+
"variety quality": 3366,
|
3576 |
+
"return item": 2462,
|
3577 |
+
"totally satisfied": 3146,
|
3578 |
+
"send size": 2606,
|
3579 |
+
"service delivery": 2616,
|
3580 |
+
"receive answer": 2363,
|
3581 |
+
"flawless": 1110,
|
3582 |
+
"appropriate": 125,
|
3583 |
+
"mother": 1719,
|
3584 |
+
"tricky": 3168,
|
3585 |
+
"way work": 3434,
|
3586 |
+
"really stupid": 2344,
|
3587 |
+
"try work": 3201,
|
3588 |
+
"work site": 3555,
|
3589 |
+
"work date": 3497,
|
3590 |
+
"work careful": 3485,
|
3591 |
+
"easy dont": 879,
|
3592 |
+
"time think": 3118,
|
3593 |
+
"really fun": 2334,
|
3594 |
+
"available think": 156,
|
3595 |
+
"terrible constantly": 3011,
|
3596 |
+
"use long": 3319,
|
3597 |
+
"thing think": 3030,
|
3598 |
+
"solve problem": 2803,
|
3599 |
+
"make add": 1615,
|
3600 |
+
"fix work": 1108,
|
3601 |
+
"constant problem": 572,
|
3602 |
+
"excellent want": 996,
|
3603 |
+
"throw away": 3046,
|
3604 |
+
"reasonably satisfied": 2360,
|
3605 |
+
"really quickly": 2338,
|
3606 |
+
"address work": 70,
|
3607 |
+
"work way": 3576,
|
3608 |
+
"think stop": 3041,
|
3609 |
+
"desire good": 719,
|
3610 |
+
"work throw": 3566,
|
3611 |
+
"let know": 1462,
|
3612 |
+
"team work": 2996,
|
3613 |
+
"time item": 3077,
|
3614 |
+
"flexible": 1113,
|
3615 |
+
"slowly hello": 2794,
|
3616 |
+
"hope stay": 1273,
|
3617 |
+
"use super": 3343,
|
3618 |
+
"use clearly": 3302,
|
3619 |
+
"quick work": 2273,
|
3620 |
+
"unfortunately leave": 3246,
|
3621 |
+
"simple super": 2720,
|
3622 |
+
"experience easy": 1009,
|
3623 |
+
"sweet": 2980,
|
3624 |
+
"unbeatable": 3214,
|
3625 |
+
"superb": 2967,
|
3626 |
+
"excellent lot": 989,
|
3627 |
+
"stuff good": 2933,
|
3628 |
+
"experience excellent": 1010,
|
3629 |
+
"superb super": 2968,
|
3630 |
+
"excellent excellent": 988,
|
3631 |
+
"punctual": 2209,
|
3632 |
+
"deadline": 686,
|
3633 |
+
"work wish": 3578,
|
3634 |
+
"good satisfied": 1186,
|
3635 |
+
"satisfy work": 2509
|
3636 |
+
}
|
3637 |
+
}
|
3638 |
+
}
|
topic_embeddings.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f4cdc1d9f0a462a5d7e5e305b3215dd4d016e979712014e7152e43ea43cd767a
|
3 |
+
size 27736
|
topics.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|