1 Package Installation & Loading

Uncomment the install.packages() lines below if running for the first time.

# install.packages("tidyverse")
# install.packages("tidytext")
# install.packages("stringr")
# install.packages("SnowballC")
# install.packages("topicmodels")
# install.packages("textdata")
# install.packages("scales")
# install.packages("tm")
# install.packages("readtext")
# install.packages("widyr")

library(tidyverse)
library(tidytext)
library(stringr)
library(dplyr)
library(ggplot2)
library(scales)
library(SnowballC)
library(topicmodels)
library(tm)
library(readtext)
library(tidyr)
library(textdata)
library(widyr)
library(igraph)
library(ggraph)

2 Data Preprocessing

2.1 Step 1: Set Folder Path & Load Documents

** Change folder_path to the folder where your .docx files are saved.**

folder_path <- "/Users/hermanbrurberg/Desktop/HULT/Dual Degree_MBAN/Courses/Semester 2/Business Analysis with Unstructured Data - DAT-7471 - BMBANDD1/A2 Develop AI Powered Solutions using NAible AI business simulator/All_data"


# Load all .docx files from the folder automatically
raw_docs <- readtext(paste0(folder_path, "/*.docx"))

# Check what's loaded — you should see one row per file
print(raw_docs)
## readtext object consisting of 18 documents and 0 docvars.
## # A data frame: 18 × 2
##   doc_id                       text               
##   <chr>                        <chr>              
## 1 Adidas Reviews Website.docx  "\"Love love \"..."
## 2 Adidas Twitter Mentions.docx "\"All NCAA g\"..."
## 3 adidas_headlines.docx        "\"ADIDAS IN \"..."
## 4 Adidas_Youtube_Comments.docx "\"Adidas You\"..."
## 5 appstore_adidas.docx         "\"Adidas - A\"..."
## 6 appstore_underarmour.docx    "\"Under Armo\"..."
## # ℹ 12 more rows

2.2 Step 2: Build a Data Frame with Source Labels

# Rename columns
colnames(raw_docs)[1] <- "source"
colnames(raw_docs)[2] <- "text"

# Strip the .docx extension from source names
raw_docs$source <- str_remove(raw_docs$source, "\\.docx$")

print(raw_docs$source)
##  [1] "Adidas Reviews Website"          "Adidas Twitter Mentions"        
##  [3] "adidas_headlines"                "Adidas_Youtube_Comments"        
##  [5] "appstore_adidas"                 "appstore_underarmour"           
##  [7] "Nike - App Store Reviews"        "Nike - News_Headlines_NoYears"  
##  [9] "Nike - Reddit_Comments_NoLinks"  "nike - Twitter mentions"        
## [11] "Nike - Youtube_Comments_NoLinks" "Nike Product Reviews"           
## [13] "reddit_adidas"                   "reddit_underarmour"             
## [15] "Under Armour Reviews Website"    "Under Armour Twitter Mentions"  
## [17] "Under Armour Youtube Comments"   "under_armour_headlines"
nike_df <- raw_docs %>%
  select(source, text)

# Confirm exact source names
unique(nike_df$source)
##  [1] "Adidas Reviews Website"          "Adidas Twitter Mentions"        
##  [3] "adidas_headlines"                "Adidas_Youtube_Comments"        
##  [5] "appstore_adidas"                 "appstore_underarmour"           
##  [7] "Nike - App Store Reviews"        "Nike - News_Headlines_NoYears"  
##  [9] "Nike - Reddit_Comments_NoLinks"  "nike - Twitter mentions"        
## [11] "Nike - Youtube_Comments_NoLinks" "Nike Product Reviews"           
## [13] "reddit_adidas"                   "reddit_underarmour"             
## [15] "Under Armour Reviews Website"    "Under Armour Twitter Mentions"  
## [17] "Under Armour Youtube Comments"   "under_armour_headlines"
# Recode sources to consistent, readable labels
nike_df$source <- recode(nike_df$source,
  "Nike - App Store Reviews"         = "Nike - App Store",
  "Nike - News_Headlines_NoYears"    = "Nike - News",
  "Nike - Reddit_Comments_NoLinks"   = "Nike - Reddit",
  "nike - Twitter mentions"          = "Nike - Twitter",
  "Nike - Youtube_Comments_NoLinks"  = "Nike - YouTube",
  "Nike Product Reviews"             = "Nike - Product Reviews",
  "Adidas Twitter Mentions"          = "Adidas - Twitter",
  "adidas_headlines"                 = "Adidas - News",
  "Adidas_Youtube_Comments"          = "Adidas - YouTube",
  "appstore_adidas"                  = "Adidas - App Store",
  "reddit_adidas"                    = "Adidas - Reddit",
  "Adidas Reviews Website"           = "Adidas - Product Reviews",
  "Under Armour Twitter Mentions"    = "Under Armour - Twitter",
  "Under Armour Youtube Comments"    = "Under Armour - YouTube",
  "under_armour_headlines"           = "Under Armour - News",
  "appstore_underarmour"             = "Under Armour - App Store",
  "reddit_underarmour"               = "Under Armour - Reddit",
  "Under Armour Reviews Website"     = "Under Armour - Product Reviews"
)

print(unique(nike_df$source))
##  [1] "Adidas - Product Reviews"       "Adidas - Twitter"              
##  [3] "Adidas - News"                  "Adidas - YouTube"              
##  [5] "Adidas - App Store"             "Under Armour - App Store"      
##  [7] "Nike - App Store"               "Nike - News"                   
##  [9] "Nike - Reddit"                  "Nike - Twitter"                
## [11] "Nike - YouTube"                 "Nike - Product Reviews"        
## [13] "Adidas - Reddit"                "Under Armour - Reddit"         
## [15] "Under Armour - Product Reviews" "Under Armour - Twitter"        
## [17] "Under Armour - YouTube"         "Under Armour - News"
# Define source groupings per brand
nike_sources <- c(
  "Nike - App Store", "Nike - News", "Nike - Reddit",
  "Nike - Twitter", "Nike - YouTube", "Nike - Product Reviews"
)

adidas_sources <- c(
  "Adidas - Twitter", "Adidas - News", "Adidas - YouTube",
  "Adidas - App Store", "Adidas - Reddit", "Adidas - Product Reviews"
)

ua_sources <- c(
  "Under Armour - Twitter", "Under Armour - YouTube",
  "Under Armour - News", "Under Armour - App Store",
  "Under Armour - Reddit", "Under Armour - Product Reviews"
)

2.3 Step 3: Tokenization

nike_tokens <- nike_df %>%
  unnest_tokens(word, text)

# Word counts before stopword removal
nike_tokens %>%
  count(word, sort = TRUE)
## readtext object consisting of 11953 documents and 0 docvars.
## # A data frame: 11,953 × 3
##   word      n text     
##   <chr> <int> <chr>    
## 1 the    4759 "\"\"..."
## 2 i      3883 "\"\"..."
## 3 and    2960 "\"\"..."
## 4 to     2960 "\"\"..."
## 5 a      2307 "\"\"..."
## 6 it     1946 "\"\"..."
## # ℹ 11,947 more rows

2.4 Step 4: Stopword Removal

tidy_nike <- nike_df %>%
  unnest_tokens(word, text) %>%
  anti_join(stop_words) %>%
  filter(!str_detect(word, "^[0-9]+$"))

# Top words after stopword removal
tidy_nike %>%
  count(word, sort = TRUE)
## readtext object consisting of 8875 documents and 0 docvars.
## # A data frame: 8,875 × 3
##   word         n text     
##   <chr>    <int> <chr>    
## 1 app       1690 "\"\"..."
## 2 love       601 "\"\"..."
## 3 nike       554 "\"\"..."
## 4 adidas     418 "\"\"..."
## 5 running    345 "\"\"..."
## 6 workouts   343 "\"\"..."
## # ℹ 8,869 more rows

2.5 Step 5: Stemming

tidy_nike_stem <- tidy_nike %>%
  mutate(word = wordStem(word))

tidy_nike_stem %>%
  count(word, sort = TRUE)
## readtext object consisting of 6786 documents and 0 docvars.
## # A data frame: 6,786 × 3
##   word        n text     
##   <chr>   <int> <chr>    
## 1 app      1771 "\"\"..."
## 2 run       725 "\"\"..."
## 3 love      664 "\"\"..."
## 4 workout   627 "\"\"..."
## 5 shoe      614 "\"\"..."
## 6 nike      572 "\"\"..."
## # ℹ 6,780 more rows

2.6 Step 6: Top Words per Source — Visualisation

tidy_nike %>%
  count(source, word, sort = TRUE) %>%
  group_by(source) %>%
  top_n(10) %>%
  ungroup() %>%
  mutate(word = reorder(word, n)) %>%
  ggplot(aes(word, n, fill = source)) +
  geom_col(show.legend = FALSE) +
  facet_wrap(~source, ncol = 3, scales = "free") +
  labs(x = NULL, y = "Word Count",
       title = "Top 10 Words per Source (Stopwords Removed)") +
  coord_flip()

2.7 Step 7: N-grams — Bigrams

nike_bigrams <- nike_df %>%
  unnest_tokens(bigram, text, token = "ngrams", n = 2)

nike_bigrams %>%
  count(bigram, sort = TRUE)
## readtext object consisting of 68025 documents and 0 docvars.
## # A data frame: 68,025 × 3
##   bigram         n text     
##   <chr>      <int> <chr>    
## 1 this app     499 "\"\"..."
## 2 the app      413 "\"\"..."
## 3 i have       310 "\"\"..."
## 4 of the       285 "\"\"..."
## 5 5 positive   267 "\"\"..."
## 6 in the       254 "\"\"..."
## # ℹ 68,019 more rows
# Remove stop words from bigrams
bigrams_separated <- nike_bigrams %>%
  separate(bigram, c("word1", "word2"), sep = " ")

bigrams_filtered <- bigrams_separated %>%
  filter(!word1 %in% stop_words$word) %>%
  filter(!word2 %in% stop_words$word)

bigram_counts <- bigrams_filtered %>%
  count(word1, word2, sort = TRUE)

bigram_counts
##                                          word1
## 1                                            5
## 2                                            1
## 3                                        apple
## 4                                      running
## 5                                            4
## 6                                            3
## 7                                         2024
## 8                                          air
## 9                                         2025
## 10                                      adidas
## 11                                 underarmour
## 12                                        2024
## 13                                     workout
## 14                                         gif
## 15                                    positive
## 16                                        2025
## 17                                       reign
## 18                                        2026
## 19                                         app
## 20                                        nike
## 21                                         toe
## 22                                        2023
## 23                                        2025
## 24                                           2
## 25                                     fitness
## 26                                     running
## 27                                      adidas
## 28                                        2026
## 29                                        2025
## 30                                        2025
## 31                                        free
## 32                                        half
## 33                                    training
## 34                                          10
## 35                                        2025
## 36                                        2025
## 37                                  absolutely
## 38                                      highly
## 39                                        2025
## 40                                       apple
## 41                                      boston
## 42                                         evo
## 43                                    training
## 44                                        user
## 45                                        2025
## 46                                        nike
## 47                                          19
## 48                                        2025
## 49                                         pro
## 50                                          10
## 51                                          11
## 52                                          21
## 53                                       adios
## 54                                     fitness
## 55                                        it’s
## 56                                        nike
## 57                                sneakerheads
## 58                                          08
## 59                                          12
## 60                                        2024
## 61                                          24
## 62                                           5
## 63                                       heart
## 64                                       score
## 65                                    training
## 66                                          13
## 67                                        2025
## 68                                        2026
## 69                                           5
## 70                                           7
## 71                                         air
## 72                                         app
## 73                                     awesome
## 74                                     charged
## 75                                        free
## 76                                        nike
## 77                                         ntc
## 78                                       score
## 79                                       super
## 80                                          06
## 81                                           1
## 82                                          15
## 83                                        2023
## 84                                          27
## 85                                      adidas
## 86                                      adidas
## 87                                         app
## 88                                         app
## 89                                         app
## 90                                        dark
## 91                                         max
## 92                                      months
## 93                                    negative
## 94                                    positive
## 95                                        2024
## 96                                        2025
## 97                                          23
## 98                                           6
## 99                                           8
## 100                                      adios
## 101                                      apple
## 102                                        i’m
## 103                                    perfect
## 104                                        pro
## 105                                      score
## 106                                   training
## 107                                    tribase
## 108                                      world
## 109                                         09
## 110                                         20
## 111                                       2023
## 112                                       2024
## 113                                       2024
## 114                                         29
## 115                                    amazing
## 116                                   customer
## 117                                        dri
## 118                                    fitness
## 119                                    fitness
## 120                                   multiple
## 121                                       nike
## 122                                    perfect
## 123                                    running
## 124                                   sneakers
## 125                                     takumi
## 126                                     vomero
## 127                                       walk
## 128                                       wide
## 129                                         01
## 130                                         02
## 131                                         04
## 132                                         05
## 133                                         07
## 134                                         16
## 135                                          2
## 136                                       2024
## 137                            adidasoriginals
## 138                                        app
## 139                                      apple
## 140                                   customer
## 141                                   interval
## 142                                    keeping
## 143                                       nike
## 144                                      reign
## 145                                       size
## 146                                     social
## 147                                      weeks
## 148                                       zoom
## 149                                         01
## 150                                         07
## 151                                         11
## 152                                         11
## 153                                          2
## 154                                       2024
## 155                                          5
## 156                                        app
## 157                                        app
## 158                                       book
## 159                                   calories
## 160                                comfortable
## 161                                   favorite
## 162                                    fitness
## 163                                       free
## 164                                       game
## 165                                       half
## 166                                       ipad
## 167                                       i’ve
## 168                                      legit
## 169                                       nice
## 170                                      north
## 171                                   positive
## 172                                    running
## 173                                      space
## 174                                   strength
## 175                                   training
## 176                                      ultra
## 177                                         01
## 178                                         03
## 179                                         05
## 180                                          1
## 181                                         10
## 182                                         10
## 183                                         18
## 184                                          2
## 185                                         26
## 186                                         28
## 187                                          3
## 188                                          3
## 189                                         31
## 190                                          4
## 191                                          6
## 192                                          9
## 193                                     adidas
## 194                                        app
## 195                                    average
## 196                                      can’t
## 197                                       club
## 198                                      covid
## 199                                   distance
## 200                                    doesn’t
## 201                                      force
## 202                                       life
## 203                                       love
## 204                                       love
## 205                                        low
## 206                                       nike
## 207                                       nike
## 208                                       nike
## 209                                    running
## 210                                    running
## 211                                      score
## 212                                      score
## 213                                       size
## 214                                       size
## 215                                      super
## 216                                   tracking
## 217                                       wide
## 218                                      won’t
## 219                                    workout
## 220                                         02
## 221                                         02
## 222                                         03
## 223                                         06
## 224                                         10
## 225                                         10
## 226                                         10
## 227                                         10
## 228                                         11
## 229                                         11
## 230                                         11
## 231                                         12
## 232                                         13
## 233                                         17
## 234                                         18
## 235                                       2024
## 236                                       2024
## 237                                         21
## 238                                          3
## 239                                          3
## 240                                         30
## 241                                         3d
## 242                                          4
## 243                                          4
## 244                                          5
## 245                                          5
## 246                                          6
## 247                                     adidas
## 248                                        app
## 249                                        app
## 250                                     armour
## 251                                     casual
## 252                                    current
## 253                                   distance
## 254                                         es
## 255                                   exercise
## 256                                   favorite
## 257                                        fit
## 258                                       free
## 259                                   investor
## 260                                     iphone
## 261                                       it’s
## 262                                        i’d
## 263                                     jordan
## 264                                     jordan
## 265                                         la
## 266                                  landscape
## 267                                      legit
## 268                                       love
## 269                                     mental
## 270                                       mile
## 271                                   negative
## 272                                       nike
## 273                                       nike
## 274                                       nike
## 275                                       nike
## 276                                       nike
## 277                                   original
## 278                                       paid
## 279                                   positive
## 280                                   positive
## 281                                   positive
## 282                                     recent
## 283                                        run
## 284                                    running
## 285                                      score
## 286                                     single
## 287                                       size
## 288                                      super
## 289                                  supernova
## 290                                       time
## 291                                       time
## 292                                        top
## 293                                     travis
## 294                                       user
## 295                                         ve
## 296                                       wall
## 297                                     weight
## 298                                    workout
## 299                                   workouts
## 300                                       yoga
## 301                                         01
## 302                                         01
## 303                                         01
## 304                                         01
## 305                                         01
## 306                                         02
## 307                                         02
## 308                                         02
## 309                                         02
## 310                                         02
## 311                                         03
## 312                                         06
## 313                                         09
## 314                                         09
## 315                                          1
## 316                                          1
## 317                                         11
## 318                                         11
## 319                                         11
## 320                                         12
## 321                                         12
## 322                                         12
## 323                                         12
## 324                                         14
## 325                                          2
## 326                                          2
## 327                                         20
## 328                                       2020
## 329                                       2024
## 330                                         23
## 331                                          3
## 332                                         30
## 333                                          4
## 334                                          4
## 335                                     adidas
## 336                                     adidas
## 337                                    adistar
## 338                                        app
## 339                                        app
## 340                                        app
## 341                                        app
## 342                                        app
## 343                                        app
## 344                                      apple
## 345                                     armour
## 346                                      basic
## 347                                 basketball
## 348                                      black
## 349                                     boston
## 350                                     campus
## 351                                      can’t
## 352                                challenging
## 353                                      class
## 354                                      class
## 355                                comfortable
## 356                                 completely
## 357                                     couple
## 358                                      cross
## 359                                      daily
## 360                                      daily
## 361                                       days
## 362                                    doesn’t
## 363                                    doesn’t
## 364                                    dropset
## 365                                    elliott
## 366                                       esta
## 367                                   everyday
## 368                                  excellent
## 369                                   favorite
## 370                                        fly
## 371                                       foot
## 372                                       free
## 373                                       free
## 374                                       free
## 375                                      fresh
## 376                                    healthy
## 377                                       home
## 378                                 invincible
## 379                                       it’s
## 380                                       it’s
## 381                                       it’s
## 382                                       june
## 383                                       love
## 384                                        low
## 385                                      makes
## 386                                   marathon
## 387                                        muy
## 388                                   negative
## 389                                    neutral
## 390                                       nice
## 391                                       nike
## 392                                       nike
## 393                                       nike
## 394                                       nike
## 395                                       paid
## 396                                    pegasus
## 397                                   personal
## 398                                   positive
## 399                                   positive
## 400                                    premium
## 401                                   previous
## 402                              restructuring
## 403                                     retail
## 404                                       rock
## 405                                        run
## 406                                        run
## 407                                    running
## 408                                  runtastic
## 409                                  runtastic
## 410                                  scheduled
## 411                                       shoe
## 412                                      solid
## 413                                      space
## 414                                      stack
## 415                                       star
## 416                                    started
## 417                                       stay
## 418                                      stops
## 419                                    summary
## 420                                      super
## 421                                      todos
## 422                                        top
## 423                                   training
## 424                                   training
## 425                                       true
## 426                                         ua
## 427                                         ua
## 428                                         ua
## 429                                      ultra
## 430                                       user
## 431                                   velociti
## 432                                       walk
## 433                                    walking
## 434                                       warm
## 435                                      watch
## 436                                    women's
## 437                                    workout
## 438                                         01
## 439                                         01
## 440                                         01
## 441                                         01
## 442                                         01
## 443                                         01
## 444                                         01
## 445                                         02
## 446                                         02
## 447                                         02
## 448                                         03
## 449                                         03
## 450                                         03
## 451                                         03
## 452                                         03
## 453                                         04
## 454                                         04
## 455                                         05
## 456                                         05
## 457                                         05
## 458                                         05
## 459                                         06
## 460                                         06
## 461                                         08
## 462                                         08
## 463                                         09
## 464                                         09
## 465                                          1
## 466                                          1
## 467                                         10
## 468                                         10
## 469                                         10
## 470                                         10
## 471                                         10
## 472                                         11
## 473                                         11
## 474                                         11
## 475                                         11
## 476                                         12
## 477                                         12
## 478                                         12
## 479                                         12
## 480                                         14
## 481                                         14
## 482                                         15
## 483                                         17
## 484                                         17
## 485                                          2
## 486                                       2021
## 487                                       2024
## 488                                         21
## 489                                         21
## 490                                         22
## 491                                         23
## 492                                         24
## 493                                         25
## 494                                         25
## 495                                         27
## 496                                         28
## 497                                         28
## 498                                         28
## 499                                         29
## 500                                         29
## 501                                          3
## 502                                          3
## 503                                         30
## 504                                        361
## 505                                         40
## 506                                          5
## 507                                          7
## 508                                         85
## 509                                 absolutely
## 510                                        add
## 511                                        add
## 512                                     adidas
## 513                                   advanced
## 514                                        air
## 515                                        air
## 516                                    amazing
## 517                                    amazing
## 518                                    amazing
## 519                                   annoying
## 520                                 aplicación
## 521                                        app
## 522                                        app
## 523                                        app
## 524                                        app
## 525                                        app
## 526                                        app
## 527                                        app
## 528                                        app
## 529                                        app
## 530                                        app
## 531                                        app
## 532                                        app
## 533                                        app
## 534                                        app
## 535                                       apps
## 536                                      armor
## 537                                     armour
## 538                                     armour
## 539                                     armour
## 540                                     armour
## 541                                    awesome
## 542                                      barry
## 543                                      black
## 544                                      black
## 545                                      black
## 546                                       blue
## 547                                       body
## 548                                       book
## 549                                       born
## 550                                     bought
## 551                                     bought
## 552                                    bowling
## 553                                      buena
## 554                                      buena
## 555                                      can’t
## 556                                      can’t
## 557                                        cap
## 558                                        ceo
## 559                                       club
## 560                                      coach
## 561                                 completely
## 562                                  contacted
## 563                                     cotton
## 564                                      covid
## 565                                      daily
## 566                                        day
## 567                                         de
## 568                                         de
## 569                                    doesn’t
## 570                                    doesn’t
## 571                                        dog
## 572                                      don’t
## 573                                      don’t
## 574                                    dropset
## 575                                       easy
## 576                                     eleven
## 577                                      email
## 578                                      email
## 579                                      error
## 580                                      error
## 581                                   everyday
## 582                                      exact
## 583                                   exercise
## 584                                  exercises
## 585                                       fast
## 586                                   favorite
## 587                                   favorite
## 588                                   favorite
## 589                                      fedex
## 590                                  financial
## 591                                     finish
## 592                                    fitness
## 593                                    fitness
## 594                                        fly
## 595                                       free
## 596                                     fruity
## 597                                     fy2026
## 598                                        god
## 599                                       golf
## 600                                     google
## 601                                        gps
## 602                                       grey
## 603                                       half
## 604                                       hard
## 605                                       hard
## 606                                       heck
## 607                                       hell
## 608                                        hey
## 609                                        hit
## 610                                       holy
## 611                                       huge
## 612                                   infinite
## 613                                        ios
## 614                                       ipad
## 615                                     iphone
## 616                                       it’s
## 617                                       it’s
## 618                                       it’s
## 619                                       it’s
## 620                                        i’m
## 621                                       i’ve
## 622                                       i’ve
## 623                                         jd
## 624                                        joe
## 625                                       john
## 626                                     jordan
## 627                                     jordan
## 628                                     jordan
## 629                                       june
## 630                                      kevin
## 631                                         la
## 632                                         li
## 633                                       link
## 634                                       lock
## 635                                      login
## 636                                      loose
## 637                                       love
## 638                                       love
## 639                                       mass
## 640                                        max
## 641                                    medical
## 642                                      men's
## 643                                     metcon
## 644                                     metcon
## 645                                     metcon
## 646                                    minimum
## 647                                     minute
## 648                                     modern
## 649                                    monthly
## 650                                   multiple
## 651                                        muy
## 652                                   national
## 653                                   negative
## 654                                       neon
## 655                                       nice
## 656                                       nike
## 657                                       nike
## 658                                       nike
## 659                                       nike
## 660                                       nike
## 661                                       nike
## 662                                   november
## 663                                     orange
## 664                                   original
## 665                                outstanding
## 666                                       paid
## 667                                      pause
## 668                                        pay
## 669                                    pegasus
## 670                                     people
## 671                                     pepper
## 672                                   personal
## 673                                   personal
## 674                                       play
## 675                                        pop
## 676                                   positive
## 677                                   positive
## 678                                     pretty
## 679                                        pro
## 680                                        pro
## 681                                    project
## 682                                         q3
## 683                                    quality
## 684                                       race
## 685                                       rare
## 686                                       rate
## 687                                       real
## 688                                       real
## 689                                   recently
## 690                                        red
## 691                                        red
## 692                                    release
## 693                                    revenue
## 694                                    revenue
## 695                                        run
## 696                                        run
## 697                                     savage
## 698                                         sb
## 699                                      score
## 700                                      score
## 701                                        sen
## 702                                      share
## 703                                       shoe
## 704                                       shoe
## 705                                       shoe
## 706                                     single
## 707                                     single
## 708                                    special
## 709                                       stay
## 710                                      store
## 711                                   straight
## 712                                     street
## 713                                   strength
## 714                                      style
## 715                                       tech
## 716                                       time
## 717                                       time
## 718                                      track
## 719                                    tracker
## 720                                   tracking
## 721                                   training
## 722                                   training
## 723                                  treadmill
## 724                                  treadmill
## 725                                        tri
## 726                                 ultraboost
## 727                                     update
## 728                                      upper
## 729                                      video
## 730                                    walking
## 731                                    wearing
## 732                                      white
## 733                                      white
## 734                                      white
## 735                                 whiteboard
## 736                                  wholesale
## 737                                       wide
## 738                                      wider
## 739                                      won’t
## 740                                    workout
## 741                                    workout
## 742                                    workout
## 743                                   workouts
## 744                                     yeezys
## 745                                     you’re
## 746                                         00
## 747                                         01
## 748                                         01
## 749                                         01
## 750                                         01
## 751                                         01
## 752                                         01
## 753                                         01
## 754                                         01
## 755                                         01
## 756                                         02
## 757                                         02
## 758                                         02
## 759                                         02
## 760                                         02
## 761                                         02
## 762                                         03
## 763                                         03
## 764                                         03
## 765                                         03
## 766                                         03
## 767                                         03
## 768                                         04
## 769                                         04
## 770                                         04
## 771                                         04
## 772                                         04
## 773                                         04
## 774                                         04
## 775                                         05
## 776                                         05
## 777                                         05
## 778                                         06
## 779                                         06
## 780                                         06
## 781                                         06
## 782                                         06
## 783                                         06
## 784                                         06
## 785                                         07
## 786                                         07
## 787                                         08
## 788                                         09
## 789                                         09
## 790                                         09
## 791                                         09
## 792                                          1
## 793                                          1
## 794                                        1.5
## 795                                         10
## 796                                         10
## 797                                         10
## 798                                         10
## 799                                         10
## 800                                         10
## 801                                         10
## 802                                         10
## 803                                         11
## 804                                         11
## 805                                         11
## 806                                         11
## 807                                         11
## 808                                         11
## 809                                         11
## 810                                         11
## 811                                         11
## 812                                         11
## 813                                         11
## 814                                         11
## 815                                         12
## 816                                         12
## 817                                         12
## 818                                         12
## 819                                         12
## 820                                         12
## 821                                         12
## 822                                         12
## 823                                         12
## 824                                         12
## 825                                         12
## 826                                         12
## 827                                         13
## 828                                         14
## 829                                         14
## 830                                         14
## 831                                         15
## 832                                         15
## 833                                         16
## 834                                         16
## 835                                         16
## 836                                         19
## 837                                          2
## 838                                          2
## 839                                          2
## 840                                          2
## 841                                          2
## 842                                         20
## 843                                       2025
## 844                                       2026
## 845                                         21
## 846                                         22
## 847                                         22
## 848                                         25
## 849                                         25
## 850                                         26
## 851                                         27
## 852                                         28
## 853                                          3
## 854                                         30
## 855                                         30
## 856                                         31
## 857                                          4
## 858                                          4
## 859                                         48
## 860                                         4d
## 861                                          5
## 862                                          5
## 863                                          5
## 864                                          5
## 865                                          5
## 866                                          5
## 867                                         50
## 868                                          6
## 869                                          6
## 870                                          6
## 871                                          7
## 872                                          7
## 873                                          7
## 874                                          7
## 875                                         70
## 876                                          8
## 877                                          8
## 878                                          9
## 879                                          9
## 880                                        900
## 881                                        90m
## 882                                         95
## 883                                         95
## 884                                 absolutely
## 885                               accidentally
## 886                             accountability
## 887                                   accurate
## 888                                   accurate
## 889                                   accurate
## 890                                        acg
## 891                                 activities
## 892                                   activity
## 893                                     actual
## 894                                        add
## 895                                        add
## 896                                        add
## 897                                     adidas
## 898                                     adidas
## 899                                     adidas
## 900                                     adidas
## 901                                     adidas
## 902                                     adidas
## 903                                     adidas
## 904                                     adidas
## 905                                     adidas
## 906                                     adidas
## 907                                     adidas
## 908                                     adidas
## 909                                     adidas
## 910                                     adidas
## 911                                     adidas
## 912                                     adidas
## 913                                     adidas
## 914                                     adidas
## 915                                    adistar
## 916                                        adv
## 917                                   advanced
## 918                                  advantage
## 919                                      agree
## 920                                        air
## 921                                        air
## 922                                        air
## 923                                    amazing
## 924                                    amazing
## 925                                    amazing
## 926                                    amazing
## 927                                    america
## 928                                        amp
## 929                                    anymore
## 930                                 aplicación
## 931                                 aplicación
## 932                                        app
## 933                                        app
## 934                                        app
## 935                                        app
## 936                                        app
## 937                                        app
## 938                                        app
## 939                                        app
## 940                                        app
## 941                                        app
## 942                                        app
## 943                                        app
## 944                                        app
## 945                                        app
## 946                                        app
## 947                                        app
## 948                                        app
## 949                                        app
## 950                                        app
## 951                                        app
## 952                                        app
## 953                                        app
## 954                                        app
## 955                                        app
## 956                                        app
## 957                                        app
## 958                                        app
## 959                                application
## 960                                       apps
## 961                                       apps
## 962                                      app’s
## 963                                     armour
## 964                                     armour
## 965                                     armour
## 966                                     armour
## 967                                     armour
## 968                                     armour
## 969                                     armour
## 970                                   armour’s
## 971                                      asics
## 972                                      audio
## 973                                  authentic
## 974                                    average
## 975                                      awful
## 976                                        bad
## 977                                        bad
## 978                                        bad
## 979                                   barefoot
## 980                                       base
## 981                                      basic
## 982                                  basically
## 983                                 basketball
## 984                                 basketball
## 985                                    battery
## 986                                  beautiful
## 987                                   beginner
## 988                                   beginner
## 989                                     bigger
## 990                                    biggest
## 991                                        bit
## 992                                        bit
## 993                                        bit
## 994                                        bit
## 995                                      bjorn
## 996                                      black
## 997                                      black
## 998                                      black
## 999                                      black
## 1000                                     black
## 1001                                     blank
## 1002                                     blank
## 1003                                      blue
## 1004                                      blue
## 1005                                      body
## 1006                                    booker
## 1007                                     boost
## 1008                                    boosts
## 1009                                    boston
## 1010                                    bought
## 1011                                       box
## 1012                                  brazil’s
## 1013                                    broken
## 1014                                    broken
## 1015                                    bubble
## 1016                                       buy
## 1017                                       buy
## 1018                                       buy
## 1019                                    buying
## 1020                                      calf
## 1021                                    camera
## 1022                                     can’t
## 1023                                     can’t
## 1024                                       cao
## 1025                                    carbon
## 1026                                      care
## 1027                                    cement
## 1028                                       ceo
## 1029                                    change
## 1030                                  changing
## 1031                                    charge
## 1032                                     cheap
## 1033                                     check
## 1034                                    cheeto
## 1035                             chronological
## 1036                                     class
## 1037                                   classic
## 1038                                     clean
## 1039                                     clean
## 1040                                     clean
## 1041                                      cmon
## 1042                                      cnbc
## 1043                                  coaching
## 1044                                collection
## 1045                                     color
## 1046                                     color
## 1047                                  columbia
## 1048                               comfortable
## 1049                               comfortable
## 1050                                     comfy
## 1051                                comparison
## 1052                                  compiled
## 1053                                 completed
## 1054                                completely
## 1055                                completely
## 1056                                  constant
## 1057                                  constant
## 1058                                  consumer
## 1059                                     coord
## 1060                                     costs
## 1061                                    cotton
## 1062                                  couldn’t
## 1063                                    couple
## 1064                                    couple
## 1065                                     crazy
## 1066                                     cream
## 1067                                     crept
## 1068                                      crew
## 1069                                     cross
## 1070                                  crossfit
## 1071                                  currency
## 1072                                   current
## 1073                                     curry
## 1074                                     curry
## 1075                                     curry
## 1076                                     curry
## 1077                                  customer
## 1078                                       cut
## 1079                                        da
## 1080                                     daily
## 1081                                     daily
## 1082                                      dark
## 1083                                      dark
## 1084                                      dash
## 1085                                      data
## 1086                                      data
## 1087                                       day
## 1088                                       day
## 1089                                       day
## 1090                                      days
## 1091                                        de
## 1092                                      deal
## 1093                                    decade
## 1094                                    decent
## 1095                                       def
## 1096                                    degree
## 1097                                  deleting
## 1098                                    desert
## 1099                                  detalles
## 1100                                    didn’t
## 1101                                    didn’t
## 1102                                    didn’t
## 1103                                       die
## 1104                                     digit
## 1105                                  distance
## 1106                                  distance
## 1107                                   doesn’t
## 1108                                   doesn’t
## 1109                                   doesn’t
## 1110                                   doesn’t
## 1111                                   doesn’t
## 1112                                    dollar
## 1113                                     don’t
## 1114                                     don’t
## 1115                                      dope
## 1116                                  download
## 1117                                        ds
## 1118                                       dtc
## 1119                                      dumb
## 1120                                      dunk
## 1121                                      easy
## 1122                                      easy
## 1123                                      edit
## 1124                                        el
## 1125                                        el
## 1126                                     elite
## 1127                                     elite
## 1128                                     elite
## 1129                                        em
## 1130                                     email
## 1131                                     enter
## 1132                                      este
## 1133                                  everyday
## 1134                                  everyday
## 1135                                 excelente
## 1136                                 excelente
## 1137                                 excelente
## 1138                                 excellent
## 1139                                 excellent
## 1140                                 exclusive
## 1141                                  exercise
## 1142                                 exercises
## 1143                                  existing
## 1144                                 extremely
## 1145                                      fake
## 1146                                   falling
## 1147                                 fantastic
## 1148                                  favorite
## 1149                                  favorite
## 1150                                  favorite
## 1151                                  favorite
## 1152                                  favorite
## 1153                                  favorite
## 1154                                   feature
## 1155                                      feel
## 1156                                      feet
## 1157                                    female
## 1158                                  fernando
## 1159                                   fingers
## 1160                                       fit
## 1161                                       fit
## 1162                                       fit
## 1163                                       fit
## 1164                                    fitbit
## 1165                                    fitbit
## 1166                                    fitbit
## 1167                                   fitness
## 1168                                   fitness
## 1169                                   fitness
## 1170                                   fitness
## 1171                                      fits
## 1172                                    flight
## 1173                              flightposite
## 1174                                   flights
## 1175                                      flip
## 1176                                       fly
## 1177                                      foam
## 1178                                     folks
## 1179                                      fool
## 1180                                      foot
## 1181                                     force
## 1182                                  forefoot
## 1183                                forerunner
## 1184                                    forest
## 1185                                    forest
## 1186                                    forgot
## 1187                                    fourth
## 1188                                      free
## 1189                                      free
## 1190                                      free
## 1191                                      free
## 1192                                     fresh
## 1193                                  friendly
## 1194                                  friendly
## 1195                                      fuck
## 1196                                       fun
## 1197                                      gaap
## 1198                                     gamma
## 1199                                    garmin
## 1200                                    gender
## 1201                                    giving
## 1202                                      goal
## 1203                                      goal
## 1204                                      goat
## 1205                                       god
## 1206                                      gold
## 1207                                      golf
## 1208                                     gonna
## 1209                                     gonna
## 1210                                     gonna
## 1211                                     gonna
## 1212                                      gore
## 1213                                        gp
## 1214                                       gps
## 1215                                       gps
## 1216                                   gracias
## 1217                                      gran
## 1218                                     green
## 1219                                     green
## 1220                                   grossly
## 1221                                        gt
## 1222                                    guided
## 1223                                    guided
## 1224                                       gym
## 1225                                       gym
## 1226                                      half
## 1227                                      half
## 1228                                      half
## 1229                                  handball
## 1230                                      hate
## 1231                                   haven’t
## 1232                                    health
## 1233                                   healthy
## 1234                                  heatgear
## 1235                                     heavy
## 1236                                      hell
## 1237                                     helps
## 1238                                       hem
## 1239                                    highly
## 1240                                      hiit
## 1241                                    hippie
## 1242                                      home
## 1243                                      home
## 1244                                    honest
## 1245                                  honestly
## 1246                                     house
## 1247                                        hr
## 1248                                     https
## 1249                                      huge
## 1250                                      huge
## 1251                                      huge
## 1252                                      hype
## 1253                                       idk
## 1254                                        im
## 1255                                inaccurate
## 1256                                incredible
## 1257                                incredible
## 1258                                incredibly
## 1259                               informative
## 1260                                    insole
## 1261                                  interval
## 1262                                       ios
## 1263                                      ipad
## 1264                                      ipad
## 1265                                      ipad
## 1266                                    iphone
## 1267                                    iphone
## 1268                                    iphone
## 1269                                      it’s
## 1270                                      it’s
## 1271                                      it’s
## 1272                                      it’s
## 1273                                        iv
## 1274                                       i’d
## 1275                                       i’m
## 1276                                       i’m
## 1277                                       i’m
## 1278                                       i’m
## 1279                                       i’m
## 1280                                       i’m
## 1281                                       i’m
## 1282                                       i’m
## 1283                                      i’ve
## 1284                                      i’ve
## 1285                                       job
## 1286                                      join
## 1287                                    jordan
## 1288                                   journal
## 1289                                      july
## 1290                                      july
## 1291                                     kanye
## 1292                                       key
## 1293                                      kids
## 1294                                      kids
## 1295                                        km
## 1296                                      kobe
## 1297                                     kyrie
## 1298                                        la
## 1299                                        la
## 1300                                 landscape
## 1301                                       las
## 1302                                    leader
## 1303                                      left
## 1304                                       leg
## 1305                                     level
## 1306                                      life
## 1307                                   lifting
## 1308                                     light
## 1309                                   limited
## 1310                                   limited
## 1311                                 literally
## 1312                                        ll
## 1313                                     llena
## 1314                                   loading
## 1315                                     local
## 1316                                     login
## 1317                                      logo
## 1318                                       lol
## 1319                                       los
## 1320                                       los
## 1321                                      lose
## 1322                                      love
## 1323                                      love
## 1324                                     loved
## 1325                                       low
## 1326                                     lower
## 1327                                        lt
## 1328                                   luckily
## 1329                                      main
## 1330                                     major
## 1331                                     major
## 1332                                     makes
## 1333                                  manually
## 1334                                  manually
## 1335                                  manually
## 1336                                       map
## 1337                                  mapmyrun
## 1338                                  marathon
## 1339                                     march
## 1340                                  material
## 1341                                       max
## 1342                                       max
## 1343                                       max
## 1344                                       max
## 1345                                       max
## 1346                                       max
## 1347                                       max
## 1348                                   measure
## 1349                                     media
## 1350                                    medium
## 1351                                     megan
## 1352                                     men’s
## 1353                                    metcon
## 1354                                   metcons
## 1355                                        mi
## 1356                                       mid
## 1357                                       mid
## 1358                                      mile
## 1359                                      mile
## 1360                                      mile
## 1361                                   mileage
## 1362                                   mileage
## 1363                                     miles
## 1364                                     miles
## 1365                                     miles
## 1366                                       min
## 1367                                       min
## 1368                                      mind
## 1369                                     minor
## 1370                                    minute
## 1371                                    mizuno
## 1372                                      mock
## 1373                                       mon
## 1374                                   monthly
## 1375                                    motley
## 1376                                  multiple
## 1377                                  multiple
## 1378                                     music
## 1379                                     music
## 1380                                     music
## 1381                                       muy
## 1382                                       muy
## 1383                                       más
## 1384                                      nano
## 1385                                    narrow
## 1386                                  national
## 1387                                  negative
## 1388                                  negative
## 1389                                  negative
## 1390                                  negative
## 1391                                  negative
## 1392                                  negative
## 1393                                      neon
## 1394                                      neon
## 1395                                      neon
## 1396                                       net
## 1397                                       net
## 1398                                   neutral
## 1399                                   neutral
## 1400                                   neutral
## 1401                                   neutral
## 1402                                      nice
## 1403                                      nice
## 1404                                      nice
## 1405                                     night
## 1406                                      nike
## 1407                                      nike
## 1408                                      nike
## 1409                                      nike
## 1410                                      nike
## 1411                                      nike
## 1412                                      nike
## 1413                                      nike
## 1414                                      nike
## 1415                                      nike
## 1416                                      nike
## 1417                                      nike
## 1418                                      nike
## 1419                                      nike
## 1420                                      nike
## 1421                                      nike
## 1422                                      nike
## 1423                                     nikes
## 1424                                    normal
## 1425                                    normal
## 1426                              notification
## 1427                                       ntc
## 1428                                   october
## 1429                                  official
## 1430                                        og
## 1431                                        og
## 1432                                        og
## 1433                                        og
## 1434                                    online
## 1435                                    orange
## 1436                                   outdoor
## 1437                                   outlook
## 1438                                      pace
## 1439                                      pack
## 1440                                      paid
## 1441                                      para
## 1442                                     paris
## 1443                                   parsing
## 1444                                  password
## 1445                                      past
## 1446                                      past
## 1447                                    patrik
## 1448                                       pay
## 1449                                       pay
## 1450                                    paying
## 1451                                    paypal
## 1452                                   pegasus
## 1453                                    people
## 1454                                    people
## 1455                                    people
## 1456                                   perfect
## 1457                                   perfect
## 1458                                 perfectly
## 1459                               performance
## 1460                               performance
## 1461                                    person
## 1462                                  personal
## 1463                                  personal
## 1464                              personalized
## 1465                                     phone
## 1466                                     phone
## 1467                                  physical
## 1468                                    picked
## 1469                                      pink
## 1470                                       pit
## 1471                                    plated
## 1472                                  platinum
## 1473                                   players
## 1474                                       por
## 1475                                  positive
## 1476                                  positive
## 1477                                  positive
## 1478                                  positive
## 1479                                  positive
## 1480                                  positive
## 1481                                  positive
## 1482                                  positive
## 1483                                  positive
## 1484                                  positive
## 1485                                  positive
## 1486                                  positive
## 1487                                  positive
## 1488                                  positive
## 1489                                  positive
## 1490                                  positive
## 1491                                      post
## 1492                                   premium
## 1493                                 president
## 1494                                    pretty
## 1495                                    pretty
## 1496                                    pretty
## 1497                                  previous
## 1498                                  previous
## 1499                                     price
## 1500                                 primitive
## 1501                                   printed
## 1502                                       pro
## 1503                                   product
## 1504                                    puerto
## 1505                                  purchase
## 1506                                        q1
## 1507                                        q3
## 1508                                        qc
## 1509                                   quality
## 1510                                   quality
## 1511                                   quality
## 1512                                   quality
## 1513                                   quarter
## 1514                                   quarter
## 1515                                     quick
## 1516                                      race
## 1517                                      rate
## 1518                                      rave
## 1519                                      real
## 1520                                    recent
## 1521                                 recommend
## 1522                                       red
## 1523                                    reddit
## 1524                                    reebok
## 1525                                   regular
## 1526                                     reign
## 1527                                   reports
## 1528                                  requires
## 1529                                    resale
## 1530                                     reset
## 1531                                   results
## 1532                                    retail
## 1533                                    retail
## 1534                                   revenue
## 1535                                    review
## 1536                                    review
## 1537                                    review
## 1538                                    review
## 1539                                   reviews
## 1540                                   reviews
## 1541                                      rise
## 1542                                    rubber
## 1543                                    rubber
## 1544                                       run
## 1545                                       run
## 1546                                       run
## 1547                                       run
## 1548                                       run
## 1549                                       run
## 1550                                       run
## 1551                                       run
## 1552                                   running
## 1553                                   running
## 1554                                   running
## 1555                                   running
## 1556                                   running
## 1557                                   running
## 1558                                   running
## 1559                                   running
## 1560                                   running
## 1561                                   running
## 1562                                      runs
## 1563                                      runs
## 1564                                    rutina
## 1565                                     samba
## 1566                                     score
## 1567                                     score
## 1568                                     score
## 1569                                     score
## 1570                                     score
## 1571                                     score
## 1572                                       sen
## 1573                                      shoe
## 1574                                      shoe
## 1575                                      shoe
## 1576                                      shoe
## 1577                                     shoes
## 1578                                     shoes
## 1579                                     shoes
## 1580                                     shoes
## 1581                                     shoes
## 1582                                     shoes
## 1583                                     shoes
## 1584                                     shoes
## 1585                                     short
## 1586                                 signature
## 1587                                 signature
## 1588                                    silver
## 1589                                    single
## 1590                                      size
## 1591                                      size
## 1592                                      size
## 1593                                      size
## 1594                                     skill
## 1595                                     slide
## 1596                                  slightly
## 1597                                  slightly
## 1598                                     smart
## 1599                                   sneaker
## 1600                                   sneaker
## 1601                                   sneaker
## 1602                                     socks
## 1603                                      sole
## 1604                                     solid
## 1605                                       son
## 1606                                  specific
## 1607                                     spend
## 1608                                    spieth
## 1609                                    spieth
## 1610                                    splash
## 1611                                     split
## 1612                                 sponsored
## 1613                                     sport
## 1614                                    sports
## 1615                                    sports
## 1616                                sportswear
## 1617                                    sporty
## 1618                                   spotify
## 1619                                     spray
## 1620                                       src
## 1621                                     stair
## 1622                                  stallion
## 1623                                      stan
## 1624                                      star
## 1625                                     start
## 1626                                   started
## 1627                                      stay
## 1628                                      stay
## 1629                                     steel
## 1630                                  steelers
## 1631                                 stephanie
## 1632                                      stop
## 1633                                   stopped
## 1634                                    strike
## 1635                              subscription
## 1636                                     super
## 1637                                     super
## 1638                                     super
## 1639                                     super
## 1640                                     super
## 1641                                 supernova
## 1642                                    supply
## 1643                                 supported
## 1644                                     sweat
## 1645                                sweatshirt
## 1646                                        te
## 1647                                    team's
## 1648                                 technical
## 1649                                     tempo
## 1650                                      text
## 1651                                      thee
## 1652                                   thicker
## 1653                                      time
## 1654                                      time
## 1655                                      time
## 1656                                     timed
## 1657                                        tj
## 1658                                     todas
## 1659                                       toe
## 1660                                       toe
## 1661                                       top
## 1662                                       top
## 1663                                     total
## 1664                                     total
## 1665                                     total
## 1666                                     total
## 1667                                   totally
## 1668                                   totally
## 1669                                     track
## 1670                                     track
## 1671                                     track
## 1672                                     track
## 1673                                  tracking
## 1674                                  training
## 1675                                       tri
## 1676                                    triple
## 1677                                        tu
## 1678                                        ua
## 1679                                        ui
## 1680                                       una
## 1681                                       una
## 1682                                   updated
## 1683                                      user
## 1684                                     vapor
## 1685                                        ve
## 1686                                        ve
## 1687                                   version
## 1688                                   version
## 1689                                   version
## 1690                                   version
## 1691                                    victim
## 1692                                     video
## 1693                                     video
## 1694                                   vintage
## 1695                                     voice
## 1696                                    vomero
## 1697                                    vomero
## 1698                                      walk
## 1699                                   walking
## 1700                                   walking
## 1701                                     watch
## 1702                                      wear
## 1703                                      wear
## 1704                                      wear
## 1705                                      wear
## 1706                                      wear
## 1707                                   wearing
## 1708                                   wearing
## 1709                                   weather
## 1710                                      week
## 1711                               welcomesave
## 1712                                     white
## 1713                                     white
## 1714                                     white
## 1715                                     white
## 1716                                     white
## 1717                                whiteboard
## 1718                                      wide
## 1719                                      wide
## 1720                                      wolf
## 1721                                   women's
## 1722                                   women's
## 1723                                   women's
## 1724                                 wonderful
## 1725                                 wonderful
## 1726                                     won’t
## 1727                                     won’t
## 1728                                     won’t
## 1729                                      wore
## 1730                                   workout
## 1731                                   workout
## 1732                                   workout
## 1733                                   workout
## 1734                                   workout
## 1735                                   workout
## 1736                                   workout
## 1737                                   workout
## 1738                                  workouts
## 1739                                  workouts
## 1740                                  workouts
## 1741                                  workouts
## 1742                                  workouts
## 1743                                  workouts
## 1744                                     world
## 1745                                      worn
## 1746                                     worst
## 1747                                     write
## 1748                                     yeezy
## 1749                                     yeezy
## 1750                                     yeezy
## 1751                                      yoga
## 1752                                      yoga
## 1753                                      yoga
## 1754                                   youtube
## 1755                                    you’re
## 1756                                    you’ve
## 1757                                      zion
## 1758                                      zoom
## 1759                                      zoom
## 1760                                      zoom
## 1761                                     zoomx
## 1762                                         ª
## 1763                                         ª
## 1764                                         ª
## 1765                                         ª
## 1766                                  özelliği
## 1767                                         þ
## 1768                                        не
## 1769                                         0
## 1770                                         0
## 1771                                         0
## 1772                                         0
## 1773                                      0.05
## 1774                                      0.44
## 1775                                       0.5
## 1776                                       0.5
## 1777                                      0.72
## 1778                                      0.95
## 1779                                      0.99
## 1780                                        00
## 1781                                      00am
## 1782                                        01
## 1783                                        01
## 1784                                        01
## 1785                                        01
## 1786                                        01
## 1787                                        01
## 1788                                        01
## 1789                                        01
## 1790                                        01
## 1791                                        02
## 1792                                        02
## 1793                                        02
## 1794                                        02
## 1795                                        02
## 1796                                        02
## 1797                                        02
## 1798                                        02
## 1799                                        02
## 1800                                        03
## 1801                                        03
## 1802                                        03
## 1803                                        03
## 1804                                        03
## 1805                                        03
## 1806                                        03
## 1807                                        03
## 1808                                        04
## 1809                                        04
## 1810                                        04
## 1811                                        04
## 1812                                        04
## 1813                                        04
## 1814                                        04
## 1815                                        04
## 1816                                        04
## 1817                                        04
## 1818                                        04
## 1819                                        04
## 1820                                        05
## 1821                                        05
## 1822                                        05
## 1823                                        05
## 1824                                        05
## 1825                                        05
## 1826                                        05
## 1827                                        05
## 1828                                        05
## 1829                                        05
## 1830                                        05
## 1831                                        06
## 1832                                        06
## 1833                                        06
## 1834                                        06
## 1835                                        06
## 1836                                        06
## 1837                                        06
## 1838                                        06
## 1839                                        06
## 1840                                        06
## 1841                                        06
## 1842                                        06
## 1843                                        06
## 1844                                        06
## 1845                                        07
## 1846                                        07
## 1847                                        07
## 1848                                        07
## 1849                                        07
## 1850                                        07
## 1851                                        07
## 1852                                        07
## 1853                                        07
## 1854                                        07
## 1855                                        07
## 1856                                        07
## 1857                                        07
## 1858                                        07
## 1859                                        08
## 1860                                        08
## 1861                                        08
## 1862                                        08
## 1863                                        08
## 1864                                        08
## 1865                                        08
## 1866                                        08
## 1867                                        08
## 1868                                        08
## 1869                                        08
## 1870                                        08
## 1871                                        08
## 1872                                        08
## 1873                                        08
## 1874                                        08
## 1875                                        08
## 1876                                        08
## 1877                                        08
## 1878                                        08
## 1879                                        09
## 1880                                        09
## 1881                                        09
## 1882                                        09
## 1883                                        09
## 1884                                        09
## 1885                                        09
## 1886                                        09
## 1887                                        09
## 1888                                        09
## 1889                                        09
## 1890                                        09
## 1891                                        09
## 1892                                         1
## 1893                                         1
## 1894                                         1
## 1895                                         1
## 1896                                         1
## 1897                                         1
## 1898                                         1
## 1899                                         1
## 1900                                         1
## 1901                                         1
## 1902                                         1
## 1903                                         1
## 1904                                         1
## 1905                                         1
## 1906                                         1
## 1907                                         1
## 1908                                         1
## 1909                                         1
## 1910                                         1
## 1911                                         1
## 1912                                         1
## 1913                                         1
## 1914                                         1
## 1915                                         1
## 1916                                         1
## 1917                                         1
## 1918                                         1
## 1919                                         1
## 1920                                         1
## 1921                                         1
## 1922                                         1
## 1923                                         1
## 1924                                         1
## 1925                                         1
## 1926                                         1
## 1927                                         1
## 1928                                         1
## 1929                                     1,000
## 1930                                     1,000
## 1931                                     1,500
## 1932                                     1,600
## 1933                                       1.0
## 1934                                       1.1
## 1935                                      1.1b
## 1936                                      1.25
## 1937                                       1.3
## 1938                                       1.3
## 1939                                     1.33b
## 1940                                      1.3b
## 1941                                      1.3b
## 1942                                       1.5
## 1943                                      1.53
## 1944                                      1.5b
## 1945                                      1.5b
## 1946                                       1.6
## 1947                                       1.8
## 1948                                       1.8
## 1949                                        10
## 1950                                        10
## 1951                                        10
## 1952                                        10
## 1953                                        10
## 1954                                        10
## 1955                                        10
## 1956                                        10
## 1957                                        10
## 1958                                        10
## 1959                                        10
## 1960                                        10
## 1961                                        10
## 1962                                        10
## 1963                                        10
## 1964                                        10
## 1965                                        10
## 1966                                        10
## 1967                                        10
## 1968                                        10
## 1969                                        10
## 1970                                        10
## 1971                                        10
## 1972                                        10
## 1973                                        10
## 1974                                        10
## 1975                                        10
## 1976                                        10
## 1977                                        10
## 1978                                        10
## 1979                                        10
## 1980                                        10
## 1981                                        10
## 1982                                        10
## 1983                                        10
## 1984                                        10
## 1985                                        10
## 1986                                        10
## 1987                                        10
## 1988                                        10
## 1989                                        10
## 1990                                        10
## 1991                                        10
## 1992                                        10
## 1993                                        10
## 1994                                        10
## 1995                                      10.5
## 1996                                      10.5
## 1997                                      10.5
## 1998                                     10.50
## 1999                                       100
## 2000                                       100
## 2001                                       100
## 2002                                       100
## 2003                                       100
## 2004                                       100
## 2005                                       100
## 2006                                       100
## 2007                                       100
## 2008                                       100
## 2009                                       100
## 2010                                       100
## 2011                                       100
## 2012                                       100
## 2013                                       100
## 2014                                       100
## 2015                                       100
## 2016                                       100
## 2017                                       100
## 2018                                       100
## 2019                                       100
## 2020                                       100
## 2021                                       100
## 2022                                      1000
## 2023                                      1000
## 2024                                     10000
## 2025                                      1005
## 2026                                      1008
## 2027                                      1009
## 2028                                      100k
## 2029                                      100m
## 2030                                      100m
## 2031                                      100m
## 2032                                       101
## 2033                                      1010
## 2034                                      1012
## 2035                                      1013
## 2036                                      1014
## 2037                                      1015
## 2038                                      1016
## 2039                                      1017
## 2040                                       102
## 2041                                      1022
## 2042                                      1024
## 2043                                      1026
## 2044                                      1029
## 2045                                       103
## 2046                                       103
## 2047                                       103
## 2048                                      1030
## 2049                                      1036
## 2050                                      1037
## 2051                                      1039
## 2052                                       104
## 2053                                      1043
## 2054                                      1047
## 2055                                      1049
## 2056                                       105
## 2057                                      1051
## 2058                                      1052
## 2059                                      1059
## 2060                                       106
## 2061                                       106
## 2062                                      1060
## 2063                                      1065
## 2064                                      1067
## 2065                                       107
## 2066                                       107
## 2067                                      1072
## 2068                                      1073
## 2069                                      1076
## 2070                                       108
## 2071                                       108
## 2072                                      1080
## 2073                                      1082
## 2074                                      1084
## 2075                                      1086
## 2076                                      1087
## 2077                                      1088
## 2078                                      1089
## 2079                                       109
## 2080                                       109
## 2081                                      1092
## 2082                                      1094
## 2083                                      1097
## 2084                                      1099
## 2085                                       10k
## 2086                                      10km
## 2087                                      10ks
## 2088                                        11
## 2089                                        11
## 2090                                        11
## 2091                                        11
## 2092                                        11
## 2093                                        11
## 2094                                        11
## 2095                                        11
## 2096                                        11
## 2097                                        11
## 2098                                        11
## 2099                                        11
## 2100                                        11
## 2101                                        11
## 2102                                        11
## 2103                                        11
## 2104                                      11.7
## 2105                                      11.9
## 2106                                       110
## 2107                                       110
## 2108                                      1104
## 2109                                      1106
## 2110                                      1107
## 2111                                      1108
## 2112                                       111
## 2113                                       111
## 2114                                      1110
## 2115                                       112
## 2116                                       112
## 2117                                      1123
## 2118                                      1124
## 2119                                      1126
## 2120                                       113
## 2121                                       113
## 2122                                       113
## 2123                                      1138
## 2124                                       114
## 2125                                      1140
## 2126                                      1141
## 2127                                      1144
## 2128                                      1148
## 2129                                       115
## 2130                                       115
## 2131                                       115
## 2132                                       115
## 2133                                       115
## 2134                                      1152
## 2135                                      1154
## 2136                                      1158
## 2137                                      1159
## 2138                                       116
## 2139                                       116
## 2140                                      1163
## 2141                                      1167
## 2142                                      1168
## 2143                                      1169
## 2144                                       117
## 2145                                      1170
## 2146                                      1174
## 2147                                      1177
## 2148                                       118
## 2149                                      1183
## 2150                                      1184
## 2151                                      1188
## 2152                                      1189
## 2153                                       119
## 2154                                       119
## 2155                                      1190
## 2156                                      1191
## 2157                                      1193
## 2158                                      1197
## 2159                                      1199
## 2160                                       11s
## 2161                                   11yanks
## 2162                                        12
## 2163                                        12
## 2164                                        12
## 2165                                        12
## 2166                                        12
## 2167                                        12
## 2168                                        12
## 2169                                        12
## 2170                                        12
## 2171                                        12
## 2172                                        12
## 2173                                        12
## 2174                                        12
## 2175                                        12
## 2176                                        12
## 2177                                        12
## 2178                                        12
## 2179                                        12
## 2180                                        12
## 2181                                        12
## 2182                                        12
## 2183                                        12
## 2184                                        12
## 2185                                        12
## 2186                                        12
## 2187                                        12
## 2188                                        12
## 2189                                        12
## 2190                                        12
## 2191                                        12
## 2192                                        12
## 2193                                        12
## 2194                                        12
## 2195                                        12
## 2196                                        12
## 2197                                     12.4b
## 2198                                     12.5s
## 2199                                       120
## 2200                                       120
## 2201                                       120
## 2202                                      1200
## 2203                                      1200
## 2204                                      1200
## 2205                                      1204
## 2206                                      1206
## 2207                                      1207
## 2208                                       121
## 2209                                      1212
## 2210                                      1213
## 2211                                      1214
## 2212                                       122
## 2213                                      1220
## 2214                                      1221
## 2215                                      1223
## 2216                                      1224
## 2217                                      1225
## 2218                                      1227
## 2219                                       123
## 2220                                       123
## 2221                                       123
## 2222                                      1230
## 2223                                      1234
## 2224                                      1238
## 2225                                       124
## 2226                                      1243
## 2227                                      1246
## 2228                                      1248
## 2229                                      1249
## 2230                                       125
## 2231                                      1251
## 2232                                      1252
## 2233                                      1254
## 2234                                      1257
## 2235                                       126
## 2236                                       126
## 2237                                      1261
## 2238                                      1262
## 2239                                      1266
## 2240                                      1269
## 2241                                       127
## 2242                                       127
## 2243                                      1270
## 2244                                      1271
## 2245                                      1273
## 2246                                      1274
## 2247                                      1276
## 2248                                      1277
## 2249                                      1278
## 2250                                       128
## 2251                                       128
## 2252                                      1283
## 2253                                      1284
## 2254                                       129
## 2255                                       129
## 2256                                      1290
## 2257                                      1292
## 2258                                      1294
## 2259                                      1297
## 2260                                      1299
## 2261                                     12evo
## 2262                                       12s
## 2263                                       12s
## 2264                                       12s
## 2265                                        13
## 2266                                        13
## 2267                                        13
## 2268                                        13
## 2269                                        13
## 2270                                        13
## 2271                                        13
## 2272                                        13
## 2273                                        13
## 2274                                        13
## 2275                                        13
## 2276                                      13.1
## 2277                                       130
## 2278                                       130
## 2279                                       130
## 2280                                      1301
## 2281                                      1302
## 2282                                      1303
## 2283                                      1305
## 2284                                      1308
## 2285                                      1309
## 2286                                       131
## 2287                                       131
## 2288                                      1312
## 2289                                      1317
## 2290                                       132
## 2291                                      1326
## 2292                                      1327
## 2293                                      1329
## 2294                                       133
## 2295                                      1332
## 2296                                      1336
## 2297                                      1337
## 2298                                       134
## 2299                                      1342
## 2300                                       135
## 2301                                       135
## 2302                                      1350
## 2303                                      1352
## 2304                                      1355
## 2305                                      1357
## 2306                                       136
## 2307                                      1361
## 2308                                      1368
## 2309                                       137
## 2310                                      1377
## 2311                                      1378
## 2312                                       138
## 2313                                      1382
## 2314                                      1384
## 2315                                       139
## 2316                                      1391
## 2317                                      1394
## 2318                                      1397
## 2319                                      1398
## 2320                                        14
## 2321                                        14
## 2322                                        14
## 2323                                        14
## 2324                                        14
## 2325                                        14
## 2326                                        14
## 2327                                        14
## 2328                                        14
## 2329                                        14
## 2330                                        14
## 2331                                        14
## 2332                                       140
## 2333                                       140
## 2334                                      1402
## 2335                                      1409
## 2336                                     140kg
## 2337                                       141
## 2338                                      1412
## 2339                                      1414
## 2340                                       142
## 2341                                       142
## 2342                                      1422
## 2343                                      1424
## 2344                                      1425
## 2345                                      1426
## 2346                                       143
## 2347                                      1430
## 2348                                      1431
## 2349                                      1432
## 2350                                      1433
## 2351                                      1436
## 2352                                      1437
## 2353                                      1438
## 2354                                      1439
## 2355                                       144
## 2356                                       144
## 2357                                      1440
## 2358                                      1441
## 2359                                      1443
## 2360                                      1444
## 2361                                      1447
## 2362                                       145
## 2363                                       145
## 2364                                       145
## 2365                                      1451
## 2366                                      1454
## 2367                                      1456
## 2368                                      1459
## 2369                                       146
## 2370                                       146
## 2371                                      1462
## 2372                                      1469
## 2373                                       147
## 2374                                      1470
## 2375                                      1472
## 2376                                      1474
## 2377                                      1475
## 2378                                      1478
## 2379                                       148
## 2380                                      1480
## 2381                                       149
## 2382                                       149
## 2383                                       149
## 2384                                      1492
## 2385                                      1493
## 2386                                      1494
## 2387                                        15
## 2388                                        15
## 2389                                        15
## 2390                                        15
## 2391                                        15
## 2392                                        15
## 2393                                        15
## 2394                                        15
## 2395                                        15
## 2396                                        15
## 2397                                        15
## 2398                                        15
## 2399                                        15
## 2400                                       150
## 2401                                       150
## 2402                                       150
## 2403                                      1500
## 2404                                      1501
## 2405                                      1503
## 2406                                      1505
## 2407                                      1507
## 2408                                      1508
## 2409                                      150m
## 2410                                       151
## 2411                                      1510
## 2412                                      1511
## 2413                                      1512
## 2414                                      1513
## 2415                                      1514
## 2416                                      1516
## 2417                                       152
## 2418                                      1526
## 2419                                       153
## 2420                                       153
## 2421                                      1530
## 2422                                      1533
## 2423                                      1538
## 2424                                      1539
## 2425                                       154
## 2426                                       154
## 2427                                       154
## 2428                                      1543
## 2429                                      1544
## 2430                                      1545
## 2431                                      1546
## 2432                                      1547
## 2433                                      1549
## 2434                                       155
## 2435                                       155
## 2436                                       155
## 2437                                      1550
## 2438                                      1551
## 2439                                      1555
## 2440                                      1556
## 2441                                      1557
## 2442                                      1558
## 2443                                      1559
## 2444                                       156
## 2445                                      1562
## 2446                                      1565
## 2447                                      1568
## 2448                                      1569
## 2449                                       157
## 2450                                      1571
## 2451                                      1575
## 2452                                      1576
## 2453                                      1577
## 2454                                      1579
## 2455                                       158
## 2456                                      1580
## 2457                                      1582
## 2458                                      1583
## 2459                                      1586
## 2460                                      1589
## 2461                                       159
## 2462                                      1592
## 2463                                      1598
## 2464                                        16
## 2465                                        16
## 2466                                        16
## 2467                                        16
## 2468                                        16
## 2469                                        16
## 2470                                       160
## 2471                                       160
## 2472                                       161
## 2473                                      1610
## 2474                                      1617
## 2475                                       162
## 2476                                       162
## 2477                                       162
## 2478                                      1620
## 2479                                      1621
## 2480                                      1624
## 2481                                      1625
## 2482                                      1626
## 2483                                       163
## 2484                                      1630
## 2485                                      1632
## 2486                                      1635
## 2487                                       164
## 2488                                       164
## 2489                                      1640
## 2490                                      1642
## 2491                                      1645
## 2492                                      1646
## 2493                                       165
## 2494                                       165
## 2495                                      1650
## 2496                                      1651
## 2497                                      1654
## 2498                                      1655
## 2499                                      1657
## 2500                                      1659
## 2501                                       166
## 2502                                      1661
## 2503                                      1664
## 2504                                      1665
## 2505                                      1668
## 2506                                       167
## 2507                                      1674
## 2508                                      1675
## 2509                                      1676
## 2510                                      1677
## 2511                                      1678
## 2512                                       168
## 2513                                       168
## 2514                                      1680
## 2515                                      1682
## 2516                                      1683
## 2517                                      1684
## 2518                                      1685
## 2519                                      1686
## 2520                                      1688
## 2521                                      1689
## 2522                                       169
## 2523                                       169
## 2524                                       169
## 2525                                      1690
## 2526                                      1692
## 2527                                      1693
## 2528                                      1694
## 2529                                      1697
## 2530                                      1698
## 2531                      16adimltrbstmblkwrnn
## 2532                      16adimltrbstmblkwrnn
## 2533                                        17
## 2534                                        17
## 2535                                        17
## 2536                                       170
## 2537                                       170
## 2538                                       170
## 2539                                      1700
## 2540                                      1707
## 2541                                       171
## 2542                                       171
## 2543                                      1710
## 2544                                      1711
## 2545                                       172
## 2546                                       172
## 2547                                      1720
## 2548                                      1722
## 2549                                      1725
## 2550                                       173
## 2551                                       173
## 2552                                      1731
## 2553                                      1732
## 2554                                      1736
## 2555                                       174
## 2556                                       174
## 2557                                      1741
## 2558                                      1748
## 2559                                      1749
## 2560                                       175
## 2561                                       175
## 2562                                       175
## 2563                                      1750
## 2564                                      1756
## 2565                                      1758
## 2566                                       176
## 2567                                      1764
## 2568                                      1766
## 2569                                      1767
## 2570                                       177
## 2571                                       177
## 2572                                      1770
## 2573                                      1771
## 2574                                      1774
## 2575                                      1776
## 2576                                      1778
## 2577                                       178
## 2578                                       178
## 2579                                      1782
## 2580                                      1783
## 2581                                      1785
## 2582                                      1787
## 2583                                       179
## 2584                                       179
## 2585                                       179
## 2586                                      1795
## 2587                                        18
## 2588                                        18
## 2589                                        18
## 2590                                        18
## 2591                                        18
## 2592                                        18
## 2593                                        18
## 2594                                        18
## 2595                                        18
## 2596                                        18
## 2597                                       180
## 2598                                       180
## 2599                                       180
## 2600                                       180
## 2601                                      1803
## 2602                                      1806
## 2603                                      1807
## 2604                                      1809
## 2605                                       181
## 2606                                      1812
## 2607                                      1815
## 2608                                       182
## 2609                                       182
## 2610                                      1822
## 2611                                      1826
## 2612                                      1828
## 2613                                      1829
## 2614                                       183
## 2615                                       183
## 2616                                      1831
## 2617                                      1839
## 2618                                       184
## 2619                                       184
## 2620                                       184
## 2621                                      1842
## 2622                                      1843
## 2623                                      1845
## 2624                                       185
## 2625                                       185
## 2626                                      1850
## 2627                                    1850km
## 2628                                      1853
## 2629                                      1854
## 2630                                      1856
## 2631                                      1857
## 2632                                      1858
## 2633                                       186
## 2634                                      1861
## 2635                                      1862
## 2636                                      1863
## 2637                                      1864
## 2638                                      1865
## 2639                                       187
## 2640                                      1872
## 2641                                      1875
## 2642                                      1876
## 2643                                      1877
## 2644                                      1878
## 2645                                      1879
## 2646                                       188
## 2647                                      1880
## 2648                                      1881
## 2649                                      1884
## 2650                                       189
## 2651                                      1890
## 2652                                     1890s
## 2653                                      1891
## 2654                                      1894
## 2655                                      1898
## 2656                                        19
## 2657                                        19
## 2658                                        19
## 2659                                        19
## 2660                                        19
## 2661                                        19
## 2662                                        19
## 2663                                        19
## 2664                                       190
## 2665                                       190
## 2666                                       190
## 2667                                       190
## 2668                                       190
## 2669                                       190
## 2670                                      1900
## 2671                                      1903
## 2672                                      1904
## 2673                                      1905
## 2674                                      1906
## 2675                                      1907
## 2676                                      1909
## 2677                                       191
## 2678                                      1910
## 2679                                      1913
## 2680                                      1915
## 2681                                      1917
## 2682                                      1918
## 2683                                      1919
## 2684                                       192
## 2685                                       192
## 2686                                      1921
## 2687                                      1923
## 2688                                      1924
## 2689                                      1926
## 2690                                      1927
## 2691                                      1928
## 2692                                      1929
## 2693                                       193
## 2694                                       193
## 2695                                       193
## 2696                                      1933
## 2697                                      1938
## 2698                                      1939
## 2699                                       194
## 2700                                       194
## 2701                                      1940
## 2702                                      1941
## 2703                                      1942
## 2704                                      1946
## 2705                                      1948
## 2706                                      1949
## 2707                                       195
## 2708                                       195
## 2709                                      1950
## 2710                                      1951
## 2711                                      1958
## 2712                                      1959
## 2713                                       196
## 2714                                       196
## 2715                                      1960
## 2716                                      1962
## 2717                                      1965
## 2718                                      1968
## 2719                                       197
## 2720                                      1971
## 2721                                      1972
## 2722                                      1975
## 2723                                      1976
## 2724                                      1979
## 2725                                       198
## 2726                                      1982
## 2727                                      1985
## 2728                                      1985
## 2729                                      1989
## 2730                                       199
## 2731                                       199
## 2732                                      1992
## 2733                                      1993
## 2734                                      1994
## 2735                                      1996
## 2736                                      1996
## 2737                                        1k
## 2738                                        1s
## 2739                                        1s
## 2740                                        1s
## 2741                                        1s
## 2742                                        1s
## 2743                                       1st
## 2744                                       1st
## 2745                                       1st
## 2746                                       1st
## 2747                                       1st
## 2748                                         2
## 2749                                         2
## 2750                                         2
## 2751                                         2
## 2752                                         2
## 2753                                         2
## 2754                                         2
## 2755                                         2
## 2756                                         2
## 2757                                         2
## 2758                                         2
## 2759                                         2
## 2760                                         2
## 2761                                         2
## 2762                                         2
## 2763                                         2
## 2764                                         2
## 2765                                         2
## 2766                                         2
## 2767                                         2
## 2768                                         2
## 2769                                         2
## 2770                                         2
## 2771                                         2
## 2772                                         2
## 2773                                         2
## 2774                                         2
## 2775                                         2
## 2776                                         2
## 2777                                         2
## 2778                                         2
## 2779                                         2
## 2780                                         2
## 2781                                         2
## 2782                                         2
## 2783                                         2
## 2784                                         2
## 2785                                         2
## 2786                                         2
## 2787                                         2
## 2788                                         2
## 2789                                         2
## 2790                                         2
## 2791                                         2
## 2792                                         2
## 2793                                         2
## 2794                                         2
## 2795                                         2
## 2796                                         2
## 2797                                         2
## 2798                                         2
## 2799                                         2
## 2800                                         2
## 2801                                         2
## 2802                                         2
## 2803                                       2.5
## 2804                                      2.76
## 2805                                        20
## 2806                                        20
## 2807                                        20
## 2808                                        20
## 2809                                        20
## 2810                                        20
## 2811                                        20
## 2812                                        20
## 2813                                        20
## 2814                                        20
## 2815                                        20
## 2816                                        20
## 2817                                        20
## 2818                                        20
## 2819                                    20,000
## 2820                                     20.09
## 2821                                       200
## 2822                                       200
## 2823                                       200
## 2824                                       200
## 2825                                       200
## 2826                                       200
## 2827                                     2000s
## 2828                                     2000s
## 2829                                      2001
## 2830                                      2001
## 2831                                      2001
## 2832                                      2003
## 2833                                      2004
## 2834                                      2005
## 2835                                      2008
## 2836                                      200k
## 2837                                      200m
## 2838                                      200m
## 2839                                       201
## 2840                                      2010
## 2841                                      2010
## 2842                                      2010
## 2843                                      2011
## 2844                                      2011
## 2845                                      2012
## 2846                                      2012
## 2847                                    201264
## 2848                                      2013
## 2849                                      2013
## 2850                                      2013
## 2851                                      2013
## 2852                                      2013
## 2853                                      2013
## 2854                                      2014
## 2855                                      2014
## 2856                                      2015
## 2857                                      2015
## 2858                                      2015
## 2859                                      2016
## 2860                                      2016
## 2861                                      2017
## 2862                                      2017
## 2863                                      2018
## 2864                                      2018
## 2865                                      2018
## 2866                                      2019
## 2867                                      2019
## 2868                                      2019
## 2869                                      2019
## 2870                                       202
## 2871                                       202
## 2872                                      2020
## 2873                                      2020
## 2874                                      2020
## 2875                                      2020
## 2876                                      2020
## 2877                                      2020
## 2878                                      2020
## 2879                                      2020
## 2880                                      2020
## 2881                                      2021
## 2882                                      2022
## 2883                                      2023
## 2884                                      2023
## 2885                                      2023
## 2886                                      2023
## 2887                                      2024
## 2888                                      2024
## 2889                                      2024
## 2890                                      2024
## 2891                                      2024
## 2892                                      2024
## 2893                                      2024
## 2894                                      2025
## 2895                                      2025
## 2896                                      2025
## 2897                                      2025
## 2898                                      2025
## 2899                                      2025
## 2900                                      2025
## 2901                                      2025
## 2902                                      2026
## 2903                                      2026
## 2904                                      2026
## 2905                                      2026
## 2906                                      2026
## 2907                                      2026
## 2908                                      2026
## 2909                                      2026
## 2910                                      2026
## 2911                                      2026
## 2912                                      2026
## 2913                                      2028
## 2914                                      2029
## 2915                                      2029
## 2916                                       203
## 2917                                      2030
## 2918                                      2032
## 2919                                      2034
## 2920                                      2036
## 2921                                      2039
## 2922                                       204
## 2923                                      2045
## 2924                                      2047
## 2925                                      2048
## 2926                                      2049
## 2927                                       205
## 2928                                       205
## 2929                                       205
## 2930                                      2052
## 2931                                      2053
## 2932                                      2057
## 2933                                      2059
## 2934                                       206
## 2935                                      2061
## 2936                                      2064
## 2937                                      2066
## 2938                                      2067
## 2939                                      2068
## 2940                                       207
## 2941                                      2073
## 2942                                      2075
## 2943                                      2076
## 2944                                      2079
## 2945                                       208
## 2946                                      2085
## 2947                                      2089
## 2948                                       209
## 2949                                      2090
## 2950                                        21
## 2951                                        21
## 2952                                     21.4b
## 2953                                       210
## 2954                                       210
## 2955                                       210
## 2956                                      2103
## 2957                                      2106
## 2958                                       211
## 2959                                       211
## 2960                                       211
## 2961                                      2115
## 2962                                      2116
## 2963                                      2118
## 2964                                       212
## 2965                                      2120
## 2966                                      2121
## 2967                                      2122
## 2968                                      2123
## 2969                                      2125
## 2970                                      2127
## 2971                                      2128
## 2972                                      2129
## 2973                                       213
## 2974                                       213
## 2975                                      2130
## 2976                                      2135
## 2977                                      2138
## 2978                                      2139
## 2979                                       214
## 2980                                       214
## 2981                                      2143
## 2982                                      2144
## 2983                                      2146
## 2984                                      2149
## 2985                                       215
## 2986                                       215
## 2987                                      2151
## 2988                                      2153
## 2989                                      2157
## 2990                                      2158
## 2991                                       216
## 2992                                      2166
## 2993                                      2168
## 2994                                       217
## 2995                                      2170
## 2996                                      2173
## 2997                                      2175
## 2998                                      2176
## 2999                                      2177
## 3000                                      2178
## 3001                                       218
## 3002                                       218
## 3003                                      2181
## 3004                                      2185
## 3005                                      2186
## 3006                                       219
## 3007                                       219
## 3008                                       219
## 3009                                      2199
## 3010                                      21st
## 3011                                        22
## 3012                                        22
## 3013                                        22
## 3014                                        22
## 3015                                        22
## 3016                                    22,000
## 3017                                       220
## 3018                                       220
## 3019                                       220
## 3020                                       220
## 3021                                      2200
## 3022                                      2202
## 3023                                      2209
## 3024                                       221
## 3025                                       221
## 3026                                      2213
## 3027                                      2214
## 3028                                      2218
## 3029                                       222
## 3030                                      2220
## 3031                                      2226
## 3032                                      2227
## 3033                                       223
## 3034                                       223
## 3035                                     223.1
## 3036                                      2230
## 3037                                      2231
## 3038                                      2232
## 3039                                      2239
## 3040                                       224
## 3041                                      2240
## 3042                                      2241
## 3043                                      2244
## 3044                                      2248
## 3045                                       225
## 3046                                       225
## 3047                                      2257
## 3048                                       226
## 3049                                      2261
## 3050                                      2264
## 3051                                      2266
## 3052                                       227
## 3053                                       227
## 3054                                      2270
## 3055                                      2272
## 3056                                      2274
## 3057                                       228
## 3058                                      2283
## 3059                                      2287
## 3060                                       229
## 3061                                      2292
## 3062                                      2293
## 3063                                      2298
## 3064                                        23
## 3065                                        23
## 3066                                        23
## 3067                                       230
## 3068                                       230
## 3069                                       230
## 3070                                      2301
## 3071                                      2303
## 3072                                      2304
## 3073                                      2306
## 3074                                      2308
## 3075                                       231
## 3076                                       231
## 3077                                      2310
## 3078                                      2311
## 3079                                      2312
## 3080                                      2313
## 3081                                      2315
## 3082                                      2316
## 3083                                      2318
## 3084                                       232
## 3085                                       232
## 3086                                      2320
## 3087                                      2321
## 3088                                      2324
## 3089                                      2325
## 3090                                       233
## 3091                                       233
## 3092                                      2331
## 3093                                      2335
## 3094                                      2337
## 3095                                      2339
## 3096                                       234
## 3097                                       234
## 3098                                       234
## 3099                                      2340
## 3100                                      2342
## 3101                                      2343
## 3102                                      2345
## 3103                                      2346
## 3104                                      2348
## 3105                                       235
## 3106                                      2351
## 3107                                      2352
## 3108                                      2354
## 3109                                      2356
## 3110                                      2357
## 3111                                      2358
## 3112                                      2359
## 3113                                       236
## 3114                                       236
## 3115                                      2360
## 3116                                      2361
## 3117                                      2364
## 3118                                      2365
## 3119                                      2366
## 3120                                      2367
## 3121                                      2368
## 3122                                       237
## 3123                                       237
## 3124                                      2370
## 3125                                      2372
## 3126                                      2375
## 3127                                      2377
## 3128                                       238
## 3129                                      2381
## 3130                                      2382
## 3131                                      2384
## 3132                                      2389
## 3133                                       239
## 3134                                       239
## 3135                                      2391
## 3136                                      2393
## 3137                                      2394
## 3138                                      2399
## 3139                                        24
## 3140                                        24
## 3141                                        24
## 3142                                        24
## 3143                                        24
## 3144                                        24
## 3145                                        24
## 3146                                       240
## 3147                                       240
## 3148                                      2404
## 3149                                      2407
## 3150                                      2409
## 3151                                       241
## 3152                                       241
## 3153                                      2412
## 3154                                      2413
## 3155                                      2414
## 3156                                       242
## 3157                                       242
## 3158                                      2421
## 3159                                       243
## 3160                                       243
## 3161                                      2431
## 3162                                      2434
## 3163                                       244
## 3164                                       245
## 3165                                       246
## 3166                                       247
## 3167                                       248
## 3168                                       248
## 3169                                       249
## 3170                                       249
## 3171                                        25
## 3172                                        25
## 3173                                        25
## 3174                                        25
## 3175                                       250
## 3176                                       250
## 3177                                       250
## 3178                                       251
## 3179                                       252
## 3180                                       253
## 3181                                       253
## 3182                                     25310
## 3183                                       254
## 3184                                       255
## 3185                                       256
## 3186                                       257
## 3187                                       257
## 3188                                       258
## 3189                                       259
## 3190                                       259
## 3191                                       259
## 3192                                        26
## 3193                                        26
## 3194                                        26
## 3195                                        26
## 3196                                        26
## 3197                                        26
## 3198                                        26
## 3199                                        26
## 3200                                      26.3
## 3201                                      26.3
## 3202                                       260
## 3203                                       261
## 3204                                       262
## 3205                                       262
## 3206                                       263
## 3207                                       263
## 3208                                       264
## 3209                                       265
## 3210                                       265
## 3211                                       266
## 3212                                       267
## 3213                                       268
## 3214                                       268
## 3215                                       269
## 3216                                      26th
## 3217                                        27
## 3218                                        27
## 3219                                        27
## 3220                                        27
## 3221                                       270
## 3222                                       270
## 3223                                       270
## 3224                                       271
## 3225                                       271
## 3226                                       272
## 3227                                       272
## 3228                                       273
## 3229                                       274
## 3230                                       275
## 3231                                       276
## 3232                                       277
## 3233                                       278
## 3234                                       279
## 3235                                       279
## 3236                                        28
## 3237                                        28
## 3238                                        28
## 3239                                       280
## 3240                                       281
## 3241                                       282
## 3242                                       282
## 3243                                       283
## 3244                                       284
## 3245                                       284
## 3246                                       285
## 3247                                       285
## 3248                                       286
## 3249                                       286
## 3250                                       287
## 3251                                       287
## 3252                                       288
## 3253                                       288
## 3254                                       289
## 3255                                      28th
## 3256                                        29
## 3257                                        29
## 3258                                        29
## 3259                                       290
## 3260                                       291
## 3261                                       291
## 3262                                       292
## 3263                                       292
## 3264                                       293
## 3265                                       294
## 3266                                       294
## 3267                                       295
## 3268                                       295
## 3269                                       296
## 3270                                       296
## 3271                                       297
## 3272                                       298
## 3273                                      2989
## 3274                                       299
## 3275                                    2a5340
## 3276                                        2d
## 3277                                    2fgrey
## 3278                                   2fwhite
## 3279                                   2fwhite
## 3280                                       2nd
## 3281                                       2nd
## 3282                                       2nd
## 3283                                       2nd
## 3284                                       2nd
## 3285                                       2nd
## 3286                                       2nd
## 3287                                       2nd
## 3288                                         3
## 3289                                         3
## 3290                                         3
## 3291                                         3
## 3292                                         3
## 3293                                         3
## 3294                                         3
## 3295                                         3
## 3296                                         3
## 3297                                         3
## 3298                                         3
## 3299                                         3
## 3300                                         3
## 3301                                         3
## 3302                                         3
## 3303                                         3
## 3304                                         3
## 3305                                         3
## 3306                                         3
## 3307                                         3
## 3308                                         3
## 3309                                         3
## 3310                                         3
## 3311                                         3
## 3312                                         3
## 3313                                         3
## 3314                                         3
## 3315                                         3
## 3316                                         3
## 3317                                         3
## 3318                                         3
## 3319                                         3
## 3320                                         3
## 3321                                         3
## 3322                                         3
## 3323                                         3
## 3324                                         3
## 3325                                         3
## 3326                                         3
## 3327                                         3
## 3328                                         3
## 3329                                         3
## 3330                                         3
## 3331                                         3
## 3332                                         3
## 3333                                         3
## 3334                                         3
## 3335                                         3
## 3336                                         3
## 3337                                         3
## 3338                                         3
## 3339                                         3
## 3340                                         3
## 3341                                         3
## 3342                                     3,4,5
## 3343                                       3,6
## 3344                                       3.0
## 3345                                       3.5
## 3346                                      3.8b
## 3347                                      3.99
## 3348                                        30
## 3349                                        30
## 3350                                        30
## 3351                                        30
## 3352                                        30
## 3353                                        30
## 3354                                        30
## 3355                                        30
## 3356                                       300
## 3357                                       300
## 3358                                       300
## 3359                                       300
## 3360                                    300.00
## 3361                                      3000
## 3362                                       301
## 3363                                       301
## 3364                                       302
## 3365                                       303
## 3366                                       304
## 3367                                       305
## 3368                                       305
## 3369                                       306
## 3370                                       306
## 3371                                       307
## 3372                                       307
## 3373                                       308
## 3374                                       308
## 3375                                       309
## 3376                                       30k
## 3377                                       30k
## 3378                                        31
## 3379                                        31
## 3380                                        31
## 3381                                        31
## 3382                                        31
## 3383                                        31
## 3384                                       310
## 3385                                       311
## 3386                                       312
## 3387                                       313
## 3388                                       314
## 3389                                       315
## 3390                                       316
## 3391                                       316
## 3392                                       317
## 3393                                       317
## 3394                                       318
## 3395                                       319
## 3396                                        32
## 3397                                        32
## 3398                                       320
## 3399                                       320
## 3400                                       320
## 3401                                       321
## 3402                                       322
## 3403                                       322
## 3404                                       323
## 3405                                       324
## 3406                                       325
## 3407                                       325
## 3408                                       326
## 3409                                       326
## 3410                                       327
## 3411                                       328
## 3412                                       328
## 3413                                       329
## 3414                                        33
## 3415                                        33
## 3416                                       330
## 3417                                       331
## 3418                                       331
## 3419                                       332
## 3420                                       332
## 3421                                       333
## 3422                                       334
## 3423                                       335
## 3424                                       335
## 3425                                       336
## 3426                                       336
## 3427                                       337
## 3428                                       337
## 3429                                       338
## 3430                                       339
## 3431                                       339
## 3432                                        34
## 3433                                        34
## 3434                                        34
## 3435                                       340
## 3436                                       341
## 3437                                       341
## 3438                                     341.9
## 3439                                       342
## 3440                                       343
## 3441                                       344
## 3442                                       344
## 3443                                       345
## 3444                                       346
## 3445                                       346
## 3446                                       347
## 3447                                       348
## 3448                                       349
## 3449                                        35
## 3450                                        35
## 3451                                        35
## 3452                                        35
## 3453                                       350
## 3454                                       350
## 3455                                       350
## 3456                                       350
## 3457                                       351
## 3458                                       351
## 3459                                       351
## 3460                                       352
## 3461                                       352
## 3462                                       352
## 3463                                       353
## 3464                                       353
## 3465                                       353
## 3466                                       354
## 3467                                       354
## 3468                                       355
## 3469                                       356
## 3470                                       357
## 3471                                       358
## 3472                                       359
## 3473                                       359
## 3474                                       35l
## 3475                                        36
## 3476                                        36
## 3477                                        36
## 3478                                        36
## 3479                                       360
## 3480                                       360
## 3481                                       360
## 3482                                       361
## 3483                                       361
## 3484                                       362
## 3485                                       363
## 3486                                       364
## 3487                                       364
## 3488                                       365
## 3489                                       365
## 3490                                       365
## 3491                                       366
## 3492                                       366
## 3493                                       367
## 3494                                       368
## 3495                                       368
## 3496                                       369
## 3497                                        37
## 3498                                       370
## 3499                                       370
## 3500                                       371
## 3501                                       371
## 3502                                       372
## 3503                                       373
## 3504                                       373
## 3505                                       374
## 3506                                       375
## 3507                                       375
## 3508                                    375lbs
## 3509                                       376
## 3510                                       376
## 3511                                       377
## 3512                                       378
## 3513                                       379
## 3514                                       379
## 3515                                       379
## 3516                                        38
## 3517                                        38
## 3518                                        38
## 3519                                       380
## 3520                                       380
## 3521                                       381
## 3522                                       381
## 3523                                       382
## 3524                                       383
## 3525                                       383
## 3526                                       383
## 3527                                       384
## 3528                                       385
## 3529                                       386
## 3530                                       387
## 3531                                       387
## 3532                                       388
## 3533                                       388
## 3534                                       389
## 3535                                       389
## 3536                                        39
## 3537                                        39
## 3538                                        39
## 3539                                        39
## 3540                                       390
## 3541                                       390
## 3542                                       391
## 3543                                       391
## 3544                                       392
## 3545                                       393
## 3546                                       394
## 3547                                       394
## 3548                                       395
## 3549                                       396
## 3550                                       396
## 3551                                       397
## 3552                                       398
## 3553                                       399
## 3554                                       399
## 3555                                        3k
## 3556                                       3rd
## 3557                                       3rd
## 3558                                        3s
## 3559                                        3s
## 3560                                   3stripe
## 3561                                        3x
## 3562                                         4
## 3563                                         4
## 3564                                         4
## 3565                                         4
## 3566                                         4
## 3567                                         4
## 3568                                         4
## 3569                                         4
## 3570                                         4
## 3571                                         4
## 3572                                         4
## 3573                                         4
## 3574                                         4
## 3575                                         4
## 3576                                         4
## 3577                                         4
## 3578                                         4
## 3579                                         4
## 3580                                         4
## 3581                                         4
## 3582                                         4
## 3583                                         4
## 3584                                         4
## 3585                                         4
## 3586                                         4
## 3587                                         4
## 3588                                         4
## 3589                                         4
## 3590                                         4
## 3591                                         4
## 3592                                         4
## 3593                                         4
## 3594                                         4
## 3595                                         4
## 3596                                         4
## 3597                                         4
## 3598                                       4.1
## 3599                                      4.10
## 3600                                     4.100
## 3601                                     4.101
## 3602                                     4.102
## 3603                                     4.103
## 3604                                     4.104
## 3605                                     4.105
## 3606                                     4.106
## 3607                                     4.107
## 3608                                     4.108
## 3609                                     4.109
## 3610                                      4.11
## 3611                                     4.110
## 3612                                     4.111
## 3613                                     4.112
## 3614                                     4.113
## 3615                                     4.114
## 3616                                     4.115
## 3617                                     4.116
## 3618                                     4.117
## 3619                                     4.118
## 3620                                     4.119
## 3621                                      4.12
## 3622                                     4.120
## 3623                                     4.121
## 3624                                     4.122
## 3625                                     4.123
## 3626                                     4.124
## 3627                                     4.125
## 3628                                     4.126
## 3629                                     4.127
## 3630                                     4.128
## 3631                                     4.129
## 3632                                      4.13
## 3633                                     4.130
## 3634                                     4.131
## 3635                                     4.132
## 3636                                     4.133
## 3637                                     4.134
## 3638                                     4.135
## 3639                                     4.136
## 3640                                     4.137
## 3641                                     4.138
## 3642                                     4.139
## 3643                                      4.14
## 3644                                     4.140
## 3645                                     4.141
## 3646                                     4.142
## 3647                                     4.143
## 3648                                     4.144
## 3649                                     4.145
## 3650                                     4.146
## 3651                                     4.147
## 3652                                     4.148
## 3653                                     4.149
## 3654                                      4.15
## 3655                                     4.150
## 3656                                     4.151
## 3657                                     4.152
## 3658                                     4.153
## 3659                                     4.154
## 3660                                     4.155
## 3661                                     4.156
## 3662                                     4.157
## 3663                                     4.158
## 3664                                     4.159
## 3665                                      4.16
## 3666                                     4.160
## 3667                                     4.161
## 3668                                     4.162
## 3669                                     4.163
## 3670                                     4.164
## 3671                                     4.165
## 3672                                     4.166
## 3673                                     4.167
## 3674                                     4.168
## 3675                                     4.169
## 3676                                      4.17
## 3677                                     4.170
## 3678                                     4.171
## 3679                                     4.172
## 3680                                     4.173
## 3681                                     4.174
## 3682                                     4.175
## 3683                                     4.176
## 3684                                     4.177
## 3685                                     4.178
## 3686                                     4.179
## 3687                                      4.18
## 3688                                     4.180
## 3689                                     4.181
## 3690                                     4.182
## 3691                                     4.183
## 3692                                     4.184
## 3693                                     4.185
## 3694                                     4.186
## 3695                                     4.187
## 3696                                     4.188
## 3697                                     4.189
## 3698                                      4.19
## 3699                                     4.190
## 3700                                     4.191
## 3701                                     4.192
## 3702                                     4.193
## 3703                                     4.194
## 3704                                     4.195
## 3705                                     4.196
## 3706                                     4.197
## 3707                                     4.198
## 3708                                     4.199
## 3709                                       4.2
## 3710                                      4.20
## 3711                                     4.200
## 3712                                     4.201
## 3713                                     4.202
## 3714                                     4.203
## 3715                                     4.204
## 3716                                     4.205
## 3717                                     4.206
## 3718                                     4.207
## 3719                                     4.208
## 3720                                     4.209
## 3721                                      4.21
## 3722                                     4.210
## 3723                                     4.211
## 3724                                     4.212
## 3725                                     4.213
## 3726                                     4.214
## 3727                                     4.215
## 3728                                     4.216
## 3729                                     4.217
## 3730                                     4.218
## 3731                                     4.219
## 3732                                      4.22
## 3733                                     4.220
## 3734                                     4.221
## 3735                                     4.222
## 3736                                     4.223
## 3737                                     4.224
## 3738                                     4.225
## 3739                                     4.226
## 3740                                     4.227
## 3741                                     4.228
## 3742                                     4.229
## 3743                                      4.23
## 3744                                     4.230
## 3745                                     4.231
## 3746                                     4.232
## 3747                                     4.233
## 3748                                     4.234
## 3749                                     4.235
## 3750                                     4.236
## 3751                                     4.237
## 3752                                     4.238
## 3753                                     4.239
## 3754                                      4.24
## 3755                                     4.240
## 3756                                     4.241
## 3757                                     4.242
## 3758                                     4.243
## 3759                                     4.244
## 3760                                     4.245
## 3761                                     4.246
## 3762                                     4.247
## 3763                                     4.248
## 3764                                     4.249
## 3765                                      4.25
## 3766                                     4.250
## 3767                                     4.251
## 3768                                     4.252
## 3769                                     4.253
## 3770                                     4.254
## 3771                                     4.255
## 3772                                     4.256
## 3773                                     4.257
## 3774                                     4.258
## 3775                                     4.259
## 3776                                      4.26
## 3777                                     4.260
## 3778                                     4.261
## 3779                                     4.262
## 3780                                     4.263
## 3781                                     4.264
## 3782                                     4.265
## 3783                                     4.266
## 3784                                     4.267
## 3785                                     4.268
## 3786                                     4.269
## 3787                                      4.27
## 3788                                     4.270
## 3789                                     4.271
## 3790                                     4.272
## 3791                                     4.273
## 3792                                     4.274
## 3793                                     4.275
## 3794                                     4.276
## 3795                                     4.277
## 3796                                     4.278
## 3797                                     4.279
## 3798                                      4.28
## 3799                                     4.280
## 3800                                     4.281
## 3801                                     4.282
## 3802                                     4.283
## 3803                                     4.284
## 3804                                     4.285
## 3805                                     4.286
## 3806                                     4.287
## 3807                                     4.288
## 3808                                     4.289
## 3809                                      4.29
## 3810                                     4.290
## 3811                                     4.291
## 3812                                     4.292
## 3813                                     4.293
## 3814                                     4.294
## 3815                                     4.295
## 3816                                     4.296
## 3817                                     4.297
## 3818                                     4.298
## 3819                                     4.299
## 3820                                       4.3
## 3821                                      4.30
## 3822                                     4.300
## 3823                                     4.301
## 3824                                     4.302
## 3825                                     4.303
## 3826                                     4.304
## 3827                                     4.305
## 3828                                     4.306
## 3829                                     4.307
## 3830                                     4.308
## 3831                                     4.309
## 3832                                      4.31
## 3833                                     4.310
## 3834                                     4.311
## 3835                                     4.312
## 3836                                     4.313
## 3837                                     4.314
## 3838                                     4.315
## 3839                                     4.316
## 3840                                     4.317
## 3841                                     4.318
## 3842                                     4.319
## 3843                                      4.32
## 3844                                     4.320
## 3845                                     4.321
## 3846                                     4.322
## 3847                                     4.323
## 3848                                     4.324
## 3849                                     4.325
## 3850                                     4.326
## 3851                                     4.327
## 3852                                     4.328
## 3853                                     4.329
## 3854                                      4.33
## 3855                                     4.330
## 3856                                     4.331
## 3857                                     4.332
## 3858                                     4.333
## 3859                                     4.334
## 3860                                     4.335
## 3861                                     4.336
## 3862                                     4.337
## 3863                                     4.338
## 3864                                     4.339
## 3865                                      4.34
## 3866                                     4.340
## 3867                                     4.341
## 3868                                     4.342
## 3869                                     4.343
## 3870                                     4.344
## 3871                                     4.345
## 3872                                     4.346
## 3873                                     4.347
## 3874                                     4.348
## 3875                                     4.349
## 3876                                      4.35
## 3877                                     4.350
## 3878                                     4.351
## 3879                                     4.352
## 3880                                     4.353
## 3881                                     4.354
## 3882                                     4.355
## 3883                                     4.356
## 3884                                     4.357
## 3885                                     4.358
## 3886                                     4.359
## 3887                                      4.36
## 3888                                     4.360
## 3889                                     4.361
## 3890                                     4.362
## 3891                                     4.363
## 3892                                     4.364
## 3893                                     4.365
## 3894                                     4.366
## 3895                                     4.367
## 3896                                     4.368
## 3897                                     4.369
## 3898                                      4.37
## 3899                                     4.370
## 3900                                     4.371
## 3901                                     4.372
## 3902                                     4.373
## 3903                                     4.374
## 3904                                     4.375
## 3905                                     4.376
## 3906                                     4.377
## 3907                                     4.378
## 3908                                     4.379
## 3909                                      4.38
## 3910                                     4.380
## 3911                                     4.381
## 3912                                     4.382
## 3913                                     4.383
## 3914                                     4.384
## 3915                                     4.385
## 3916                                     4.386
## 3917                                     4.387
## 3918                                     4.388
## 3919                                     4.389
## 3920                                      4.39
## 3921                                     4.390
## 3922                                     4.391
## 3923                                     4.392
## 3924                                     4.393
## 3925                                     4.394
## 3926                                     4.395
## 3927                                     4.396
## 3928                                     4.397
## 3929                                     4.398
## 3930                                     4.399
## 3931                                       4.4
## 3932                                      4.40
## 3933                                     4.400
## 3934                                      4.41
## 3935                                      4.42
## 3936                                      4.43
## 3937                                      4.44
## 3938                                      4.45
## 3939                                      4.46
## 3940                                      4.47
## 3941                                     4.47b
## 3942                                      4.48
## 3943                                      4.49
## 3944                                       4.5
## 3945                                      4.50
## 3946                                      4.51
## 3947                                      4.52
## 3948                                      4.53
## 3949                                      4.54
## 3950                                      4.55
## 3951                                      4.56
## 3952                                      4.57
## 3953                                      4.58
## 3954                                      4.59
## 3955                                       4.6
## 3956                                      4.60
## 3957                                      4.61
## 3958                                      4.62
## 3959                                      4.63
## 3960                                      4.64
## 3961                                      4.65
## 3962                                      4.66
## 3963                                      4.67
## 3964                                      4.68
## 3965                                      4.69
## 3966                                       4.7
## 3967                                      4.70
## 3968                                      4.71
## 3969                                      4.72
## 3970                                      4.73
## 3971                                      4.74
## 3972                                      4.75
## 3973                                      4.76
## 3974                                      4.77
## 3975                                      4.78
## 3976                                      4.79
## 3977                                       4.8
## 3978                                      4.80
## 3979                                      4.81
## 3980                                      4.82
## 3981                                      4.83
## 3982                                      4.84
## 3983                                      4.85
## 3984                                      4.86
## 3985                                      4.87
## 3986                                      4.88
## 3987                                      4.89
## 3988                                       4.9
## 3989                                      4.90
## 3990                                      4.91
## 3991                                      4.92
## 3992                                      4.93
## 3993                                      4.94
## 3994                                      4.95
## 3995                                      4.96
## 3996                                      4.97
## 3997                                      4.98
## 3998                                      4.99
## 3999                                        40
## 4000                                        40
## 4001                                        40
## 4002                                        40
## 4003                                        40
## 4004                                        40
## 4005                                        40
## 4006                                        40
## 4007                                        40
## 4008                                        40
## 4009                                        40
## 4010                                        40
## 4011                                       400
## 4012                                       400
## 4013                                      4000
## 4014                                      400m
## 4015                                       401
## 4016                                       402
## 4017                                       402
## 4018                                     4023s
## 4019                                       403
## 4020                                       403
## 4021                                       404
## 4022                                       404
## 4023                                       405
## 4024                                       406
## 4025                                       406
## 4026                                       407
## 4027                                       407
## 4028                                       408
## 4029                                       409
## 4030                                     40kms
## 4031                                        41
## 4032                                        41
## 4033                                        41
## 4034                                        41
## 4035                                        41
## 4036                                        41
## 4037                                       410
## 4038                                       411
## 4039                                       411
## 4040                                       412
## 4041                                       413
## 4042                                       413
## 4043                                       414
## 4044                                       414
## 4045                                       415
## 4046                                       416
## 4047                                      4160
## 4048                                       417
## 4049                                       417
## 4050                                       418
## 4051                                       419
## 4052                                        42
## 4053                                        42
## 4054                                       420
## 4055                                       420
## 4056                                       421
## 4057                                       421
## 4058                                       422
## 4059                                       422
## 4060                                       423
## 4061                                       424
## 4062                                       424
## 4063                                       425
## 4064                                       425
## 4065                                       426
## 4066                                       426
## 4067                                       427
## 4068                                       428
## 4069                                       429
## 4070                                        43
## 4071                                       430
## 4072                                       431
## 4073                                      431m
## 4074                                       432
## 4075                                       433
## 4076                                       434
## 4077                                       435
## 4078                                       436
## 4079                                       436
## 4080                                       437
## 4081                                       438
## 4082                                       438
## 4083                                       439
## 4084                                        44
## 4085                                        44
## 4086                                      44.5
## 4087                                       440
## 4088                                       441
## 4089                                       442
## 4090                                       442
## 4091                                       443
## 4092                                       444
## 4093                                       445
## 4094                                       446
## 4095                                       447
## 4096                                       448
## 4097                                       449
## 4098                                       449
## 4099                                        45
## 4100                                        45
## 4101                                        45
## 4102                                        45
## 4103                                        45
## 4104                                        45
## 4105                                      45.5
## 4106                                       450
## 4107                                       451
## 4108                                       452
## 4109                                       452
## 4110                                       453
## 4111                                       454
## 4112                                       455
## 4113                                       455
## 4114                                       456
## 4115                                       457
## 4116                                       458
## 4117                                       459
## 4118                                  45yj9vh7
## 4119                                        46
## 4120                                        46
## 4121                                        46
## 4122                                        46
## 4123                                       460
## 4124                                       460
## 4125                                       461
## 4126                                       461
## 4127                                       462
## 4128                                       463
## 4129                                       464
## 4130                                       465
## 4131                                       465
## 4132                                       466
## 4133                                       467
## 4134                                       468
## 4135                                       468
## 4136                                       469
## 4137                                       469
## 4138                                        47
## 4139                                        47
## 4140                                       470
## 4141                                       471
## 4142                                       471
## 4143                                       472
## 4144                                       473
## 4145                                       474
## 4146                                       475
## 4147                                      475m
## 4148                                       476
## 4149                                       477
## 4150                                       478
## 4151                                       479
## 4152                                        48
## 4153                                        48
## 4154                                        48
## 4155                                       480
## 4156                                       480
## 4157                                       481
## 4158                                       481
## 4159                                       482
## 4160                                       483
## 4161                                       483
## 4162                                       484
## 4163                                       484
## 4164                                       485
## 4165                                       485
## 4166                                       486
## 4167                                       486
## 4168                                       487
## 4169                                       488
## 4170                                       488
## 4171                                       489
## 4172                                        49
## 4173                                        49
## 4174                                       490
## 4175                                       490
## 4176                                       490
## 4177                                       492
## 4178                                       494
## 4179                                       498
## 4180                                     49ers
## 4181                                        4d
## 4182                             4lrkcwli2mkoc
## 4183                                        4s
## 4184                                        4s
## 4185                                        4s
## 4186                                       4th
## 4187                                       4th
## 4188                                         5
## 4189                                         5
## 4190                                         5
## 4191                                         5
## 4192                                         5
## 4193                                         5
## 4194                                         5
## 4195                                         5
## 4196                                         5
## 4197                                         5
## 4198                                         5
## 4199                                         5
## 4200                                         5
## 4201                                         5
## 4202                                         5
## 4203                                         5
## 4204                                         5
## 4205                                         5
## 4206                                         5
## 4207                                         5
## 4208                                         5
## 4209                                         5
## 4210                                         5
## 4211                                         5
## 4212                                         5
## 4213                                         5
## 4214                                         5
## 4215                                         5
## 4216                                         5
## 4217                                         5
## 4218                                     5,000
## 4219                                       5.0
## 4220                                       5.0
## 4221                                      5.50
## 4222                                       5.7
## 4223                                        50
## 4224                                        50
## 4225                                        50
## 4226                                        50
## 4227                                        50
## 4228                                        50
## 4229                                        50
## 4230                                        50
## 4231                                        50
## 4232                                        50
## 4233                                        50
## 4234                                        50
## 4235                                       500
## 4236                                       500
## 4237                                       500
## 4238                                       500
## 4239                                       500
## 4240                                       502
## 4241                                       503
## 4242                                       506
## 4243                                       507
## 4244                                        51
## 4245                                        51
## 4246                                        51
## 4247                                        51
## 4248                                        51
## 4249                                      51.2
## 4250                                       510
## 4251                                       512
## 4252                                       514
## 4253                                       516
## 4254                                       517
## 4255                                       518
## 4256                                        52
## 4257                                       526
## 4258                                       527
## 4259                                        53
## 4260                                       533
## 4261                                       539
## 4262                                        54
## 4263                                       541
## 4264                                       542
## 4265                                       543
## 4266                                       546
## 4267                                       547
## 4268                                       549
## 4269                                        55
## 4270                                        55
## 4271                                      5500
## 4272                                       555
## 4273                                       557
## 4274                                       558
## 4275                                       559
## 4276                                        56
## 4277                                       560
## 4278                                       561
## 4279                                       564
## 4280                                       565
## 4281                                        57
## 4282                                     570km
## 4283                                       572
## 4284                                       575
## 4285                                      575m
## 4286                                       576
## 4287                                       579
## 4288                                        58
## 4289                                        58
## 4290                                        58
## 4291                                        58
## 4292                                        58
## 4293                                       581
## 4294                                       584
## 4295                                       585
## 4296                                       587
## 4297                                       58m
## 4298                                        59
## 4299                                        59
## 4300                                       590
## 4301                                       591
## 4302                                       594
## 4303                                       595
## 4304                                       597
## 4305                                       599
## 4306                                        5k
## 4307                                        5k
## 4308                                        5k
## 4309                                        5k
## 4310                                       5ks
## 4311                                       5mm
## 4312                                     5star
## 4313                                        5x
## 4314                                         6
## 4315                                         6
## 4316                                         6
## 4317                                         6
## 4318                                         6
## 4319                                         6
## 4320                                         6
## 4321                                         6
## 4322                                         6
## 4323                                         6
## 4324                                         6
## 4325                                         6
## 4326                                         6
## 4327                                         6
## 4328                                         6
## 4329                                         6
## 4330                                         6
## 4331                                         6
## 4332                                         6
## 4333                                         6
## 4334                                         6
## 4335                                         6
## 4336                                     6,000
## 4337                                      6.12
## 4338                                        60
## 4339                                        60
## 4340                                        60
## 4341                                        60
## 4342                                        60
## 4343                                        60
## 4344                                       600
## 4345                                       600
## 4346                                       600
## 4347                                       602
## 4348                                       604
## 4349                                       60l
## 4350                                        61
## 4351                                       610
## 4352                                        62
## 4353                                        62
## 4354                                       620
## 4355                                       623
## 4356                                       624
## 4357                                       625
## 4358                                       628
## 4359                                       629
## 4360                                        63
## 4361                                        63
## 4362                                        63
## 4363                                       630
## 4364                                       631
## 4365                                       632
## 4366                                       635
## 4367                                       636
## 4368                                       638
## 4369                                        64
## 4370                                        64
## 4371                                       646
## 4372                                       648
## 4373                                        65
## 4374                                        65
## 4375                                        65
## 4376                                       650
## 4377                                       651
## 4378                                       656
## 4379                                       659
## 4380                                        66
## 4381                                        66
## 4382                                        66
## 4383                                       661
## 4384                                       663
## 4385                                       666
## 4386                                       668
## 4387                                       669
## 4388                                        67
## 4389                                        67
## 4390                                       671
## 4391                                       673
## 4392                                       674
## 4393                                       675
## 4394                                       676
## 4395                                       678
## 4396                                      6791
## 4397                                        68
## 4398                                        68
## 4399                                       681
## 4400                                       682
## 4401                                       683
## 4402                                       686
## 4403                                       689
## 4404                                        69
## 4405                                       690
## 4406                                       694
## 4407                                       696
## 4408                                      6972
## 4409                                       699
## 4410                                        6s
## 4411                                       6th
## 4412                                         7
## 4413                                         7
## 4414                                         7
## 4415                                         7
## 4416                                         7
## 4417                                         7
## 4418                                         7
## 4419                                         7
## 4420                                         7
## 4421                                         7
## 4422                                         7
## 4423                                         7
## 4424                                        70
## 4425                                        70
## 4426                                        70
## 4427                                        70
## 4428                                        70
## 4429                                       700
## 4430                                     70000
## 4431                                    7000sf
## 4432                                      700m
## 4433                                       701
## 4434                                       703
## 4435                                      7049
## 4436                                      7051
## 4437                                       707
## 4438                                       708
## 4439                                       709
## 4440                                        71
## 4441                                        71
## 4442                                        71
## 4443                                        71
## 4444                                       711
## 4445                                       712
## 4446                                       713
## 4447                                       715
## 4448                                       719
## 4449                                        72
## 4450                                        72
## 4451                                       721
## 4452                                       722
## 4453                                       727
## 4454                                       729
## 4455                                        73
## 4456                                       730
## 4457                                       733
## 4458                                       735
## 4459                                       738
## 4460                                        74
## 4461                                        74
## 4462                                       743
## 4463                                       745
## 4464                                        75
## 4465                                        75
## 4466                                        75
## 4467                                        75
## 4468                                       752
## 4469                                       755
## 4470                                       757
## 4471                                        76
## 4472                                        76
## 4473                                       763
## 4474                                       764
## 4475                                       768
## 4476                                       769
## 4477                                        77
## 4478                                        77
## 4479                                       770
## 4480                                       773
## 4481                                       774
## 4482                                        78
## 4483                                       784
## 4484                                       785
## 4485                                       787
## 4486                                        79
## 4487                                        79
## 4488                                        79
## 4489                                     79.99
## 4490                                      790m
## 4491                                       793
## 4492                                      7932
## 4493                                       794
## 4494                                       795
## 4495                                       797
## 4496                                       7mm
## 4497                        7ow9uiyfetrxdsobyn
## 4498                                       7th
## 4499                                         8
## 4500                                         8
## 4501                                         8
## 4502                                         8
## 4503                                         8
## 4504                                         8
## 4505                                         8
## 4506                                         8
## 4507                                         8
## 4508                                         8
## 4509                                         8
## 4510                                         8
## 4511                                         8
## 4512                                         8
## 4513                                         8
## 4514                                         8
## 4515                                         8
## 4516                                         8
## 4517                                         8
## 4518                                         8
## 4519                                        80
## 4520                                        80
## 4521                                        80
## 4522                                        80
## 4523                                        80
## 4524                                        80
## 4525                                        80
## 4526                                        80
## 4527                                        80
## 4528                                        80
## 4529                                       800
## 4530                                       800
## 4531                                       801
## 4532                                       803
## 4533                                       805
## 4534                                       807
## 4535                                       808
## 4536                                       809
## 4537                                       80s
## 4538                                        81
## 4539                                      8105
## 4540                                       811
## 4541                                       813
## 4542                                       815
## 4543                                       816
## 4544                                       817
## 4545                                      8178
## 4546                                       818
## 4547                                      8187
## 4548                                       819
## 4549                                        82
## 4550                                       822
## 4551                                       823
## 4552                                       824
## 4553                                       828
## 4554                                        83
## 4555                                        83
## 4556                                        83
## 4557                                       834
## 4558                                       836
## 4559                                       838
## 4560                                       839
## 4561                                        84
## 4562                                        84
## 4563                                       842
## 4564                                       843
## 4565                                       844
## 4566                                       845
## 4567                                       847
## 4568                                       849
## 4569                                        85
## 4570                                        85
## 4571                                        85
## 4572                                        85
## 4573                                        85
## 4574                                        85
## 4575                                        85
## 4576                                       850
## 4577                                       851
## 4578                                       852
## 4579                                       853
## 4580                                       854
## 4581                                       855
## 4582                                       856
## 4583                                       857
## 4584                                       859
## 4585                                       85s
## 4586                                       85s
## 4587                                       85s
## 4588                                       85s
## 4589                                        86
## 4590                                        86
## 4591                                        86
## 4592                                       862
## 4593                                       863
## 4594                                        87
## 4595                                       874
## 4596                                       876
## 4597                                       879
## 4598                                        88
## 4599                                        88
## 4600                                       884
## 4601                                       887
## 4602                                       889
## 4603                                        89
## 4604                                        89
## 4605                                       894
## 4606                                       895
## 4607                                       897
## 4608                                       8am
## 4609                                         9
## 4610                                         9
## 4611                                         9
## 4612                                         9
## 4613                                         9
## 4614                                         9
## 4615                                         9
## 4616                                         9
## 4617                                         9
## 4618                                         9
## 4619                                         9
## 4620                                         9
## 4621                                         9
## 4622                                       9.5
## 4623                                       9.7
## 4624                                      9.99
## 4625                                        90
## 4626                                        90
## 4627                                        90
## 4628                                        90
## 4629                                        90
## 4630                                       901
## 4631                                       903
## 4632                                       904
## 4633                                       906
## 4634                                       90s
## 4635                                       90s
## 4636                                       90s
## 4637                                       90s
## 4638                                       90s
## 4639                                       90s
## 4640                                       90s
## 4641                                        91
## 4642                                        91
## 4643                                       910
## 4644                                       911
## 4645                                       914
## 4646                                       919
## 4647                                        92
## 4648                                        92
## 4649                                       921
## 4650                                       927
## 4651                                        93
## 4652                                        93
## 4653                                        93
## 4654                                       931
## 4655                                       935
## 4656                                       936
## 4657                                       937
## 4658                                       939
## 4659                                        94
## 4660                                       945
## 4661                                       946
## 4662                                       947
## 4663                                       948
## 4664                                        95
## 4665                                        95
## 4666                                        95
## 4667                                        95
## 4668                                        95
## 4669                                        95
## 4670                                        95
## 4671                                        95
## 4672                                        95
## 4673                                        95
## 4674                                        95
## 4675                                        95
## 4676                                        95
## 4677                                        95
## 4678                                        95
## 4679                                        95
## 4680                                       950
## 4681                                       958
## 4682                                       95s
## 4683                                       95s
## 4684                                       95s
## 4685                                       95s
## 4686                                       95s
## 4687                                        96
## 4688                                        96
## 4689                                       961
## 4690                                       964
## 4691                                       966
## 4692                                       967
## 4693                                       968
## 4694                                       96s
## 4695                                        97
## 4696                                        97
## 4697                                        97
## 4698                                       974
## 4699                                       975
## 4700                                       979
## 4701                                        98
## 4702                                        98
## 4703                                       980
## 4704                                       982
## 4705                                       984
## 4706                                       987
## 4707                                       989
## 4708                                        99
## 4709                                        99
## 4710                                        99
## 4711                                        99
## 4712                                       990
## 4713                                       991
## 4714                                       993
## 4715                                       994
## 4716                                       996
## 4717                                       997
## 4718                                       998
## 4719                                       999
## 4720                                      9min
## 4721                                        9s
## 4722                                       9th
## 4723                                       9th
## 4724                                       ___
## 4725                                        a1
## 4726                                        a1
## 4727                                 abandoned
## 4728                                     abdul
## 4729                              abominations
## 4730                                    abrupt
## 4731                                  abruptly
## 4732                                       abs
## 4733                                       abs
## 4734                                  absolute
## 4735                                  absolute
## 4736                                  absolute
## 4737                                  absolute
## 4738                                  absolute
## 4739                                  absolute
## 4740                                  absolute
## 4741                                absolutely
## 4742                                absolutely
## 4743                                absolutely
## 4744                                absolutely
## 4745                                absolutely
## 4746                                absolutely
## 4747                                absolutely
## 4748                                absolutely
## 4749                                absolutely
## 4750                                absolutely
## 4751                                absolutely
## 4752                                absolutely
## 4753                                absolutely
## 4754                                absolutely
## 4755                                absolutely
## 4756                                absolutely
## 4757                                absolutely
## 4758                                absolutely
## 4759                                absolutely
## 4760                                absolutely
## 4761                                absolutely
## 4762                                 absorbent
## 4763                                absorption
## 4764                                    absurd
## 4765                                    absurd
## 4766                                    absurd
## 4767                                    absurd
## 4768                                   absurda
## 4769                                  abundant
## 4770                                     acabo
## 4771                               accelerated
## 4772                               accelerates
## 4773                              acceleration
## 4774                                    accent
## 4775                                acceptable
## 4776                                acceptance
## 4777                                    access
## 4778                                    access
## 4779                                    access
## 4780                                    access
## 4781                                    access
## 4782                             accessibility
## 4783                                accessible
## 4784                                accessible
## 4785                       accessorieseveryone
## 4786                       accessorieseveryone
## 4787                                 accessory
## 4788                              accidentally
## 4789                              accidentally
## 4790                              accidentally
## 4791                              accidentally
## 4792                            accomplishment
## 4793                                    accord
## 4794                                   account
## 4795                                   account
## 4796                                   account
## 4797                                   account
## 4798                                   account
## 4799                                   account
## 4800                                   account
## 4801                                   account
## 4802                                   account
## 4803                                   account
## 4804                                   account
## 4805                            accountability
## 4806                               accountable
## 4807                               accountable
## 4808                                  accounts
## 4809                                  accuracy
## 4810                                  accuracy
## 4811                                  accuracy
## 4812                                  accuracy
## 4813                                  accurate
## 4814                                  accurate
## 4815                                  accurate
## 4816                                  accurate
## 4817                                  accurate
## 4818                                  accurate
## 4819                                  accurate
## 4820                                  accurate
## 4821                                  accurate
## 4822                                  accurate
## 4823                                  accurate
## 4824                                  accurate
## 4825                                  accurate
## 4826                                accurately
## 4827                                accurately
## 4828                                accurately
## 4829                                accurately
## 4830                                accurately
## 4831                                accurately
## 4832                                   accéder
## 4833                                   acetone
## 4834                                       acg
## 4835                                       acg
## 4836                                       acg
## 4837                                       acg
## 4838                                       acg
## 4839                                       acg
## 4840                                       acg
## 4841                                       acg
## 4842                                       acg
## 4843                                      acgs
## 4844                              achievements
## 4845                              achievements
## 4846                              achievements
## 4847                                  achilles
## 4848                                       acl
## 4849                                       acl
## 4850                                acompañado
## 4851                                       act
## 4852                                       act
## 4853                                    acting
## 4854                                 activated
## 4855                                    active
## 4856                                    active
## 4857                                    active
## 4858                                    active
## 4859                                    active
## 4860                                    active
## 4861                                 actividad
## 4862                                activities
## 4863                                activities
## 4864                                activities
## 4865                                activities
## 4866                                activities
## 4867                                activities
## 4868                                activities
## 4869                                  activity
## 4870                                  activity
## 4871                                  activity
## 4872                                  activity
## 4873                                  activity
## 4874                                  activity
## 4875                                  activity
## 4876                                  activity
## 4877                                  activity
## 4878                                  activity
## 4879                                  activity
## 4880                                  activity
## 4881                                  activity
## 4882                                  activity
## 4883                                    actual
## 4884                                    actual
## 4885                                    actual
## 4886                                    actual
## 4887                                    actual
## 4888                                     acute
## 4889                                       acá
## 4890                                        ad
## 4891                                        ad
## 4892                                        ad
## 4893                                        ad
## 4894                                        ad
## 4895                                  adaptive
## 4896                                  adaptive
## 4897                                       add
## 4898                                       add
## 4899                                       add
## 4900                                       add
## 4901                                       add
## 4902                                       add
## 4903                                       add
## 4904                                       add
## 4905                                       add
## 4906                                       add
## 4907                                       add
## 4908                                       add
## 4909                                       add
## 4910                                       add
## 4911                                       add
## 4912                                       add
## 4913                                     added
## 4914                                     added
## 4915                                     added
## 4916                                  addicted
## 4917                                   addidas
## 4918                                    adding
## 4919                                    adding
## 4920                                    adding
## 4921                                    adding
## 4922                                    adding
## 4923                                    adding
## 4924                                     addis
## 4925                                additional
## 4926                                additional
## 4927                                additional
## 4928                                additional
## 4929                                 addressed
## 4930                                      adds
## 4931                                      adds
## 4932                                      adds
## 4933                                      adds
## 4934                                    además
## 4935                                  adhesion
## 4936                                       adi
## 4937                                       adi
## 4938                                   adiclub
## 4939                                   adiclub
## 4940                                   adiclub
## 4941                                    adidas
## 4942                                    adidas
## 4943                                    adidas
## 4944                                    adidas
## 4945                                    adidas
## 4946                                    adidas
## 4947                                    adidas
## 4948                                    adidas
## 4949                                    adidas
## 4950                                    adidas
## 4951                                    adidas
## 4952                                    adidas
## 4953                                    adidas
## 4954                                    adidas
## 4955                                    adidas
## 4956                                    adidas
## 4957                                    adidas
## 4958                                    adidas
## 4959                                    adidas
## 4960                                    adidas
## 4961                                    adidas
## 4962                                    adidas
## 4963                                    adidas
## 4964                                    adidas
## 4965                                    adidas
## 4966                                    adidas
## 4967                                    adidas
## 4968                                    adidas
## 4969                                    adidas
## 4970                                    adidas
## 4971                                    adidas
## 4972                                    adidas
## 4973                                    adidas
## 4974                                    adidas
## 4975                                    adidas
## 4976                                    adidas
## 4977                                    adidas
## 4978                                    adidas
## 4979                                    adidas
## 4980                                    adidas
## 4981                                    adidas
## 4982                                    adidas
## 4983                                    adidas
## 4984                                    adidas
## 4985                                    adidas
## 4986                                    adidas
## 4987                                    adidas
## 4988                                    adidas
## 4989                                    adidas
## 4990                                    adidas
## 4991                                    adidas
## 4992                                    adidas
## 4993                                    adidas
## 4994                                    adidas
## 4995                                    adidas
## 4996                                    adidas
## 4997                                    adidas
## 4998                                    adidas
## 4999                                    adidas
## 5000                                    adidas
## 5001                                    adidas
## 5002                                    adidas
## 5003                                    adidas
## 5004                                    adidas
## 5005                                    adidas
## 5006                                    adidas
## 5007                                    adidas
## 5008                                    adidas
## 5009                                    adidas
## 5010                                    adidas
## 5011                                    adidas
## 5012                                    adidas
## 5013                                    adidas
## 5014                                    adidas
## 5015                                    adidas
## 5016                                    adidas
## 5017                                    adidas
## 5018                                    adidas
## 5019                                    adidas
## 5020                                    adidas
## 5021                                    adidas
## 5022                                    adidas
## 5023                                    adidas
## 5024                                    adidas
## 5025                                    adidas
## 5026                                    adidas
## 5027                                    adidas
## 5028                                    adidas
## 5029                                    adidas
## 5030                                    adidas
## 5031                                    adidas
## 5032                                    adidas
## 5033                                    adidas
## 5034                                    adidas
## 5035                                    adidas
## 5036                                    adidas
## 5037                                    adidas
## 5038                                    adidas
## 5039                                    adidas
## 5040                                    adidas
## 5041                                    adidas
## 5042                                    adidas
## 5043                                    adidas
## 5044                                    adidas
## 5045                                    adidas
## 5046                                    adidas
## 5047                                    adidas
## 5048                                    adidas
## 5049                                    adidas
## 5050                                    adidas
## 5051                                    adidas
## 5052                                    adidas
## 5053                                    adidas
## 5054                                    adidas
## 5055                                    adidas
## 5056                                    adidas
## 5057                                    adidas
## 5058                                    adidas
## 5059                                    adidas
## 5060                                    adidas
## 5061                                    adidas
## 5062                                    adidas
## 5063                                    adidas
## 5064                                    adidas
## 5065                                    adidas
## 5066                                    adidas
## 5067                                    adidas
## 5068                                    adidas
## 5069                                    adidas
## 5070                                    adidas
## 5071                                    adidas
## 5072                                    adidas
## 5073                                    adidas
## 5074                                    adidas
## 5075                                    adidas
## 5076                                    adidas
## 5077                                    adidas
## 5078                                    adidas
## 5079                                    adidas
## 5080                                    adidas
## 5081                                    adidas
## 5082                                    adidas
## 5083                                    adidas
## 5084                                    adidas
## 5085                                    adidas
## 5086                                    adidas
## 5087                                    adidas
## 5088                                    adidas
## 5089                                    adidas
## 5090                                    adidas
## 5091                                    adidas
## 5092                                    adidas
## 5093                                    adidas
## 5094                                    adidas
## 5095                                    adidas
## 5096                                    adidas
## 5097                                    adidas
## 5098                                    adidas
## 5099                                    adidas
## 5100                                    adidas
## 5101                                    adidas
## 5102                                    adidas
## 5103                                    adidas
## 5104                                    adidas
## 5105                                    adidas
## 5106                                    adidas
## 5107                                    adidas
## 5108                                    adidas
## 5109                                    adidas
## 5110                                    adidas
## 5111                                    adidas
## 5112                                    adidas
## 5113                                    adidas
## 5114                                    adidas
## 5115                                    adidas
## 5116                                    adidas
## 5117                                    adidas
## 5118                                    adidas
## 5119                                    adidas
## 5120                                    adidas
## 5121                                    adidas
## 5122                                    adidas
## 5123                                    adidas
## 5124                                    adidas
## 5125                                    adidas
## 5126                                  adidas's
## 5127                            adidasfootball
## 5128                                  adidas’s
## 5129                                     adios
## 5130                                     adios
## 5131                                     adios
## 5132                                     adios
## 5133                                  adissage
## 5134                                   adistar
## 5135                                   adizero
## 5136                                   adizero
## 5137                                   adizero
## 5138                                   adizero
## 5139                                     adiós
## 5140                                    adjust
## 5141                                    adjust
## 5142                                adjustable
## 5143                                  adjusted
## 5144                                  adjusted
## 5145                                adjustment
## 5146                               adjustments
## 5147                                    admits
## 5148                                    admits
## 5149                                  adoption
## 5150                                  adorable
## 5151                                adrenaline
## 5152                                       ads
## 5153                                       ads
## 5154                                       ads
## 5155                                       ads
## 5156                                       ads
## 5157                                     adult
## 5158                                   advance
## 5159                                   advance
## 5160                                  advanced
## 5161                                  advanced
## 5162                                  advanced
## 5163                                  advanced
## 5164                                  advanced
## 5165                              advancements
## 5166                                  advances
## 5167                                 advantage
## 5168                                adventures
## 5169                                advertised
## 5170                            advertisements
## 5171                                    advice
## 5172                                    advice
## 5173                                    aerial
## 5174                                      aero
## 5175                                  aerobill
## 5176                             aesthetically
## 5177                                aesthetics
## 5178                                        af
## 5179                                        af
## 5180                                        af
## 5181                                        af
## 5182                                        af
## 5183                                       af1
## 5184                                       af1
## 5185                                       af1
## 5186                                       af1
## 5187                                       af1
## 5188                                       af1
## 5189                                      af1s
## 5190                                       af3
## 5191                                    affect
## 5192                                affordable
## 5193                              afterthought
## 5194                                       age
## 5195                                       age
## 5196                                       age
## 5197                                       age
## 5198                                       age
## 5199                                  agency’s
## 5200                                      ages
## 5201                                      ages
## 5202                                      ages
## 5203                               aggravating
## 5204                                   agility
## 5205                                   agility
## 5206                                    aglets
## 5207                                       ago
## 5208                                       ago
## 5209                                       ago
## 5210                                       ago
## 5211                                       ago
## 5212                                       ago
## 5213                                       ago
## 5214                                       ago
## 5215                                       ago
## 5216                                       ago
## 5217                                       ago
## 5218                                     agree
## 5219                                     agree
## 5220                                     agree
## 5221                                     agree
## 5222                                     agree
## 5223                                     agree
## 5224                                    agreed
## 5225                                    agreed
## 5226                                        ah
## 5227                                        ah
## 5228                                        ah
## 5229                                     ahead
## 5230                                      ahem
## 5231                                    ahhhhh
## 5232                                     ahhhs
## 5233                                     ahoes
## 5234                                        ai
## 5235                                        ai
## 5236                                        ai
## 5237                                       aid
## 5238                                      aint
## 5239                                      aint
## 5240                                       air
## 5241                                       air
## 5242                                       air
## 5243                                       air
## 5244                                       air
## 5245                                       air
## 5246                                       air
## 5247                                       air
## 5248                                       air
## 5249                                       air
## 5250                                       air
## 5251                                       air
## 5252                                       air
## 5253                                       air
## 5254                                       air
## 5255                                       air
## 5256                                       air
## 5257                                       air
## 5258                                       air
## 5259                                       air
## 5260                                       air
## 5261                                    airbud
## 5262                                    airbud
## 5263                                    airmax
## 5264                                    airmax
## 5265                                    airmax
## 5266                                   airplay
## 5267                                   airplay
## 5268                                   airpods
## 5269                                   airpods
## 5270                                       aj1
## 5271                                       aj1
## 5272                                      aj28
## 5273                                       aka
## 5274                                        al
## 5275                                        al
## 5276                                     album
## 5277                                     alert
## 5278                                     alert
## 5279                                     alert
## 5280                                      alex
## 5281                                      alex
## 5282                                    aliada
## 5283                              alimentación
## 5284                                     alive
## 5285                                   allowed
## 5286                                   allyson
## 5287                                  almighty
## 5288                                       alo
## 5289                                  alottttt
## 5290                                     alpha
## 5291                                  alphafly
## 5292                                  alphafly
## 5293                                  alphafly
## 5294                                 alphaflys
## 5295                                       alr
## 5296                                   alright
## 5297                                   alright
## 5298                                 alternate
## 5299                               alternative
## 5300                              alternatives
## 5301                                  altitude
## 5302                                altogether
## 5303                                     altra
## 5304                                       am1
## 5305                                      am95
## 5306                                      am95
## 5307                                    amando
## 5308                                   amateur
## 5309                                   amazing
## 5310                                   amazing
## 5311                                   amazing
## 5312                                   amazing
## 5313                                   amazing
## 5314                                   amazing
## 5315                                   amazing
## 5316                                   amazing
## 5317                                   amazing
## 5318                                   amazing
## 5319                                   amazing
## 5320                                   amazing
## 5321                                   amazing
## 5322                                   amazing
## 5323                                   amazing
## 5324                                   amazing
## 5325                                   amazing
## 5326                                   amazing
## 5327                                   amazing
## 5328                                   amazing
## 5329                                   amazing
## 5330                                   amazing
## 5331                                   amazing
## 5332                                   amazing
## 5333                                   amazing
## 5334                                   amazing
## 5335                                   amazing
## 5336                                   amazing
## 5337                                   amazing
## 5338                                   amazing
## 5339                                 amazingly
## 5340                                    amazon
## 5341                                    amazon
## 5342                                    amazon
## 5343                                    amazon
## 5344                                    amazon
## 5345                                 ambulance
## 5346                                      amen
## 5347                                      amen
## 5348                                   america
## 5349                                   america
## 5350                                  american
## 5351                                  american
## 5352                                  american
## 5353                                  american
## 5354                                  american
## 5355                                      amid
## 5356                                      amid
## 5357                                     amigo
## 5358                                  amiright
## 5359                                       amo
## 5360                                      amor
## 5361                                       amp
## 5362                                       amp
## 5363                                       amp
## 5364                                       amp
## 5365                                       amp
## 5366                                       amp
## 5367                                       amp
## 5368                                       amp
## 5369                                       amp
## 5370                                       amp
## 5371                                       amp
## 5372                                       amp
## 5373                                       amp
## 5374                                       amp
## 5375                                  analysis
## 5376                                   analyst
## 5377                                  analysts
## 5378                                  analysts
## 5379                                 analytics
## 5380                                 analytics
## 5381                                 anchorman
## 5382                                   android
## 5383                                   android
## 5384                                   android
## 5385                                       ane
## 5386                                       anf
## 5387                                   angeles
## 5388                                   angelus
## 5389                                     angle
## 5390                                    angled
## 5391                                    angles
## 5392                                     angry
## 5393                                     anime
## 5394                                     ankle
## 5395                                     ankle
## 5396                                     ankle
## 5397                                     ankle
## 5398                                     ankle
## 5399                                     ankle
## 5400                                     ankle
## 5401                                 announced
## 5402                                 announces
## 5403                                 announces
## 5404                                 announces
## 5405                                 announces
## 5406                                 announces
## 5407                                 announces
## 5408                                 announces
## 5409                                 announces
## 5410                                  annoying
## 5411                                  annoying
## 5412                                  annoying
## 5413                                  annoying
## 5414                                  annoying
## 5415                                  annoying
## 5416                                annoyingly
## 5417                                    annual
## 5418                                    annual
## 5419                                    annual
## 5420                                    answer
## 5421                                      anta
## 5422                                      anta
## 5423                                    antall
## 5424                                anthracite
## 5425                                   antigua
## 5426                               antisemitic
## 5427                                   antonio
## 5428                                   anxious
## 5429                                   anymore
## 5430                                   anymore
## 5431                                   anymore
## 5432                                   anymore
## 5433                                   anymore
## 5434                                   anymore
## 5435                                   anymore
## 5436                                   anymore
## 5437                                   anymore
## 5438                                   anymore
## 5439                                   anymore
## 5440                                   anymore
## 5441                                   anymore
## 5442                                   anymore
## 5443                                  anúncios
## 5444                                  anúncios
## 5445                              aplicaciones
## 5446                                aplicación
## 5447                                aplicación
## 5448                                aplicación
## 5449                                aplicación
## 5450                                aplicación
## 5451                                aplicación
## 5452                                aplicación
## 5453                                aplicación
## 5454                                aplicación
## 5455                                aplicativo
## 5456                                aplicativo
## 5457                                aplicativo
## 5458                                   apology
## 5459                                     apoyo
## 5460                                       app
## 5461                                       app
## 5462                                       app
## 5463                                       app
## 5464                                       app
## 5465                                       app
## 5466                                       app
## 5467                                       app
## 5468                                       app
## 5469                                       app
## 5470                                       app
## 5471                                       app
## 5472                                       app
## 5473                                       app
## 5474                                       app
## 5475                                       app
## 5476                                       app
## 5477                                       app
## 5478                                       app
## 5479                                       app
## 5480                                       app
## 5481                                       app
## 5482                                       app
## 5483                                       app
## 5484                                       app
## 5485                                       app
## 5486                                       app
## 5487                                       app
## 5488                                       app
## 5489                                       app
## 5490                                       app
## 5491                                       app
## 5492                                       app
## 5493                                       app
## 5494                                       app
## 5495                                       app
## 5496                                       app
## 5497                                       app
## 5498                                       app
## 5499                                       app
## 5500                                       app
## 5501                                       app
## 5502                                       app
## 5503                                       app
## 5504                                       app
## 5505                                       app
## 5506                                       app
## 5507                                       app
## 5508                                       app
## 5509                                       app
## 5510                                       app
## 5511                                       app
## 5512                                       app
## 5513                                       app
## 5514                                       app
## 5515                                       app
## 5516                                       app
## 5517                                       app
## 5518                                       app
## 5519                                       app
## 5520                                       app
## 5521                                       app
## 5522                                       app
## 5523                                       app
## 5524                                       app
## 5525                                       app
## 5526                                       app
## 5527                                       app
## 5528                                       app
## 5529                                       app
## 5530                                       app
## 5531                                       app
## 5532                                       app
## 5533                                       app
## 5534                                       app
## 5535                                       app
## 5536                                       app
## 5537                                       app
## 5538                                       app
## 5539                                       app
## 5540                                       app
## 5541                                       app
## 5542                                       app
## 5543                                       app
## 5544                                       app
## 5545                                       app
## 5546                                       app
## 5547                                       app
## 5548                                       app
## 5549                                       app
## 5550                                       app
## 5551                                       app
## 5552                                       app
## 5553                                       app
## 5554                                       app
## 5555                                       app
## 5556                                       app
## 5557                                       app
## 5558                                       app
## 5559                                       app
## 5560                                       app
## 5561                                       app
## 5562                                       app
## 5563                                       app
## 5564                                       app
## 5565                                       app
## 5566                                       app
## 5567                                       app
## 5568                                       app
## 5569                                       app
## 5570                                       app
## 5571                                       app
## 5572                                       app
## 5573                                       app
## 5574                                       app
## 5575                                       app
## 5576                                       app
## 5577                                       app
## 5578                                       app
## 5579                                       app
## 5580                                       app
## 5581                                       app
## 5582                                       app
## 5583                                       app
## 5584                                       app
## 5585                                       app
## 5586                                       app
## 5587                                       app
## 5588                                       app
## 5589                                       app
## 5590                                       app
## 5591                                       app
## 5592                                       app
## 5593                                       app
## 5594                                       app
## 5595                                       app
## 5596                                       app
## 5597                                       app
## 5598                                       app
## 5599                                       app
## 5600                                       app
## 5601                                       app
## 5602                                       app
## 5603                                       app
## 5604                                       app
## 5605                                       app
## 5606                                       app
## 5607                                       app
## 5608                                       app
## 5609                                       app
## 5610                                       app
## 5611                                       app
## 5612                                       app
## 5613                                       app
## 5614                                       app
## 5615                                       app
## 5616                                       app
## 5617                                       app
## 5618                                       app
## 5619                                       app
## 5620                                       app
## 5621                                       app
## 5622                                       app
## 5623                                       app
## 5624                                       app
## 5625                                       app
## 5626                                       app
## 5627                                       app
## 5628                                       app
## 5629                                       app
## 5630                                       app
## 5631                                       app
## 5632                                       app
## 5633                                       app
## 5634                                       app
## 5635                                       app
## 5636                                       app
## 5637                                       app
## 5638                                   apparel
## 5639                                   apparel
## 5640                                   apparel
## 5641                                apparently
## 5642                                apparently
## 5643                                    appeal
## 5644                                 appealing
## 5645                                 appealing
## 5646                                   appears
## 5647                                     apple
## 5648                                     apple
## 5649                                     apple
## 5650                                     apple
## 5651                                     apple
## 5652                                     apple
## 5653                                     apple
## 5654                                     apple
## 5655                                     apple
## 5656                                     apple
## 5657                               application
## 5658                               application
## 5659                               appreciated
## 5660                                  approach
## 5661                                  approach
## 5662                             appropriately
## 5663                             appropriately
## 5664                                   approve
## 5665                                      apps
## 5666                                      apps
## 5667                                      apps
## 5668                                      apps
## 5669                                      apps
## 5670                                      apps
## 5671                                      apps
## 5672                                      apps
## 5673                                      apps
## 5674                                      apps
## 5675                                      apps
## 5676                                      apps
## 5677                                      apps
## 5678                                  appstore
## 5679                                     app’s
## 5680                                     app’s
## 5681                                     app’s
## 5682                                     apres
## 5683                               arbitrarily
## 5684                                      arch
## 5685                                      arch
## 5686                                  archivos
## 5687                                    aren’t
## 5688                                    aren’t
## 5689                                   arguing
## 5690                                arithmetic
## 5691                            arjaybicomskee
## 5692                                    arktos
## 5693                                       arm
## 5694                                       arm
## 5695                                     armor
## 5696                                     armor
## 5697                                     armor
## 5698                                     armor
## 5699                                     armor
## 5700                                     armor
## 5701                                     armor
## 5702                                     armor
## 5703                                   armor's
## 5704                                    armour
## 5705                                    armour
## 5706                                    armour
## 5707                                    armour
## 5708                                    armour
## 5709                                    armour
## 5710                                    armour
## 5711                                    armour
## 5712                                    armour
## 5713                                    armour
## 5714                                    armour
## 5715                                    armour
## 5716                                    armour
## 5717                                    armour
## 5718                                    armour
## 5719                                    armour
## 5720                                    armour
## 5721                                    armour
## 5722                                    armour
## 5723                                    armour
## 5724                                    armour
## 5725                                    armour
## 5726                                    armour
## 5727                                    armour
## 5728                                    armour
## 5729                                    armour
## 5730                                    armour
## 5731                                    armour
## 5732                                    armour
## 5733                                    armour
## 5734                                    armour
## 5735                                    armour
## 5736                                    armour
## 5737                                    armour
## 5738                                    armour
## 5739                                    armour
## 5740                                    armour
## 5741                                    armour
## 5742                                    armour
## 5743                                    armour
## 5744                                    armour
## 5745                                    armour
## 5746                                    armour
## 5747                                    armour
## 5748                                    armour
## 5749                                    armour
## 5750                                    armour
## 5751                                    armour
## 5752                                    armour
## 5753                                    armour
## 5754                                    armour
## 5755                                    armour
## 5756                                    armour
## 5757                                      aron
## 5758                                    arrive
## 5759                                   arrived
## 5760                                  arriving
## 5761                                       art
## 5762                                       art
## 5763                                artificial
## 5764                                    artist
## 5765                                   artwork
## 5766                                 artículos
## 5767                                       asf
## 5768                                       asf
## 5769                                       asf
## 5770                                      asia
## 5771                                     asian
## 5772                                     asics
## 5773                                     asics
## 5774                                     asics
## 5775                                   asinine
## 5776                        asjkibidvgfmxphcdq
## 5777                                   asphalt
## 5778                                  aspiring
## 5779                                       ass
## 5780                                       ass
## 5781                                       ass
## 5782                                       ass
## 5783                                       ass
## 5784                                       ass
## 5785                                       ass
## 5786                                  assigned
## 5787                               assinaturas
## 5788                               assinaturas
## 5789                               association
## 5790                               association
## 5791                                   assumed
## 5792                                   assumes
## 5793                               assumptions
## 5794                               astonishing
## 5795                                 astronaut
## 5796                                    aswell
## 5797                                    aswell
## 5798                                athleisure
## 5799                                   athlete
## 5800                                   athlete
## 5801                                   athlete
## 5802                                   athlete
## 5803                                   athlete
## 5804                                  athletes
## 5805                                  athletes
## 5806                                  athletes
## 5807                                  athletes
## 5808                             athletevanity
## 5809                             athletevanity
## 5810                                  athletic
## 5811                                  athletic
## 5812                               athleticism
## 5813                                 atividade
## 5814                                   atlanta
## 5815                                       atm
## 5816                                atmosphere
## 5817                                atrapalham
## 5818                                   através
## 5819                                   attendu
## 5820                                 attention
## 5821                                     attic
## 5822                                    attire
## 5823                                attractive
## 5824                                   audible
## 5825                                     audio
## 5826                                     audio
## 5827                                    august
## 5828                                    august
## 5829                                    august
## 5830                                    august
## 5831                                      aunt
## 5832                                      aura
## 5833                                    aurora
## 5834                                 australia
## 5835                             authenticated
## 5836                             authenticated
## 5837                              authenticity
## 5838                                authorized
## 5839                                    autism
## 5840                                      auto
## 5841                                      auto
## 5842                                      auto
## 5843                                 automatic
## 5844                                 automatic
## 5845                             automatically
## 5846                             automatically
## 5847                             automatically
## 5848                             automatically
## 5849                             automatically
## 5850                             automatically
## 5851                             automatically
## 5852                             automatically
## 5853                             automatically
## 5854                             automatically
## 5855                             automatically
## 5856                             automatically
## 5857                                    autumn
## 5858                              availability
## 5859                                    avance
## 5860                                   avances
## 5861                                   average
## 5862                                   average
## 5863                                   average
## 5864                                   average
## 5865                                   average
## 5866                                       avg
## 5867                                     avoid
## 5868                                     avoid
## 5869                                     avoid
## 5870                                    avoids
## 5871                                     avoir
## 5872                                    awards
## 5873                                   awesome
## 5874                                   awesome
## 5875                                   awesome
## 5876                                   awesome
## 5877                                   awesome
## 5878                                   awesome
## 5879                                   awesome
## 5880                                   awesome
## 5881                                   awesome
## 5882                                   awesome
## 5883                                   awesome
## 5884                                   awesome
## 5885                                   awesome
## 5886                                   awesome
## 5887                                   awesome
## 5888                                   awesome
## 5889                                   awesome
## 5890                                   awesome
## 5891                                   awesome
## 5892                                   awesome
## 5893                                   awesome
## 5894                                   awesome
## 5895                                   awesome
## 5896                                   awesome
## 5897                                     awful
## 5898                                     awful
## 5899                                     awful
## 5900                                   awkward
## 5901                                  ayakkabı
## 5902                                     ayuda
## 5903                                     ayuda
## 5904                                       ayy
## 5905                                       ayy
## 5906                                      azul
## 5907                                      años
## 5908                                b08cs48ryj
## 5909                                      baby
## 5910                                      baby
## 5911                                      baby
## 5912                                 backflips
## 5913                                background
## 5914                                 backwards
## 5915                                 backwards
## 5916                                 backwards
## 5917                                 baconator
## 5918                                       bad
## 5919                                       bad
## 5920                                       bad
## 5921                                       bad
## 5922                                       bad
## 5923                                       bad
## 5924                                       bad
## 5925                                       bad
## 5926                                       bad
## 5927                                       bad
## 5928                                       bad
## 5929                                       bad
## 5930                                       bad
## 5931                                       bad
## 5932                                       bad
## 5933                                       bad
## 5934                                       bad
## 5935                                       bad
## 5936                                       bad
## 5937                                       bad
## 5938                                    badass
## 5939                                    badass
## 5940                                    badass
## 5941                                   baddest
## 5942                                     badly
## 5943                                     badly
## 5944                                       bag
## 5945                                   baggier
## 5946                                     baggy
## 5947                                   baklava
## 5948                                   balance
## 5949                                   balance
## 5950                                   balance
## 5951                                   balance
## 5952                                   balance
## 5953                                   balance
## 5954                                   balance
## 5955                                      bald
## 5956                                      ball
## 5957                                      ball
## 5958                                      ball
## 5959                                 baltimore
## 5960                                   baltoro
## 5961                                      band
## 5962                                      band
## 5963                                    bandit
## 5964                                 bandwagon
## 5965                                 bandwagon
## 5966                                    banger
## 5967                                   banging
## 5968                                      bank
## 5969                                      bank
## 5970                                    banned
## 5971                                      bape
## 5972                                       bar
## 5973                                    barbel
## 5974                                   barbell
## 5975                                     barca
## 5976                                  barefoot
## 5977                                  barefoot
## 5978                                    barely
## 5979                                      barj
## 5980                                   barkley
## 5981                                    barley
## 5982                                      base
## 5983                                      base
## 5984                                  baseball
## 5985                                  baseball
## 5986                                     based
## 5987                                     based
## 5988                                     based
## 5989                                     based
## 5990                                     basic
## 5991                                     basic
## 5992                                     basic
## 5993                                     basic
## 5994                                     basic
## 5995                                     basic
## 5996                                     basic
## 5997                                     basic
## 5998                                     basic
## 5999                                     basic
## 6000                                 basically
## 6001                                 basically
## 6002                                 basically
## 6003                                 basically
## 6004                                 basically
## 6005                                     basis
## 6006                                basketball
## 6007                                basketball
## 6008                                basketball
## 6009                                basketball
## 6010                                basketball
## 6011                                basketball
## 6012                                basketball
## 6013                                basketball
## 6014                                     batch
## 6015                                   battery
## 6016                                   battery
## 6017                                   battery
## 6018                                   battery
## 6019                                   batting
## 6020                                       bay
## 6021                                       bay
## 6022                                  başlatma
## 6023                                  başlatma
## 6024                                       bbq
## 6025                                        bc
## 6026                                        bc
## 6027                                        bc
## 6028                                        bc
## 6029                                        bc
## 6030                                      bcus
## 6031                                     beach
## 6032                                     beach
## 6033                                     bears
## 6034                                     beast
## 6035                                    beasts
## 6036                                      beat
## 6037                                   beaters
## 6038                                   beaters
## 6039                                   beating
## 6040                                     beats
## 6041                                     beaut
## 6042                                  beauties
## 6043                                 beautiful
## 6044                                 beautiful
## 6045                                 beautiful
## 6046                                 beautiful
## 6047                                 beautiful
## 6048                                 beautiful
## 6049                                 beautiful
## 6050                                 beautiful
## 6051                                 beautiful
## 6052                                 beautiful
## 6053                                 beautiful
## 6054                                 bedazzled
## 6055                                   bedroom
## 6056                                       bee
## 6057                                     beefy
## 6058                                      beep
## 6059                                      beep
## 6060                                     beeps
## 6061                                     begin
## 6062                                  beginner
## 6063                                  beginner
## 6064                                  beginner
## 6065                                  beginner
## 6066                                  beginner
## 6067                                  beginner
## 6068                                  beginner
## 6069                                 beginners
## 6070                                 beginning
## 6071                                 beginning
## 6072                                    begins
## 6073                                    begins
## 6074                                    behave
## 6075                                     beige
## 6076                                    belief
## 6077                                   beliefs
## 6078                                       ben
## 6079                                       ben
## 6080                                       ben
## 6081                                     bench
## 6082                               bendiciones
## 6083                                   bendiga
## 6084                                   bending
## 6085                                beneficios
## 6086                                beneficios
## 6087                                  benefits
## 6088                                    benign
## 6089                                       bet
## 6090                                       bet
## 6091                                       bet
## 6092                                    betina
## 6093                                  betina’s
## 6094                                    betrue
## 6095                           betweenhandball
## 6096                                        bf
## 6097                                        bg
## 6098                                     bibby
## 6099                                     bibby
## 6100                                     bible
## 6101                                      bien
## 6102                                      bien
## 6103                                      bien
## 6104                                      bien
## 6105                                    bigger
## 6106                                    bigger
## 6107                                    bigger
## 6108                                    bigger
## 6109                                    bigger
## 6110                                   biggest
## 6111                                   biggest
## 6112                                   biggest
## 6113                                   biggest
## 6114                                   biggest
## 6115                                      bike
## 6116                                      bike
## 6117                                      bike
## 6118                                      bike
## 6119                                      bike
## 6120                                      bike
## 6121                                      bike
## 6122                                      bike
## 6123                                    biking
## 6124                                    biking
## 6125                                    biking
## 6126                                    biking
## 6127                                   billing
## 6128                                   billion
## 6129                                   billion
## 6130                                   billion
## 6131                                       bio
## 6132                                      bird
## 6133                                     birds
## 6134                                  birthday
## 6135                                  birthday
## 6136                                       bit
## 6137                                       bit
## 6138                                       bit
## 6139                                       bit
## 6140                                       bit
## 6141                                       bit
## 6142                                       bit
## 6143                                       bit
## 6144                                       bit
## 6145                                       bit
## 6146                                       bit
## 6147                                       bit
## 6148                                       bit
## 6149                                       bit
## 6150                                       bit
## 6151                                       bit
## 6152                                       bit
## 6153                                       bit
## 6154                                   bitcoin
## 6155                                      bite
## 6156                                    bitten
## 6157                                     black
## 6158                                     black
## 6159                                     black
## 6160                                     black
## 6161                                     black
## 6162                                     black
## 6163                                     black
## 6164                                     black
## 6165                                     black
## 6166                                     black
## 6167                                     black
## 6168                                     black
## 6169                                     black
## 6170                                     black
## 6171                                     black
## 6172                                     black
## 6173                                     black
## 6174                                     black
## 6175                                     black
## 6176                                     black
## 6177                                     black
## 6178                                     black
## 6179                                     black
## 6180                                     black
## 6181                                     black
## 6182                                     black
## 6183                                     black
## 6184                                     black
## 6185                                     black
## 6186                                     black
## 6187                                     black
## 6188                                     black
## 6189                                     black
## 6190                                     black
## 6191                                     black
## 6192                                     black
## 6193                                     black
## 6194                                     black
## 6195                                     black
## 6196                                     black
## 6197                                     black
## 6198                                     black
## 6199                                     black
## 6200                                     black
## 6201                                     black
## 6202                                    blacks
## 6203                                     blame
## 6204                                     blame
## 6205                                     bland
## 6206                                     blank
## 6207                                     blank
## 6208                                   blazers
## 6209                                    bleach
## 6210                                    bleach
## 6211                                    bleach
## 6212                                    bleach
## 6213                                    bleach
## 6214                                    bleach
## 6215                                    bleach
## 6216                                    bleach
## 6217                                     bleak
## 6218                                    blends
## 6219                                     bless
## 6220                                 blessings
## 6221                                     blind
## 6222                                     blind
## 6223                                  blinders
## 6224                                  blisters
## 6225                                       blk
## 6226                                       blk
## 6227                                     block
## 6228                                     blood
## 6229                                 bloodbath
## 6230                                 bloomberg
## 6231                                 bloomberg
## 6232                                      blow
## 6233                                  bludgeon
## 6234                                      blue
## 6235                                      blue
## 6236                                      blue
## 6237                                      blue
## 6238                                      blue
## 6239                                      blue
## 6240                                      blue
## 6241                                      blue
## 6242                                      blue
## 6243                                      blue
## 6244                                     blues
## 6245                                     blues
## 6246                                     bluey
## 6247                                        bo
## 6248                                     board
## 6249                                     board
## 6250                                     board
## 6251                                     board
## 6252                                      boat
## 6253                                       bob
## 6254                                    bodily
## 6255                                      body
## 6256                                      body
## 6257                                      body
## 6258                                      body
## 6259                                      body
## 6260                                      body
## 6261                                      body
## 6262                                      body
## 6263                                      body
## 6264                                      body
## 6265                                      body
## 6266                                      body
## 6267                                      body
## 6268                                      body
## 6269                                bodyweight
## 6270                                   bofadem
## 6271                                     bogus
## 6272                                     bogus
## 6273                                       boi
## 6274                                       boi
## 6275                                      bold
## 6276                                      bold
## 6277                                     bolso
## 6278                                     bolts
## 6279                                    bomber
## 6280                                    bomber
## 6281                                  boneless
## 6282                                     bones
## 6283                                     bonne
## 6284                                      book
## 6285                                bookmarked
## 6286                                bookmarked
## 6287                               bookmarking
## 6288                                     books
## 6289                                     books
## 6290                                      boom
## 6291                                      boom
## 6292                                     boost
## 6293                                     boost
## 6294                                     boost
## 6295                                     boost
## 6296                                     boost
## 6297                                     boost
## 6298                                     boost
## 6299                                    boosts
## 6300                                      boot
## 6301                                      boot
## 6302                                      boot
## 6303                                     boots
## 6304                                     boots
## 6305                                     boots
## 6306                                     boots
## 6307                                    boring
## 6308                                    boring
## 6309                                    boring
## 6310                                  borrando
## 6311                                    boston
## 6312                                    boston
## 6313                                    boston
## 6314                                    bother
## 6315                                      bots
## 6316                                      bots
## 6317                                    bottle
## 6318                                    bottom
## 6319                                    bottom
## 6320                                    bottom
## 6321                                    bottom
## 6322                                    bought
## 6323                                    bought
## 6324                                    bought
## 6325                                    bought
## 6326                                    bought
## 6327                                    bought
## 6328                                    bouncy
## 6329                                      bout
## 6330                                      bout
## 6331                                      bout
## 6332                                     bouta
## 6333                                       box
## 6334                                       box
## 6335                                       box
## 6336                                       box
## 6337                                       box
## 6338                                       box
## 6339                                       box
## 6340                                       box
## 6341                                       box
## 6342                                       box
## 6343                                       box
## 6344                                       box
## 6345                                       box
## 6346                                       box
## 6347                                     boxer
## 6348                                     boxer
## 6349                                     boxes
## 6350                                       boy
## 6351                                   boycott
## 6352                                   boycott
## 6353                                 boyfriend
## 6354                                      boys
## 6355                                      boys
## 6356                                      boys
## 6357                                       bra
## 6358                                     brain
## 6359                                     brain
## 6360                                     brain
## 6361                                     brain
## 6362                                     brand
## 6363                                     brand
## 6364                                     brand
## 6365                                     brand
## 6366                                     brand
## 6367                                     brand
## 6368                                     brand
## 6369                                     brand
## 6370                                     brand
## 6371                                     brand
## 6372                                     brand
## 6373                                     brand
## 6374                                     brand
## 6375                                     brand
## 6376                                     brand
## 6377                                     brand
## 6378                                     brand
## 6379                                   branded
## 6380                                  branding
## 6381                                    brands
## 6382                                    brands
## 6383                                    brands
## 6384                                    brands
## 6385                                    brands
## 6386                                    brands
## 6387                                    brands
## 6388                                    brands
## 6389                                    brands
## 6390                                    brands
## 6391                                     bravo
## 6392                                    brazil
## 6393                                 brazilian
## 6394                                     break
## 6395                                 breakdown
## 6396                                   breaker
## 6397                                   breaker
## 6398                                  breaking
## 6399                                  breaking
## 6400                                    breaks
## 6401                                    breaks
## 6402                                    breaks
## 6403                                 breathing
## 6404                                      bred
## 6405                                      bred
## 6406                                      bred
## 6407                                    breeze
## 6408                                      breh
## 6409                                      bret
## 6410                                    bright
## 6411                                    bright
## 6412                                    bright
## 6413                                    bright
## 6414                                    bright
## 6415                                 brilliant
## 6416                                 brilliant
## 6417                                     bring
## 6418                                     bring
## 6419                                    brings
## 6420                                    brings
## 6421                                     brisk
## 6422                                     brisk
## 6423                                     brisk
## 6424                                       bro
## 6425                                       bro
## 6426                                       bro
## 6427                                       bro
## 6428                                       bro
## 6429                                       bro
## 6430                                       bro
## 6431                                       bro
## 6432                                       bro
## 6433                                       bro
## 6434                                       bro
## 6435                                       bro
## 6436                                       bro
## 6437                                       bro
## 6438                                       bro
## 6439                                       bro
## 6440                                       bro
## 6441                                       bro
## 6442                                       bro
## 6443                                       bro
## 6444                                       bro
## 6445                                       bro
## 6446                                       bro
## 6447                                       bro
## 6448                                   broaden
## 6449                                   broader
## 6450                                  broadway
## 6451                                     broke
## 6452                                     broke
## 6453                                    broken
## 6454                                    broken
## 6455                                    broken
## 6456                                    broken
## 6457                                    broken
## 6458                                    brokie
## 6459                                    brooks
## 6460                                    brooks
## 6461                                    brooks
## 6462                                    broski
## 6463                                    broski
## 6464                                    broski
## 6465                                   broskie
## 6466                                    brotha
## 6467                                   brother
## 6468                                   brother
## 6469                                   brother
## 6470                                   brother
## 6471                                   brother
## 6472                                  brothers
## 6473                                     brown
## 6474                                     brown
## 6475                                     brown
## 6476                                     brown
## 6477                                    browne
## 6478                                    browse
## 6479                                   browser
## 6480                                  browsing
## 6481                                  browsing
## 6482                                  browsing
## 6483                                    brutal
## 6484                                      bruv
## 6485                                        bs
## 6486                                        bs
## 6487                                      btig
## 6488                                       btw
## 6489                                       btw
## 6490                                       btw
## 6491                                       btw
## 6492                                        bu
## 6493                                    bubble
## 6494                                    bubble
## 6495                                    bubble
## 6496                                    bubble
## 6497                                    bubble
## 6498                                    bubble
## 6499                                    bubble
## 6500                                   bubbles
## 6501                                   bubbles
## 6502                                      buck
## 6503                                    bucket
## 6504                                     bucks
## 6505                                     bucks
## 6506                                     bucks
## 6507                                     bucks
## 6508                                     bucks
## 6509                                       bud
## 6510                                       bud
## 6511                                    budget
## 6512                                    budget
## 6513                                      buen
## 6514                                     buena
## 6515                                     buena
## 6516                                     buena
## 6517                                     bueno
## 6518                                      buff
## 6519                                       bug
## 6520                                     buggy
## 6521                                     buggy
## 6522                                      bugs
## 6523                                      bugs
## 6524                                      bugs
## 6525                                      bugs
## 6526                                      bugs
## 6527                                      bugs
## 6528                                     build
## 6529                                     build
## 6530                                     build
## 6531                                     build
## 6532                                  building
## 6533                                     built
## 6534                                      bulk
## 6535                                     bulky
## 6536                                      bull
## 6537                                     bulls
## 6538                                    bummed
## 6539                                    bummer
## 6540                                    bummer
## 6541                                     bunch
## 6542                                     bunny
## 6543                                     bunny
## 6544                                burgundy's
## 6545                                burlington
## 6546                           burlingtonfinds
## 6547                                      burn
## 6548                                      burn
## 6549                                      burn
## 6550                                      burn
## 6551                                    burned
## 6552                                    burned
## 6553                                    burned
## 6554                                  business
## 6555                                  business
## 6556                                  business
## 6557                                  business
## 6558                                  business
## 6559                                  business
## 6560                                  business
## 6561                                  business
## 6562                                  business
## 6563                                      bust
## 6564                                      busy
## 6565                                      busy
## 6566                                      busy
## 6567                                    button
## 6568                                    button
## 6569                                    button
## 6570                                   buttons
## 6571                              buttonsnwere
## 6572                                       buy
## 6573                                       buy
## 6574                                       buy
## 6575                                       buy
## 6576                                       buy
## 6577                                       buy
## 6578                                       buy
## 6579                                       buy
## 6580                                       buy
## 6581                                       buy
## 6582                                       buy
## 6583                                       buy
## 6584                                       buy
## 6585                                       buy
## 6586                                       buy
## 6587                                       buy
## 6588                                       buy
## 6589                                       buy
## 6590                                       buy
## 6591                                       buy
## 6592                                       buy
## 6593                                       buy
## 6594                                   buyback
## 6595                                  buybacks
## 6596                                    buyers
## 6597                                    buying
## 6598                                    buying
## 6599                                    buying
## 6600                                    buying
## 6601                                    buying
## 6602                                       bye
## 6603                                       bye
## 6604                                      c1ty
## 6605                                   cabinet
## 6606                                     cache
## 6607                                       cad
## 6608                                       cad
## 6609                                      cada
## 6610                                      cage
## 6611                                      cake
## 6612                                 calculate
## 6613                                calculated
## 6614                               calculation
## 6615                                 caldrones
## 6616                                  calendar
## 6617                                california
## 6618                               calisthenic
## 6619                              calisthenics
## 6620                                      call
## 6621                                      call
## 6622                                      call
## 6623                                      call
## 6624                                    called
## 6625                                    called
## 6626                                    called
## 6627                                    called
## 6628                                    called
## 6629                                    called
## 6630                                    called
## 6631                                    called
## 6632                                   calling
## 6633                                     calls
## 6634                                     calls
## 6635                                      calm
## 6636                                      calm
## 6637                                   calming
## 6638                                   calorie
## 6639                                   calorie
## 6640                                   calorie
## 6641                                   calorie
## 6642                                   calorie
## 6643                                  calories
## 6644                                  calories
## 6645                                  calories
## 6646                                  calories
## 6647                                  calories
## 6648                                  calories
## 6649                                  calories
## 6650                                  calories
## 6651                                    calvin
## 6652                                    calvin
## 6653                                    cambié
## 6654                                    cambió
## 6655                                     camel
## 6656                                    camera
## 6657                                    camera
## 6658                                 caminamos
## 6659                                 caminando
## 6660                                      camo
## 6661                                      camp
## 6662                                  campaign
## 6663                                  campaign
## 6664                                 campaigns
## 6665                                    campus
## 6666                                    campus
## 6667                                    campus
## 6668                                    campus
## 6669                                    campus
## 6670                                    campus
## 6671                                    canada
## 6672                                    canada
## 6673                                    canada
## 6674                                  canadian
## 6675                                  canadian
## 6676                                     canal
## 6677                                    cancel
## 6678                                    cancer
## 6679                                    cancer
## 6680                                     candy
## 6681                                     canes
## 6682                                     can’t
## 6683                                     can’t
## 6684                                     can’t
## 6685                                     can’t
## 6686                                     can’t
## 6687                                     can’t
## 6688                                     can’t
## 6689                                     can’t
## 6690                                     can’t
## 6691                                     can’t
## 6692                                     can’t
## 6693                                     can’t
## 6694                                     can’t
## 6695                                     can’t
## 6696                                     can’t
## 6697                                     can’t
## 6698                                     can’t
## 6699                                     can’t
## 6700                                     can’t
## 6701                                     can’t
## 6702                                     can’t
## 6703                                     can’t
## 6704                                     can’t
## 6705                                     can’t
## 6706                                     can’t
## 6707                                     can’t
## 6708                                     can’t
## 6709                                     can’t
## 6710                                     can’t
## 6711                                       cap
## 6712                                       cap
## 6713                                       cap
## 6714                                capitalism
## 6715                                   capture
## 6716                                   capture
## 6717                                       car
## 6718                                    carbon
## 6719                                    carbon
## 6720                                    carbon
## 6721                                      card
## 6722                                 cardboard
## 6723                                 cardboard
## 6724                                 cardboard
## 6725                                    cardio
## 6726                                    cardio
## 6727                                    cardio
## 6728                                    cardio
## 6729                                      care
## 6730                                      care
## 6731                                      care
## 6732                                     cared
## 6733                                     cargo
## 6734                                    cargos
## 6735                                    carpet
## 6736                                  carpeted
## 6737                                   carried
## 6738                                      cash
## 6739                                      cash
## 6740                                    casual
## 6741                                    casual
## 6742                                    casual
## 6743                                    casual
## 6744                                  casually
## 6745                                       cat
## 6746                                       cat
## 6747                                  catalogs
## 6748                                categories
## 6749                            categorization
## 6750                                  category
## 6751                                    causas
## 6752                                      cave
## 6753                                      cave
## 6754                                    caveat
## 6755                                        cb
## 6756                                       cbf
## 6757                                       cbr
## 6758                                        ce
## 6759                                     cedes
## 6760                                   ceiling
## 6761                               celebratory
## 6762                                      cell
## 6763                                      cell
## 6764                                      cell
## 6765                                  cellular
## 6766                                  cellular
## 6767                                    cement
## 6768                                    cement
## 6769                                   cements
## 6770                                      cena
## 6771                                      cent
## 6772                                    center
## 6773                                     cento
## 6774                                   century
## 6775                                       ceo
## 6776                                       ceo
## 6777                                       ceo
## 6778                                       ceo
## 6779                                       ceo
## 6780                                       ceo
## 6781                                       ceo
## 6782                                       ceo
## 6783                                       ceo
## 6784                                       ceo
## 6785                                       ceo
## 6786                                       ceo
## 6787                                       ceo
## 6788                                       ceo
## 6789                                       ceo
## 6790                                   ceramic
## 6791                                       ces
## 6792                                        cf
## 6793                        cgtqdfzemzlihopw35
## 6794                                     chain
## 6795                                     chain
## 6796                                     chain
## 6797                                 challenge
## 6798                                 challenge
## 6799                                 challenge
## 6800                                 challenge
## 6801                                 challenge
## 6802                                 challenge
## 6803                                challenges
## 6804                                challenges
## 6805                                challenges
## 6806                                challenges
## 6807                                challenges
## 6808                                challenges
## 6809                               challenging
## 6810                               challenging
## 6811                               challenging
## 6812                               challenging
## 6813                                 chambered
## 6814                                    champs
## 6815                                    chance
## 6816                                    chance
## 6817                                    chance
## 6818                                    change
## 6819                                    change
## 6820                                    change
## 6821                                    change
## 6822                                    change
## 6823                                    change
## 6824                                   changed
## 6825                                   changed
## 6826                                changement
## 6827                                   changer
## 6828                                   changer
## 6829                                  changing
## 6830                                  changing
## 6831                                  changing
## 6832                                  changing
## 6833                                  changing
## 6834                                  changing
## 6835                                   channel
## 6836                                  channels
## 6837                                  charcoal
## 6838                                    charge
## 6839                                   charged
## 6840                                   charged
## 6841                                   charged
## 6842                                   charges
## 6843                                  charging
## 6844                                  charging
## 6845                                   charity
## 6846                                   charles
## 6847                                     charm
## 6848                                     charm
## 6849                                   charmin
## 6850                                    chased
## 6851                                      chat
## 6852                                     chats
## 6853                                 chatshirt
## 6854                                   chausse
## 6855                                 chaussure
## 6856                                     cheap
## 6857                                     cheap
## 6858                                     cheap
## 6859                                     cheap
## 6860                                     cheap
## 6861                                     cheap
## 6862                                     cheap
## 6863                                     cheap
## 6864                                     cheap
## 6865                                     cheap
## 6866                                     cheap
## 6867                                     cheap
## 6868                                     cheap
## 6869                                     cheap
## 6870                                     cheap
## 6871                                     cheap
## 6872                                     cheap
## 6873                                   cheaper
## 6874                                     check
## 6875                                     check
## 6876                                     check
## 6877                                     check
## 6878                                     check
## 6879                                     check
## 6880                                     check
## 6881                                     check
## 6882                                     check
## 6883                                     check
## 6884                                     check
## 6885                                   checked
## 6886                                   checked
## 6887                                   checked
## 6888                                  checking
## 6889                                  checking
## 6890                                    checks
## 6891                                    checks
## 6892                                  cheering
## 6893                                    cheers
## 6894                                      chef
## 6895                                     cheio
## 6896                                cherrywood
## 6897                                  cheshire
## 6898                                     chest
## 6899                                     chest
## 6900                                    chevys
## 6901                                   chicago
## 6902                                   chicago
## 6903                                   chicago
## 6904                                   chicago
## 6905                                   chicago
## 6906                                   chicago
## 6907                                  chicagos
## 6908                                  chicagos
## 6909                                  chilaw52
## 6910                                  childish
## 6911                                    chilly
## 6912                                     china
## 6913                                     china
## 6914                                     china
## 6915                                     china
## 6916                                     china
## 6917                                     china
## 6918                                     china
## 6919                                     china
## 6920                                     china
## 6921                                     china
## 6922                                   chinese
## 6923                                   chinese
## 6924                                  chisholm
## 6925                                   choices
## 6926                                   choices
## 6927                                   choices
## 6928                                     choir
## 6929                                    choose
## 6930                                    choose
## 6931                                    choose
## 6932                                    choose
## 6933                                    choose
## 6934                                  chopping
## 6935                                     chose
## 6936                                    chosen
## 6937                                     chris
## 6938                                     chris
## 6939                                 christmas
## 6940                                 christmas
## 6941                                 christmas
## 6942                                    chrome
## 6943                                     chuck
## 6944                                    chunky
## 6945                                    church
## 6946                                    church
## 6947                                     cites
## 6948                                    citrus
## 6949                                      city
## 6950                                      city
## 6951                                      city
## 6952                                      city
## 6953                                      city
## 6954                                   ciutacu
## 6955                                     civic
## 6956                                     civil
## 6957                                        ck
## 6958                                     cking
## 6959                                   claimed
## 6960                                    claims
## 6961                                 clamshell
## 6962                                     class
## 6963                                     class
## 6964                                     class
## 6965                                     class
## 6966                                     class
## 6967                                     class
## 6968                                     class
## 6969                                   classes
## 6970                                   classic
## 6971                                   classic
## 6972                                   classic
## 6973                                   classic
## 6974                                   classic
## 6975                                   classic
## 6976                                   classic
## 6977                                   classic
## 6978                                   classic
## 6979                                   classic
## 6980                                   classic
## 6981                                   classic
## 6982                                   classic
## 6983                                    classy
## 6984                                    classy
## 6985                                     clean
## 6986                                     clean
## 6987                                     clean
## 6988                                     clean
## 6989                                     clean
## 6990                                     clean
## 6991                                     clean
## 6992                                     clean
## 6993                                     clean
## 6994                                     clean
## 6995                                     clean
## 6996                                     clean
## 6997                                     clean
## 6998                                     clean
## 6999                                     clean
## 7000                                     clean
## 7001                                 cleansing
## 7002                                 clearance
## 7003                                 clearance
## 7004                                   cleared
## 7005                                  clearing
## 7006                                     click
## 7007                                     click
## 7008                                     click
## 7009                                  clicking
## 7010                                   clifton
## 7011                                 climacool
## 7012                                  climbing
## 7013                                     clips
## 7014                                 clockwise
## 7015                                     close
## 7016                                     close
## 7017                                     close
## 7018                                     close
## 7019                                    closed
## 7020                                    closer
## 7021                                    closes
## 7022                                    closes
## 7023                                    closes
## 7024                                   closest
## 7025                                   closest
## 7026                                   closing
## 7027                                  closures
## 7028                                  closures
## 7029                                     cloth
## 7030                                   clothes
## 7031                                   clothes
## 7032                                   clothes
## 7033                                   clothes
## 7034                                   clothes
## 7035                                   clothes
## 7036                                  clothing
## 7037                                  clothing
## 7038                                  clothing
## 7039                                  clothing
## 7040                                  clothing
## 7041                                  clothing
## 7042                                  clothing
## 7043                                     cloud
## 7044                                 cloudflow
## 7045                                 cloudflow
## 7046                                     clown
## 7047                                     clown
## 7048                                      club
## 7049                                      club
## 7050                                      club
## 7051                                      club
## 7052                                      club
## 7053                                      club
## 7054                                      club
## 7055                                      club
## 7056                                      club
## 7057                                      clue
## 7058                                    clumsy
## 7059                                    clunky
## 7060                                        cm
## 7061                                      cnbc
## 7062                                     coach
## 7063                                     coach
## 7064                                     coach
## 7065                                     coach
## 7066                                     coach
## 7067                                   coaches
## 7068                                   coaches
## 7069                                   coaches
## 7070                                   coaches
## 7071                                   coaches
## 7072                                  coaching
## 7073                                  coaching
## 7074                                      coca
## 7075                                cocourways
## 7076                                      code
## 7077                                      code
## 7078                                      code
## 7079                                      code
## 7080                                      code
## 7081                                      code
## 7082                                      code
## 7083                                     codes
## 7084                                    coffee
## 7085                                      cola
## 7086                                      cold
## 7087                                      cold
## 7088                                      cold
## 7089                                      cold
## 7090                                      cold
## 7091                                    colder
## 7092                                   coldest
## 7093                                      cole
## 7094                                     colin
## 7095                                    collab
## 7096                                    collab
## 7097                                    collab
## 7098                            collaborations
## 7099                                   collabs
## 7100                                   collage
## 7101                                 collapses
## 7102                                   collect
## 7103                                   collect
## 7104                                   collect
## 7105                                 collected
## 7106                                collecting
## 7107                                collection
## 7108                                collection
## 7109                                collection
## 7110                                collection
## 7111                                collection
## 7112                                 collector
## 7113                                     color
## 7114                                     color
## 7115                                     color
## 7116                                     color
## 7117                                     color
## 7118                                     color
## 7119                                     color
## 7120                                     color
## 7121                                     color
## 7122                                     color
## 7123                                     color
## 7124                                     color
## 7125                                     color
## 7126                                     color
## 7127                                     color
## 7128                                     color
## 7129                                     color
## 7130                                     color
## 7131                                     color
## 7132                                   colored
## 7133                                    colors
## 7134                                    colors
## 7135                                    colors
## 7136                                    colors
## 7137                                    colors
## 7138                                    colors
## 7139                                    colors
## 7140                                    colors
## 7141                                    colors
## 7142                                  colorway
## 7143                                  colorway
## 7144                                  colorway
## 7145                                  colorway
## 7146                                  colorway
## 7147                                  colorway
## 7148                                  colorway
## 7149                                  colorway
## 7150                                  colorway
## 7151                                  colorway
## 7152                                  colorway
## 7153                                  colorway
## 7154                                 colorways
## 7155                                 colorways
## 7156                                 colorways
## 7157                                 colorways
## 7158                                    colour
## 7159                                    colour
## 7160                                   colours
## 7161                                  columbia
## 7162                                    combat
## 7163                                    combat
## 7164                               combination
## 7165                                   combine
## 7166                                  comeback
## 7167                                   comeing
## 7168                                  comenzar
## 7169                                  comenzar
## 7170                                     comet
## 7171                                    comets
## 7172                                 começando
## 7173                                     comfi
## 7174                                  comfiest
## 7175                                  comfiest
## 7176                                  comfiest
## 7177                             comfiest.been
## 7178                                   comfort
## 7179                                   comfort
## 7180                                   comfort
## 7181                                   comfort
## 7182                                   comfort
## 7183                                   comfort
## 7184                                   comfort
## 7185                                   comfort
## 7186                                   comfort
## 7187                                   comfort
## 7188                                   comfort
## 7189                               comfortable
## 7190                               comfortable
## 7191                               comfortable
## 7192                               comfortable
## 7193                               comfortable
## 7194                               comfortable
## 7195                               comfortable
## 7196                               comfortable
## 7197                               comfortable
## 7198                               comfortable
## 7199                               comfortable
## 7200                               comfortable
## 7201                               comfortable
## 7202                               comfortable
## 7203                               comfortable
## 7204                               comfortable
## 7205                               comfortable
## 7206                               comfortable
## 7207                               comfortable
## 7208                               comfortable
## 7209                               comfortable
## 7210                               comfortable
## 7211                               comfortable
## 7212                               comfortable
## 7213                               comfortable
## 7214                               comfortable
## 7215                               comfortable
## 7216                               comfortable
## 7217                               comfortable
## 7218                               comfortable
## 7219                               comfortable
## 7220                               comfortable
## 7221                               comfortable
## 7222                               comfortable
## 7223                               comfortable
## 7224                               comfortable
## 7225                               comfortable
## 7226                               comfortable
## 7227                               comfortable
## 7228                               comfortable
## 7229                               comfortable
## 7230                               comfortable
## 7231                                     comfy
## 7232                                     comfy
## 7233                                     comfy
## 7234                                     comfy
## 7235                                     comfy
## 7236                                     comfy
## 7237                                     comfy
## 7238                                     comfy
## 7239                                     comfy
## 7240                                     comfy
## 7241                                     comfy
## 7242                                     comfy
## 7243                                     comfy
## 7244                                     comfy
## 7245                                     comfy
## 7246                                  comienzo
## 7247                                    coming
## 7248                                    coming
## 7249                                    coming
## 7250                                    coming
## 7251                                   command
## 7252                                   command
## 7253                                   comment
## 7254                                   comment
## 7255                                   comment
## 7256                                 commented
## 7257                                  comments
## 7258                                  comments
## 7259                                  comments
## 7260                                  comments
## 7261                                  commerce
## 7262                                  commerce
## 7263                                  commerce
## 7264                                commission
## 7265                                    commit
## 7266                                    commit
## 7267                                    common
## 7268                                  communal
## 7269                                 community
## 7270                                 community
## 7271                                 community
## 7272                                 community
## 7273                                 community
## 7274                                 community
## 7275                                 companies
## 7276                                 companies
## 7277                                 companion
## 7278                                 companion
## 7279                                 companion
## 7280                                 companion
## 7281                                   company
## 7282                                   company
## 7283                                   company
## 7284                                 company's
## 7285                               comparaison
## 7286                                comparando
## 7287                                   compare
## 7288                                   compare
## 7289                                  compared
## 7290                                  compares
## 7291                               comparisons
## 7292                                 comparten
## 7293                                compatible
## 7294                                 compañero
## 7295                               competition
## 7296                               competition
## 7297                               competitive
## 7298                               competitive
## 7299                               competitors
## 7300                               competitors
## 7301                                  complain
## 7302                               complaining
## 7303                                 complains
## 7304                                complaints
## 7305                                complaints
## 7306                                complaints
## 7307                              complemented
## 7308                                  completa
## 7309                                  completa
## 7310                                  complete
## 7311                                  complete
## 7312                                  complete
## 7313                                  complete
## 7314                                  complete
## 7315                                completely
## 7316                                completely
## 7317                                completely
## 7318                                completely
## 7319                                completely
## 7320                                completely
## 7321                                completely
## 7322                                completely
## 7323                                completely
## 7324                                completely
## 7325                                completely
## 7326                                completely
## 7327                                completely
## 7328                                completely
## 7329                                completely
## 7330                                completion
## 7331                                   complex
## 7332                           complexsneakers
## 7333                                complicate
## 7334                              complimented
## 7335                                 composite
## 7336                                 composite
## 7337                                 composite
## 7338                                  compound
## 7339                                  compound
## 7340                             comprehensive
## 7341                             comprehensive
## 7342                             comprehensive
## 7343                             comprehensive
## 7344                             comprehensive
## 7345                             comprehensive
## 7346                             comprehensive
## 7347                                   comprei
## 7348                               compression
## 7349                               compression
## 7350                               compression
## 7351                               compression
## 7352                               compression
## 7353                                    compte
## 7354                                   compute
## 7355                                  computes
## 7356                                       con
## 7357                                       con
## 7358                                       con
## 7359                                       con
## 7360                                       con
## 7361                                       con
## 7362                                       con
## 7363                                  concerns
## 7364                                  concrete
## 7365                                   condado
## 7366                                 condition
## 7367                                 condition
## 7368                                conectarse
## 7369                                confession
## 7370                                confidence
## 7371                                confidence
## 7372                                configurar
## 7373                                   confirm
## 7374                                 confirmed
## 7375                               confortable
## 7376                                 confusing
## 7377                                 confusing
## 7378                                  congrats
## 7379                                  congrats
## 7380                                  congrats
## 7381                                  congrats
## 7382                           congratulations
## 7383                           congratulations
## 7384                           congrutulations
## 7385                                   conhece
## 7386                                   conmigo
## 7387                                   connect
## 7388                                   connect
## 7389                                 connected
## 7390                                connection
## 7391                                connection
## 7392                                connection
## 7393                              connectivity
## 7394                                  connects
## 7395                                   conocen
## 7396                                 conscious
## 7397                                  consejos
## 7398                              conservative
## 7399                              considerably
## 7400                             consideration
## 7401                                   consign
## 7402                               consistency
## 7403                                consistent
## 7404                                consistent
## 7405                                consistent
## 7406                              consistently
## 7407                              consistently
## 7408                              consistently
## 7409                              consistently
## 7410                                  constant
## 7411                                  constant
## 7412                                  constant
## 7413                                  constant
## 7414                                  constant
## 7415                                  constant
## 7416                                  constant
## 7417                                constantly
## 7418                                constantly
## 7419                                constantly
## 7420                                constantly
## 7421                                constantly
## 7422                                constantly
## 7423                                constantly
## 7424                                constantly
## 7425                                constantly
## 7426                              construction
## 7427                                  consumer
## 7428                                  consumer
## 7429                                  consumer
## 7430                                  consumer
## 7431                                  consumer
## 7432                                  consumer
## 7433                                  consumer
## 7434                                  consumer
## 7435                                  consumer
## 7436                                  consumer
## 7437                                 consumers
## 7438                                 consumers
## 7439                                 consumers
## 7440                                 consumers
## 7441                                 consumers
## 7442                                   contact
## 7443                                contacting
## 7444                                   content
## 7445                                   content
## 7446                                   content
## 7447                                   content
## 7448                                   content
## 7449                                   content
## 7450                                   content
## 7451                                   content
## 7452                                  contents
## 7453                               continually
## 7454                                 continuar
## 7455                                  continue
## 7456                                  continue
## 7457                                  continue
## 7458                                  continue
## 7459                                 continued
## 7460                                 continuer
## 7461                                continuous
## 7462                              continuously
## 7463                                  contrast
## 7464                                  contrast
## 7465                               contributed
## 7466                                   control
## 7467                                   control
## 7468                                 controlar
## 7469                                  controls
## 7470                             controversial
## 7471                                convenient
## 7472                                convenient
## 7473                                convention
## 7474                              conventional
## 7475                                  converse
## 7476                                 converted
## 7477                                convienent
## 7478                                       coo
## 7479                                      cook
## 7480                                    cooked
## 7481                                    cooked
## 7482                                    cooked
## 7483                                   cookies
## 7484                                   cookies
## 7485                                      cool
## 7486                                      cool
## 7487                                      cool
## 7488                                      cool
## 7489                                      cool
## 7490                                      cool
## 7491                                      cool
## 7492                                      cool
## 7493                                      cool
## 7494                                      cool
## 7495                                      cool
## 7496                                      cool
## 7497                                      cool
## 7498                                      cool
## 7499                                      cool
## 7500                                      cool
## 7501                                      cool
## 7502                                      cool
## 7503                                      cool
## 7504                                      cool
## 7505                                    cooler
## 7506                                    cooler
## 7507                                    cooler
## 7508                                   coolest
## 7509                                     coord
## 7510                                       cop
## 7511                                       cop
## 7512                                       cop
## 7513                                       cop
## 7514                                       cop
## 7515                                       cop
## 7516                                       cop
## 7517                                       cop
## 7518                                       cop
## 7519                                       cop
## 7520                                       cop
## 7521                                       cop
## 7522                                    copped
## 7523                                    copped
## 7524                                      core
## 7525                                      core
## 7526                                      core
## 7527                                      core
## 7528                                    corner
## 7529                                    corney
## 7530                               coronavirus
## 7531                                 corporate
## 7532                                 corporate
## 7533                               corporation
## 7534                                   correct
## 7535                                   correct
## 7536                                   correct
## 7537                                   correct
## 7538                                   correct
## 7539                                   correct
## 7540                                   correct
## 7541                                correcting
## 7542                                 correctly
## 7543                                 correctly
## 7544                                 correctly
## 7545                                 correctly
## 7546                                  corredor
## 7547                                    correo
## 7548                                   correos
## 7549                                    correr
## 7550                                    correr
## 7551                                   corrida
## 7552                                    cortez
## 7553                                    cortez
## 7554                                      cost
## 7555                                      cost
## 7556                                      cost
## 7557                                      cost
## 7558                                     costa
## 7559                                    costed
## 7560                                     costs
## 7561                                     costs
## 7562                                    cotton
## 7563                                    cotton
## 7564                                    cotton
## 7565                                    cotton
## 7566                                   couldnt
## 7567                                  couldn’t
## 7568                                  couldn’t
## 7569                                  couldn’t
## 7570                                  couldn’t
## 7571                                   council
## 7572                                     count
## 7573                                     count
## 7574                                     count
## 7575                                     count
## 7576                                     count
## 7577                                   counted
## 7578                                   counter
## 7579                          counterintuitive
## 7580                                  counting
## 7581                                  counting
## 7582                                  counting
## 7583                                 countless
## 7584                                 countless
## 7585                                   country
## 7586                                   country
## 7587                                   country
## 7588                                   country
## 7589                                      coup
## 7590                                    couple
## 7591                                    couple
## 7592                                    couple
## 7593                                    couple
## 7594                                    couple
## 7595                                    couple
## 7596                                    couple
## 7597                                    couple
## 7598                                    coupon
## 7599                                   coureur
## 7600                                     court
## 7601                                     court
## 7602                                     court
## 7603                                    cousin
## 7604                                    cousin
## 7605                                    cousin
## 7606                                     cover
## 7607                                     cover
## 7608                                     cover
## 7609                                   covered
## 7610                                   covered
## 7611                                     covid
## 7612                                     covid
## 7613                                     covid
## 7614                                     covid
## 7615                                      cozy
## 7616                                   crafted
## 7617                                      crap
## 7618                                      crap
## 7619                                      crap
## 7620                                    crappy
## 7621                                    crappy
## 7622                                     crash
## 7623                                     crash
## 7624                                     crash
## 7625                                     crash
## 7626                                     crash
## 7627                                     crash
## 7628                                   crashed
## 7629                                   crashes
## 7630                                   crashes
## 7631                                   crashes
## 7632                                   crashes
## 7633                                  crashing
## 7634                                  crashing
## 7635                                  craziest
## 7636                                     crazy
## 7637                                     crazy
## 7638                                     crazy
## 7639                                     crazy
## 7640                                     crazy
## 7641                                     crazy
## 7642                                     crazy
## 7643                                     crazy
## 7644                                     crazy
## 7645                                     crazy
## 7646                                     crazy
## 7647                                     cream
## 7648                                     cream
## 7649                                     cream
## 7650                                     crear
## 7651                                    crease
## 7652                                    crease
## 7653                                  creasing
## 7654                                    create
## 7655                                   creates
## 7656                                  creating
## 7657                                  creating
## 7658                                  creating
## 7659                                  creating
## 7660                       creatingwithdaniela
## 7661                                  creative
## 7662                                    credit
## 7663                                    creepy
## 7664                                     crepe
## 7665                                      crew
## 7666                                      crew
## 7667                             crewhoodiemen
## 7668                                  criminal
## 7669                                   crimson
## 7670                                     crisp
## 7671                                    crispy
## 7672                                    crispy
## 7673                                    crispy
## 7674                                 cristiano
## 7675                                 cristiano
## 7676                                     crocs
## 7677                                     crocs
## 7678                                     crocs
## 7679                                     crocs
## 7680                                      crop
## 7681                                      crop
## 7682                                      crop
## 7683                                      crop
## 7684                                   cropped
## 7685                                     cross
## 7686                                     cross
## 7687                                  crossfit
## 7688                                    crotch
## 7689                                     crowd
## 7690                                     crown
## 7691                                crustacean
## 7692                                      crvg
## 7693                                       cry
## 7694                                    crying
## 7695                                   crónico
## 7696                                 cualquier
## 7697                                    cuando
## 7698                                    cuando
## 7699                                    cuenta
## 7700                                    cuerpo
## 7701                                       cul
## 7702                                   cultish
## 7703                                   culture
## 7704                                   culture
## 7705                                   cumplir
## 7706                                       cup
## 7707                                       cup
## 7708                                       cup
## 7709                                       cup
## 7710                                       cup
## 7711                                       cup
## 7712                                   curated
## 7713                                   current
## 7714                                   current
## 7715                                   current
## 7716                                   current
## 7717                                   current
## 7718                                   current
## 7719                                   current
## 7720                                   current
## 7721                                   current
## 7722                                   current
## 7723                                   current
## 7724                                   current
## 7725                                   current
## 7726                                   current
## 7727                                   current
## 7728                                   current
## 7729                                     curry
## 7730                                     curry
## 7731                                     curry
## 7732                                     curry
## 7733                                     curry
## 7734                                     curry
## 7735                                     curry
## 7736                                    currys
## 7737                                   cushion
## 7738                                   cushion
## 7739                                   cushion
## 7740                                cushioning
## 7741                                cushioning
## 7742                                cushioning
## 7743                                   cushlon
## 7744                                    custom
## 7745                                    custom
## 7746                                    custom
## 7747                                    custom
## 7748                                    custom
## 7749                                    custom
## 7750                                  customer
## 7751                                  customer
## 7752                              customizable
## 7753                             customization
## 7754                                   customs
## 7755                                       cut
## 7756                                       cut
## 7757                                      cute
## 7758                                      cuts
## 7759                                      cuts
## 7760                                      cuts
## 7761                                      cuts
## 7762                                   cutting
## 7763                                   cutting
## 7764                                       cuz
## 7765                                       cuz
## 7766                                      cuál
## 7767                                        cw
## 7768                                      cxt1
## 7769                                 cyberpunk
## 7770                                    cycled
## 7771                                   cycling
## 7772                                   cycling
## 7773                                   cycling
## 7774                                   cycling
## 7775                                     c’est
## 7776                                     c’est
## 7777                                        d1
## 7778                                        d3
## 7779                                        da
## 7780                                       dad
## 7781                                       dad
## 7782                                       dad
## 7783                                       dad
## 7784                                     dafaq
## 7785                                     daily
## 7786                                     daily
## 7787                                     daily
## 7788                                     daily
## 7789                                     daily
## 7790                                     daily
## 7791                                     daily
## 7792                                     daily
## 7793                                     daily
## 7794                                     daily
## 7795                                     daily
## 7796                                     daily
## 7797                                     daily
## 7798                                     daily
## 7799                                     daily
## 7800                                     daily
## 7801                                     daily
## 7802                                     daily
## 7803                                     daily
## 7804                                     daily
## 7805                                     daily
## 7806                                     daily
## 7807                                     daily
## 7808                                    dailys
## 7809                                    damage
## 7810                                      damn
## 7811                                      damn
## 7812                                      damn
## 7813                                      damn
## 7814                                      damn
## 7815                                      damn
## 7816                                      damn
## 7817                                      damn
## 7818                                      damn
## 7819                                      damn
## 7820                                      damn
## 7821                                     damnn
## 7822                                       dan
## 7823                                     dance
## 7824                                     dance
## 7825                                      dang
## 7826                                      dark
## 7827                                      dark
## 7828                                      dark
## 7829                                      dark
## 7830                                      dark
## 7831                                      dark
## 7832                                      dark
## 7833                                    darker
## 7834                                    darker
## 7835                                      darn
## 7836                                     daros
## 7837                                    darryn
## 7838                                       das
## 7839                                      data
## 7840                                      data
## 7841                                      data
## 7842                                      data
## 7843                                      data
## 7844                                      data
## 7845                                      data
## 7846                                      data
## 7847                                      data
## 7848                                      data
## 7849                                      data
## 7850                                      data
## 7851                                      data
## 7852                                      data
## 7853                                      data
## 7854                                      data
## 7855                                      data
## 7856                                      data
## 7857                                      data
## 7858                                      data
## 7859                                      data
## 7860                                      data
## 7861                                      date
## 7862                                      date
## 7863                                      date
## 7864                                      date
## 7865                                      date
## 7866                                      date
## 7867                                      date
## 7868                                     dates
## 7869                                     datos
## 7870                                     datos
## 7871                                  daughter
## 7872                                 daughters
## 7873                                      dawg
## 7874                                       day
## 7875                                       day
## 7876                                       day
## 7877                                       day
## 7878                                       day
## 7879                                       day
## 7880                                       day
## 7881                                       day
## 7882                                       day
## 7883                                       day
## 7884                                       day
## 7885                                       day
## 7886                                       day
## 7887                                       day
## 7888                                       day
## 7889                                       day
## 7890                                       day
## 7891                                       day
## 7892                                       day
## 7893                                       day
## 7894                                       day
## 7895                                       day
## 7896                                       day
## 7897                                       day
## 7898                                       day
## 7899                                       day
## 7900                                       day
## 7901                                       day
## 7902                                       day
## 7903                                       day
## 7904                                       day
## 7905                                       day
## 7906                                       day
## 7907                                       day
## 7908                                       day
## 7909                                       day
## 7910                                       day
## 7911                                       day
## 7912                                       day
## 7913                                       day
## 7914                                       day
## 7915                                       day
## 7916                                       day
## 7917                                       day
## 7918                                      days
## 7919                                      days
## 7920                                      days
## 7921                                      days
## 7922                                      days
## 7923                                      days
## 7924                                      days
## 7925                                      days
## 7926                                      days
## 7927                                      days
## 7928                                      days
## 7929                                      days
## 7930                                dayummmmmm
## 7931                                        db
## 7932                                        de
## 7933                                        de
## 7934                                        de
## 7935                                        de
## 7936                                        de
## 7937                                        de
## 7938                                        de
## 7939                                        de
## 7940                                        de
## 7941                                        de
## 7942                                        de
## 7943                                        de
## 7944                                        de
## 7945                                        de
## 7946                                        de
## 7947                                        de
## 7948                                        de
## 7949                                        de
## 7950                                        de
## 7951                                        de
## 7952                                        de
## 7953                                        de
## 7954                                        de
## 7955                                        de
## 7956                                        de
## 7957                                        de
## 7958                                        de
## 7959                                        de
## 7960                                        de
## 7961                                        de
## 7962                                        de
## 7963                                        de
## 7964                                        de
## 7965                                        de
## 7966                                      dead
## 7967                                      dead
## 7968                                      dead
## 7969                                      dead
## 7970                                      dead
## 7971                                      dead
## 7972                                      dead
## 7973                                      dead
## 7974                                   deadass
## 7975                                 deadlifts
## 7976                                      deal
## 7977                                      deal
## 7978                                      deal
## 7979                                      deal
## 7980                                      deal
## 7981                                      deal
## 7982                                      deal
## 7983                               dealbreaker
## 7984                                    dealer
## 7985                                      dear
## 7986                                      dear
## 7987                                      dear
## 7988                                    debate
## 7989                                  debating
## 7990                                  debossed
## 7991                                  debossed
## 7992                                       dec
## 7993                                    decade
## 7994                                    decade
## 7995                                   decades
## 7996                                  december
## 7997                                  december
## 7998                                  december
## 7999                                  december
## 8000                                  december
## 8001                                  december
## 8002                                    decent
## 8003                                    decent
## 8004                                    decent
## 8005                                    decent
## 8006                                    decent
## 8007                                    decent
## 8008                                  decently
## 8009                               deceptively
## 8010                                   decided
## 8011                                   decided
## 8012                                  decision
## 8013                                  decision
## 8014                                  declares
## 8015                                   decline
## 8016                                  declined
## 8017                                  declines
## 8018                                  declines
## 8019                                  declines
## 8020                                 declining
## 8021                             deconstructed
## 8022                                 dedicated
## 8023                                       dee
## 8024                                      deep
## 8025                                      deep
## 8026                                      deep
## 8027                                    deeply
## 8028                                    deeply
## 8029                                    deeply
## 8030                                       def
## 8031                                       def
## 8032                                       def
## 8033                                       def
## 8034                                       def
## 8035                                   default
## 8036                                   default
## 8037                                 defective
## 8038                                 defective
## 8039                                 defective
## 8040                                   defecto
## 8041                                  deferred
## 8042                                       deg
## 8043                                   degrees
## 8044                                   degrees
## 8045                                   degrees
## 8046                                       dei
## 8047                                      deja
## 8048                                      deja
## 8049                                      deja
## 8050                                      deja
## 8051                                      deja
## 8052                                    delete
## 8053                                   deleted
## 8054                                   deleted
## 8055                                   deleted
## 8056                                   deleted
## 8057                                   deleted
## 8058                                   deleted
## 8059                                   deleted
## 8060                                   deleted
## 8061                                   deleted
## 8062                                   deleted
## 8063                                   deleted
## 8064                                   deleted
## 8065                                delivering
## 8066                                  delivers
## 8067                                  delivery
## 8068                                  delivery
## 8069                                  delivery
## 8070                                      delt
## 8071                                delusional
## 8072                                    demand
## 8073                                    demand
## 8074                             demonstrative
## 8075                                    denied
## 8076                                     denim
## 8077                                     denim
## 8078                                     denim
## 8079                                    denims
## 8080                                    dennis
## 8081                                     dense
## 8082                                department
## 8083                                   depaula
## 8084                               deportistas
## 8085                                 depressed
## 8086                                depression
## 8087                                     depth
## 8088                                    depuis
## 8089                                       des
## 8090                                  desastre
## 8091                                     desde
## 8092                                     desde
## 8093                                     desde
## 8094                                    design
## 8095                                    design
## 8096                                    design
## 8097                                    design
## 8098                                    design
## 8099                                    design
## 8100                                    design
## 8101                                    design
## 8102                                  designed
## 8103                                  designed
## 8104                                  designer
## 8105                                   designs
## 8106                                  design’s
## 8107                             desilusionado
## 8108                                   desired
## 8109                                   desired
## 8110                                  destress
## 8111                                   destroy
## 8112                                destroying
## 8113                                  destroys
## 8114                                    detail
## 8115                                  detailed
## 8116                                  detailed
## 8117                                  detailed
## 8118                                  detailed
## 8119                                  detailed
## 8120                               deteriorate
## 8121                                 determine
## 8122                                dethroning
## 8123                                   detiene
## 8124                                   detroit
## 8125                                       dev
## 8126                                devastates
## 8127                                 developer
## 8128                                 developer
## 8129                                developers
## 8130                                developers
## 8131                               developer’s
## 8132                               development
## 8133                               development
## 8134                                   devices
## 8135                                   devices
## 8136                                   devices
## 8137                                    dhgate
## 8138                                       dia
## 8139                                  diabetes
## 8140                              diabolically
## 8141                                      dias
## 8142                                      dick
## 8143                                   dickies
## 8144                                     dicks
## 8145                                     didnt
## 8146                                    didn’t
## 8147                                    didn’t
## 8148                                    didn’t
## 8149                                    didn’t
## 8150                                    didn’t
## 8151                                    didn’t
## 8152                                diferentes
## 8153                                      diff
## 8154                                difference
## 8155                                difference
## 8156                                difference
## 8157                                difference
## 8158                                difference
## 8159                                difference
## 8160                                 difficult
## 8161                                difficulty
## 8162                                difficulty
## 8163                                difficulty
## 8164                                difficulty
## 8165                                   digital
## 8166                                   digital
## 8167                                  dillards
## 8168                                    dinner
## 8169                                      dior
## 8170                                      dios
## 8171                                       dip
## 8172                             dipmasterflex
## 8173                                    direct
## 8174                                    direct
## 8175                                    direct
## 8176                                 directeur
## 8177                                 direction
## 8178                                  directly
## 8179                                  directly
## 8180                                      dirt
## 8181                                      dirt
## 8182                                     dirty
## 8183                                  disabled
## 8184                                  disabled
## 8185                               disappeared
## 8186                               disappeared
## 8187                               disappeared
## 8188                              disappearing
## 8189                                disappears
## 8190                              disappointed
## 8191                              disappointed
## 8192                              disappointed
## 8193                              disappointed
## 8194                              disappointed
## 8195                              disappointed
## 8196                             disappointing
## 8197                             disappointing
## 8198                             disappointing
## 8199                             disappointing
## 8200                             disappointing
## 8201                             disappointing
## 8202                              discontinued
## 8203                                  discount
## 8204                                  discount
## 8205                                  discount
## 8206                                discounted
## 8207                                discovered
## 8208                            discrimination
## 8209                                   disease
## 8210                                  diseñada
## 8211                                  disfruto
## 8212                                  dislikes
## 8213                                 dismissed
## 8214                                    disney
## 8215                                disordered
## 8216                                 dispenser
## 8217                                   display
## 8218                                 displayed
## 8219                                  displays
## 8220                                  displays
## 8221                                  displays
## 8222                                disposable
## 8223                                disposable
## 8224                                disrespect
## 8225                                disruptive
## 8226                                  distance
## 8227                                  distance
## 8228                                  distance
## 8229                                  distance
## 8230                                  distance
## 8231                                  distance
## 8232                                  distance
## 8233                                  distance
## 8234                                  distance
## 8235                                  distance
## 8236                                  distance
## 8237                                  distance
## 8238                                  distance
## 8239                                  distance
## 8240                                  distance
## 8241                                  distance
## 8242                                  distance
## 8243                                  distance
## 8244                                  distance
## 8245                                  distance
## 8246                                  distance
## 8247                                  distance
## 8248                                  distance
## 8249                                  distance
## 8250                                  distance
## 8251                                  distance
## 8252                                  distance
## 8253                                  distance
## 8254                                  distance
## 8255                                 distances
## 8256                                 distances
## 8257                                 distances
## 8258                                 distances
## 8259                                 distances
## 8260                              distribution
## 8261                                     ditto
## 8262                                      dive
## 8263                                      dive
## 8264                                      dive
## 8265                                      dive
## 8266                                   diverse
## 8267                                    divest
## 8268                                        dn
## 8269                                    doable
## 8270                                    doable
## 8271                                       doc
## 8272                                       doc
## 8273                                    doctor
## 8274                                    doctor
## 8275                                documented
## 8276                                   doesn’t
## 8277                                   doesn’t
## 8278                                   doesn’t
## 8279                                   doesn’t
## 8280                                   doesn’t
## 8281                                   doesn’t
## 8282                                   doesn’t
## 8283                                   doesn’t
## 8284                                   doesn’t
## 8285                                   doesn’t
## 8286                                   doesn’t
## 8287                                   doesn’t
## 8288                                   doesn’t
## 8289                                   doesn’t
## 8290                                   doesn’t
## 8291                                   doesn’t
## 8292                                   doesn’t
## 8293                                       dog
## 8294                                       dog
## 8295                                       dog
## 8296                                       dog
## 8297                                      dois
## 8298                              doisporcento
## 8299                                    dollar
## 8300                                    dollar
## 8301                                    dollar
## 8302                                   dollars
## 8303                                     dolor
## 8304                                   donahoe
## 8305                                   donahoe
## 8306                                   donahoe
## 8307                                    donate
## 8308                                  donating
## 8309                                     donde
## 8310                                     donde
## 8311                                      dont
## 8312                                      dont
## 8313                                      dont
## 8314                                      dont
## 8315                                      dont
## 8316                                      dont
## 8317                                      dont
## 8318                                      dont
## 8319                                     don’t
## 8320                                     don’t
## 8321                                     don’t
## 8322                                     don’t
## 8323                                     don’t
## 8324                                     don’t
## 8325                                     don’t
## 8326                                     don’t
## 8327                                     don’t
## 8328                                     don’t
## 8329                                     don’t
## 8330                                     don’t
## 8331                                     don’t
## 8332                                     don’t
## 8333                                     don’t
## 8334                                     don’t
## 8335                                     don’t
## 8336                                     don’t
## 8337                                     don’t
## 8338                                     don’t
## 8339                                     don’t
## 8340                                       doo
## 8341                                    dookie
## 8342                                      doom
## 8343                                      dope
## 8344                                      dope
## 8345                                      dope
## 8346                                      dope
## 8347                                      dope
## 8348                                      dope
## 8349                                      dope
## 8350                                      dope
## 8351                                      dope
## 8352                                      dope
## 8353                                      dope
## 8354                                      dope
## 8355                                      dope
## 8356                                      dope
## 8357                                    dopest
## 8358                                     dopey
## 8359                                       dor
## 8360                                    dorfin
## 8361                               dornbechers
## 8362                                       dos
## 8363                                    double
## 8364                                    double
## 8365                                     doubt
## 8366                                     doubt
## 8367                                     dough
## 8368                                downgraded
## 8369                                  downhill
## 8370                                  download
## 8371                                  download
## 8372                                  download
## 8373                              downloadable
## 8374                                downloaded
## 8375                                downloaded
## 8376                                downloaded
## 8377                                downloaded
## 8378                               downloading
## 8379                               downshifter
## 8380                                 downsized
## 8381                                 downsized
## 8382                                 downsized
## 8383                                 downsized
## 8384                                  downtown
## 8385                                  downvote
## 8386                                 downvotes
## 8387                                        dr
## 8388                                     drain
## 8389                                    drains
## 8390                                    drains
## 8391                                      draw
## 8392                                   drawing
## 8393                                     dream
## 8394                                     dress
## 8395                                     dress
## 8396                                     drive
## 8397                                     drive
## 8398                                     drive
## 8399                                     drive
## 8400                                     drive
## 8401                                    driven
## 8402                                    driver
## 8403                                    driver
## 8404                                    driver
## 8405                                    driver
## 8406                                   drivers
## 8407                                    drives
## 8408                                    drives
## 8409                                      drop
## 8410                                      drop
## 8411                                      drop
## 8412                                      drop
## 8413                                      drop
## 8414                                      drop
## 8415                                      drop
## 8416                                      drop
## 8417                                   dropped
## 8418                                   dropped
## 8419                                  dropping
## 8420                                     drops
## 8421                                     drops
## 8422                                     drops
## 8423                                     drops
## 8424                                     drops
## 8425                                     drops
## 8426                                   dropset
## 8427                                   dropset
## 8428                                       dry
## 8429                                       dry
## 8430                                    dryfit
## 8431                                       dsw
## 8432                                      dtlr
## 8433                                        du
## 8434                                      dual
## 8435                                       dub
## 8436                                      dude
## 8437                                      dude
## 8438                                      dude
## 8439                                      dude
## 8440                                      dude
## 8441                                      dude
## 8442                                     dudes
## 8443                                     dudes
## 8444                                    duffel
## 8445                                       duh
## 8446                                    duller
## 8447                                      dumb
## 8448                                      dumb
## 8449                                      dumb
## 8450                                      dumb
## 8451                                      dumb
## 8452                                      dumb
## 8453                                      dumb
## 8454                                  dumbbell
## 8455                               dummscience
## 8456                                      dunk
## 8457                                      dunk
## 8458                                      dunk
## 8459                                      dunk
## 8460                                     dunks
## 8461                                     dunks
## 8462                                     dunks
## 8463                                     dunks
## 8464                                     dunks
## 8465                                     dunks
## 8466                                     dunks
## 8467                                     dunks
## 8468                                     dunks
## 8469                                     dunks
## 8470                                     dunks
## 8471                                     dunks
## 8472                                     dunks
## 8473                                     dunks
## 8474                              dunksnotdead
## 8475                              dunksnotdead
## 8476                                   durable
## 8477                                   durable
## 8478                                duraklatma
## 8479                                    duramo
## 8480                                  duration
## 8481                                      dust
## 8482                                       dwc
## 8483                                   dynamic
## 8484                                 dégoûtant
## 8485                                      déçu
## 8486                                       día
## 8487                                       día
## 8488                                       día
## 8489                                      días
## 8490                                      días
## 8491                                d’androïde
## 8492                            d’entraînement
## 8493                                        ea
## 8494                                      earl
## 8495                                 earlfando
## 8496                                    earned
## 8497                                  earnings
## 8498                                  earnings
## 8499                                  earnings
## 8500                                 earphones
## 8501                                      ease
## 8502                                    easier
## 8503                                    easier
## 8504                                   easiest
## 8505                                   easiest
## 8506                                    easily
## 8507                                    easily
## 8508                                    easily
## 8509                                    easily
## 8510                                    easily
## 8511                                    easily
## 8512                                    easily
## 8513                                    easily
## 8514                                    easily
## 8515                                    easily
## 8516                                    easily
## 8517                                      east
## 8518                                      easy
## 8519                                      easy
## 8520                                      easy
## 8521                                      easy
## 8522                                      easy
## 8523                                      easy
## 8524                                      easy
## 8525                                      easy
## 8526                                      easy
## 8527                                      easy
## 8528                                      easy
## 8529                                      easy
## 8530                                      easy
## 8531                                      easy
## 8532                                      easy
## 8533                                      easy
## 8534                                    easyon
## 8535                                      ebay
## 8536                                      ebay
## 8537                                      ebay
## 8538                                      ebay
## 8539                                   economy
## 8540                                   economy
## 8541                                       ect
## 8542                                       ect
## 8543                                        ed
## 8544                                     edema
## 8545                                      edge
## 8546                                      edge
## 8547                                      edit
## 8548                                      edit
## 8549                                      edit
## 8550                                      edit
## 8551                                      edit
## 8552                                    editar
## 8553                                  editarla
## 8554                                   edition
## 8555                                   edition
## 8556                                   edition
## 8557                                   edition
## 8558                                   edition
## 8559                                       edr
## 8560                                      eeoc
## 8561                                      eeoc
## 8562                                 effective
## 8563                                 effective
## 8564                                 effective
## 8565                                 efficient
## 8566                                 efficient
## 8567                                 efficient
## 8568                                 effusions
## 8569                                       ego
## 8570                                        eh
## 8571                                 ejercicio
## 8572                                      ekin
## 8573                                        el
## 8574                                        el
## 8575                                        el
## 8576                                        el
## 8577                                        el
## 8578                                        el
## 8579                                        el
## 8580                                   elastic
## 8581                                    elated
## 8582                                  electric
## 8583                              electrónicos
## 8584                                   elegant
## 8585                                   element
## 8586                                elementary
## 8587                                  elements
## 8588                                  elements
## 8589                                  elephant
## 8590                                   elevate
## 8591                                  elevated
## 8592                                 elevation
## 8593                                 elevation
## 8594                                 elevation
## 8595                                    eleven
## 8596                                     elite
## 8597                                     elite
## 8598                                     elite
## 8599                                     elite
## 8600                                     elite
## 8601                                     elite
## 8602                                     elite
## 8603                                elliptical
## 8604                                    else's
## 8605                                     elvis
## 8606                             elvistorresjr
## 8607                                        em
## 8608                                        em
## 8609                                        em
## 8610                                        em
## 8611                                        em
## 8612                                        em
## 8613                                        em
## 8614                                        em
## 8615                                        em
## 8616                                        em
## 8617                                        em
## 8618                                        em
## 8619                                        em
## 8620                                        em
## 8621                                        em
## 8622                                        em
## 8623                                        em
## 8624                                        em
## 8625                                        em
## 8626                                        em
## 8627                                     email
## 8628                                     email
## 8629                                     email
## 8630                                     email
## 8631                                     email
## 8632                                     email
## 8633                                     email
## 8634                                     email
## 8635                                     email
## 8636                                     email
## 8637                                     email
## 8638                                    emails
## 8639                               embarassing
## 8640                               embroidered
## 8641                               embroidered
## 8642                                      emea
## 8643                                 emergency
## 8644                                  empareja
## 8645                                 employees
## 8646                                 employees
## 8647                                 employees
## 8648                                employment
## 8649                                    emptor
## 8650                                        en
## 8651                                        en
## 8652                                        en
## 8653                                        en
## 8654                                        en
## 8655                                        en
## 8656                                        en
## 8657                                        en
## 8658                                        en
## 8659                                        en
## 8660                                        en
## 8661                                    enable
## 8662                                   encanta
## 8663                                   encanta
## 8664                                   encantó
## 8665                                 encourage
## 8666                             encouragement
## 8667                               encouraging
## 8668                               encouraging
## 8669                               encouraging
## 8670                                   endless
## 8671                                   endless
## 8672                                 endomondo
## 8673                                  endorsed
## 8674                                 endurance
## 8675                                 endurance
## 8676                                 endurance
## 8677                                 energizer
## 8678                                    energy
## 8679                                  engaging
## 8680                                   england
## 8681                                   english
## 8682                               enhancement
## 8683                                     enjoy
## 8684                                     enjoy
## 8685                                     enjoy
## 8686                                     enjoy
## 8687                                     enjoy
## 8688                                 enjoyable
## 8689                                   enjoyed
## 8690                                  enjoying
## 8691                                    enjoys
## 8692                                    enjoys
## 8693                                     enter
## 8694                                     enter
## 8695                                     enter
## 8696                                  entering
## 8697                                  entering
## 8698                               enthusiasts
## 8699                                    entire
## 8700                                    entire
## 8701                                    entire
## 8702                                    entire
## 8703                                    entire
## 8704                                    entire
## 8705                                    entire
## 8706                                     entre
## 8707                             entrenamiento
## 8708                             entrenamiento
## 8709                            entrenamientos
## 8710                            entrenamientos
## 8711                                     entry
## 8712                                     entry
## 8713                              environments
## 8714                                      eqlz
## 8715                                       eqt
## 8716                                     equal
## 8717                                 equipment
## 8718                                 equipment
## 8719                                equivalent
## 8720                                        er
## 8721                                       era
## 8722                                       era
## 8723                                       era
## 8724                                       era
## 8725                                   eractic
## 8726                                     erian
## 8727                                    errand
## 8728                                   errands
## 8729                                     error
## 8730                                    errors
## 8731                                    errors
## 8732                                    errors
## 8733                                        es
## 8734                                        es
## 8735                                        es
## 8736                                        es
## 8737                                        es
## 8738                                        es
## 8739                                        es
## 8740                                        es
## 8741                                    escape
## 8742                                   espalda
## 8743                               específicos
## 8744                                  espíritu
## 8745                                     esque
## 8746                                   esquece
## 8747                                 essential
## 8748                                essentials
## 8749                                      esta
## 8750                                      esta
## 8751                              estadísticas
## 8752                                     estar
## 8753                                    estate
## 8754                                      este
## 8755                                 estimated
## 8756                                     estou
## 8757                                     estou
## 8758                                     estoy
## 8759                                 estrellas
## 8760                                      está
## 8761                                      esté
## 8762                                        eu
## 8763                                        eu
## 8764                                        eu
## 8765                                    europe
## 8766                                  european
## 8767                                       eva
## 8768                                       eva
## 8769                                       eva
## 8770                                  evenings
## 8771                                eventually
## 8772                                eventually
## 8773                                eventually
## 8774                                eventually
## 8775                                  everyday
## 8776                                  everyday
## 8777                                  everyday
## 8778                                  everyday
## 8779                                  everyday
## 8780                                  everyday
## 8781                                  everyday
## 8782                                  everyday
## 8783                                 everytime
## 8784                                       evo
## 8785                                       evo
## 8786                                        ew
## 8787                                     exact
## 8788                                     exact
## 8789                                     exact
## 8790                                     exact
## 8791                                     exact
## 8792                                     exact
## 8793                                     exact
## 8794                                     exact
## 8795                                    exacto
## 8796                                exatamente
## 8797                                     excee
## 8798                                  exceeded
## 8799                                 exceeding
## 8800                                 excelente
## 8801                                 excelente
## 8802                                 excelente
## 8803                                 excelente
## 8804                                 excelente
## 8805                                 excelente
## 8806                                 excelente
## 8807                                 excelente
## 8808                                 excelente
## 8809                                 excelente
## 8810                                excelentes
## 8811                                excelentes
## 8812                                 excellent
## 8813                                 excellent
## 8814                                 excellent
## 8815                                 excellent
## 8816                                 excellent
## 8817                                 excellent
## 8818                                 excellent
## 8819                                 excellent
## 8820                                 excellent
## 8821                                 excellent
## 8822                                 excellent
## 8823                                 excellent
## 8824                                 excellent
## 8825                                 excellent
## 8826                                 excellent
## 8827                                 excellent
## 8828                                 excellent
## 8829                                 excellent
## 8830                                 excellent
## 8831                                 excellent
## 8832                                 excellent
## 8833                               exceptional
## 8834                               exceptional
## 8835                               exceptional
## 8836                                 excessive
## 8837                                 excessive
## 8838                                   excited
## 8839                                 exclusive
## 8840                                 exclusive
## 8841                                 exclusive
## 8842                                 exclusive
## 8843                                 exclusive
## 8844                                   excuses
## 8845                                 executive
## 8846                                  exercise
## 8847                                  exercise
## 8848                                  exercise
## 8849                                  exercise
## 8850                                  exercise
## 8851                                  exercise
## 8852                                  exercise
## 8853                                  exercise
## 8854                                  exercise
## 8855                                  exercise
## 8856                                  exercise
## 8857                                  exercise
## 8858                                  exercise
## 8859                                 exercises
## 8860                                 exercises
## 8861                                 exercises
## 8862                                 exercises
## 8863                                 exercises
## 8864                                 exercises
## 8865                                 exercises
## 8866                                 exercises
## 8867                                exercising
## 8868                                exercising
## 8869                                exercícios
## 8870                               exfoliating
## 8871                                exhaustion
## 8872                                     exist
## 8873                                     exist
## 8874                                     exist
## 8875                                     exist
## 8876                                  existent
## 8877                                  existent
## 8878                                  existent
## 8879                                  existing
## 8880                                  existing
## 8881                                   existir
## 8882                                    exists
## 8883                                      exit
## 8884                              expectations
## 8885                              expectations
## 8886                              expectations
## 8887                              expectations
## 8888                                  expected
## 8889                                  expected
## 8890                                 expecting
## 8891                              expenditures
## 8892                                 expensive
## 8893                                 expensive
## 8894                                 expensive
## 8895                                 expensive
## 8896                                 expensive
## 8897                                 expensive
## 8898                                 expensive
## 8899                                experience
## 8900                                experience
## 8901                               experienced
## 8902                               experiences
## 8903                              experiencing
## 8904                                    expert
## 8905                                    expert
## 8906                                  expertly
## 8907                                explaining
## 8908                                 explosive
## 8909                                    export
## 8910                                  exported
## 8911                                    extend
## 8912                                    extend
## 8913                                  extended
## 8914                                  extended
## 8915                                   extends
## 8916                                   extends
## 8917                                 extensive
## 8918                                 extensive
## 8919                                  exterior
## 8920                                     extra
## 8921                                     extra
## 8922                                     extra
## 8923                                     extra
## 8924                                     extra
## 8925                                     extra
## 8926                                     extra
## 8927                                     extra
## 8928                                     extra
## 8929                                     extra
## 8930                                     extra
## 8931                                     extra
## 8932                                     extra
## 8933                            extraordinaria
## 8934                             extraordinary
## 8935                                 extremely
## 8936                                 extremely
## 8937                                 extremely
## 8938                                 extremely
## 8939                                 extremely
## 8940                                 extremely
## 8941                                 extremely
## 8942                                 extremely
## 8943                                 extremely
## 8944                                 extremely
## 8945                                 extremely
## 8946                                 extremely
## 8947                                       eye
## 8948                                       eye
## 8949                                       eye
## 8950                                      eyes
## 8951                                      eyes
## 8952                                   eyesore
## 8953                                       fab
## 8954                                    fabric
## 8955                                    fabric
## 8956                               fabricating
## 8957                                  fabulous
## 8958                                  fabulous
## 8959                                  fabulous
## 8960                                  facebook
## 8961                                  facebook
## 8962                                     faced
## 8963                                    facial
## 8964                                    factor
## 8965                                   factory
## 8966                                   factory
## 8967                                   factory
## 8968                                   factory
## 8969                               factsorstfu
## 8970                                       fad
## 8971                                      fade
## 8972                                fahrenheit
## 8973                                      fail
## 8974                                    failed
## 8975                                      fair
## 8976                                      fair
## 8977                                     faire
## 8978                                    fairly
## 8979                                    fairly
## 8980                                    fairly
## 8981                                     fairy
## 8982                                      fait
## 8983                                  faithful
## 8984                                     fakat
## 8985                                      fake
## 8986                                      fake
## 8987                                      fake
## 8988                                      fake
## 8989                                      fake
## 8990                                      fake
## 8991                                      fake
## 8992                                      fake
## 8993                                      fake
## 8994                                      fake
## 8995                                      fake
## 8996                                      fake
## 8997                                      fake
## 8998                                      fake
## 8999                                      fake
## 9000                                      fake
## 9001                                      fake
## 9002                                      fake
## 9003                                      fake
## 9004                                      fake
## 9005                                      fake
## 9006                                     fakes
## 9007                                     fakes
## 9008                                     fakes
## 9009                                     fakes
## 9010                                      fall
## 9011                                      fall
## 9012                                      fall
## 9013                                      fall
## 9014                                      fall
## 9015                                      fall
## 9016                                   fallout
## 9017                                     falls
## 9018                                     falls
## 9019                                     falls
## 9020                                     falls
## 9021                                     false
## 9022                                   faltaba
## 9023                                       fam
## 9024                                       fam
## 9025                                       fam
## 9026                                  familiar
## 9027                                    family
## 9028                                    family
## 9029                                    family
## 9030                                    family
## 9031                                       fan
## 9032                                       fan
## 9033                                       fan
## 9034                                   fanatic
## 9035                                   fanbase
## 9036                                     fando
## 9037                                    fandom
## 9038                                      fans
## 9039                               fantaposite
## 9040                                 fantastic
## 9041                                 fantastic
## 9042                                 fantastic
## 9043                                 fantastic
## 9044                                 fantastic
## 9045                                 fantastic
## 9046                                 fantastic
## 9047                                 fantastic
## 9048                                 fantastic
## 9049                                 fantastic
## 9050                                 fantastic
## 9051                                    farmer
## 9052                                   farve's
## 9053                                   fashion
## 9054                                   fashion
## 9055                                   fashion
## 9056                                   fashion
## 9057                               fashionably
## 9058                                 fashioned
## 9059                                      fast
## 9060                                      fast
## 9061                                      fast
## 9062                                      fast
## 9063                                    faster
## 9064                                    faster
## 9065                                    faster
## 9066                                    faster
## 9067                                    faster
## 9068                                   fastest
## 9069                                   fastest
## 9070                                   fastest
## 9071                                       fat
## 9072                                       fat
## 9073                                       fat
## 9074                                  father's
## 9075                                    faulty
## 9076                                      faux
## 9077                                       fav
## 9078                                       fav
## 9079                                       fav
## 9080                                       fav
## 9081                                      fave
## 9082                                     faves
## 9083                                     favor
## 9084                                 favorable
## 9085                                  favorite
## 9086                                  favorite
## 9087                                  favorite
## 9088                                  favorite
## 9089                                  favorite
## 9090                                  favorite
## 9091                                  favorite
## 9092                                  favorite
## 9093                                  favorite
## 9094                                  favorite
## 9095                                  favorite
## 9096                                  favorite
## 9097                                  favorite
## 9098                                  favorite
## 9099                                  favorite
## 9100                                  favorite
## 9101                                  favorite
## 9102                                  favorite
## 9103                                  favorite
## 9104                                  favorite
## 9105                                  favorite
## 9106                                  favorite
## 9107                                 favourite
## 9108                                 favourite
## 9109                                 favourite
## 9110                                      favs
## 9111                                        fb
## 9112                                   feature
## 9113                                   feature
## 9114                                   feature
## 9115                                   feature
## 9116                                   feature
## 9117                                   feature
## 9118                                   feature
## 9119                                   feature
## 9120                                   feature
## 9121                                  featured
## 9122                                  features
## 9123                                  features
## 9124                                  features
## 9125                                  features
## 9126                                  features
## 9127                                  features
## 9128                                  features
## 9129                                  features
## 9130                                  features
## 9131                                  features
## 9132                                  february
## 9133                                     fecha
## 9134                                    fechas
## 9135                                   federal
## 9136                                   federal
## 9137                                     fedex
## 9138                                     fedex
## 9139                                     fedex
## 9140                                      feed
## 9141                                      feed
## 9142                                      feel
## 9143                                      feel
## 9144                                      feel
## 9145                                      feel
## 9146                                      feel
## 9147                                      feel
## 9148                                      feel
## 9149                                      feel
## 9150                                      feel
## 9151                                      feel
## 9152                                      feel
## 9153                                      feel
## 9154                                      feel
## 9155                                      feel
## 9156                                      feel
## 9157                                      feel
## 9158                                      feel
## 9159                                      feel
## 9160                                      feel
## 9161                                   feeling
## 9162                                     feels
## 9163                                     feels
## 9164                                     feels
## 9165                                     feels
## 9166                                     feels
## 9167                                     feels
## 9168                                     feels
## 9169                                     feels
## 9170                                     feels
## 9171                                     feels
## 9172                                     feels
## 9173                                     feels
## 9174                                     feels
## 9175                                      fees
## 9176                                      feet
## 9177                                      feet
## 9178                                      feet
## 9179                                      feet
## 9180                                      feet
## 9181                                      feet
## 9182                                      feet
## 9183                                      feet
## 9184                                      feet
## 9185                                      feet
## 9186                                      feet
## 9187                                      feet
## 9188                                      feet
## 9189                                      feet
## 9190                                      feet
## 9191                                      feet
## 9192                                      feet
## 9193                                      feet
## 9194                                      feet
## 9195                                      feet
## 9196                                      feet
## 9197                                      feet
## 9198                                      feet
## 9199                                      feet
## 9200                                      feet
## 9201                                      feet
## 9202                                      feet
## 9203                                      feet
## 9204                                  felicito
## 9205                                     felix
## 9206                                    fellow
## 9207                                    fellow
## 9208                                    female
## 9209                                    female
## 9210                                  ferraris
## 9211                                       fet
## 9212                                    fiance
## 9213                                    fiancé
## 9214                                      fiel
## 9215                                     field
## 9216                                     field
## 9217                                     field
## 9218                                    fields
## 9219                                    fields
## 9220              fieldtesting.underarmour.com
## 9221                                      figs
## 9222                                      figs
## 9223                                     filas
## 9224                                      file
## 9225                                     files
## 9226                                     files
## 9227                                    filing
## 9228                                      fill
## 9229                                    filler
## 9230                                      film
## 9231                                   filters
## 9232                                     final
## 9233                                     final
## 9234                                   finally
## 9235                                   finally
## 9236                                   finally
## 9237                                   finally
## 9238                                   finally
## 9239                                   finally
## 9240                                   finally
## 9241                                   finally
## 9242                                   finally
## 9243                                   finally
## 9244                                   finally
## 9245                                   finally
## 9246                                   finance
## 9247                                 financial
## 9248                                 financial
## 9249                                    finder
## 9250                                   finding
## 9251                                      fine
## 9252                                      fine
## 9253                                      fine
## 9254                                      fine
## 9255                                      fine
## 9256                                     fines
## 9257                                    finish
## 9258                                    finish
## 9259                                    finish
## 9260                                    finish
## 9261                                    finish
## 9262                                  finished
## 9263                                  finisher
## 9264                                    fintes
## 9265                                       fir
## 9266                                      fire
## 9267                                      fire
## 9268                                      fire
## 9269                                      fire
## 9270                                      fire
## 9271                                      fire
## 9272                                      fire
## 9273                                      fire
## 9274                                      fire
## 9275                                      fire
## 9276                                      fire
## 9277                                      fire
## 9278                                      fire
## 9279                                      fire
## 9280                                      fire
## 9281                                      fire
## 9282                                      fire
## 9283                                      fire
## 9284                                      fire
## 9285                                   fireeee
## 9286                               firefighter
## 9287                                    fiscal
## 9288                                    fiscal
## 9289                                   fishing
## 9290                                       fit
## 9291                                       fit
## 9292                                       fit
## 9293                                       fit
## 9294                                       fit
## 9295                                       fit
## 9296                                       fit
## 9297                                       fit
## 9298                                       fit
## 9299                                       fit
## 9300                                       fit
## 9301                                       fit
## 9302                                       fit
## 9303                                       fit
## 9304                                       fit
## 9305                                       fit
## 9306                                       fit
## 9307                                       fit
## 9308                                       fit
## 9309                                       fit
## 9310                                       fit
## 9311                                       fit
## 9312                                       fit
## 9313                                       fit
## 9314                                       fit
## 9315                                       fit
## 9316                                       fit
## 9317                                       fit
## 9318                                       fit
## 9319                                       fit
## 9320                                       fit
## 9321                                       fit
## 9322                                   fitness
## 9323                                   fitness
## 9324                                   fitness
## 9325                                   fitness
## 9326                                   fitness
## 9327                                   fitness
## 9328                                   fitness
## 9329                                   fitness
## 9330                                   fitness
## 9331                                   fitness
## 9332                                   fitness
## 9333                                   fitness
## 9334                                   fitness
## 9335                                   fitness
## 9336                                   fitness
## 9337                                   fitness
## 9338                                   fitness
## 9339                                   fitness
## 9340                                   fitness
## 9341                                   fitness
## 9342                                   fitness
## 9343                                   fitness
## 9344                                      fits
## 9345                                      fits
## 9346                                      fits
## 9347                                      fits
## 9348                                    fitter
## 9349                                       fix
## 9350                                       fix
## 9351                                       fix
## 9352                                       fix
## 9353                                       fix
## 9354                                       fix
## 9355                                       fix
## 9356                                       fix
## 9357                                     fixed
## 9358                                     fixed
## 9359                                     fixed
## 9360                                     fixed
## 9361                                      flag
## 9362                                  flagship
## 9363                                     flair
## 9364                                     flame
## 9365                                    flared
## 9366                                    flared
## 9367                                      flat
## 9368                                      flat
## 9369                                      flat
## 9370                                      flat
## 9371                                      flat
## 9372                                      flat
## 9373                                      flat
## 9374                                   flatter
## 9375                                  flawless
## 9376                                      flea
## 9377                                    fleece
## 9378                                    fleece
## 9379                                    fleece
## 9380                                    fleece
## 9381                                    fleece
## 9382                                    fleece
## 9383                               flexibility
## 9384                               flexibility
## 9385                                  flexible
## 9386                                      flic
## 9387                                    flight
## 9388                                    flight
## 9389                                    flight
## 9390                                    flight
## 9391                              flightposite
## 9392                              flightposite
## 9393                                   flights
## 9394                                   flights
## 9395                                      flip
## 9396                                      flip
## 9397                                 flipflops
## 9398                                     flops
## 9399                                   florida
## 9400                                      flow
## 9401                                      flow
## 9402                                      flow
## 9403                                   flowtro
## 9404                               fluctuating
## 9405                                     fluff
## 9406                                    fluids
## 9407                                       fly
## 9408                                       fly
## 9409                                       fly
## 9410                                       fly
## 9411                                       fly
## 9412                                       fly
## 9413                                   flyease
## 9414                                     flyer
## 9415                                   flyknit
## 9416                                   flyknit
## 9417                                   flyknit
## 9418                                   flyknit
## 9419                                   flyknit
## 9420                                  flyknits
## 9421                                  flyknits
## 9422                                      foam
## 9423                                      foam
## 9424                                      foam
## 9425                                      foam
## 9426                                      foam
## 9427                                      foam
## 9428                                 foamposit
## 9429                                foamposite
## 9430                               foamposites
## 9431                               foamposites
## 9432                                     foams
## 9433                                     foams
## 9434                                     foams
## 9435                                     foams
## 9436                                     focus
## 9437                                     focus
## 9438                                   focused
## 9439                                   focused
## 9440                             foh28ucxzfjzu
## 9441                                    follow
## 9442                                    follow
## 9443                                    follow
## 9444                                      fomo
## 9445                                     fonts
## 9446                                     fonts
## 9447                                      food
## 9448                                      food
## 9449                                      food
## 9450                                      food
## 9451                                      food
## 9452                                      foot
## 9453                                      foot
## 9454                                      foot
## 9455                                      foot
## 9456                                      foot
## 9457                                      foot
## 9458                                      foot
## 9459                                      foot
## 9460                                      foot
## 9461                                      foot
## 9462                                      foot
## 9463                                    foot's
## 9464                                  football
## 9465                                  football
## 9466                                  football
## 9467                                  football
## 9468                                  football
## 9469                                  football
## 9470                                footlocker
## 9471                                footlocker
## 9472                                footlocker
## 9473                                footlocker
## 9474                                  footwear
## 9475                                  footwear
## 9476                                  footwear
## 9477                                     force
## 9478                                     force
## 9479                                    forces
## 9480                                    forces
## 9481                                   forcing
## 9482                                      fore
## 9483                                 forecasts
## 9484                                  forefoot
## 9485                                  forefoot
## 9486                                  forefoot
## 9487                                  forefoot
## 9488                                    forest
## 9489                                   forever
## 9490                                   forever
## 9491                                   forever
## 9492                                   forever
## 9493                                   forever
## 9494                                foreverrun
## 9495                                    forget
## 9496                                    forgot
## 9497                                      form
## 9498                                     forma
## 9499                                     forma
## 9500                                formalwear
## 9501                                    format
## 9502                                formidable
## 9503                                  fornecer
## 9504                                   forrest
## 9505                                   forrest
## 9506                                   fortune
## 9507                                     forum
## 9508                                   forward
## 9509                                   forward
## 9510                                   forward
## 9511                                   forward
## 9512                                   forward
## 9513                                   forward
## 9514                                   forward
## 9515                                   forward
## 9516                              for‘activity
## 9517                                       fot
## 9518                                     found
## 9519                                     found
## 9520                                     found
## 9521                                     found
## 9522                                    fourth
## 9523                                    fourth
## 9524                                       fox
## 9525                                       fox
## 9526                                        fr
## 9527                                        fr
## 9528                                fractional
## 9529                                 francisco
## 9530                                  freaking
## 9531                                      free
## 9532                                      free
## 9533                                      free
## 9534                                      free
## 9535                                      free
## 9536                                      free
## 9537                                      free
## 9538                                      free
## 9539                                      free
## 9540                                      free
## 9541                                      free
## 9542                                      free
## 9543                                      free
## 9544                                      free
## 9545                                      free
## 9546                                      free
## 9547                                      free
## 9548                                      free
## 9549                                      free
## 9550                                      free
## 9551                                      free
## 9552                                      free
## 9553                                      free
## 9554                                      free
## 9555                                      free
## 9556                                      free
## 9557                                      free
## 9558                                      free
## 9559                                      free
## 9560                                      free
## 9561                                      free
## 9562                                      free
## 9563                                      free
## 9564                                      free
## 9565                                      free
## 9566                                      free
## 9567                                      free
## 9568                                      free
## 9569                                      free
## 9570                                      free
## 9571                                      free
## 9572                                      free
## 9573                                      free
## 9574                                      free
## 9575                                      free
## 9576                                   freedom
## 9577                                   freezes
## 9578                                   freezes
## 9579                                  freezing
## 9580                                    french
## 9581                                 frequency
## 9582                                 frequency
## 9583                                  frequent
## 9584                                    fresco
## 9585                                     fresh
## 9586                                     fresh
## 9587                                 freshfoam
## 9588                                      frfr
## 9589                                  fricking
## 9590                                    friday
## 9591                                  friend's
## 9592                                  friendly
## 9593                                  friendly
## 9594                                  friendly
## 9595                                  friendly
## 9596                                  friendly
## 9597                                  friendly
## 9598                                  friendly
## 9599                                  friendly
## 9600                                  friendly
## 9601                                  friendly
## 9602                                   friends
## 9603                                   friends
## 9604                                   friends
## 9605                                   friends
## 9606                                   friends
## 9607                                   friends
## 9608                                   friends
## 9609                                   friends
## 9610                                   friends
## 9611                                   friends
## 9612                                     frisk
## 9613                                     frisk
## 9614                                     frisk
## 9615                                     frisk
## 9616                                     front
## 9617                                 frontline
## 9618                                    frozen
## 9619                                frustrated
## 9620                               frustrating
## 9621                               frustrating
## 9622                               frustrating
## 9623                               frustrating
## 9624                               frustrating
## 9625                               frustrating
## 9626                               frustrating
## 9627                                        fu
## 9628                                      fubu
## 9629                                      fuck
## 9630                                      fuck
## 9631                                    fucked
## 9632                                   fucking
## 9633                                   fucking
## 9634                                   fucking
## 9635                                   fucking
## 9636                                   fucking
## 9637                                   fucking
## 9638                                   fucking
## 9639                                   fucking
## 9640                                   fucking
## 9641                                   fucking
## 9642                                   fucking
## 9643                                     fudge
## 9644                                       fue
## 9645                             fufybccdkoy1w
## 9646                                    fugazi
## 9647                                    fugazi
## 9648                                     fulls
## 9649                                       fun
## 9650                                       fun
## 9651                                       fun
## 9652                                       fun
## 9653                                       fun
## 9654                                       fun
## 9655                                       fun
## 9656                                       fun
## 9657                                       fun
## 9658                                       fun
## 9659                                 fun.every
## 9660                                  funciona
## 9661                                  function
## 9662                                  function
## 9663                                  function
## 9664                                functional
## 9665                                functional
## 9666                                functional
## 9667                                functional
## 9668                                functional
## 9669                                functional
## 9670                                functional
## 9671                             functionality
## 9672                             functionality
## 9673                               functioning
## 9674                                      fund
## 9675                                fundraiser
## 9676                                     funky
## 9677                                     funny
## 9678                                   futebol
## 9679                                    future
## 9680                                    future
## 9681                                    future
## 9682                                    future
## 9683                                    future
## 9684                                    future
## 9685                        fxnrobm8q0rkomr5nf
## 9686                                    fy2026
## 9687                                    fy2026
## 9688                                      fy23
## 9689                                      fy26
## 9690                                      fy26
## 9691                                       fyi
## 9692                                     fácil
## 9693                                    física
## 9694                                      gain
## 9695                                      gain
## 9696                                      gain
## 9697                                     gains
## 9698                                    galaxy
## 9699                                    galaxy
## 9700                                galloway’s
## 9701                                      game
## 9702                                      game
## 9703                                      game
## 9704                                      game
## 9705                                      game
## 9706                                      game
## 9707                                      game
## 9708                                      game
## 9709                                     games
## 9710                                     games
## 9711                                     gamma
## 9712                                      gang
## 9713                                   garbage
## 9714                                   garbage
## 9715                                   garbage
## 9716                                   garbage
## 9717                                   garbage
## 9718                                  garbagio
## 9719                                     garbo
## 9720                                    garcía
## 9721                                    garmin
## 9722                                    garmin
## 9723                                    garmin
## 9724                                   garnett
## 9725                                  gatorade
## 9726                                       gay
## 9727                                   gazelle
## 9728                                   gazelle
## 9729                                   gazelle
## 9730                                   gazelle
## 9731                                  gazelle4
## 9732                                        gb
## 9733                                      gear
## 9734                                      gear
## 9735                                    geared
## 9736                                       gel
## 9737                                       gen
## 9738                                    gender
## 9739                                    gender
## 9740                                  gene6970
## 9741                                generation
## 9742                                   generic
## 9743                                   generic
## 9744                                   generic
## 9745                                  generous
## 9746                                  generous
## 9747                                  genetics
## 9748                                    gentle
## 9749                                 genuinely
## 9750                                  geometry
## 9751                                   georgia
## 9752                                   georgia
## 9753                                   gerekir
## 9754                                   germany
## 9755                                   gezelle
## 9756                                     ghost
## 9757                               ghostbuster
## 9758                                        gi
## 9759                                     giant
## 9760                                     giant
## 9761                                     giant
## 9762                                      gift
## 9763                                      gift
## 9764                            giftedbyadidas
## 9765                                  gigantic
## 9766                                   gimmick
## 9767                                  gimmicky
## 9768                                    ginger
## 9769                                  giordano
## 9770                                     giphy
## 9771                                     giphy
## 9772                                     giphy
## 9773                                     giphy
## 9774                                     giphy
## 9775                                     giphy
## 9776                                     giphy
## 9777                                     giphy
## 9778                                     giphy
## 9779                                     giphy
## 9780                                     giphy
## 9781                                     giphy
## 9782                                     giphy
## 9783                                     giphy
## 9784                                     giphy
## 9785                                     giphy
## 9786                                     giphy
## 9787                                     giphy
## 9788                                     giphy
## 9789                                     giphy
## 9790                                     giphy
## 9791                                     giphy
## 9792                                     giphy
## 9793                                     giphy
## 9794                                     giphy
## 9795                                     giphy
## 9796                                     giphy
## 9797                                     giphy
## 9798                                     giphy
## 9799                                     giphy
## 9800                                      girl
## 9801                                      girl
## 9802                                      girl
## 9803                                     girls
## 9804                                     girls
## 9805                                  giveaway
## 9806                                    giving
## 9807                                    giving
## 9808                                    giving
## 9809                                    giving
## 9810                                   giyorum
## 9811                                        gl
## 9812                                      glad
## 9813                                    glance
## 9814                                     glide
## 9815                                  glitches
## 9816                                  glitches
## 9817                                    global
## 9818                                    global
## 9819                                    global
## 9820                                    global
## 9821                                globaldata
## 9822                                     glove
## 9823                                    gloves
## 9824                                      glow
## 9825                                   glucose
## 9826                                      glue
## 9827                                      glue
## 9828                                 gluestick
## 9829                                    glutes
## 9830                                     gmail
## 9831                                      goal
## 9832                                      goal
## 9833                                      goal
## 9834                                      goal
## 9835                                      goal
## 9836                                     goals
## 9837                                     goals
## 9838                                     goals
## 9839                                     goals
## 9840                                     goals
## 9841                                     goals
## 9842                                     goals
## 9843                                     goals
## 9844                                     goals
## 9845                                     goals
## 9846                                     goals
## 9847                                     goals
## 9848                                     goals
## 9849                                     goals
## 9850                                      goat
## 9851                                      goat
## 9852                                    goated
## 9853                                       god
## 9854                                       god
## 9855                             godhasblessed
## 9856                                     godso
## 9857                                      goin
## 9858                                      gold
## 9859                                      gold
## 9860                                      gold
## 9861                                      gold
## 9862                                      gold
## 9863                                      gold
## 9864                                      gold
## 9865                                      gold
## 9866                                      gold
## 9867                                      gold
## 9868                                      gold
## 9869                                      gold
## 9870                                    golden
## 9871                                      golf
## 9872                                     gonna
## 9873                                     gonna
## 9874                                     gonna
## 9875                                     gonna
## 9876                                     gonna
## 9877                                     gonna
## 9878                                     gonna
## 9879                                     goodd
## 9880                                  goodness
## 9881                                  goodwill
## 9882                                  goodwill
## 9883                                     goofy
## 9884                                    google
## 9885                                    google
## 9886                                    google
## 9887                                    google
## 9888                                    google
## 9889                                    google
## 9890                                    google
## 9891                                gooperfect
## 9892                                    gordan
## 9893                                   goretex
## 9894                                  gorgeous
## 9895                                  gorgeous
## 9896                                    gortex
## 9897                                     gotta
## 9898                                     gotta
## 9899                                     gotta
## 9900                                     gotta
## 9901                                     gotta
## 9902                                     gotta
## 9903                                     gotta
## 9904                                     gotta
## 9905                                gozooooooo
## 9906                                        gp
## 9907                                       gps
## 9908                                       gps
## 9909                                       gps
## 9910                                       gps
## 9911                                       gps
## 9912                                       gps
## 9913                                       gps
## 9914                                       gps
## 9915                                       gps
## 9916                                       gps
## 9917                                       gps
## 9918                                       gpx
## 9919                                       gpx
## 9920                             gpys1ljxjyupg
## 9921                                        gq
## 9922                                        gr
## 9923                                        gr
## 9924                                        gr
## 9925                                       gr8
## 9926                                      grab
## 9927                                     gracy
## 9928                                  graffiti
## 9929                                     grail
## 9930                                     grail
## 9931                                    grails
## 9932                                      gran
## 9933                                      gran
## 9934                                     grand
## 9935                                     grand
## 9936                             granddaughter
## 9937                                     grant
## 9938                                     grape
## 9939                                     graph
## 9940                                   graphic
## 9941                                 graphical
## 9942                                     grass
## 9943                                     grass
## 9944                                     grass
## 9945                                  grateful
## 9946                                   gratuit
## 9947                                      grau
## 9948                                     grave
## 9949                                     grave
## 9950                                     grave
## 9951                                    gravel
## 9952                                   gravely
## 9953                                     gravy
## 9954                                      gray
## 9955                                      gray
## 9956                                      gray
## 9957                                      gray
## 9958                                      gray
## 9959                                      gray
## 9960                                     grays
## 9961                                    greate
## 9962                                   greatly
## 9963                                   greatly
## 9964                                   greatly
## 9965                                 greatness
## 9966                                 greatness
## 9967                                    greedy
## 9968                                     greek
## 9969                                     green
## 9970                                     green
## 9971                                     green
## 9972                                     green
## 9973                                     green
## 9974                                     green
## 9975                                     green
## 9976                                     green
## 9977                                     green
## 9978                                     green
## 9979                                     green
## 9980                                     green
## 9981                                     green
## 9982                                     green
## 9983                                     green
## 9984                             greenrunsdeep
## 9985                                      grey
## 9986                                      grey
## 9987                                      grey
## 9988                                      grey
## 9989                                      grey
## 9990                                      grey
## 9991                                      grey
## 9992                                      grey
## 9993                                      grey
## 9994                                      grey
## 9995                                      grey
## 9996                                      grey
## 9997                                      grey
## 9998                                      grey
## 9999                                      grid
## 10000                                  griffin
## 10001                                     grip
## 10002                                  gripped
## 10003                                    grips
## 10004                                 griselda
## 10005                                  grocery
## 10006                                    groin
## 10007                                   ground
## 10008                                   ground
## 10009                                   ground
## 10010                                   ground
## 10011                                    grown
## 10012                                    grows
## 10013                                    grows
## 10014                                    grows
## 10015                                 grupales
## 10016                                 gráficas
## 10017                                       gs
## 10018                                       gt
## 10019                                       gt
## 10020                                       gt
## 10021                                       gt
## 10022                                       gt
## 10023                                       gt
## 10024                                       gt
## 10025                                      gtx
## 10026                                  guardar
## 10027                                 guardian
## 10028                               guatemalan
## 10029                                    guess
## 10030                                    guess
## 10031                                    guess
## 10032                                    guess
## 10033                                    guess
## 10034                                  guesses
## 10035                                      gui
## 10036                                 guidance
## 10037                                    guide
## 10038                                   guided
## 10039                                   guided
## 10040                                   guides
## 10041                                   guilty
## 10042                                   gulden
## 10043                                   gulden
## 10044                                 gulden's
## 10045                                      gum
## 10046                                      gum
## 10047                                      gum
## 10048                                     gump
## 10049                                     gump
## 10050                                     gump
## 10051                                     gump
## 10052                                    gumps
## 10053                                    gumps
## 10054                                    gusta
## 10055                                  gustaba
## 10056                                    gustó
## 10057                                      gut
## 10058                                   gutted
## 10059                                      guy
## 10060                                      guy
## 10061                                      guy
## 10062                                      guy
## 10063                                      guy
## 10064                                      guy
## 10065                                      guy
## 10066                                      guy
## 10067                                      guy
## 10068                                      guy
## 10069                                     guys
## 10070                                     guys
## 10071                                     guys
## 10072                                     guys
## 10073                                     guys
## 10074                                      gym
## 10075                                      gym
## 10076                                      gym
## 10077                                      gym
## 10078                                      gym
## 10079                                      gym
## 10080                                      gym
## 10081                                      gym
## 10082                                      gym
## 10083                                      gym
## 10084                                      gym
## 10085                                      gym
## 10086                                      gym
## 10087                                      gym
## 10088                                      gym
## 10089                       h42aeseqaly4hitnlh
## 10090                                       ha
## 10091                                   habits
## 10092                                     hace
## 10093                                    hacer
## 10094                                    hacer
## 10095                                   hadn’t
## 10096                                      hah
## 10097                                     haha
## 10098                                     haha
## 10099                                     haha
## 10100                                     haha
## 10101                                   hahaha
## 10102                                   hahaha
## 10103                                 hahahaha
## 10104                                     hair
## 10105                                     half
## 10106                                     half
## 10107                                     half
## 10108                                  halfway
## 10109                                halloween
## 10110                                     halo
## 10111                                     hand
## 10112                                     hand
## 10113                                     hand
## 10114                                 handball
## 10115                                 handball
## 10116                                 handball
## 10117                               handballer
## 10118                                 handedly
## 10119                                  handles
## 10120                                   happen
## 10121                                   happen
## 10122                                   happen
## 10123                                   happen
## 10124                                   happen
## 10125                                   happen
## 10126                                 happened
## 10127                                 happened
## 10128                                 happened
## 10129                                 happened
## 10130                                 happened
## 10131                                 happened
## 10132                                 happened
## 10133                                 happened
## 10134                                 happened
## 10135                                  happily
## 10136                                    happy
## 10137                                    happy
## 10138                                    happy
## 10139                                    happy
## 10140                                    happy
## 10141                                    happy
## 10142                                    happy
## 10143                                    happy
## 10144                                    happy
## 10145                                    happy
## 10146                                    happy
## 10147                                    happy
## 10148                                    happy
## 10149                                    happy
## 10150                                    happy
## 10151                                     hard
## 10152                                     hard
## 10153                                     hard
## 10154                                     hard
## 10155                                     hard
## 10156                                     hard
## 10157                                     hard
## 10158                                     hard
## 10159                                     hard
## 10160                                     hard
## 10161                                     hard
## 10162                                     hard
## 10163                                     hard
## 10164                                     hard
## 10165                                     hard
## 10166                                     hard
## 10167                                     hard
## 10168                                     hard
## 10169                                     hard
## 10170                                     hard
## 10171                                     hard
## 10172                                     hard
## 10173                                     hard
## 10174                                   harder
## 10175                                   harder
## 10176                                   harder
## 10177                                   harder
## 10178                                  hardest
## 10179                                  hardest
## 10180                                 hardware
## 10181                                 hardware
## 10182                                   harika
## 10183                                  harvest
## 10184                                   hasn’t
## 10185                                   hasn’t
## 10186                                   hasn’t
## 10187                                   hasn’t
## 10188                                   hasn’t
## 10189                                    hasta
## 10190                                      hat
## 10191                                      hat
## 10192                                      hat
## 10193                                     hate
## 10194                                     hate
## 10195                                     hate
## 10196                                     hate
## 10197                                     hate
## 10198                                     hate
## 10199                                     hate
## 10200                                     hate
## 10201                                     hats
## 10202                                    haven
## 10203                                   havent
## 10204                                  haven’t
## 10205                                  haven’t
## 10206                                  haven’t
## 10207                                  haven’t
## 10208                                  haven’t
## 10209                                    haves
## 10210                                   hawaii
## 10211                                     haze
## 10212                                     head
## 10213                                headlines
## 10214                                headlines
## 10215                                    heads
## 10216                                headwinds
## 10217                                headwinds
## 10218                                   health
## 10219                                   health
## 10220                                   health
## 10221                                   health
## 10222                                   health
## 10223                                   health
## 10224                                   health
## 10225                                   health
## 10226                                   health
## 10227                                   health
## 10228                                   health
## 10229                                   health
## 10230                                   health
## 10231                                   health
## 10232                                   health
## 10233                                   health
## 10234                                   health
## 10235                                   health
## 10236                                   health
## 10237                                healthier
## 10238                                  healthy
## 10239                                  healthy
## 10240                                  healthy
## 10241                                     hear
## 10242                                    heard
## 10243                                    heart
## 10244                                     heat
## 10245                                     heat
## 10246                                     heat
## 10247                                     heat
## 10248                                     heat
## 10249                                     heat
## 10250                                 heatgear
## 10251                                 heatgear
## 10252                                  heavier
## 10253                                  heavier
## 10254                                  heavily
## 10255                                    heavy
## 10256                                    heavy
## 10257                                    heavy
## 10258                                    heavy
## 10259                                    heavy
## 10260                                    heavy
## 10261                                    heavy
## 10262                                    heavy
## 10263                               hede’wachi
## 10264                                     heel
## 10265                                     heel
## 10266                                     heel
## 10267                                     heel
## 10268                                     heel
## 10269                                     heel
## 10270                                     heel
## 10271                                     heel
## 10272                                    heels
## 10273                                   height
## 10274                              heightening
## 10275                                     hell
## 10276                                     hell
## 10277                                     hell
## 10278                                     hell
## 10279                                    hella
## 10280                                    hella
## 10281                                    hella
## 10282                                 helllllp
## 10283                                    hells
## 10284                                   helped
## 10285                                  helpful
## 10286                                  helpful
## 10287                                  helpful
## 10288                                  helpful
## 10289                                  helpful
## 10290                                  helpful
## 10291                                  helpful
## 10292                                  helpful
## 10293                                  helpful
## 10294                                  helping
## 10295                                  helping
## 10296                                    helps
## 10297                                    helps
## 10298                              henrytheath
## 10299                                   hentet
## 10300                                     herd
## 10301                                    heron
## 10302                             herramientas
## 10303                                   heures
## 10304                                hexagonal
## 10305                                      hey
## 10306                                      hey
## 10307                                  hibbett
## 10308                                   hidden
## 10309                                  hideous
## 10310                                  hideous
## 10311                               highlights
## 10312                                   highly
## 10313                                   highly
## 10314                                   highly
## 10315                                   highly
## 10316                                   highly
## 10317                                   highly
## 10318                                  highway
## 10319                                     hiit
## 10320                                     hiit
## 10321                                     hiit
## 10322                                     hiit
## 10323                                     hike
## 10324                                     hike
## 10325                                     hike
## 10326                                     hike
## 10327                                    hikes
## 10328                                    hikes
## 10329                                    hikes
## 10330                                   hiking
## 10331                                   hiking
## 10332                                   hiking
## 10333                                   hiking
## 10334                                   hiking
## 10335                                   hiking
## 10336                                   hiking
## 10337                                     hill
## 10338                                     hill
## 10339                                     hill
## 10340                                hindering
## 10341                                      hip
## 10342                                   hippie
## 10343                                   hippie
## 10344                                   hippie
## 10345                                  hippies
## 10346                                  hippies
## 10347                                  hippies
## 10348                                  hippies
## 10349                                    hires
## 10350                                   hiring
## 10351                               historical
## 10352                               historical
## 10353                                  history
## 10354                                  history
## 10355                                  history
## 10356                                  history
## 10357                                      hit
## 10358                                      hit
## 10359                                      hit
## 10360                                      hit
## 10361                                      hit
## 10362                                      hit
## 10363                                      hit
## 10364                                      hit
## 10365                                      hit
## 10366                                      hit
## 10367                                     hits
## 10368                                     hits
## 10369                                  hitting
## 10370                                  hitting
## 10371                                     hmmm
## 10372                                       ho
## 10373                                    hodge
## 10374                                      hoe
## 10375                                     hoes
## 10376                                     hoes
## 10377                                     hoes
## 10378                                      hog
## 10379                                     hoje
## 10380                                     hoka
## 10381                                     hoka
## 10382                                     hoka
## 10383                                     hoka
## 10384                                     hoka
## 10385                                     hoka
## 10386                                     hoka
## 10387                                     hold
## 10388                                   holder
## 10389                                   holder
## 10390                                 holder’s
## 10391                                    holds
## 10392                                     hole
## 10393                                     hole
## 10394                                    holes
## 10395                                    holes
## 10396                                  holiday
## 10397                                     holy
## 10398                                     holy
## 10399                                     holy
## 10400                                     home
## 10401                                     home
## 10402                                     home
## 10403                                     home
## 10404                                     home
## 10405                                     home
## 10406                                     home
## 10407                                     home
## 10408 homeleeeeeeessssssssssssssssssssssssssss
## 10409                                    homie
## 10410                               homosexual
## 10411                                    honda
## 10412                                   honest
## 10413                                   honest
## 10414                                   honest
## 10415                                 honestly
## 10416                                 honestly
## 10417                                 honestly
## 10418                                 honestly
## 10419                                 honestly
## 10420                                 honestly
## 10421                                 honestly
## 10422                                 honestly
## 10423                                 honestly
## 10424                                 honestly
## 10425                                 honestly
## 10426                                     hood
## 10427                                   hoodie
## 10428                                   hoodie
## 10429                                   hoodie
## 10430                                   hoodie
## 10431                                   hoodie
## 10432                    hoodiesweatshirtwomen
## 10433                                   hooked
## 10434                                   hookem
## 10435                                     hoop
## 10436                                     hoop
## 10437                                  hooping
## 10438                                      hop
## 10439                                     hope
## 10440                                     hope
## 10441                                     hope
## 10442                                  hopeful
## 10443                                 horrible
## 10444                                 horrible
## 10445                                 horrible
## 10446                                 horrible
## 10447                                 horrible
## 10448                                 horrible
## 10449                                 horrible
## 10450                                 horrible
## 10451                                 horrific
## 10452                                   horror
## 10453                                    horse
## 10454                                horseback
## 10455                                      hot
## 10456                                      hot
## 10457                                      hot
## 10458                                      hot
## 10459                                      hot
## 10460                                      hot
## 10461                                      hot
## 10462                                  hottest
## 10463                                    hottt
## 10464                                     hour
## 10465                                     hour
## 10466                                     hour
## 10467                                     hour
## 10468                                     hour
## 10469                                     hour
## 10470                                    hours
## 10471                                    hours
## 10472                                    hours
## 10473                                    house
## 10474                                    house
## 10475                                    house
## 10476                                    house
## 10477                                    house
## 10478                                    house
## 10479                                    house
## 10480                                    house
## 10481                                     hovr
## 10482                                     hovr
## 10483                                     hovr
## 10484                                     hovr
## 10485                                     howw
## 10486                                   howwww
## 10487                                      hoy
## 10488                                       hr
## 10489                                       hr
## 10490                                       hr
## 10491                                       hs
## 10492                                     http
## 10493                                    https
## 10494                                    https
## 10495                                    https
## 10496                                    https
## 10497                                    https
## 10498                                    https
## 10499                                    https
## 10500                                 huarache
## 10501                                 huarache
## 10502                                      hub
## 10503                                 hubiesen
## 10504                                     huge
## 10505                                     huge
## 10506                                     huge
## 10507                                     huge
## 10508                                     huge
## 10509                                     huge
## 10510                                     huge
## 10511                                     huge
## 10512                                     huge
## 10513                                     huge
## 10514                                   hugely
## 10515                                      huh
## 10516                                    humid
## 10517                                  hundred
## 10518                                 hundreds
## 10519                                   hunger
## 10520                                   hunter
## 10521                                  hunting
## 10522                                     hurt
## 10523                                  husband
## 10524                                   hustle
## 10525                                   hybrid
## 10526                              hydrodipped
## 10527                                     hype
## 10528                                     hype
## 10529                                     hype
## 10530                                     hype
## 10531                                     hype
## 10532                                     hype
## 10533                                     hype
## 10534                                     hype
## 10535                                     hype
## 10536                                     hype
## 10537                                hypebeast
## 10538                                hypebeast
## 10539                               hypebeasts
## 10540                                    hyped
## 10541                                    hyped
## 10542                              hyperflight
## 10543                              hyperflight
## 10544                              hyperflight
## 10545                                 hyperion
## 10546                                hyperlift
## 10547                                      i.e
## 10548                                      iam
## 10549                                      iba
## 10550                                      icl
## 10551                                   iconic
## 10552                                      icu
## 10553                                       id
## 10554                                       id
## 10555                                       id
## 10556                                       id
## 10557                                       id
## 10558                                       id
## 10559                                      idc
## 10560                                    ideal
## 10561                                    ideas
## 10562                                    ideas
## 10563                                 identify
## 10564                                 identify
## 10565                                 identity
## 10566                            ideologically
## 10567                                  idiotic
## 10568                                     idle
## 10569                       ifnbpfxfgetn8bh0vz
## 10570                                      ifs
## 10571                                       ig
## 10572                                 ignoring
## 10573                                       ii
## 10574                                       ii
## 10575                                    iii's
## 10576                                       ik
## 10577                                       il
## 10578                                      ill
## 10579                                       im
## 10580                                       im
## 10581                                       im
## 10582                                       im
## 10583                                       im
## 10584                                       im
## 10585                                       im
## 10586                                       im
## 10587                                       im
## 10588                                      ima
## 10589                                    image
## 10590                                  imagine
## 10591                                  imagine
## 10592                                     imho
## 10593                                     imma
## 10594                                     imma
## 10595                              immediately
## 10596                              immediately
## 10597                              immediately
## 10598                              immediately
## 10599                              immediately
## 10600                              immediately
## 10601                                      imo
## 10602                                      imo
## 10603                                      imo
## 10604                                      imo
## 10605                                      imo
## 10606                                impactful
## 10607                              importunada
## 10608                            impossibilité
## 10609                               impossible
## 10610                               impossível
## 10611                                impressed
## 10612                               impressive
## 10613                               impressive
## 10614                               improperly
## 10615                                  improve
## 10616                                  improve
## 10617                                  improve
## 10618                                  improve
## 10619                                  improve
## 10620                                 improved
## 10621                                 improved
## 10622                              improvement
## 10623                             improvements
## 10624                             imtermediate
## 10625                               inaccurate
## 10626                               inaccurate
## 10627                                    inane
## 10628                            inappropriate
## 10629                           inauthenticity
## 10630                                    inbox
## 10631                                     inch
## 10632                                     inch
## 10633                                   inches
## 10634                                  include
## 10635                                  include
## 10636                                  include
## 10637                                  include
## 10638                                  include
## 10639                                  include
## 10640                                 included
## 10641                                 included
## 10642                                including
## 10643                                including
## 10644                                including
## 10645                                including
## 10646                                including
## 10647                                including
## 10648                                including
## 10649                                including
## 10650                                including
## 10651                              inclusivity
## 10652                                   income
## 10653                                   income
## 10654                                   income
## 10655                                   income
## 10656                             inconsistent
## 10657                            inconvenience
## 10658                             inconvenient
## 10659                             inconvenient
## 10660                            incorporating
## 10661                                incorrect
## 10662                                incorrect
## 10663                                incorrect
## 10664                                 increase
## 10665                                increased
## 10666                             increasingly
## 10667                               incredible
## 10668                               incredible
## 10669                               incredible
## 10670                               incredible
## 10671                               incredibly
## 10672                               incredibly
## 10673                               incredibly
## 10674                               incredibly
## 10675                               incredibly
## 10676                               incredibly
## 10677                               incredibly
## 10678                                increíble
## 10679                                increíble
## 10680                                   indian
## 10681                               individual
## 10682                               individual
## 10683                                indonesia
## 10684                                   indoor
## 10685                                   indoor
## 10686                                   indoor
## 10687                                  indoors
## 10688                               industrial
## 10689                               industrial
## 10690                                 industry
## 10691                                    inept
## 10692                               inevitable
## 10693                             inexplicably
## 10694                                 inferior
## 10695                                 inferior
## 10696                                 infinite
## 10697                                 infinite
## 10698                                 infinity
## 10699                                influence
## 10700                                     info
## 10701                                     info
## 10702                                     info
## 10703                                     info
## 10704                                     info
## 10705                              information
## 10706                              information
## 10707                              information
## 10708                              informative
## 10709                              informative
## 10710                              informative
## 10711                              informative
## 10712                                 informed
## 10713                                 informed
## 10714                                 infrared
## 10715                                infrareds
## 10716                                  inicial
## 10717                               iniciativa
## 10718                                  initial
## 10719                                  initial
## 10720                                  initial
## 10721                                  initial
## 10722                                initially
## 10723                                   inline
## 10724                                    innov
## 10725                               innovation
## 10726                               innovation
## 10727                               innovative
## 10728                                    inov8
## 10729                                    inov8
## 10730                                    input
## 10731                                   insane
## 10732                                   insane
## 10733                                   insane
## 10734                                   insane
## 10735                                   insane
## 10736                                   insane
## 10737                                 insanely
## 10738                                 insanely
## 10739                                 insanely
## 10740                                   inside
## 10741                                   inside
## 10742                                  insider
## 10743                                  insight
## 10744                                   insole
## 10745                                  insoles
## 10746                                  insoles
## 10747                                  insoles
## 10748                                 inspired
## 10749                                 inspired
## 10750                                 inspired
## 10751                                instagram
## 10752                                instagram
## 10753                                installed
## 10754                                 instance
## 10755                                  instant
## 10756                                  instant
## 10757                                  instant
## 10758                                instantly
## 10759                                instantly
## 10760                             instructions
## 10761                               instructor
## 10762                               instructor
## 10763                               instructor
## 10764                              instructors
## 10765                              instructors
## 10766                             instructor’s
## 10767                                  insulin
## 10768                                insurance
## 10769                              integration
## 10770                              integration
## 10771                         inteligibilidade
## 10772                                 intended
## 10773                                 intended
## 10774                                  intense
## 10775                                  intense
## 10776                                intensity
## 10777                                intensity
## 10778                            intentionally
## 10779                              interaction
## 10780                              interesante
## 10781                                interesse
## 10782                                interface
## 10783                                interface
## 10784                                interface
## 10785                                interface
## 10786                                interface
## 10787                                interface
## 10788                               interfaces
## 10789                                  interim
## 10790                                 interior
## 10791                                 internal
## 10792                            international
## 10793                             interruption
## 10794                                 interval
## 10795                                 interval
## 10796                                 interval
## 10797                                 interval
## 10798                                 interval
## 10799                                intervals
## 10800                                intervals
## 10801                                    intro
## 10802                               introduced
## 10803                               introduces
## 10804                                intuitive
## 10805                                intuitive
## 10806                                  invalid
## 10807                               invaluable
## 10808                                inventory
## 10809                                inventory
## 10810                                inventory
## 10811                                inventory
## 10812                                 inverted
## 10813                                 invested
## 10814                                 investor
## 10815                                investors
## 10816                               invincible
## 10817                                   invite
## 10818                                      ios
## 10819                                      ios
## 10820                                      ios
## 10821                                      ios
## 10822                                      ios
## 10823                                      ios
## 10824                                      ios
## 10825                                      ios
## 10826                                     ipad
## 10827                                     ipad
## 10828                                     ipad
## 10829                                     ipad
## 10830                                     ipad
## 10831                                     ipad
## 10832                                     ipad
## 10833                                     ipad
## 10834                                     ipad
## 10835                                     ipad
## 10836                                     ipad
## 10837                                     ipad
## 10838                                   iphone
## 10839                                   iphone
## 10840                                   iphone
## 10841                                   iphone
## 10842                                   iphone
## 10843                                   iphone
## 10844                                      irl
## 10845                                irregular
## 10846                               irrelevant
## 10847                                      ise
## 10848                                      ish
## 10849                                     isla
## 10850                                    isn’t
## 10851                                    isn’t
## 10852                                    isn’t
## 10853                                    isn’t
## 10854                                    isn’t
## 10855                                    isn’t
## 10856                                    isn’t
## 10857                                     ispa
## 10858                                    issue
## 10859                                    issue
## 10860                                    issue
## 10861                                    issue
## 10862                                    issue
## 10863                                    issue
## 10864                                    issue
## 10865                                    issue
## 10866                                    issue
## 10867                                    issue
## 10868                                    issue
## 10869                                    issue
## 10870                                    issue
## 10871                                   issues
## 10872                                   issues
## 10873                                   issues
## 10874                                   issues
## 10875                                   issues
## 10876                                   issues
## 10877                                   issues
## 10878                                   issues
## 10879                                  italics
## 10880                                    italy
## 10881                                    italy
## 10882                                    italy
## 10883                                     item
## 10884                                    items
## 10885                                    it’ll
## 10886                                     it’s
## 10887                                     it’s
## 10888                                     it’s
## 10889                                     it’s
## 10890                                     it’s
## 10891                                     it’s
## 10892                                     it’s
## 10893                                     it’s
## 10894                                     it’s
## 10895                                     it’s
## 10896                                     it’s
## 10897                                     it’s
## 10898                                     it’s
## 10899                                     it’s
## 10900                                     it’s
## 10901                                     it’s
## 10902                                     it’s
## 10903                                     it’s
## 10904                                     it’s
## 10905                                     it’s
## 10906                                     it’s
## 10907                                     it’s
## 10908                                     it’s
## 10909                                     it’s
## 10910                                     it’s
## 10911                                     it’s
## 10912                                     it’s
## 10913                                     it’s
## 10914                                     it’s
## 10915                                     it’s
## 10916                                     it’s
## 10917                                     it’s
## 10918                                     it’s
## 10919                                     it’s
## 10920                                     it’s
## 10921                                     it’s
## 10922                                     it’s
## 10923                                     it’s
## 10924                                     it’s
## 10925                                     it’s
## 10926                                     it’s
## 10927                                     it’s
## 10928                                     it’s
## 10929                                     it’s
## 10930                                     it’s
## 10931                                     it’s
## 10932                                     it’s
## 10933                                     it’s
## 10934                                     it’s
## 10935                                     it’s
## 10936                                     it’s
## 10937                                     it’s
## 10938                                       iu
## 10939                                       iv
## 10940                                     iván
## 10941                                   iwatch
## 10942                                   iwatch
## 10943                                      i’d
## 10944                                      i’d
## 10945                                      i’d
## 10946                                      i’d
## 10947                                      i’d
## 10948                                      i’d
## 10949                                      i’d
## 10950                                      i’d
## 10951                                     i’ll
## 10952                                     i’ll
## 10953                                     i’ll
## 10954                                     i’ll
## 10955                                     i’ll
## 10956                                     i’ll
## 10957                                      i’m
## 10958                                      i’m
## 10959                                      i’m
## 10960                                      i’m
## 10961                                      i’m
## 10962                                      i’m
## 10963                                      i’m
## 10964                                      i’m
## 10965                                      i’m
## 10966                                      i’m
## 10967                                      i’m
## 10968                                      i’m
## 10969                                      i’m
## 10970                                      i’m
## 10971                                      i’m
## 10972                                      i’m
## 10973                                      i’m
## 10974                                      i’m
## 10975                                      i’m
## 10976                                      i’m
## 10977                                      i’m
## 10978                                      i’m
## 10979                                      i’m
## 10980                                      i’m
## 10981                                      i’m
## 10982                                      i’m
## 10983                                      i’m
## 10984                                      i’m
## 10985                                      i’m
## 10986                                      i’m
## 10987                                      i’m
## 10988                                      i’m
## 10989                                      i’m
## 10990                                      i’m
## 10991                                      i’m
## 10992                                      i’m
## 10993                                      i’m
## 10994                                      i’m
## 10995                                      i’m
## 10996                                      i’m
## 10997                                     i’ve
## 10998                                     i’ve
## 10999                                     i’ve
## 11000                                     i’ve
## 11001                                     i’ve
## 11002                                     i’ve
## 11003                                     i’ve
## 11004                                     i’ve
## 11005                                     i’ve
## 11006                                     i’ve
## 11007                                     i’ve
## 11008                                     i’ve
## 11009                                     i’ve
## 11010                                     i’ve
## 11011                                     i’ve
## 11012                                     i’ve
## 11013                                     i’ve
## 11014                                     i’ve
## 11015                                     i’ve
## 11016                                     i’ve
## 11017                                     i’ve
## 11018                                     i’ve
## 11019                                     i’ve
## 11020                                     i’ve
## 11021                                     i’ve
## 11022                                     i’ve
## 11023                                      j.c
## 11024                                       j1
## 11025                                       j1
## 11026                                      j1s
## 11027                                       j4
## 11028                                       j4
## 11029                                       ja
## 11030                                       ja
## 11031                                       ja
## 11032                                   jacked
## 11033                                   jacket
## 11034                                   jacket
## 11035                                   jacket
## 11036                                   jacket
## 11037                   jacketjacketmenfinally
## 11038                    jacketjacketwomengood
## 11039                               jacketkids
## 11040                                jackson's
## 11041                               jacqueline
## 11042                                jacquemus
## 11043                                     jake
## 11044                                     jake
## 11045                                   jamais
## 11046                              jameshoang7
## 11047                                  january
## 11048                                  january
## 11049                                  january
## 11050                                    japan
## 11051                                    japan
## 11052                                 japanese
## 11053                                 japanese
## 11054                                    jason
## 11055                                      jbl
## 11056                                       jd
## 11057                                       jd
## 11058                                       je
## 11059                                  jealous
## 11060                                  jealous
## 11061                                  jealous
## 11062                                  jealous
## 11063                                    jeans
## 11064                                    jeans
## 11065                                    jeans
## 11066                                    jeans
## 11067                                   jeebus
## 11068                                     jeep
## 11069                                   jersey
## 11070                                   jersey
## 11071                                   jersey
## 11072                                   jersey
## 11073                                   jersey
## 11074                                jerusalem
## 11075                                    jesus
## 11076                                      jet
## 11077                                      jet
## 11078                                       jk
## 11079                                      job
## 11080                                      job
## 11081                                      job
## 11082                                      job
## 11083                                      job
## 11084                                      job
## 11085                                      job
## 11086                                      joe
## 11087                                      jog
## 11088                                   jogger
## 11089                                  jogging
## 11090                                  jogging
## 11091                                  jogging
## 11092                                     jogs
## 11093                                    johan
## 11094                                     john
## 11095                                     join
## 11096                                     join
## 11097                                     join
## 11098                                     join
## 11099                                   joined
## 11100                                   joints
## 11101                                   joints
## 11102                                     joke
## 11103                                     joke
## 11104                                      jon
## 11105                                    jonah
## 11106                                   jordan
## 11107                                   jordan
## 11108                                   jordan
## 11109                                   jordan
## 11110                                   jordan
## 11111                                   jordan
## 11112                                   jordan
## 11113                                   jordan
## 11114                                   jordan
## 11115                                   jordan
## 11116                                   jordan
## 11117                                   jordan
## 11118                                   jordan
## 11119                                   jordan
## 11120                                   jordan
## 11121                                   jordan
## 11122                                   jordan
## 11123                                   jordan
## 11124                                   jordan
## 11125                                   jordan
## 11126                                   jordan
## 11127                                   jordan
## 11128                                   jordan
## 11129                                   jordan
## 11130                                   jordan
## 11131                                 jordan's
## 11132                                  jordans
## 11133                                  jordans
## 11134                                    jorge
## 11135                                     josh
## 11136                                  journal
## 11137                                  journal
## 11138                                  journey
## 11139                                  journey
## 11140                                  journey
## 11141                                 journeys
## 11142                                      joy
## 11143                                     json
## 11144                               juan.bello
## 11145                                judgement
## 11146                                    judgy
## 11147                                judicious
## 11148                                      jug
## 11149                                     july
## 11150                                     jump
## 11151                                  jumping
## 11152                                  jumpman
## 11153                                  jumpman
## 11154                                  jumpman
## 11155                                     june
## 11156                                     june
## 11157                                     junk
## 11158                                     junk
## 11159                                 junttila
## 11160                                      jus
## 11161                                      jus
## 11162                           justfreshkicks
## 11163                                  justice
## 11164                                     j’ai
## 11165                                    kanye
## 11166                                   kareem
## 11167                                   karina
## 11168                                   kasper
## 11169                                      kay
## 11170                                 kayaking
## 11171                                       kd
## 11172                                   keeper
## 11173                                  keeping
## 11174                                  keeping
## 11175                                 kentucky
## 11176                       keq3dg4poe37dnatvm
## 11177                               kettlebell
## 11178                                    kevin
## 11179                                    kevin
## 11180                                      key
## 11181                                      key
## 11182                                      key
## 11183                                      key
## 11184                                keychains
## 11185                                       kg
## 11186                                       kg
## 11187                                     kg’s
## 11188                                     kg’s
## 11189                                    khaki
## 11190                            kiau2euyxjqb2
## 11191                                     kick
## 11192                                    kicks
## 11193                                    kicks
## 11194                                    kicks
## 11195                                    kicks
## 11196                                    kicks
## 11197                                    kicks
## 11198                                    kicks
## 11199                                  kicks.e
## 11200                                kickstart
## 11201                           kicksundercost
## 11202                           kicksundercost
## 11203                                      kid
## 11204                                      kid
## 11205                                      kid
## 11206                                      kid
## 11207                                  kidding
## 11208                                   kidney
## 11209                                   kidney
## 11210                                   kidney
## 11211                                  kidneys
## 11212                                     kids
## 11213                                     kids
## 11214                                     kids
## 11215                                     kids
## 11216                                     kids
## 11217                                     kids
## 11218                                   killer
## 11219                                   killer
## 11220                                   killer
## 11221                                   killer
## 11222                               kimmyjeans
## 11223                                    kinda
## 11224                                    kinda
## 11225                                    kinda
## 11226                                    kinda
## 11227                                    kinda
## 11228                                    kinda
## 11229                                    kinda
## 11230                                    kinda
## 11231                                    kinda
## 11232                                    kinda
## 11233                                    kinda
## 11234                                    kinda
## 11235                                    kinds
## 11236                                     king
## 11237                                 kirkland
## 11238                                   kirsty
## 11239                                      kit
## 11240                                      kit
## 11241                                      kit
## 11242                                     kith
## 11243                                     kits
## 11244                       kl9iawej2mxlzvzp2o
## 11245                                      kms
## 11246                                     knee
## 11247                                     knee
## 11248                                    knees
## 11249                                   knight
## 11250                                     knit
## 11251                                     knit
## 11252                                     knit
## 11253                                    knits
## 11254                                    knock
## 11255                                  knowing
## 11256                                knowledge
## 11257                                knowledge
## 11258                            knowledgeable
## 11259                                     kobe
## 11260                                     kobe
## 11261                                     kobe
## 11262                                     kobe
## 11263                                     kobe
## 11264                                    kobes
## 11265                                     kolu
## 11266                                    korea
## 11267                                     korn
## 11268                      kullanıyorum.nedeni
## 11269                                    kyrie
## 11270                        l1kuhbcqxoojyr0m4
## 11271                                       la
## 11272                                       la
## 11273                                       la
## 11274                                       la
## 11275                                       la
## 11276                                       la
## 11277                                       la
## 11278                                       la
## 11279                                       la
## 11280                                       la
## 11281                                       la
## 11282                                       la
## 11283                                  label's
## 11284                                   labels
## 11285                                    labor
## 11286                                     lace
## 11287                                    laces
## 11288                                    laces
## 11289                                    laces
## 11290                                    laces
## 11291                                    laces
## 11292                                    laces
## 11293                                    laces
## 11294                                    laces
## 11295                                   lacing
## 11296                                   lacing
## 11297                                     lack
## 11298                                    lacks
## 11299                                    lacks
## 11300                                    lacks
## 11301                                   ladies
## 11302                                   ladies
## 11303                                     lady
## 11304                                   lafufu
## 11305                                     lags
## 11306                                     lags
## 11307                                     lame
## 11308                                     land
## 11309                                 language
## 11310                                 language
## 11311                                      lap
## 11312                                   larger
## 11313                                   larger
## 11314                                   larger
## 11315                                  largest
## 11316                                      las
## 11317                                      las
## 11318                                      las
## 11319                                   lasted
## 11320                                   lastly
## 11321                                    lasts
## 11322                                      lat
## 11323                                    latam
## 11324                                     late
## 11325                                     late
## 11326                                     late
## 11327                                     late
## 11328                                     late
## 11329                                     late
## 11330                                  lateral
## 11331                                   launch
## 11332                                 launches
## 11333                                 launches
## 11334                                 launches
## 11335                                 launches
## 11336                                  laundry
## 11337                                     lawn
## 11338                                  layoffs
## 11339                                   layout
## 11340                                     lazy
## 11341                                     lazy
## 11342                                      lcp
## 11343                                       le
## 11344                                       le
## 11345                                       le
## 11346                                       le
## 11347                                     lead
## 11348                               leadership
## 11349                               leadership
## 11350                                    leads
## 11351                                  leagues
## 11352                                     leap
## 11353                                  leather
## 11354                                  leather
## 11355                                  leather
## 11356                                  leather
## 11357                                  leather
## 11358                                  leather
## 11359                                  leather
## 11360                                  leather
## 11361                                  leather
## 11362                                  leather
## 11363                                    leave
## 11364                                    leave
## 11365                                    leave
## 11366                                    leave
## 11367                                    leave
## 11368                                  leaving
## 11369                                  leaving
## 11370                                   lebron
## 11371                                   lebron
## 11372                                   lebron
## 11373                                  lebrons
## 11374                                  lebrons
## 11375                                    leche
## 11376                                    leche
## 11377                                   leches
## 11378                                      led
## 11379                                      led
## 11380                                      led
## 11381                                     left
## 11382                                     left
## 11383                                     left
## 11384                                     left
## 11385                                     left
## 11386                                     left
## 11387                                     left
## 11388                                     left
## 11389                                 leftover
## 11390                                      leg
## 11391                                      leg
## 11392                                    legal
## 11393                                   legend
## 11394                                 leggings
## 11395                                 leggings
## 11396                                    legit
## 11397                                    legit
## 11398                                    legit
## 11399                                    legit
## 11400                                    legit
## 11401                                    legit
## 11402                                    legit
## 11403                                    legit
## 11404                                    legit
## 11405                                    legit
## 11406                               legitcheck
## 11407                                     legs
## 11408                                     legs
## 11409                                      lei
## 11410                                   length
## 11411                                   length
## 11412                                   length
## 11413                                   length
## 11414                                   length
## 11415                                   length
## 11416                                  lengths
## 11417                                     lens
## 11418                                     lens
## 11419                                      les
## 11420                                      les
## 11421                                lessening
## 11422                                   lesser
## 11423                                   lesson
## 11424                                  letsgoo
## 11425                                lettering
## 11426                                    level
## 11427                                    level
## 11428                                    level
## 11429                                    level
## 11430                                    level
## 11431                                    level
## 11432                                    level
## 11433                                    level
## 11434                                    level
## 11435                                    level
## 11436                                    level
## 11437                                    level
## 11438                                    level
## 11439                                   levels
## 11440                               levitating
## 11441                                 leyeezys
## 11442                                    libre
## 11443                                     life
## 11444                                     life
## 11445                                     life
## 11446                                     life
## 11447                                     life
## 11448                                     life
## 11449                                     life
## 11450                                     life
## 11451                                     life
## 11452                                     life
## 11453                                     life
## 11454                                     life
## 11455                                     life
## 11456                                     life
## 11457                                     life
## 11458                                     life
## 11459                                 lifelong
## 11460                                lifestyle
## 11461                                lifestyle
## 11462                                lifestyle
## 11463                                lifestyle
## 11464                                 lifetime
## 11465                                   life’s
## 11466                                     lift
## 11467                                  lifting
## 11468                                  lifting
## 11469                                  lifting
## 11470                                  lifting
## 11471                                    light
## 11472                                    light
## 11473                                    light
## 11474                                    light
## 11475                                    light
## 11476                                    light
## 11477                                    light
## 11478                                    light
## 11479                                    light
## 11480                                 lightest
## 11481                                 lightest
## 11482                                 lighting
## 11483                              lightstrike
## 11484                              lightweight
## 11485                              lightweight
## 11486                              lightweight
## 11487                              lightweight
## 11488                              lightweight
## 11489                              lightweight
## 11490                                  like1st
## 11491                                    likes
## 11492                                    likes
## 11493                                   liking
## 11494                                      lil
## 11495                                      lil
## 11496                                    lilac
## 11497                                limelight
## 11498                                  limited
## 11499                                  limited
## 11500                                  limited
## 11501                                  limited
## 11502                                  limited
## 11503                                    linda
## 11504                                     line
## 11505                                     line
## 11506                                     line
## 11507                                     line
## 11508                                     line
## 11509                                     line
## 11510                                     line
## 11511                                    lined
## 11512                                    lined
## 11513                                    liner
## 11514                                    lines
## 11515                                   lineup
## 11516                                 lingerie
## 11517                                   lining
## 11518                                   lining
## 11519                                     link
## 11520                                     link
## 11521                                     link
## 11522                                     link
## 11523                                    links
## 11524                                 linnartz
## 11525                               linnartz's
## 11526                               linnartz's
## 11527                                     lion
## 11528                                     list
## 11529                                     list
## 11530                                     list
## 11531                                     list
## 11532                                     list
## 11533                                   listed
## 11534                                   listed
## 11535                                   listed
## 11536                                  literal
## 11537                                literally
## 11538                                literally
## 11539                                literally
## 11540                                literally
## 11541                                literally
## 11542                                literally
## 11543                                literally
## 11544                                literally
## 11545                                literally
## 11546                                literally
## 11547                                literally
## 11548                                literally
## 11549                               litterally
## 11550                                     live
## 11551                                     live
## 11552                                     live
## 11553                                     live
## 11554                                     live
## 11555                                     live
## 11556                                     live
## 11557                                     live
## 11558                                     live
## 11559                                     live
## 11560                                   lively
## 11561                                   living
## 11562                                      liw
## 11563                                       ll
## 11564                                       ll
## 11565                                       ll
## 11566                                       ll
## 11567                                       ll
## 11568                                       ll
## 11569                                       ll
## 11570                                       ll
## 11571                                       ll
## 11572                                       ll
## 11573                                       ll
## 11574                                       ll
## 11575                                       ll
## 11576                                       ll
## 11577                                       ll
## 11578                                       ll
## 11579                                   llegan
## 11580                                   llevar
## 11581                                    llevo
## 11582                                   lluvia
## 11583                                     lmao
## 11584                                     lmao
## 11585                                     lmao
## 11586                                     lmao
## 11587                                     lmao
## 11588                                     lmao
## 11589                                     lmao
## 11590                                   lmaooo
## 11591                                    lmfao
## 11592                                   lmfaoo
## 11593                                       lo
## 11594                                       lo
## 11595                                     load
## 11596                                     load
## 11597                                     load
## 11598                                     load
## 11599                                     load
## 11600                                     load
## 11601                                     load
## 11602                                     load
## 11603                                  loading
## 11604                                  loading
## 11605                                    loads
## 11606                                    local
## 11607                                    local
## 11608                                    local
## 11609                                    local
## 11610                                    local
## 11611                                    local
## 11612                                    local
## 11613                                    local
## 11614                                    local
## 11615                                   locate
## 11616                                  located
## 11617                                 location
## 11618                                 location
## 11619                                 location
## 11620                                     lock
## 11621                                 lockdown
## 11622                                lockdowns
## 11623                                lockdowns
## 11624                                lockdowns
## 11625                                   locked
## 11626                                   locker
## 11627                                     loes
## 11628                                      log
## 11629                                   logged
## 11630                                  logging
## 11631                                  logging
## 11632                                  logging
## 11633                                    login
## 11634                                    login
## 11635                                    login
## 11636                                    login
## 11637                                    login
## 11638                                    login
## 11639                                   logins
## 11640                                     logo
## 11641                                     logo
## 11642                                     logo
## 11643                                     logo
## 11644                                     logo
## 11645                                     logo
## 11646                                    logos
## 11647                                  logrado
## 11648                                   lograr
## 11649                                   logros
## 11650                                      lol
## 11651                                      lol
## 11652                                      lol
## 11653                                      lol
## 11654                                      lol
## 11655                                      lol
## 11656                                      lol
## 11657                                      lol
## 11658                                      lol
## 11659                                      lol
## 11660                                      lol
## 11661                                      lol
## 11662                                      lol
## 11663                                      lol
## 11664                                      lol
## 11665                                      lol
## 11666                                      lol
## 11667                                      lol
## 11668                                      lol
## 11669                                      lol
## 11670                                      lol
## 11671                                      lol
## 11672                                      lol
## 11673                                      lol
## 11674                                      lol
## 11675                                      lol
## 11676                                      lol
## 11677                                      lol
## 11678                                      lol
## 11679                                      lol
## 11680                                      lol
## 11681                                      lol
## 11682                                      lol
## 11683                                      lol
## 11684                                      lol
## 11685                                      lol
## 11686                                      lol
## 11687                                      lol
## 11688                                      lol
## 11689                                      lol
## 11690                                      lol
## 11691                                      lol
## 11692                                      lol
## 11693                                      lol
## 11694                                      lol
## 11695                                      lol
## 11696                                      lol
## 11697                                      lol
## 11698                                      lol
## 11699                                      lol
## 11700                                      lol
## 11701                                      lol
## 11702                                      lol
## 11703                                      lol
## 11704                                      lol
## 11705                                      lol
## 11706                                      lol
## 11707                                      lol
## 11708                                      lol
## 11709                                      lol
## 11710                                      lol
## 11711                                      lol
## 11712                                      lol
## 11713                                      lol
## 11714                                      lol
## 11715                                      lol
## 11716                                      lol
## 11717                                      lol
## 11718                                      lol
## 11719                                      lol
## 11720                                      lol
## 11721                                      lol
## 11722                                      lol
## 11723                                      lol
## 11724                                      lol
## 11725                                      lol
## 11726                                      lol
## 11727                                      lol
## 11728                                      lol
## 11729                                   london
## 11730                                   lonely
## 11731                                longevity
## 11732                                 longhorn
## 11733                                 longtime
## 11734                                 longtime
## 11735                                   looked
## 11736                                   looked
## 11737                                   looked
## 11738                                   lookin
## 11739                                     loop
## 11740                                    loose
## 11741                                    loose
## 11742                                    loose
## 11743                                     lord
## 11744                            lord_ashdrake
## 11745                                      los
## 11746                                      los
## 11747                                      los
## 11748                                      los
## 11749                                      los
## 11750                                      los
## 11751                                      los
## 11752                                      los
## 11753                                     lose
## 11754                                     lose
## 11755                                     lose
## 11756                                     lose
## 11757                                    loses
## 11758                                    loses
## 11759                                   losing
## 11760                                   losing
## 11761                                   losing
## 11762                                     loss
## 11763                                     loss
## 11764                                     loss
## 11765                                   losses
## 11766                                   losses
## 11767                                     lost
## 11768                                     lost
## 11769                                     lost
## 11770                                     lost
## 11771                                     lost
## 11772                                     lost
## 11773                                     lost
## 11774                                     lost
## 11775                                      lot
## 11776                                      lot
## 11777                                      lot
## 11778                                      lot
## 11779                                      lot
## 11780                                      lot
## 11781                                      lot
## 11782                                    lotta
## 11783                                     loud
## 11784                                     loud
## 11785                                     love
## 11786                                     love
## 11787                                     love
## 11788                                     love
## 11789                                     love
## 11790                                     love
## 11791                                     love
## 11792                                     love
## 11793                                     love
## 11794                                     love
## 11795                                     love
## 11796                                     love
## 11797                                     love
## 11798                                     love
## 11799                                     love
## 11800                                     love
## 11801                                     love
## 11802                                     love
## 11803                                     love
## 11804                                     love
## 11805                                     love
## 11806                                     love
## 11807                                     love
## 11808                                     love
## 11809                                     love
## 11810                                     love
## 11811                                     love
## 11812                                     love
## 11813                                     love
## 11814                                     love
## 11815                                     love
## 11816                                     love
## 11817                                     love
## 11818                                     love
## 11819                                     love
## 11820                                    loved
## 11821                                      low
## 11822                                      low
## 11823                                      low
## 11824                                      low
## 11825                                      low
## 11826                                      low
## 11827                                      low
## 11828                                      low
## 11829                                      low
## 11830                                      low
## 11831                                      low
## 11832                                      low
## 11833                                      low
## 11834                                      low
## 11835                                      low
## 11836                                      low
## 11837                                      low
## 11838                                      low
## 11839                                      low
## 11840                                      low
## 11841                                      low
## 11842                                      low
## 11843                                      low
## 11844                                      low
## 11845                                      low
## 11846                                    lower
## 11847                                    lower
## 11848                                     lows
## 11849                                     lows
## 11850                                     lows
## 11851                                     lows
## 11852                                    loyal
## 11853                                    loyal
## 11854                                  loyalty
## 11855                                  loyalty
## 11856                                    lucas
## 11857                                     luck
## 11858                                     luck
## 11859                                    lucky
## 11860                                    lucky
## 11861                                    lucky
## 11862                                     lume
## 11863                                    lunar
## 11864                               lunarterra
## 11865                                    lunch
## 11866                                    lunch
## 11867                                    lungs
## 11868                                   luxury
## 11869                                       lv
## 11870                                      lvl
## 11871                                       lw
## 11872                                    lwalk
## 11873                                l’adresse
## 11874                              m0d9qczq1u8
## 11875                                       ma
## 11876                                       ma
## 11877                                 macebell
## 11878                                  machina
## 11879                                  machina
## 11880                                  machine
## 11881                                  machine
## 11882                                  machine
## 11883                                  machine
## 11884                                    macro
## 11885                                   macron
## 11886                                   macy's
## 11887                                      mad
## 11888                                      mad
## 11889                                      mad
## 11890                                   madrid
## 11891                                   madrid
## 11892                                    magic
## 11893                                    magic
## 11894                              magnificent
## 11895                                     mail
## 11896                                     mail
## 11897                                     main
## 11898                                     main
## 11899                               maintained
## 11900                                     mais
## 11901                                    maize
## 11902                                    major
## 11903                                    major
## 11904                                    major
## 11905                                    major
## 11906                                    major
## 11907                                    major
## 11908                                    major
## 11909                                    major
## 11910                                    major
## 11911                                  majorly
## 11912                                    makes
## 11913                                    makes
## 11914                                    makes
## 11915                                    makes
## 11916                                    makes
## 11917                                    makes
## 11918                                    makes
## 11919                                    makes
## 11920                                    makes
## 11921                                     mala
## 11922                                     mala
## 11923                                   malaga
## 11924                                     male
## 11925                                     mall
## 11926                                    man's
## 11927                               management
## 11928                                  manager
## 11929                                 managing
## 11930                               manchester
## 11931                                mandatory
## 11932                                mandatory
## 11933                                  manerie
## 11934                                    mange
## 11935                                mannequin
## 11936                                 mantener
## 11937                                   manual
## 11938                                 manually
## 11939                                 manually
## 11940                                 manually
## 11941                                 manually
## 11942                                 manually
## 11943                                 manually
## 11944                             manufacturer
## 11945                             manufacturer
## 11946                            manufacturers
## 11947                                      map
## 11948                                      map
## 11949                                      map
## 11950                                      map
## 11951                                      map
## 11952                                      map
## 11953                                      map
## 11954                                      map
## 11955                                mapmyhike
## 11956                                 mapmyrun
## 11957                                 mapmyrun
## 11958                                 mapmyrun
## 11959                                  mapping
## 11960                                  mapping
## 11961                                  mapping
## 11962                                  mapping
## 11963                                     maps
## 11964                                 marathon
## 11965                                 marathon
## 11966                                 marathon
## 11967                                 marathon
## 11968                                 marathon
## 11969                                 marathon
## 11970                                 marathon
## 11971                                marathons
## 11972                                marathons
## 11973                                marathons
## 11974                                marathons
## 11975                                   marcar
## 11976                                    march
## 11977                                    march
## 11978                                    march
## 11979                                    march
## 11980                                    maria
## 11981                               marinating
## 11982                                   marine
## 11983                                    mario
## 11984                                   marked
## 11985                                   market
## 11986                                   market
## 11987                                   market
## 11988                                   market
## 11989                                   market
## 11990                                   market
## 11991                                   market
## 11992                                marketing
## 11993                                marketing
## 11994                                marketing
## 11995                                marketing
## 11996                                marketing
## 11997                                marketing
## 11998                              marketwatch
## 11999                              marketwatch
## 12000                                    marks
## 12001                                 marriott
## 12002                                    marty
## 12003                                      mas
## 12004                                masculine
## 12005                                     mask
## 12006                                     mask
## 12007                                     mass
## 12008                                     mass
## 12009                                  massage
## 12010                                  massive
## 12011                                massively
## 12012                                   master
## 12013                                    match
## 12014                                    match
## 12015                                  matches
## 12016                                  matches
## 12017                                 matching
## 12018                                 matching
## 12019                                 matching
## 12020                                   matchy
## 12021                                     mate
## 12022                                     mate
## 12023                                     mate
## 12024                                 material
## 12025                                 material
## 12026                                 material
## 12027                                 material
## 12028                                 material
## 12029                                 material
## 12030                                 material
## 12031                                 material
## 12032                                 material
## 12033                                 material
## 12034                                materials
## 12035                                maternity
## 12036                                   matter
## 12037                                   matter
## 12038                                   matter
## 12039                                  matters
## 12040                                      max
## 12041                                      max
## 12042                                      max
## 12043                                      max
## 12044                                      max
## 12045                                      max
## 12046                                      max
## 12047                                      max
## 12048                                      max
## 12049                                      max
## 12050                                      max
## 12051                                      max
## 12052                                      max
## 12053                                      max
## 12054                                      max
## 12055                                      max
## 12056                                      max
## 12057                                    maxes
## 12058                               maximalist
## 12059                               maximalist
## 12060                                   maximo
## 12061                                  maximum
## 12062                                     mayb
## 12063                                  mayores
## 12064                                       mb
## 12065                                    mcfly
## 12066                                      mcl
## 12067                                       md
## 12068                                     meal
## 12069                                    means
## 12070                                 measured
## 12071                              measurement
## 12072                                 measures
## 12073                                    media
## 12074                                    media
## 12075                                    media
## 12076                                    media
## 12077                                    media
## 12078                                    media
## 12079                                    media
## 12080                                  medical
## 12081                                  medical
## 12082                                  medical
## 12083                                 medicine
## 12084                                 medieval
## 12085                                    medio
## 12086                                    medir
## 12087                               meditation
## 12088                                   medium
## 12089                                   medium
## 12090                                   medium
## 12091                                     meet
## 12092                                      meh
## 12093                                      meh
## 12094                                    mejor
## 12095                                    mejor
## 12096                                    mejor
## 12097                                    mejor
## 12098                                    mejor
## 12099                                  mejorar
## 12100                                  mejorar
## 12101                                  mejores
## 12102                                   melhor
## 12103                                   mellow
## 12104                               membership
## 12105                                   membro
## 12106                                 memories
## 12107                                 memories
## 12108                                   memory
## 12109                                  memphis
## 12110                                  memphis
## 12111                                  memphis
## 12112                                    men's
## 12113                                    men's
## 12114                                    men's
## 12115                                    men's
## 12116                                    men's
## 12117                                    men's
## 12118                                    men's
## 12119                                     mens
## 12120                                     mens
## 12121                                   mental
## 12122                                  mention
## 12123                                  mention
## 12124                                     menu
## 12125                                    men’s
## 12126                                    men’s
## 12127                                    merch
## 12128                                    mercy
## 12129                                   merino
## 12130                                    meses
## 12131                                     mesh
## 12132                                  message
## 12133                                  message
## 12134                                  message
## 12135                                  messi’s
## 12136                                    metal
## 12137                                    metal
## 12138                                 metallic
## 12139                                metallics
## 12140                           metaphorically
## 12141                               metaspeeds
## 12142                                   metcon
## 12143                                   metcon
## 12144                                   metcon
## 12145                                   metcon
## 12146                                   metcon
## 12147                                   metcon
## 12148                                 metcon's
## 12149                                  metcons
## 12150                                  metcons
## 12151                                   metxon
## 12152                                   mexico
## 12153                                       mf
## 12154                                       mg
## 12155                                      mgk
## 12156                                       mi
## 12157                                       mi
## 12158                                       mi
## 12159                                       mi
## 12160                                       mi
## 12161                                       mi
## 12162                                       mi
## 12163                                       mi
## 12164                                       mi
## 12165                                       mi
## 12166                                       mi
## 12167                                       mi
## 12168                                  michael
## 12169                                  michael
## 12170                                   michal
## 12171                                 michelle
## 12172                                 michelle
## 12173                                  micoach
## 12174                                    micro
## 12175                                    micro
## 12176                                      mid
## 12177                                      mid
## 12178                                      mid
## 12179                                      mid
## 12180                                      mid
## 12181                                      mid
## 12182                                      mid
## 12183                                      mid
## 12184                                      mid
## 12185                                      mid
## 12186                                   middle
## 12187                                   middle
## 12188                                   middle
## 12189                                   middle
## 12190                                  midfoot
## 12191                                 midnight
## 12192                                     mids
## 12193                                  midsole
## 12194                                  midsole
## 12195                                  midsole
## 12196                                  midsole
## 12197                                  midsole
## 12198                                  midsole
## 12199                                  midsole
## 12200                                     mike
## 12201                                      mil
## 12202                                     mild
## 12203                                     mile
## 12204                                     mile
## 12205                                     mile
## 12206                                     mile
## 12207                                     mile
## 12208                                     mile
## 12209                                     mile
## 12210                                     mile
## 12211                                     mile
## 12212                                     mile
## 12213                                     mile
## 12214                                     mile
## 12215                                     mile
## 12216                                     mile
## 12217                                     mile
## 12218                                     mile
## 12219                                     mile
## 12220                                     mile
## 12221                                     mile
## 12222                                  mileage
## 12223                                  mileage
## 12224                                  mileage
## 12225                                  mileage
## 12226                                  mileage
## 12227                                  mileage
## 12228                                  mileage
## 12229                                    miles
## 12230                                    miles
## 12231                                    miles
## 12232                                    miles
## 12233                                    miles
## 12234                                    miles
## 12235                                    miles
## 12236                                    miles
## 12237                                    miles
## 12238                                    miles
## 12239                                    miles
## 12240                                    miles
## 12241                                    miles
## 12242                                    miles
## 12243                                    miles
## 12244                                    miles
## 12245                                    miles
## 12246                                    miles
## 12247                                    miles
## 12248                                    miles
## 12249                                    miles
## 12250                                milestone
## 12251                                 military
## 12252                                 military
## 12253                                 military
## 12254                                     milk
## 12255                                   millas
## 12256                                  million
## 12257                                  million
## 12258                                  million
## 12259                                  million
## 12260                                 millions
## 12261                                milwaukee
## 12262                                      min
## 12263                                      min
## 12264                                      min
## 12265                                      min
## 12266                                     mind
## 12267                                     mind
## 12268                                     mind
## 12269                                     mind
## 12270                                     mind
## 12271                                     mind
## 12272                              mindfulness
## 12273                              mindfulness
## 12274                                    minds
## 12275                                     mine
## 12276                                     mine
## 12277                                     mine
## 12278                                     mine
## 12279                                     mine
## 12280                                     mine
## 12281                                     mine
## 12282                                     mine
## 12283                                     mine
## 12284                                     mine
## 12285                                     mine
## 12286                                     mine
## 12287                                     mine
## 12288                                     mine
## 12289                                     mine
## 12290                                     mini
## 12291                                     mini
## 12292                                  minimal
## 12293                                  minimal
## 12294                               minimalist
## 12295                                minimized
## 12296                                    minor
## 12297                                     mins
## 12298                                     mint
## 12299                                   minute
## 12300                                   minute
## 12301                                   minute
## 12302                                   minute
## 12303                                   minute
## 12304                                  minutes
## 12305                                  minutes
## 12306                                  minutes
## 12307                                  minutos
## 12308                                   mirror
## 12309                                      mis
## 12310                                      mis
## 12311                                      mis
## 12312                                      mis
## 12313                               mismatched
## 12314                                    mismo
## 12315                                     miss
## 12316                                     miss
## 12317                                   missed
## 12318                                   missed
## 12319                                   missed
## 12320                                  missing
## 12321                                  missing
## 12322                                  missing
## 12323                                  missing
## 12324                                  missing
## 12325                                  mission
## 12326                                    mitus
## 12327                                      mix
## 12328                                       mj
## 12329                                       mj
## 12330                                       mj
## 12331                                      mlk
## 12332                                       mm
## 12333                                mmdogwalk
## 12334                                      mmi
## 12335                                     mmmm
## 12336                                      mmr
## 12337                                      mmr
## 12338                                      mmr
## 12339                                 mobility
## 12340                                   modaes
## 12341                                     mode
## 12342                                     mode
## 12343                                     mode
## 12344                                     mode
## 12345                                     mode
## 12346                                     mode
## 12347                                    model
## 12348                                    model
## 12349                                    model
## 12350                                    model
## 12351                                    model
## 12352                                    model
## 12353                                   models
## 12354                                   models
## 12355                                   modern
## 12356                                   modern
## 12357                                   modern
## 12358                                   modern
## 12359                                   modern
## 12360                                   modern
## 12361                                   modest
## 12362                                   modify
## 12363                                  mohamed
## 12364                                     mold
## 12365                                     mold
## 12366                                    moles
## 12367                                   moment
## 12368                                   moment
## 12369                                   moment
## 12370                                     moms
## 12371                                     moms
## 12372                                      mon
## 12373                                    money
## 12374                                    money
## 12375                                    money
## 12376                                    money
## 12377                                   moneys
## 12378                                  monitor
## 12379                                  monitor
## 12380                               monitorear
## 12381                               monochrome
## 12382                                    month
## 12383                                    month
## 12384                                    month
## 12385                                    month
## 12386                                    month
## 12387                                    month
## 12388                                  monthly
## 12389                                  monthly
## 12390                                   months
## 12391                                   months
## 12392                                   months
## 12393                                   months
## 12394                                   months
## 12395                                   months
## 12396                                   months
## 12397                                   months
## 12398                                   months
## 12399                                   months
## 12400                                   months
## 12401                                  month’s
## 12402                                     mood
## 12403                                     moon
## 12404                                     moon
## 12405                                 moonrock
## 12406                                  morning
## 12407                                  morning
## 12408                                  morning
## 12409                                  morning
## 12410                                  morning
## 12411                                  morning
## 12412                                   morons
## 12413                                    mossy
## 12414                                   mother
## 12415                                   motion
## 12416                               motivación
## 12417                               motivadora
## 12418                                motivated
## 12419                                motivated
## 12420                                motivated
## 12421                                motivated
## 12422                                motivated
## 12423                                motivated
## 12424                                motivated
## 12425                                motivated
## 12426                               motivating
## 12427                               motivating
## 12428                               motivating
## 12429                               motivating
## 12430                               motivating
## 12431                               motivation
## 12432                               motivation
## 12433                               motivation
## 12434                               motivation
## 12435                               motivation
## 12436                               motivation
## 12437                             motivational
## 12438                             motivational
## 12439                             motivational
## 12440                                    motto
## 12441                                    motus
## 12442                                 mounting
## 12443                                    mouth
## 12444                                     move
## 12445                                     move
## 12446                                 movement
## 12447                                 movement
## 12448                                 movement
## 12449                                 movement
## 12450                                movements
## 12451                                    movie
## 12452                                    movie
## 12453                                movilidad
## 12454                                   moving
## 12455                                   moving
## 12456                                   moving
## 12457                                   moving
## 12458                                    mowab
## 12459                                    mowab
## 12460                                   mowabb
## 12461                                   mowabb
## 12462                                   mowabb
## 12463                                   mowabb
## 12464                                      mph
## 12465                            mputzqqomykpk
## 12466                          mr.calvingrindz
## 12467                              mr10krunner
## 12468                                     mrtb
## 12469                                     mrtb
## 12470                                      msg
## 12471                                    mucho
## 12472                                    mucho
## 12473                                    muito
## 12474                                    multi
## 12475                                    multi
## 12476                                    multi
## 12477                               multicolor
## 12478                                 multiple
## 12479                                 multiple
## 12480                                 multiple
## 12481                                 multiple
## 12482                                 multiple
## 12483                                 multiple
## 12484                                 multiple
## 12485                                 multiple
## 12486                                 multiple
## 12487                                 multiple
## 12488                                 multiple
## 12489                                multiyear
## 12490                                  mundial
## 12491                                   muscle
## 12492                                   muscle
## 12493                                   muscle
## 12494                                   muscle
## 12495                                   muscle
## 12496                                    music
## 12497                                    music
## 12498                                    music
## 12499                                    music
## 12500                                    music
## 12501                                    music
## 12502                                    music
## 12503                                    music
## 12504                                    music
## 12505                                    music
## 12506                                    music
## 12507                                    music
## 12508                                    music
## 12509                                    music
## 12510                                    music
## 12511                                    music
## 12512                                    music
## 12513                                    music
## 12514                                    music
## 12515                                    music
## 12516                                    music
## 12517                                      muy
## 12518                                      muy
## 12519                                      muy
## 12520                                      muy
## 12521                                      mvp
## 12522                                      mvp
## 12523                             myfitnesspal
## 12524                                      más
## 12525                                      más
## 12526                                   méndez
## 12527                                       mí
## 12528                       n4fcjylldgpc95d4ku
## 12529                                       na
## 12530                               nacimiento
## 12531                                     nada
## 12532                                      nag
## 12533                                      nah
## 12534                                      nah
## 12535                                      nah
## 12536                                      nah
## 12537                                      nah
## 12538                                      nah
## 12539                                  nahhhhh
## 12540                                    named
## 12541                                    named
## 12542                                   naming
## 12543                                     nano
## 12544                                     nano
## 12545                                     nano
## 12546                               narrator’s
## 12547                                   narrow
## 12548                                   narrow
## 12549                                   narrow
## 12550                                   narrow
## 12551                                   narrow
## 12552                                   narrow
## 12553                                   narrow
## 12554                                      nas
## 12555                                     nash
## 12556                                   natick
## 12557                                 national
## 12558                                 national
## 12559                                 national
## 12560                            nationalistic
## 12561                                   native
## 12562                                  natural
## 12563                                  navegar
## 12564                                 navigate
## 12565                                     navy
## 12566                                      naw
## 12567                      nawccccccccccceeeee
## 12568                                     naxo
## 12569                                     nazi
## 12570                                       nb
## 12571                                       nb
## 12572                                       nb
## 12573                                       nb
## 12574                                       nb
## 12575                                      nba
## 12576                                       nc
## 12577                                     ncaa
## 12578                                     ncaa
## 12579                                       ne
## 12580                                    nears
## 12581                                     neat
## 12582                                     neat
## 12583                              necessarily
## 12584                                     neck
## 12585                                     neck
## 12586                                 needless
## 12587                                   neeraj
## 12588                                 negative
## 12589                                 negative
## 12590                                 negative
## 12591                                 negative
## 12592                                 negative
## 12593                                 negative
## 12594                                 negative
## 12595                                 negative
## 12596                                 negative
## 12597                                 negative
## 12598                                 negative
## 12599                                 negative
## 12600                                 negative
## 12601                                 negative
## 12602                                 negative
## 12603                                 negative
## 12604                                 negative
## 12605                                 negative
## 12606                                 negative
## 12607                                 negative
## 12608                                 negative
## 12609                                 negative
## 12610                                 negative
## 12611                                 negative
## 12612                                 negative
## 12613                                 negative
## 12614                                 negative
## 12615                                 negative
## 12616                                 negative
## 12617                                 negative
## 12618                                 negative
## 12619                                 negative
## 12620                                 negative
## 12621                                 negative
## 12622                                 negative
## 12623                                 negative
## 12624                                 negative
## 12625                                 negative
## 12626                                 negative
## 12627                                 negative
## 12628                                 negative
## 12629                                 negative
## 12630                                 negative
## 12631                                 negative
## 12632                             neighborhood
## 12633                             neighborhood
## 12634                             neighborhood
## 12635                                      neo
## 12636                                      neo
## 12637                                     neon
## 12638                                    neons
## 12639                                    nerds
## 12640                                      nes
## 12641                                  netflix
## 12642                                  netflix
## 12643                                  network
## 12644                                  neutral
## 12645                                  neutral
## 12646                                  neutral
## 12647                                  neutral
## 12648                                  neutral
## 12649                                  neutral
## 12650                                  neutral
## 12651                                  neutral
## 12652                                  neutral
## 12653                                  neutral
## 12654                                  neutral
## 12655                                  neutral
## 12656                                  neutral
## 12657                                  neutral
## 12658                                  neutral
## 12659                                  neutral
## 12660                                  neutral
## 12661                                  neutral
## 12662                                  neutral
## 12663                                  neutral
## 12664                                  neutral
## 12665                                  neutral
## 12666                                  neutral
## 12667                                  neutral
## 12668                                  neutral
## 12669                              neverending
## 12670                                    newly
## 12671                                     news
## 12672                                 newsroom
## 12673                                 newsroom
## 12674                                 newsroom
## 12675                                   neymar
## 12676                                     nice
## 12677                                     nice
## 12678                                     nice
## 12679                                     nice
## 12680                                     nice
## 12681                                     nice
## 12682                                     nice
## 12683                                     nice
## 12684                                     nice
## 12685                                     nice
## 12686                                     nice
## 12687                                     nice
## 12688                                     nice
## 12689                                     nice
## 12690                                     nice
## 12691                                     nice
## 12692                                     nice
## 12693                                     nice
## 12694                                     nice
## 12695                                     nice
## 12696                                     nice
## 12697                                     nice
## 12698                                     nice
## 12699                                     nice
## 12700                                     nice
## 12701                                     nice
## 12702                                     nice
## 12703                                     nice
## 12704                                     nice
## 12705                                     nice
## 12706                                     nice
## 12707                                     nice
## 12708                                     nice
## 12709                                     nice
## 12710                                     nice
## 12711                                     nice
## 12712                                     nice
## 12713                                     nice
## 12714                                     nice
## 12715                                     nice
## 12716                                     nice
## 12717                                     nice
## 12718                                     nice
## 12719                                     nice
## 12720                                     nice
## 12721                                     nice
## 12722                                     nice
## 12723                                     nice
## 12724                                     nice
## 12725                                     nice
## 12726                                     nice
## 12727                                     nice
## 12728                                     nice
## 12729                                     nice
## 12730                                     nice
## 12731                                     nice
## 12732                             niceeeeeeeee
## 12733                                nicekicks
## 12734                                   nicely
## 12735                                    nicer
## 12736                                    nicer
## 12737                                    nicer
## 12738                                    nicer
## 12739                                   nicest
## 12740                                    niche
## 12741                                  nichols
## 12742                                     nick
## 12743                                     nick
## 12744                                    night
## 12745                                    night
## 12746                                    night
## 12747                                    night
## 12748                                    night
## 12749                                     nike
## 12750                                     nike
## 12751                                     nike
## 12752                                     nike
## 12753                                     nike
## 12754                                     nike
## 12755                                     nike
## 12756                                     nike
## 12757                                     nike
## 12758                                     nike
## 12759                                     nike
## 12760                                     nike
## 12761                                     nike
## 12762                                     nike
## 12763                                     nike
## 12764                                     nike
## 12765                                     nike
## 12766                                     nike
## 12767                                     nike
## 12768                                     nike
## 12769                                     nike
## 12770                                     nike
## 12771                                     nike
## 12772                                     nike
## 12773                                     nike
## 12774                                     nike
## 12775                                     nike
## 12776                                     nike
## 12777                                     nike
## 12778                                     nike
## 12779                                     nike
## 12780                                     nike
## 12781                                     nike
## 12782                                     nike
## 12783                                     nike
## 12784                                     nike
## 12785                                     nike
## 12786                                     nike
## 12787                                     nike
## 12788                                     nike
## 12789                                     nike
## 12790                                     nike
## 12791                                     nike
## 12792                                     nike
## 12793                                     nike
## 12794                                     nike
## 12795                                     nike
## 12796                                     nike
## 12797                                     nike
## 12798                                     nike
## 12799                                     nike
## 12800                                     nike
## 12801                                     nike
## 12802                                     nike
## 12803                                     nike
## 12804                                     nike
## 12805                                     nike
## 12806                                     nike
## 12807                                     nike
## 12808                                     nike
## 12809                                     nike
## 12810                                     nike
## 12811                                     nike
## 12812                                     nike
## 12813                                     nike
## 12814                                     nike
## 12815                                     nike
## 12816                                     nike
## 12817                                     nike
## 12818                                     nike
## 12819                                     nike
## 12820                                     nike
## 12821                                     nike
## 12822                                     nike
## 12823                                     nike
## 12824                                     nike
## 12825                                     nike
## 12826                                     nike
## 12827                                     nike
## 12828                                     nike
## 12829                                     nike
## 12830                                     nike
## 12831                                     nike
## 12832                                     nike
## 12833                                     nike
## 12834                                     nike
## 12835                                     nike
## 12836                                     nike
## 12837                                     nike
## 12838                                     nike
## 12839                                     nike
## 12840                                     nike
## 12841                                     nike
## 12842                                     nike
## 12843                                     nike
## 12844                                     nike
## 12845                                     nike
## 12846                                     nike
## 12847                                     nike
## 12848                                     nike
## 12849                                     nike
## 12850                                     nike
## 12851                                     nike
## 12852                                     nike
## 12853                                     nike
## 12854                                     nike
## 12855                                     nike
## 12856                                     nike
## 12857                                     nike
## 12858                                     nike
## 12859                                     nike
## 12860                                     nike
## 12861                                     nike
## 12862                                     nike
## 12863                                     nike
## 12864                                     nike
## 12865                                     nike
## 12866                                     nike
## 12867                                     nike
## 12868                                     nike
## 12869                                     nike
## 12870                                     nike
## 12871                                     nike
## 12872                                     nike
## 12873                                     nike
## 12874                                     nike
## 12875                                     nike
## 12876                                     nike
## 12877                                     nike
## 12878                                     nike
## 12879                                     nike
## 12880                                     nike
## 12881                                     nike
## 12882                                     nike
## 12883                                     nike
## 12884                                     nike
## 12885                                     nike
## 12886                                     nike
## 12887                                     nike
## 12888                                     nike
## 12889                                     nike
## 12890                                     nike
## 12891                                     nike
## 12892                                     nike
## 12893                                     nike
## 12894                                     nike
## 12895                                     nike
## 12896                                     nike
## 12897                                     nike
## 12898                                     nike
## 12899                                     nike
## 12900                                     nike
## 12901                                     nike
## 12902                                     nike
## 12903                                     nike
## 12904                                     nike
## 12905                                     nike
## 12906                                     nike
## 12907                                     nike
## 12908                                     nike
## 12909                                     nike
## 12910                                     nike
## 12911                                     nike
## 12912                                     nike
## 12913                                     nike
## 12914                                     nike
## 12915                                     nike
## 12916                                     nike
## 12917                                     nike
## 12918                                     nike
## 12919                                     nike
## 12920                                   nike's
## 12921                                   nike's
## 12922                                   nike's
## 12923                                   nike's
## 12924                                 nike.com
## 12925                                nikecourt
## 12926                                  nikelab
## 12927                                  nikelab
## 12928                                    nikes
## 12929                                    nikes
## 12930                                    nikes
## 12931                                    nikes
## 12932                                    nikes
## 12933                                    nikes
## 12934                                nikestore
## 12935                                   nike’s
## 12936                                   nike’s
## 12937                                      nil
## 12938                                     ning
## 12939                                     ning
## 12940                                    nivel
## 12941                                    nivel
## 12942                                      nmd
## 12943                                      nmd
## 12944                                      nmd
## 12945                                   no22nd
## 12946                                   noctas
## 12947                                    nodes
## 12948                                   nogafb
## 12949                                    noice
## 12950                              nonetheless
## 12951                              nonexistent
## 12952                                 nonsense
## 12953                              nonsensical
## 12954                                  nonstop
## 12955                                 nooooooo
## 12956                                     nope
## 12957                                     nope
## 12958                                     nope
## 12959                                     nope
## 12960                                   normal
## 12961                                   normal
## 12962                                   normal
## 12963                                   normal
## 12964                                   normal
## 12965                                     nort
## 12966                                      nos
## 12967                                     nose
## 12968                                nostalgia
## 12969                                nostalgic
## 12970                                    nosto
## 12971                                    nosto
## 12972                                    notch
## 12973                                    notch
## 12974                                    notes
## 12975                                    notes
## 12976                               noticeable
## 12977                               noticeable
## 12978                               noticeably
## 12979                             notification
## 12980                             notification
## 12981                            notifications
## 12982                            notifications
## 12983                            notifications
## 12984                                 notified
## 12985                              notoriously
## 12986                                      nov
## 12987                                      nov
## 12988                                novablast
## 12989                                novablast
## 12990                                novablast
## 12991                                 november
## 12992                                 nowadays
## 12993                                 nowadays
## 12994                                      nrc
## 12995                                      nrc
## 12996                                      nrc
## 12997                                      nrc
## 12998                                     nsfw
## 12999                                      ntc
## 13000                                      ntc
## 13001                                      ntc
## 13002                                      ntc
## 13003                                      ntc
## 13004                                      ntc
## 13005                                      ntc
## 13006                                      ntc
## 13007                                      ntc
## 13008                                      ntc
## 13009                                      ntc
## 13010                                      ntc
## 13011                                      ntc
## 13012                                      ntc
## 13013                                      ntc
## 13014                                      ntc
## 13015                              ntvascainos
## 13016                                   nubuck
## 13017                                   nubuck
## 13018                                   nubuck
## 13019                                   nubuck
## 13020                                   nubuck
## 13021                                 nuestras
## 13022                                     nuff
## 13023                                 numerous
## 13024                                 numerous
## 13025                                      nut
## 13026                                nutrition
## 13027                                nutrition
## 13028                                nutrition
## 13029                                     nuts
## 13030                                     nuts
## 13031                                     nuts
## 13032                                     nuts
## 13033                                      nyc
## 13034                                    nylon
## 13035                                      não
## 13036                                      não
## 13037                                      não
## 13038                                      não
## 13039                                    n’est
## 13040                                      oak
## 13041                                   oakley
## 13042                                       ob
## 13043                                  obama's
## 13044                                objective
## 13045                                 obsidian
## 13046                             obsolescence
## 13047                                      obv
## 13048                                  obvious
## 13049                               occasional
## 13050                               occasional
## 13051                               occasional
## 13052                               occasional
## 13053                             occasionally
## 13054                             occasionally
## 13055                             occasionally
## 13056                                      oct
## 13057                                  october
## 13058                                      odd
## 13059                                      odd
## 13060                                    offer
## 13061                                    offer
## 13062                                 offering
## 13063                                 offering
## 13064                                   offers
## 13065                                   offers
## 13066                                   offers
## 13067                                   offers
## 13068                                   offers
## 13069                                   offers
## 13070                                   offers
## 13071                                   offers
## 13072                                   offers
## 13073                                   office
## 13074                                 official
## 13075                                 official
## 13076                                 official
## 13077                                 official
## 13078                               officially
## 13079                               officially
## 13080                                   offset
## 13081                                       og
## 13082                                       og
## 13083                                       og
## 13084                                       og
## 13085                                       og
## 13086                                       og
## 13087                                       og
## 13088                                       og
## 13089                                       og
## 13090                                       og
## 13091                                       og
## 13092                                       og
## 13093                                       og
## 13094                                       og
## 13095                                       og
## 13096                                       og
## 13097                                       og
## 13098                                       og
## 13099                                       og
## 13100                                       og
## 13101                                       og
## 13102                                       og
## 13103                                       og
## 13104                                       og
## 13105                                      ogs
## 13106                                      ogs
## 13107                                      ogs
## 13108                                  okinawa
## 13109                                  oktober
## 13110                                     olds
## 13111                                     olds
## 13112                                      ole
## 13113                                    olive
## 13114                                    olive
## 13115                                 olivia's
## 13116                                  olivier
## 13117                                   olması
## 13118                                  olympic
## 13119                                  olympic
## 13120                                  olympic
## 13121                                 olympics
## 13122                                 olympics
## 13123                                 olympics
## 13124                                 olympics
## 13125                                      omg
## 13126                                    onion
## 13127                                 onitsuka
## 13128                                   online
## 13129                                   online
## 13130                                   online
## 13131                                   online
## 13132                                   online
## 13133                                   online
## 13134                                   online
## 13135                                   online
## 13136                                   online
## 13137                                   onsite
## 13138                                       op
## 13139                                       op
## 13140                                       op
## 13141                                   opción
## 13142                                  operate
## 13143                                operating
## 13144                                operating
## 13145                                  opinion
## 13146                                  opinion
## 13147                                  opinion
## 13148                                  opinion
## 13149                                  opinion
## 13150                                  opinion
## 13151                                  opinion
## 13152                                  opinion
## 13153                              opportunity
## 13154                                  optimal
## 13155                               optimistic
## 13156                                   option
## 13157                                   option
## 13158                                   option
## 13159                                   option
## 13160                                   option
## 13161                                   option
## 13162                                   option
## 13163                                   option
## 13164                                   option
## 13165                                  options
## 13166                                  options
## 13167                                  options
## 13168                                  options
## 13169                                  options
## 13170                                  options
## 13171                                   orange
## 13172                                   orange
## 13173                                   orange
## 13174                                oregonian
## 13175                                oregonian
## 13176                                     oreo
## 13177                                     oreo
## 13178                                     oreo
## 13179                                    oreos
## 13180                                    oreos
## 13181                                    oreos
## 13182                                    oreos
## 13183                                organized
## 13184                                 oriented
## 13185                                 oriented
## 13186                                 original
## 13187                                 original
## 13188                                 original
## 13189                                 original
## 13190                                 original
## 13191                                 original
## 13192                                 original
## 13193                                 original
## 13194                                 original
## 13195                                 original
## 13196                                 original
## 13197                                 original
## 13198                                 original
## 13199                                 original
## 13200                                 original
## 13201                                 original
## 13202                                 original
## 13203                                 original
## 13204                              originality
## 13205                               originally
## 13206                               originally
## 13207                               originally
## 13208                               originally
## 13209                                originals
## 13210                                originals
## 13211                                 origjnal
## 13212                               orthopedic
## 13213                                       os
## 13214                                       os
## 13215                                       os
## 13216                                     os26
## 13217                                  other's
## 13218                                 otomatik
## 13219                                 otoöatik
## 13220                                      otp
## 13221                                     oura
## 13222                                    ousts
## 13223                                 outdated
## 13224                                 outdated
## 13225                                  outdoor
## 13226                                  outdoor
## 13227                                  outdoor
## 13228                                  outdoor
## 13229                                  outdoor
## 13230                                   outfit
## 13231                                   outfit
## 13232                                  outfits
## 13233                                  outfits
## 13234                                  outfits
## 13235                                  outfits
## 13236                                   outlet
## 13237                                   outlet
## 13238                                 outlined
## 13239                                  outlook
## 13240                               outrageous
## 13241                                     outs
## 13242                                  outsole
## 13243                                  outsole
## 13244                              outstanding
## 13245                                     oval
## 13246                                 overhang
## 13247                                  overlay
## 13248                               overlooked
## 13249                                   overly
## 13250                                   overly
## 13251                               overpriced
## 13252                                oversized
## 13253                                oversized
## 13254                                oversized
## 13255                                oversized
## 13256                              overwhelmed
## 13257                             overwhelming
## 13258                               overworked
## 13259                                    owned
## 13260                                    owned
## 13261                                    owned
## 13262                                   owners
## 13263                                   owners
## 13264                                ownership
## 13265                                       oz
## 13266                                       oz
## 13267                                       oz
## 13268                                   p6000s
## 13269                                     pace
## 13270                                     pace
## 13271                                     pace
## 13272                                     pace
## 13273                                     pace
## 13274                                     pace
## 13275                                     pace
## 13276                                     pace
## 13277                                     pace
## 13278                                     pace
## 13279                                     pace
## 13280                                     pace
## 13281                                     pace
## 13282                                     pace
## 13283                                    paced
## 13284                                    pacer
## 13285                                   pacing
## 13286                                   packer
## 13287                                  packers
## 13288                                    packs
## 13289                                   padded
## 13290                                     page
## 13291                                     page
## 13292                                     page
## 13293                                     page
## 13294                                     paid
## 13295                                     paid
## 13296                                     paid
## 13297                                     paid
## 13298                                     paid
## 13299                                     paid
## 13300                                     paid
## 13301                                     pain
## 13302                                     pain
## 13303                                     pain
## 13304                                     pain
## 13305                                     pain
## 13306                                  painful
## 13307                                  painted
## 13308                                     pair
## 13309                                     pair
## 13310                                     pair
## 13311                                     pair
## 13312                                     pair
## 13313                                     pair
## 13314                                     pair
## 13315                                     pair
## 13316                                     pair
## 13317                                     pair
## 13318                                     pair
## 13319                                     pair
## 13320                                     pair
## 13321                                     pair
## 13322                                     pair
## 13323                                     pair
## 13324                                     pair
## 13325                                     pair
## 13326                                     pair
## 13327                                     pair
## 13328                                     pair
## 13329                                     pair
## 13330                                     pair
## 13331                                     pair
## 13332                                     pair
## 13333                                     pair
## 13334                                     pair
## 13335                                     pair
## 13336                                     pair
## 13337                                     pair
## 13338                                     pair
## 13339                                     pair
## 13340                                     pair
## 13341                                     pair
## 13342                                     pair
## 13343                                     pair
## 13344                                     pair
## 13345                                     pair
## 13346                                     pair
## 13347                                     pair
## 13348                                     pair
## 13349                                     pair
## 13350                                     pair
## 13351                                     pair
## 13352                                     pair
## 13353                                     pair
## 13354                                     pair
## 13355                                     pair
## 13356                                     pair
## 13357                                     pair
## 13358                                     pair
## 13359                                     pair
## 13360                                    pairs
## 13361                                    pairs
## 13362                                    pairs
## 13363                                    pairs
## 13364                                    pairs
## 13365                                    pairs
## 13366                                    pairs
## 13367                                    pairs
## 13368                                    pairs
## 13369                                    pairs
## 13370                                    pairs
## 13371                                   palace
## 13372                                  pallets
## 13373                                 palomino
## 13374                                    panda
## 13375                                   pandas
## 13376                                   pandas
## 13377                                   pandas
## 13378                                   pandas
## 13379                                 pandemic
## 13380                                 pandemic
## 13381                                 pandemic
## 13382                                 pandemic
## 13383                                 pandemic
## 13384                                 pandemic
## 13385                                 pandemic
## 13386                                 pandemic
## 13387                                 pandemic
## 13388                                 pandemic
## 13389                                 pandemic
## 13390                                   panels
## 13391                                     pant
## 13392                                    pants
## 13393                                    pants
## 13394                                    pants
## 13395                                    pants
## 13396                                    pants
## 13397                                    pants
## 13398                                    pants
## 13399                            pantspantsmen
## 13400                          pantspantswomen
## 13401                                pantyhose
## 13402                                    paper
## 13403                                     para
## 13404                                     para
## 13405                                     para
## 13406                                     para
## 13407                                     para
## 13408                                     para
## 13409                                     para
## 13410                                     para
## 13411                                     para
## 13412                                     para
## 13413                                     para
## 13414                                     para
## 13415                                     para
## 13416                                     para
## 13417                                     para
## 13418                                     para
## 13419                                     para
## 13420                                     para
## 13421                                 parabéns
## 13422                                   paralı
## 13423                                   paralı
## 13424                                  parasız
## 13425                                   parece
## 13426                                  parents
## 13427                                  parents
## 13428                                    paris
## 13429                                     park
## 13430                                     park
## 13431                                     park
## 13432                                  parsing
## 13433                               participar
## 13434                             participates
## 13435                                  partida
## 13436                                  partner
## 13437                                 partners
## 13438                                 partners
## 13439                                 partners
## 13440                              partnership
## 13441                              partnership
## 13442                                    party
## 13443                                      pas
## 13444                                     pass
## 13445                                     pass
## 13446                                     pass
## 13447                                     pass
## 13448                                   passed
## 13449                                 password
## 13450                                 password
## 13451                                 password
## 13452                                 password
## 13453                                     past
## 13454                                     past
## 13455                                     past
## 13456                                     past
## 13457                                     past
## 13458                                     past
## 13459                                     past
## 13460                                     past
## 13461                                     past
## 13462                                     past
## 13463                                     past
## 13464                                     past
## 13465                                     past
## 13466                                   patent
## 13467                                   patent
## 13468                                     path
## 13469                                     path
## 13470                                 pathetic
## 13471                                  patrick
## 13472                                  pattern
## 13473                                 patterns
## 13474                                    pause
## 13475                                    pause
## 13476                                    pause
## 13477                                    pause
## 13478                                    pause
## 13479                                    pause
## 13480                                   paused
## 13481                                   paused
## 13482                                   pauses
## 13483                                   pauses
## 13484                                  pausing
## 13485                                  pausing
## 13486                                 pavement
## 13487                                      pay
## 13488                                      pay
## 13489                                      pay
## 13490                                      pay
## 13491                                      pay
## 13492                                      pay
## 13493                                      pay
## 13494                                      pay
## 13495                                      pay
## 13496                                      pay
## 13497                                      pay
## 13498                                      pay
## 13499                                      pay
## 13500                                   paying
## 13501                                   paying
## 13502                                   paying
## 13503                                   paying
## 13504                                   paying
## 13505                                   paying
## 13506                                   paying
## 13507                                  payment
## 13508                                   paypal
## 13509                                   paypal
## 13510                                     pays
## 13511                                       pe
## 13512                                    peace
## 13513                                    peace
## 13514                                   peachy
## 13515                                    pebax
## 13516                                  pebbles
## 13517                                  pebbles
## 13518                                   peddle
## 13519                                   peddle
## 13520                                 pedigree
## 13521                                pedometer
## 13522                                    pedro
## 13523                                      pee
## 13524                                   peeled
## 13525                                     peen
## 13526                                      peg
## 13527                                  pegasus
## 13528                                  pegasus
## 13529                                  pegasus
## 13530                                  pegasus
## 13531                                  pegasus
## 13532                                  peloton
## 13533                                  peloton
## 13534                                     pelé
## 13535                                     pelé
## 13536                                     pena
## 13537                                  pendant
## 13538                                pendleton
## 13539                                    penny
## 13540                                    penny
## 13541                                    penny
## 13542                                    penny
## 13543                                    penny
## 13544                                    penny
## 13545                                    penny
## 13546                                    penny
## 13547                                    pensé
## 13548                                   people
## 13549                                   people
## 13550                                   people
## 13551                                   people
## 13552                                   people
## 13553                                   people
## 13554                                   people
## 13555                                   people
## 13556                                   people
## 13557                                   people
## 13558                                   people
## 13559                                   people
## 13560                                   people
## 13561                                   people
## 13562                                   people
## 13563                                   people
## 13564                                   people
## 13565                                   people
## 13566                                   people
## 13567                                   people
## 13568                                   people
## 13569                                   people
## 13570                                   people
## 13571                                   pepper
## 13572                                  percent
## 13573                                  perfect
## 13574                                  perfect
## 13575                                  perfect
## 13576                                  perfect
## 13577                                  perfect
## 13578                                  perfect
## 13579                                  perfect
## 13580                                  perfect
## 13581                                  perfect
## 13582                                  perfect
## 13583                                  perfect
## 13584                                  perfect
## 13585                                  perfect
## 13586                                  perfect
## 13587                                  perfect
## 13588                                  perfect
## 13589                                perfectly
## 13590                                perfectly
## 13591                                perfectly
## 13592                                perfectly
## 13593                                perfectly
## 13594                                perfectly
## 13595                              perforation
## 13596                                  perform
## 13597                              performance
## 13598                              performance
## 13599                              performance
## 13600                              performance
## 13601                              performance
## 13602                              performance
## 13603                              performance
## 13604                              performance
## 13605                              performance
## 13606                              performance
## 13607                              performance
## 13608                              performance
## 13609                               performers
## 13610                               performing
## 13611                               performing
## 13612                            perimenopause
## 13613                                 periodic
## 13614                              permanently
## 13615                              permissions
## 13616                                   permit
## 13617                                  permite
## 13618                                     pero
## 13619                                     perp
## 13620                                    perry
## 13621                               persistent
## 13622                                   person
## 13623                                   person
## 13624                                   person
## 13625                                   person
## 13626                                   person
## 13627                                   person
## 13628                                   person
## 13629                                   person
## 13630                                 personal
## 13631                                 personal
## 13632                                 personal
## 13633                                 personal
## 13634                                 personal
## 13635                                 personal
## 13636                                 personal
## 13637                                 personal
## 13638                                 personal
## 13639                                 personal
## 13640                                 personal
## 13641                                 personal
## 13642                                 personal
## 13643                                 personal
## 13644                              personality
## 13645                          personalization
## 13646                             personalized
## 13647                             personalized
## 13648                             personalized
## 13649                               personally
## 13650                               personally
## 13651                               personally
## 13652                               personally
## 13653                               personally
## 13654                                   petite
## 13655                                   phased
## 13656                               phenomenal
## 13657                               phenomenal
## 13658                               phenomenal
## 13659                               phenomenal
## 13660                               phenomenal
## 13661                               phenomenal
## 13662                             phenomenally
## 13663                                     phil
## 13664                                 phishing
## 13665                            phoeniixrose_
## 13666                                  phoenix
## 13667                                  phoenix
## 13668                                    phone
## 13669                                    phone
## 13670                                    phone
## 13671                                    phone
## 13672                                    phone
## 13673                                    phone
## 13674                                    phone
## 13675                                    phone
## 13676                                    phone
## 13677                                    phone
## 13678                                    phone
## 13679                                    phone
## 13680                                    phone
## 13681                                    phone
## 13682                                    phone
## 13683                                    phone
## 13684                                    phone
## 13685                                    phone
## 13686                                 phordans
## 13687                                    photo
## 13688                                    photo
## 13689                                    photo
## 13690                                   photos
## 13691                                 physical
## 13692                                 physical
## 13693                                 physical
## 13694                                 physical
## 13695                               physically
## 13696                                      pic
## 13697                                     pick
## 13698                                     pick
## 13699                                     pick
## 13700                                   picked
## 13701                                  picking
## 13702                                   pickup
## 13703                                   pickup
## 13704                                   pickup
## 13705                                   pickup
## 13706                                    picky
## 13707                                     pics
## 13708                                     pics
## 13709                                     pics
## 13710                                  picture
## 13711                                 pictures
## 13712                                 pictures
## 13713                               pid1368010
## 13714                                    piece
## 13715                                    piece
## 13716                                pietparra
## 13717                                  pilates
## 13718                                  pilates
## 13719                                  pilates
## 13720                                  pilates
## 13721                                     pine
## 13722                                pineapple
## 13723                                     ping
## 13724                                     pink
## 13725                                     pink
## 13726                                     pink
## 13727                                     pink
## 13728                                     pink
## 13729                                    pinky
## 13730                                  pinky's
## 13731                                   pippen
## 13732                                  pippins
## 13733                                  pirates
## 13734                                  pitbull
## 13735                                    pivot
## 13736                                   pivots
## 13737                                    pixel
## 13738                                    plain
## 13739                                    plain
## 13740                                  plainly
## 13741                                     plan
## 13742                                     plan
## 13743                                     plan
## 13744                                     plan
## 13745                                     plan
## 13746                                     plan
## 13747                                     plan
## 13748                                     plan
## 13749                                     plan
## 13750                                     plan
## 13751                                     plan
## 13752                                     plan
## 13753                                     plan
## 13754                                     plan
## 13755                                     plan
## 13756                                    plank
## 13757                                    plank
## 13758                                    plank
## 13759                                    plank
## 13760                                    plank
## 13761                                  plank's
## 13762                                   planks
## 13763                                  planned
## 13764                                  planner
## 13765                                    plans
## 13766                                    plans
## 13767                                    plans
## 13768                                  plantar
## 13769                                  plastic
## 13770                                    plate
## 13771                                    plate
## 13772                                   plated
## 13773                                 platform
## 13774                                 platinum
## 13775                                     play
## 13776                                     play
## 13777                                     play
## 13778                                  players
## 13779                                 player’s
## 13780                               playground
## 13781                                  playing
## 13782                                  playing
## 13783                                  playing
## 13784                                  playing
## 13785                                  playing
## 13786                                  playing
## 13787                                    plays
## 13788                                    plays
## 13789                                    pleas
## 13790                                  pleated
## 13791                                   pleats
## 13792                                 pleeaase
## 13793                                   plenty
## 13794                                  pleural
## 13795                                    plies
## 13796                                     plot
## 13797                                      pls
## 13798                                      pls
## 13799                                      pls
## 13800                                  plunges
## 13801                                      ply
## 13802                                      ply
## 13803                                      ply
## 13804                                      ply
## 13805                                   pocket
## 13806                                  pockets
## 13807                                  podcast
## 13808                                  podcast
## 13809                                 podcasts
## 13810                                    poder
## 13811                                    podge
## 13812                                podiatric
## 13813                                   podium
## 13814                                  podiums
## 13815                                  podiums
## 13816                                     pods
## 13817                                pointless
## 13818                                   poizon
## 13819                                  pokemon
## 13820                                   poland
## 13821                                    polar
## 13822                                    polar
## 13823                                    polar
## 13824                                   police
## 13825                                 polished
## 13826                                 politics
## 13827                                polyester
## 13828                                polyester
## 13829                                     pone
## 13830                                    poner
## 13831                                     pong
## 13832                                    ponto
## 13833                                pontuação
## 13834                                     poor
## 13835                                     poor
## 13836                                     poor
## 13837                                     poor
## 13838                                     poor
## 13839                                   poorly
## 13840                                   poorly
## 13841                                      pop
## 13842                                   popped
## 13843                                  popping
## 13844                                    poppy
## 13845                                  popular
## 13846                                  popular
## 13847                                  popular
## 13848                                  popular
## 13849                                  popular
## 13850                                  popular
## 13851                                  popular
## 13852                               popularity
## 13853                                      por
## 13854                                      por
## 13855                                      por
## 13856                                      por
## 13857                                      por
## 13858                                      por
## 13859                                      por
## 13860                                      por
## 13861                            porteñolandia
## 13862                                 portland
## 13863                                      pos
## 13864                                   posite
## 13865                               positional
## 13866                                 positive
## 13867                                 positive
## 13868                                 positive
## 13869                                 positive
## 13870                                 positive
## 13871                                 positive
## 13872                                 positive
## 13873                                 positive
## 13874                                 positive
## 13875                                 positive
## 13876                                 positive
## 13877                                 positive
## 13878                                 positive
## 13879                                 positive
## 13880                                 positive
## 13881                                 positive
## 13882                                 positive
## 13883                                 positive
## 13884                                 positive
## 13885                                 positive
## 13886                                 positive
## 13887                                 positive
## 13888                                 positive
## 13889                                 positive
## 13890                                 positive
## 13891                                 positive
## 13892                                 positive
## 13893                                 positive
## 13894                                 positive
## 13895                                 positive
## 13896                                 positive
## 13897                                 positive
## 13898                                 positive
## 13899                                 positive
## 13900                                 positive
## 13901                                 positive
## 13902                                 positive
## 13903                                 positive
## 13904                                 positive
## 13905                                 positive
## 13906                                 positive
## 13907                                 positive
## 13908                                 positive
## 13909                                 positive
## 13910                                 positive
## 13911                                 positive
## 13912                                 positive
## 13913                                 positive
## 13914                                 positive
## 13915                                 positive
## 13916                                 positive
## 13917                                 positive
## 13918                                 positive
## 13919                                 positive
## 13920                                 positive
## 13921                                 positive
## 13922                                 positive
## 13923                                 positive
## 13924                                 positive
## 13925                                 positive
## 13926                                 positive
## 13927                                 positive
## 13928                                 positive
## 13929                                 positive
## 13930                                 positive
## 13931                                 possibly
## 13932                                     post
## 13933                                     post
## 13934                                     post
## 13935                                     post
## 13936                                     post
## 13937                                     post
## 13938                                     post
## 13939                                     post
## 13940                                     post
## 13941                                   posted
## 13942                                posterior
## 13943                                  posting
## 13944                                postnatal
## 13945                               postpartum
## 13946                                postponed
## 13947                                    posts
## 13948                                    posts
## 13949                                    posts
## 13950                                    posts
## 13951                                    posts
## 13952                                    posts
## 13953                                    posts
## 13954                                 potbelly
## 13955                                potential
## 13956                                potential
## 13957                              potentially
## 13958                                   pounds
## 13959                                     pour
## 13960                                     pour
## 13961                                   powder
## 13962                                    power
## 13963                                  powered
## 13964                                 powerful
## 13965                                 powerful
## 13966                               powerhouse
## 13967                             powerlifting
## 13968                                      ppl
## 13969                                       pr
## 13970                                practical
## 13971                              practically
## 13972                              practicamos
## 13973                                 practice
## 13974                                 practice
## 13975                                   praise
## 13976                                  pratico
## 13977                                      pre
## 13978                                      pre
## 13979                                      pre
## 13980                                      pre
## 13981                                preciosas
## 13982                                  precise
## 13983                                  precise
## 13984                              predesigned
## 13985                                predictor
## 13986                                 predicts
## 13987                            predictstreet
## 13988                                   prefer
## 13989                                   prefer
## 13990                                   prefer
## 13991                                   prefer
## 13992                                   prefer
## 13993                                   prefer
## 13994                                   prefer
## 13995                               preference
## 13996                                  prefers
## 13997                                  prefers
## 13998                                pregnancy
## 13999                                pregnancy
## 14000                                 pregnant
## 14001                                  preload
## 14002                                  premier
## 14003                                  premium
## 14004                                  premium
## 14005                                  premium
## 14006                                  premium
## 14007                                  premium
## 14008                                  premium
## 14009                                  premium
## 14010                                  premium
## 14011                                  premium
## 14012                                  premium
## 14013                                  premium
## 14014                                  premium
## 14015                                  premium
## 14016                                  premium
## 14017                                  premium
## 14018                                  premium
## 14019                                  premium
## 14020                                  premium
## 14021                                     prep
## 14022                             preparations
## 14023                                  prepare
## 14024                             presidential
## 14025                                 pressing
## 14026                                pressures
## 14027                                 pretende
## 14028                            pretentiously
## 14029                                 pretreat
## 14030                                   pretty
## 14031                                   pretty
## 14032                                   pretty
## 14033                                   pretty
## 14034                                   pretty
## 14035                                   pretty
## 14036                                   pretty
## 14037                                   pretty
## 14038                                   pretty
## 14039                                   pretty
## 14040                                   pretty
## 14041                                   pretty
## 14042                                   pretty
## 14043                                   pretty
## 14044                                   pretty
## 14045                                   pretty
## 14046                                   pretty
## 14047                                   pretty
## 14048                                   pretty
## 14049                                   pretty
## 14050                                   pretty
## 14051                                   pretty
## 14052                                   pretty
## 14053                                   pretty
## 14054                                   pretty
## 14055                                   pretty
## 14056                                   pretty
## 14057                               preventive
## 14058                                 previous
## 14059                                 previous
## 14060                                 previous
## 14061                                 previous
## 14062                                 previous
## 14063                               previously
## 14064                               previously
## 14065                               previously
## 14066                                    price
## 14067                                    price
## 14068                                    price
## 14069                                    price
## 14070                                    price
## 14071                                    price
## 14072                                    price
## 14073                                    price
## 14074                                    price
## 14075                                    price
## 14076                                    price
## 14077                                    price
## 14078                                    price
## 14079                                    price
## 14080                                    price
## 14081                                    price
## 14082                                    price
## 14083                                    price
## 14084                                    price
## 14085                                    price
## 14086                                   priced
## 14087                                   prices
## 14088                                   prices
## 14089                                   prices
## 14090                                   pricey
## 14091                                  pricing
## 14092                                 prideful
## 14093                                primarily
## 14094                                primarily
## 14095                                  primary
## 14096                                  primary
## 14097                                    prime
## 14098                                    prime
## 14099                                    prime
## 14100                                    prime
## 14101                                   primer
## 14102                                   primer
## 14103                                  primium
## 14104                                   primus
## 14105                           principalmente
## 14106                                  printed
## 14107                                  printed
## 14108                                  printed
## 14109                                    prior
## 14110                                    prior
## 14111                                    prior
## 14112                                    prior
## 14113                                    prior
## 14114                                    prior
## 14115                               prioritize
## 14116                             prioritizing
## 14117                                  private
## 14118                                privately
## 14119                                   prizes
## 14120                                      prm
## 14121                                      prm
## 14122                                      pro
## 14123                                      pro
## 14124                                      pro
## 14125                                      pro
## 14126                                      pro
## 14127                                      pro
## 14128                                      pro
## 14129                                      pro
## 14130                                      pro
## 14131                                     pro4
## 14132                                 problema
## 14133                                 problema
## 14134                                 problema
## 14135                                problemas
## 14136                                problemas
## 14137                                  process
## 14138                                  produce
## 14139                                 produced
## 14140                                 produced
## 14141                                  product
## 14142                                  product
## 14143                                  product
## 14144                                  product
## 14145                                  product
## 14146                                  product
## 14147                                  product
## 14148                                  product
## 14149                                  product
## 14150                                  product
## 14151                                  product
## 14152                                  product
## 14153                                  product
## 14154                               production
## 14155                               production
## 14156                                 products
## 14157                                 products
## 14158                                 products
## 14159                                 products
## 14160                                 products
## 14161                                  produto
## 14162                                  produto
## 14163                            profesionales
## 14164                             professional
## 14165                             professional
## 14166                             professional
## 14167                                  profile
## 14168                                  profile
## 14169                                  profile
## 14170                                  profile
## 14171                                  profile
## 14172                                   profit
## 14173                                 profound
## 14174                                 profound
## 14175                                  program
## 14176                                  program
## 14177                                  program
## 14178                                  program
## 14179                                  program
## 14180                                  program
## 14181                                  program
## 14182                                  program
## 14183                                  program
## 14184                                  program
## 14185                                  program
## 14186                                 programa
## 14187                                programas
## 14188                                programme
## 14189                                 programs
## 14190                                 programs
## 14191                                 programs
## 14192                                 programs
## 14193                                 programs
## 14194                                 programs
## 14195                                 programs
## 14196                                 programs
## 14197                                 programs
## 14198                                 programs
## 14199                                 programs
## 14200                                 programs
## 14201                                 programs
## 14202                                 programs
## 14203                                 progress
## 14204                                 progress
## 14205                                 progress
## 14206                                 progress
## 14207                                 progress
## 14208                                 progress
## 14209                                 progress
## 14210                                 progress
## 14211                                 progress
## 14212                                 progress
## 14213                                 progress
## 14214                                 progress
## 14215                                 progress
## 14216                                 progress
## 14217                                 progress
## 14218                                 progress
## 14219                                 progress
## 14220                                 progress
## 14221                               progressed
## 14222                              progression
## 14223                            progressively
## 14224                            progressively
## 14225                                  project
## 14226                                 projects
## 14227                                   prolly
## 14228                                   promos
## 14229                                  promote
## 14230                                  promote
## 14231                               pronounced
## 14232                                    proof
## 14233                                   proper
## 14234                                   proper
## 14235                                 properly
## 14236                                 properly
## 14237                                 properly
## 14238                                 properly
## 14239                                 properly
## 14240                               propublica
## 14241                                  protect
## 14242                               protectant
## 14243                                  protein
## 14244                                   proved
## 14245                                   proves
## 14246                                  provide
## 14247                                  provide
## 14248                                 provided
## 14249                                 provided
## 14250                                 provided
## 14251                                providing
## 14252                                providing
## 14253                                providing
## 14254                              provocative
## 14255                                      psc
## 14256                                      psc
## 14257                                   pseudo
## 14258                                   public
## 14259                                   public
## 14260                                   public
## 14261                                    puede
## 14262                                   pueden
## 14263                                    puedo
## 14264                                   puerta
## 14265                                   puffle
## 14266                                     puig
## 14267                                    pukka
## 14268                                     pull
## 14269                                  pulling
## 14270                                    pulll
## 14271                                 pullover
## 14272                                    pulse
## 14273                                     puma
## 14274                                     puma
## 14275                                 puncture
## 14276                                    puppy
## 14277                                 purchase
## 14278                                 purchase
## 14279                                 purchase
## 14280                                purchased
## 14281                                purchased
## 14282                               purchasing
## 14283                               purchasing
## 14284                                     pure
## 14285                                     pure
## 14286                                     pure
## 14287                                     pure
## 14288                                   purely
## 14289                                   purple
## 14290                                   purple
## 14291                                   purple
## 14292                                   purple
## 14293                                   purple
## 14294                                   purple
## 14295                                   purple
## 14296                                   purple
## 14297                                   purple
## 14298                                   purple
## 14299                                   purple
## 14300                                   purple
## 14301                                  purples
## 14302                                  purpose
## 14303                                  purpose
## 14304                               purposeful
## 14305                                  pursuit
## 14306                                     push
## 14307                                     push
## 14308                                  pushing
## 14309                                  pushing
## 14310                                  putting
## 14311                                       q1
## 14312                                       q1
## 14313                                       q2
## 14314                                       q2
## 14315                                       q2
## 14316                                       q2
## 14317                                       q3
## 14318                                       q3
## 14319                                       q3
## 14320                                       qa
## 14321                                       qa
## 14322                                    qball
## 14323                                       qc
## 14324                                       qc
## 14325                                       qc
## 14326                                   qinwen
## 14327                                  quality
## 14328                                  quality
## 14329                                  quality
## 14330                                  quality
## 14331                                  quality
## 14332                                  quality
## 14333                                  quality
## 14334                                  quality
## 14335                                  quality
## 14336                                  quality
## 14337                                  quality
## 14338                                  quality
## 14339                                  quality
## 14340                                  quality
## 14341                                  quality
## 14342                                  quality
## 14343                                  quality
## 14344                                  quality
## 14345                                  quality
## 14346                                  quality
## 14347                                  quality
## 14348                                  quality
## 14349                                  quality
## 14350                                  quality
## 14351                               quantidade
## 14352                               quarantine
## 14353                               quarantine
## 14354                                  quarter
## 14355                                  quarter
## 14356                                  quarter
## 14357                                quarterly
## 14358                                     quem
## 14359                                     quem
## 14360                                   querem
## 14361                                   querer
## 14362                                   queria
## 14363                                    query
## 14364                                    quest
## 14365                                 question
## 14366                                 question
## 14367                                 question
## 14368                                 question
## 14369                                 question
## 14370                                 question
## 14371                             questionable
## 14372                                questions
## 14373                                questions
## 14374                                questions
## 14375                                    queue
## 14376                                      qui
## 14377                                    quick
## 14378                                    quick
## 14379                                    quick
## 14380                                    quick
## 14381                                    quick
## 14382                                    quick
## 14383                                    quick
## 14384                                  quickly
## 14385                                  quickly
## 14386                                  quickly
## 14387                                  quickly
## 14388                                  quickly
## 14389                                  quickly
## 14390                                  quickly
## 14391                                    quiet
## 14392                                  quietly
## 14393                                   quirky
## 14394                                   quirky
## 14395                                     quit
## 14396                                   quiten
## 14397                                 quitting
## 14398                                 quitting
## 14399                                       r1
## 14400                            r5sxjycu21auk
## 14401                                     race
## 14402                                     race
## 14403                                     race
## 14404                                     race
## 14405                                     race
## 14406                                   racers
## 14407                                   racers
## 14408                                    races
## 14409                                   racing
## 14410                                   racing
## 14411                                     rack
## 14412                                      rad
## 14413                                      rad
## 14414                                   raffle
## 14415                                   raffle
## 14416                                   raffle
## 14417                                   raffle
## 14418                                   raffle
## 14419                                     rain
## 14420                                     rain
## 14421                                     rain
## 14422                                  raining
## 14423                                  rainman
## 14424                                    raise
## 14425                                    raise
## 14426                                   raises
## 14427                                   raises
## 14428                                  rallies
## 14429                                  ramadan
## 14430                                      ran
## 14431                                      ran
## 14432                                      ran
## 14433                                      ran
## 14434                                      ran
## 14435                                      ran
## 14436                                      ran
## 14437                                      ran
## 14438                                      ran
## 14439                                      ran
## 14440                                      ran
## 14441                                   random
## 14442                                   random
## 14443                                 randomly
## 14444                                 randomly
## 14445                                 randomly
## 14446                                 randomly
## 14447                                 randomly
## 14448                                    range
## 14449                                    range
## 14450                                     rank
## 14451                                      rap
## 14452                                    rapid
## 14453                                  rapidly
## 14454                               rapidmoves
## 14455                                     rare
## 14456                                  rareair
## 14457                                  rareair
## 14458                                   rarely
## 14459                                rashhhhhh
## 14460                                     rate
## 14461                                     rate
## 14462                                   rating
## 14463                                   rating
## 14464                                     rave
## 14465                                       rc
## 14466                                    reach
## 14467                                    reach
## 14468                                    reach
## 14469                                    reach
## 14470                                  reaches
## 14471                                    react
## 14472                                    react
## 14473                                     read
## 14474                                     read
## 14475                                     read
## 14476                                     read
## 14477                                     read
## 14478                                  reading
## 14479                                  reading
## 14480                                    ready
## 14481                                     real
## 14482                                     real
## 14483                                     real
## 14484                                     real
## 14485                                     real
## 14486                                     real
## 14487                                     real
## 14488                                     real
## 14489                                     real
## 14490                                     real
## 14491                                     real
## 14492                                     real
## 14493                                     real
## 14494                                     real
## 14495                                     real
## 14496                                     real
## 14497                                     real
## 14498                                     real
## 14499                                     real
## 14500                                     real
## 14501                                     real
## 14502                                     real
## 14503                                     real
## 14504                                     real
## 14505                                     real
## 14506                                     real
## 14507                                     real
## 14508                                     real
## 14509                                     real
## 14510                                     real
## 14511                                     real
## 14512                                     real
## 14513                                     real
## 14514                                     real
## 14515                                     real
## 14516                                     real
## 14517                                     real
## 14518                                     real
## 14519                                     real
## 14520                            realdipmaster
## 14521                                 realised
## 14522                                realistic
## 14523                                  reality
## 14524                                realizing
## 14525                             realmilgrauu
## 14526                                 realtree
## 14527                                     rear
## 14528                                  rearair
## 14529                                   reason
## 14530                                   reason
## 14531                                   reason
## 14532                                   reason
## 14533                                   reason
## 14534                                   reason
## 14535                                   reason
## 14536                                   reason
## 14537                                   reason
## 14538                                   reason
## 14539                               reasonable
## 14540                               reasonable
## 14541                                  reasons
## 14542                                  reasons
## 14543                                rebalance
## 14544                                    rebel
## 14545                                   rebock
## 14546                                   rebock
## 14547                                 rebounds
## 14548                                  rebuild
## 14549                                  receive
## 14550                                  receive
## 14551                                 received
## 14552                                 received
## 14553                                receiving
## 14554                                receiving
## 14555                                receiving
## 14556                                receiving
## 14557                                   recent
## 14558                                   recent
## 14559                                   recent
## 14560                                   recent
## 14561                                   recent
## 14562                                   recent
## 14563                                   recent
## 14564                                   recent
## 14565                                   recent
## 14566                                   recent
## 14567                                 recently
## 14568                                 recently
## 14569                                 recently
## 14570                                 recently
## 14571                                 recently
## 14572                                 recently
## 14573                                 recently
## 14574                                 recently
## 14575                                 recently
## 14576                                 recently
## 14577                                 recently
## 14578                                 recently
## 14579                                 recently
## 14580                                 recently
## 14581                                 recently
## 14582                                 recently
## 14583                                reception
## 14584                                 recevoir
## 14585                               recomiendo
## 14586                               recomiendo
## 14587                              recommanded
## 14588                                recommend
## 14589                                recommend
## 14590                                recommend
## 14591                                recommend
## 14592                                recommend
## 14593                                recommend
## 14594                                recommend
## 14595                                recommend
## 14596                                recommend
## 14597                                recommend
## 14598                                recommend
## 14599                                recommend
## 14600                                recommend
## 14601                                recommend
## 14602                                recommend
## 14603                                recommend
## 14604                                recommend
## 14605                                recommend
## 14606                          recommendations
## 14607                              recommended
## 14608                              recommended
## 14609                               recommends
## 14610                                    recon
## 14611                                    recon
## 14612                                   record
## 14613                                recording
## 14614                                recording
## 14615                                  records
## 14616                                  records
## 14617                                  records
## 14618                                 recovers
## 14619                                 recovery
## 14620                                 recovery
## 14621                                 recovery
## 14622                                 recovery
## 14623                                 recovery
## 14624                               recreating
## 14625                                     recs
## 14626                              rectangular
## 14627                             recuperación
## 14628                                recuperar
## 14629                                recuperar
## 14630                                    rec’d
## 14631                                      red
## 14632                                      red
## 14633                                      red
## 14634                                      red
## 14635                                      red
## 14636                                      red
## 14637                                      red
## 14638                                      red
## 14639                                      red
## 14640                                      red
## 14641                                      red
## 14642                                      red
## 14643                                   redact
## 14644                                   reddit
## 14645                                   reddit
## 14646                                   reddit
## 14647                                   reddit
## 14648                                   reddit
## 14649                                   reddit
## 14650                                   reddit
## 14651                                   reddit
## 14652                                redditors
## 14653                               redesigned
## 14654                                     redo
## 14655                             redownloaded
## 14656                                  reduced
## 14657                                  reduced
## 14658                                  reduces
## 14659                                 redwings
## 14660                                   reebok
## 14661                                   reebok
## 14662                                   reebok
## 14663                                      ref
## 14664                                reference
## 14665                                reference
## 14666                               referencia
## 14667                               reflective
## 14668                              reflexology
## 14669                                refreshed
## 14670                                   refuge
## 14671                                   regain
## 14672                                 regained
## 14673                                   reggie
## 14674                                regiments
## 14675                                   regine
## 14676                                 regional
## 14677                                 register
## 14678                                 register
## 14679                                 register
## 14680                                registrar
## 14681                             registration
## 14682                                 registro
## 14683                                  regular
## 14684                                  regular
## 14685                                  regular
## 14686                                  regular
## 14687                                  regular
## 14688                                  regular
## 14689                                  regular
## 14690                                  regular
## 14691                                  regular
## 14692                                  regular
## 14693                                  regular
## 14694                                  regular
## 14695                                  regular
## 14696                                  regular
## 14697                                regularly
## 14698                                regularly
## 14699                                    reign
## 14700                                    reign
## 14701                                    reign
## 14702                               reimagined
## 14703                               reinforced
## 14704                              reinstalled
## 14705                              reinstalled
## 14706                              reinstalled
## 14707                             reinstalling
## 14708                               reinstalls
## 14709                                 rejuven8
## 14710                               relajación
## 14711                                  related
## 14712                                relations
## 14713                                relations
## 14714                                relations
## 14715                                relations
## 14716                                relations
## 14717                                  release
## 14718                                  release
## 14719                                  release
## 14720                                  release
## 14721                                  release
## 14722                                  release
## 14723                                  release
## 14724                                  release
## 14725                                  release
## 14726                                 released
## 14727                                 released
## 14728                                 released
## 14729                                 releases
## 14730                                 releases
## 14731                                 releases
## 14732                                 releases
## 14733                                 releases
## 14734                                 releases
## 14735                                 releases
## 14736                                 releases
## 14737                               relentless
## 14738                              reliability
## 14739                                 reliable
## 14740                                 reliable
## 14741                                 reliable
## 14742                                 reliable
## 14743                                 reliable
## 14744                                   relief
## 14745                                reloading
## 14746                                  relógio
## 14747                                   remain
## 14748                                 remained
## 14749                                  remains
## 14750                                 remember
## 14751                                 remember
## 14752                                 remember
## 14753                                remembers
## 14754                                 reminder
## 14755                                 remotely
## 14756                                   remove
## 14757                                   remove
## 14758                                   remove
## 14759                                   remove
## 14760                                  removed
## 14761                                  removed
## 14762                                  removed
## 14763                                  removed
## 14764                                  removed
## 14765                                 removing
## 14766                             reorganizing
## 14767                                      rep
## 14768                                      rep
## 14769                                 repeat's
## 14770                                 repeated
## 14771                                 repeated
## 14772                                repellent
## 14773                               repetitive
## 14774                               repetitive
## 14775                              replacement
## 14776                              replacement
## 14777                                 replaces
## 14778                                replacing
## 14779                                replacing
## 14780                            replenishment
## 14781                                  replied
## 14782                                    reply
## 14783                                   report
## 14784                                  reporte
## 14785                                  reports
## 14786                                  reports
## 14787                                  reports
## 14788                                  reports
## 14789                                  reports
## 14790                                  reports
## 14791                                represent
## 14792                           representative
## 14793                             representing
## 14794                               represents
## 14795                                     reps
## 14796                                reputable
## 14797                                  require
## 14798                                  require
## 14799                                  require
## 14800                                  require
## 14801                                 required
## 14802                              requirement
## 14803                                 requires
## 14804                                 requires
## 14805                                 requires
## 14806                                 requires
## 14807                                   resale
## 14808                                   resale
## 14809                                   resale
## 14810                                 research
## 14811                                 research
## 14812                                 research
## 14813                                 research
## 14814                                   resell
## 14815                                   resell
## 14816                                   resell
## 14817                                   resell
## 14818                                   resell
## 14819                                 reseller
## 14820                                resellers
## 14821                                    reset
## 14822                               resistance
## 14823                                resistant
## 14824                                resistant
## 14825                              resistencia
## 14826                                 resolved
## 14827                                 resource
## 14828                                  respond
## 14829                                     rest
## 14830                                     rest
## 14831                               restarting
## 14832                                  restock
## 14833                               restocking
## 14834                                 restocks
## 14835                                 restored
## 14836                            restructuring
## 14837                            restructuring
## 14838                                   result
## 14839                                resulting
## 14840                                  results
## 14841                                  results
## 14842                                  results
## 14843                                  results
## 14844                                   resume
## 14845                                   retail
## 14846                                   retail
## 14847                                   retail
## 14848                                   retail
## 14849                                   retail
## 14850                                   retail
## 14851                                   retail
## 14852                                   retail
## 14853                                   retail
## 14854                                   retail
## 14855                                   retail
## 14856                                retailers
## 14857                                retailers
## 14858                                retailers
## 14859                                  retarme
## 14860                               retirement
## 14861                                 retiring
## 14862                                     reto
## 14863                                 retrieve
## 14864                                    retro
## 14865                                    retro
## 14866                                    retro
## 14867                                    retro
## 14868                                    retro
## 14869                                    retro
## 14870                                    retro
## 14871                                    retro
## 14872                                    retro
## 14873                                    retro
## 14874                                  retroed
## 14875                                   retros
## 14876                                   return
## 14877                                   return
## 14878                                returning
## 14879                                returning
## 14880                              reuploading
## 14881                                  reuters
## 14882                                  reuters
## 14883                                  reuters
## 14884                                  revenue
## 14885                                  revenue
## 14886                                  revenue
## 14887                                  revenue
## 14888                                  revenue
## 14889                                  revenue
## 14890                                  revenue
## 14891                                  revenue
## 14892                                  revenue
## 14893                                  revenue
## 14894                                  revenue
## 14895                                  revenue
## 14896                                  revenue
## 14897                                  revenue
## 14898                                  reverse
## 14899                               reversible
## 14900                               reversible
## 14901                                reversing
## 14902                                   revert
## 14903                                   review
## 14904                                   review
## 14905                                   review
## 14906                                   review
## 14907                                   review
## 14908                                   review
## 14909                                   review
## 14910                                   review
## 14911                                   review
## 14912                                   review
## 14913                                   review
## 14914                                   review
## 14915                                   review
## 14916                                   review
## 14917                                   review
## 14918                                   review
## 14919                                   review
## 14920                                   review
## 14921                                   review
## 14922                                   review
## 14923                                   review
## 14924                                   review
## 14925                                   review
## 14926                                 reviewer
## 14927                                 reviewer
## 14928                                reviewing
## 14929                                reviewing
## 14930                                  reviews
## 14931                                  reviews
## 14932                                  reviews
## 14933                                  reviews
## 14934                                  reviews
## 14935                                  reviews
## 14936                               revolution
## 14937                                rewarding
## 14938                                  rewards
## 14939                                   rewiev
## 14940                               rhinestone
## 14941                                   rhythm
## 14942                                   ribbon
## 14943                                     ribs
## 14944                                     rice
## 14945                                     rich
## 14946                                     rich
## 14947                                     rich
## 14948                                     rico
## 14949                                     ride
## 14950                                     ride
## 14951                                    rides
## 14952                               ridiculous
## 14953                               ridiculous
## 14954                                   riding
## 14955                                    rigid
## 14956                                    rigid
## 14957                                      rin
## 14958                                    rings
## 14959                                      rio
## 14960                                      rip
## 14961                                      rip
## 14962                                      rip
## 14963                                   ripped
## 14964                                     rise
## 14965                                     rise
## 14966                                    rises
## 14967                                    risky
## 14968                                    ritmo
## 14969                                    ritmo
## 14970                                    rival
## 14971                                  rivalry
## 14972                                  rizferd
## 14973                            rl9yqavfj2ula
## 14974                                     rlly
## 14975                                       rn
## 14976                                       rn
## 14977                                       rn
## 14978                                       rn
## 14979                                       ro
## 14980                                     road
## 14981                                     road
## 14982                                     road
## 14983                                  roadman
## 14984                                   robbed
## 14985                                   robert
## 14986                                   robert
## 14987                                  robotic
## 14988                                rochester
## 14989                                     rock
## 14990                                     rock
## 14991                                     rock
## 14992                                   rockin
## 14993                                  rocking
## 14994                                  rocking
## 14995                                  rocking
## 14996                                  rocking
## 14997                                  rocking
## 14998                                  rocking
## 14999                                     rode
## 15000                                     role
## 15001                                     role
## 15002                                     roll
## 15003                                 rollable
## 15004                                   roller
## 15005                                   romper
## 15006                                      ron
## 15007                                      ron
## 15008                                   rondon
## 15009                                  roofers
## 15010                                    roomy
## 15011                                     rope
## 15012                                     rope
## 15013                                     rope
## 15014                                     rose
## 15015                                    roshe
## 15016                                     ross
## 15017                                     ross
## 15018                                 rotating
## 15019                                 rotation
## 15020                                 rotation
## 15021                                 rotation
## 15022                                    rotys
## 15023                                    rough
## 15024                                    round
## 15025                                    round
## 15026                                    round
## 15027                                    round
## 15028                                    round
## 15029                                    round
## 15030                                rousteing
## 15031                                    route
## 15032                                    route
## 15033                                    route
## 15034                                    route
## 15035                                    route
## 15036                                   routes
## 15037                                   routes
## 15038                                   routes
## 15039                                   routes
## 15040                                  routine
## 15041                                  routine
## 15042                                  routine
## 15043                                routinely
## 15044                                 routines
## 15045                                 routines
## 15046                                 routines
## 15047                                   rowing
## 15048                                    royal
## 15049                                    royal
## 15050                            rpjyoncygkngo
## 15051                                      rrp
## 15052                                       rs
## 15053                                   rstill
## 15054                                   rubber
## 15055                                   rubber
## 15056                                   rubber
## 15057                                  rubbing
## 15058                                     ruff
## 15059                                   rugged
## 15060                                   ruined
## 15061                                  ruining
## 15062                                     rule
## 15063                                     rule
## 15064                                      run
## 15065                                      run
## 15066                                      run
## 15067                                      run
## 15068                                      run
## 15069                                      run
## 15070                                      run
## 15071                                      run
## 15072                                      run
## 15073                                      run
## 15074                                      run
## 15075                                      run
## 15076                                      run
## 15077                                      run
## 15078                                      run
## 15079                                      run
## 15080                                      run
## 15081                                      run
## 15082                                      run
## 15083                                      run
## 15084                                      run
## 15085                                      run
## 15086                                      run
## 15087                                      run
## 15088                                      run
## 15089                                      run
## 15090                                      run
## 15091                                      run
## 15092                                      run
## 15093                                      run
## 15094                                      run
## 15095                                      run
## 15096                                      run
## 15097                                      run
## 15098                                      run
## 15099                                      run
## 15100                                      run
## 15101                                      run
## 15102                                      run
## 15103                                      run
## 15104                                      run
## 15105                                      run
## 15106                                      run
## 15107                                      run
## 15108                                      run
## 15109                                      run
## 15110                                      run
## 15111                                      run
## 15112                                      run
## 15113                                      run
## 15114                                      run
## 15115                                      run
## 15116                                      run
## 15117                                      run
## 15118                                      run
## 15119                                      run
## 15120                                      run
## 15121                                      run
## 15122                                      run
## 15123                                      run
## 15124                                      run
## 15125                                      run
## 15126                                      run
## 15127                                      run
## 15128                                      run
## 15129                                      run
## 15130                                      run
## 15131                                    runna
## 15132                                   runner
## 15133                                   runner
## 15134                                   runner
## 15135                                   runner
## 15136                                   runner
## 15137                                   runner
## 15138                                  runners
## 15139                                  runners
## 15140                                  runners
## 15141                                  runners
## 15142                                  runners
## 15143                                  runners
## 15144                                  runners
## 15145                                  runners
## 15146                                  runners
## 15147                                  runners
## 15148                                  runners
## 15149                                  running
## 15150                                  running
## 15151                                  running
## 15152                                  running
## 15153                                  running
## 15154                                  running
## 15155                                  running
## 15156                                  running
## 15157                                  running
## 15158                                  running
## 15159                                  running
## 15160                                  running
## 15161                                  running
## 15162                                  running
## 15163                                  running
## 15164                                  running
## 15165                                  running
## 15166                                  running
## 15167                                  running
## 15168                                  running
## 15169                                  running
## 15170                                  running
## 15171                                  running
## 15172                                  running
## 15173                                  running
## 15174                                  running
## 15175                                  running
## 15176                                  running
## 15177                                  running
## 15178                                  running
## 15179                                  running
## 15180                                  running
## 15181                                  running
## 15182                                  running
## 15183                                  running
## 15184                                  running
## 15185                                  running
## 15186                                  running
## 15187                                  running
## 15188                                  running
## 15189                                  running
## 15190                                  running
## 15191                                  running
## 15192                                  running
## 15193                                  running
## 15194                                  running
## 15195                                  running
## 15196                                  running
## 15197                                  running
## 15198                                  running
## 15199                                  running
## 15200                                  running
## 15201                                  running
## 15202                                  running
## 15203                                  running
## 15204                                  running
## 15205                                  running
## 15206                                  running
## 15207                                  running
## 15208                                  running
## 15209                                     runs
## 15210                                     runs
## 15211                                     runs
## 15212                                     runs
## 15213                                     runs
## 15214                                     runs
## 15215                                     runs
## 15216                                     runs
## 15217                                     runs
## 15218                                     runs
## 15219                                     runs
## 15220                                     runs
## 15221                                     runs
## 15222                                     runs
## 15223                                     runs
## 15224                                     runs
## 15225                                     runs
## 15226                                     runs
## 15227                                     runs
## 15228                                     runs
## 15229                                     runs
## 15230                                     runs
## 15231                                     runs
## 15232                                     runs
## 15233                                runstatic
## 15234                                runtastic
## 15235                                runtastic
## 15236                                runtastic
## 15237                                runtastic
## 15238                                runtastic
## 15239                                runtastic
## 15240                                runtastic
## 15241                                runtastic
## 15242                                runtastic
## 15243                                runtastic
## 15244                                    run’s
## 15245                                     ruta
## 15246                                     ruta
## 15247                                  rutinas
## 15248                                  rutinas
## 15249                       rvxnufxxubfyjhw6lo
## 15250                                     ryan
## 15251                                    saber
## 15252                                    sabre
## 15253                                  sabrina
## 15254                                      sad
## 15255                                      sad
## 15256                                      sad
## 15257                                   sadida
## 15258                                   safari
## 15259                                     safe
## 15260                                    safer
## 15261                                   safety
## 15262                                   safety
## 15263                                   safety
## 15264                                     sail
## 15265                                     sail
## 15266                                     sail
## 15267                                     sail
## 15268                                     sail
## 15269                                   salary
## 15270                                     sale
## 15271                                     sale
## 15272                                     sale
## 15273                                     sale
## 15274                                     sale
## 15275                                    sales
## 15276                                    sales
## 15277                                    sales
## 15278                                    sales
## 15279                                    sales
## 15280                                    sales
## 15281                                    sales
## 15282                                    sales
## 15283                                    sales
## 15284                                    sales
## 15285                                   salish
## 15286                                  salomon
## 15287                                  salomon
## 15288                                    salty
## 15289                                  saludos
## 15290                                    samba
## 15291                                    samba
## 15292                                    samba
## 15293                                    samba
## 15294                                    samba
## 15295                                    samba
## 15296                                   samba3
## 15297                                   sambas
## 15298                                   sambas
## 15299                                   sambas
## 15300                                      san
## 15301                                     sand
## 15302                                     sand
## 15303                                  sanders
## 15304                                  sanders
## 15305                                sandpaper
## 15306                                     sans
## 15307                                   santos
## 15308                              santoscharm
## 15309                                 sapphire
## 15310                                sapphires
## 15311                                      sat
## 15312                                      sat
## 15313                                satellite
## 15314                                satellite
## 15315                                    satin
## 15316                                satisfied
## 15317                                satisfied
## 15318                                saturated
## 15319                                 saturday
## 15320                                 saturday
## 15321                                   sauron
## 15322                                     save
## 15323                                     save
## 15324                                     save
## 15325                                     save
## 15326                                     save
## 15327                                     save
## 15328                                   saving
## 15329                                   saving
## 15330                                   saving
## 15331                                   saving
## 15332                                   saving
## 15333                                  savings
## 15334                                    savvy
## 15335                                     savy
## 15336                                    sayin
## 15337                                       sb
## 15338                                       sb
## 15339                                       sb
## 15340                                       sb
## 15341                                       sb
## 15342                                       sb
## 15343                                       sb
## 15344                                     sb2s
## 15345                                     sb95
## 15346                                      sbs
## 15347                                      sbs
## 15348                                      sbs
## 15349                                       sc
## 15350                                   scally
## 15351                                  scammmm
## 15352                                 scarcity
## 15353                                 scathing
## 15354                                   scenic
## 15355                                 schedule
## 15356                                scheduled
## 15357                                scheffler
## 15358                                   school
## 15359                                   school
## 15360                                   school
## 15361                                   school
## 15362                                   school
## 15363                                   school
## 15364                                   school
## 15365                                   school
## 15366                               scientific
## 15367                                    score
## 15368                                    score
## 15369                                    score
## 15370                                    score
## 15371                                    score
## 15372                                    score
## 15373                                    score
## 15374                                    score
## 15375                                    score
## 15376                                    score
## 15377                                    score
## 15378                                    score
## 15379                                    score
## 15380                                    score
## 15381                                    score
## 15382                                    score
## 15383                                    score
## 15384                                    score
## 15385                                    score
## 15386                                    score
## 15387                                    score
## 15388                                    score
## 15389                                    score
## 15390                                    score
## 15391                                    score
## 15392                                    score
## 15393                                    score
## 15394                                    score
## 15395                                    score
## 15396                                    score
## 15397                                    score
## 15398                                    score
## 15399                                    score
## 15400                                    score
## 15401                                    score
## 15402                                    score
## 15403                                    score
## 15404                                    score
## 15405                                    score
## 15406                                    score
## 15407                                    score
## 15408                                 scorpion
## 15409                                 scorpion
## 15410                                    scott
## 15411                                  scottie
## 15412                                  scottie
## 15413                                   screen
## 15414                                   screen
## 15415                                   screen
## 15416                                   screen
## 15417                                   screen
## 15418                                   screen
## 15419                                   screen
## 15420                                   screen
## 15421                                   screen
## 15422                                   screen
## 15423                                   screen
## 15424                                   screen
## 15425                                   screen
## 15426                                   screen
## 15427                                   screen
## 15428                                   screen
## 15429                                   scroll
## 15430                                scrolling
## 15431                                   scrubs
## 15432                                   scrubs
## 15433                                      scy
## 15434                                       se
## 15435                                       se
## 15436                                       se
## 15437                                       se
## 15438                                       se
## 15439                                       se
## 15440                                       se
## 15441                                       se
## 15442                                       se
## 15443                                      sea
## 15444                                      sea
## 15445                                      sea
## 15446                                 seamless
## 15447                                 seamless
## 15448                                     sean
## 15449                                   search
## 15450                                   search
## 15451                                   search
## 15452                                 searches
## 15453                               searchpage
## 15454                                   season
## 15455                                 seasoned
## 15456                                 seasoned
## 15457                                     seat
## 15458                                   seated
## 15459                                      sec
## 15460                                      sec
## 15461                                      sec
## 15462                                  sección
## 15463                                   secret
## 15464                                 secretly
## 15465                                  section
## 15466                                  section
## 15467                                  section
## 15468                                  secured
## 15469                                  secured
## 15470                                 security
## 15471                                seemingly
## 15472                                  segment
## 15473                                 segments
## 15474                             seguimientos
## 15475                                  segunda
## 15476                                 seldomly
## 15477                                   select
## 15478                                   select
## 15479                                   select
## 15480                                 selected
## 15481                                 selected
## 15482                                 selected
## 15483                                selection
## 15484                                     sell
## 15485                                     sell
## 15486                                     sell
## 15487                                     sell
## 15488                                     sell
## 15489                                     sell
## 15490                                     sell
## 15491                                  selling
## 15492                                    sells
## 15493                                    sells
## 15494                                   semana
## 15495                                   semana
## 15496                                   semana
## 15497                                   semana
## 15498                                  semanal
## 15499                                     semi
## 15500                                     semi
## 15501                                      sen
## 15502                          sen10ultraboost
## 15503                                     send
## 15504                                     send
## 15505                                     send
## 15506                                     send
## 15507                                  seniors
## 15508                                    senna
## 15509                                    sense
## 15510                                    sense
## 15511                                    sense
## 15512                                    sense
## 15513                                sensitive
## 15514                                   sentir
## 15515                                 separate
## 15516                                 separate
## 15517                                 separate
## 15518                                 separate
## 15519                                 seperate
## 15520                                     sept
## 15521                                september
## 15522                                september
## 15523                                september
## 15524                                september
## 15525                                september
## 15526                                      ser
## 15527                               serenocrvg
## 15528                                   series
## 15529                                   series
## 15530                                   series
## 15531                                   series
## 15532                                  serrano
## 15533                                    serve
## 15534                                   server
## 15535                                  service
## 15536                                  service
## 15537                                  service
## 15538                                  service
## 15539                                  service
## 15540                                 services
## 15541                                  session
## 15542                                 sessions
## 15543                                 sessions
## 15544                                      set
## 15545                                      set
## 15546                                      set
## 15547                                      set
## 15548                                      set
## 15549                                      set
## 15550                                      set
## 15551                                     sets
## 15552                                  setting
## 15553                                  setting
## 15554                                 settings
## 15555                                 settings
## 15556                                 settings
## 15557                                 settings
## 15558                                 settings
## 15559                                   settle
## 15560                                    setup
## 15561                                    setup
## 15562                                    seude
## 15563                                   severe
## 15564                                   severe
## 15565                                 severely
## 15566                                   severs
## 15567                                  sexless
## 15568                                     sexy
## 15569                                       sf
## 15570                                      sfb
## 15571                                      sfb
## 15572                            sgwptmd47pv04
## 15573                                    shade
## 15574                                     shai
## 15575                                     shai
## 15576                                  shake’s
## 15577                                    shame
## 15578                                    shape
## 15579                                    shape
## 15580                                    shape
## 15581                                    shape
## 15582                                    shape
## 15583                                    shape
## 15584                                    shape
## 15585                                    shape
## 15586                                    share
## 15587                                    share
## 15588                                    share
## 15589                                    share
## 15590                                    share
## 15591                                shareable
## 15592                                   shared
## 15593                                  sharing
## 15594                                  sharing
## 15595                                    sharp
## 15596                                    shaun
## 15597                                    sheee
## 15598                                    sheep
## 15599                                    sheep
## 15600                                    sheer
## 15601                                    sheer
## 15602                                    sheer
## 15603                                   sheesh
## 15604                                    shelf
## 15605                                    shell
## 15606                                    shift
## 15607                                 shifting
## 15608                                   shifty
## 15609                                   shikes
## 15610                                     shin
## 15611                                   shines
## 15612                                  shining
## 15613                                 shipment
## 15614                                  shipped
## 15615                                 shipping
## 15616                                 shipping
## 15617                                    shirt
## 15618                                    shirt
## 15619                                    shirt
## 15620                                    shirt
## 15621                                    shirt
## 15622                                    shirt
## 15623                                    shirt
## 15624                                    shirt
## 15625                                   shirts
## 15626                                   shirts
## 15627                                   shirts
## 15628                                   shirts
## 15629                           shirtshirtkids
## 15630                                     shit
## 15631                                     shit
## 15632                                     shit
## 15633                                     shit
## 15634                                     shit
## 15635                                     shit
## 15636                                     shit
## 15637                                     shit
## 15638                                     shit
## 15639                                     shit
## 15640                                     shit
## 15641                                     shit
## 15642                                     shit
## 15643                                     shit
## 15644                                     shit
## 15645                                     shit
## 15646                                     shit
## 15647                                     shit
## 15648                                     shit
## 15649                                    shits
## 15650                                    shits
## 15651                                      sho
## 15652                                    shock
## 15653                                     shoe
## 15654                                     shoe
## 15655                                     shoe
## 15656                                     shoe
## 15657                                     shoe
## 15658                                     shoe
## 15659                                     shoe
## 15660                                     shoe
## 15661                                     shoe
## 15662                                     shoe
## 15663                                     shoe
## 15664                                     shoe
## 15665                                     shoe
## 15666                                     shoe
## 15667                                     shoe
## 15668                                     shoe
## 15669                                     shoe
## 15670                                     shoe
## 15671                                     shoe
## 15672                                     shoe
## 15673                                     shoe
## 15674                                     shoe
## 15675                                     shoe
## 15676                                     shoe
## 15677                                     shoe
## 15678                                     shoe
## 15679                                     shoe
## 15680                                     shoe
## 15681                                     shoe
## 15682                                     shoe
## 15683                                     shoe
## 15684                                     shoe
## 15685                                     shoe
## 15686                                     shoe
## 15687                                     shoe
## 15688                                     shoe
## 15689                                     shoe
## 15690                                     shoe
## 15691                                     shoe
## 15692                                     shoe
## 15693                                     shoe
## 15694                                     shoe
## 15695                                     shoe
## 15696                                     shoe
## 15697                                     shoe
## 15698                                     shoe
## 15699                                     shoe
## 15700                                     shoe
## 15701                                     shoe
## 15702                                     shoe
## 15703                                     shoe
## 15704                                     shoe
## 15705                                     shoe
## 15706                                     shoe
## 15707                                     shoe
## 15708                                     shoe
## 15709                                     shoe
## 15710                                     shoe
## 15711                                     shoe
## 15712                                     shoe
## 15713                                     shoe
## 15714                                     shoe
## 15715                                     shoe
## 15716                                     shoe
## 15717                                     shoe
## 15718                                     shoe
## 15719                                     shoe
## 15720                                     shoe
## 15721                                     shoe
## 15722                                     shoe
## 15723                                     shoe
## 15724                                     shoe
## 15725                                     shoe
## 15726                                     shoe
## 15727                                     shoe
## 15728                                     shoe
## 15729                                     shoe
## 15730                                     shoe
## 15731                                     shoe
## 15732                                     shoe
## 15733                                     shoe
## 15734                                     shoe
## 15735                                     shoe
## 15736                                     shoe
## 15737                                     shoe
## 15738                                     shoe
## 15739                                     shoe
## 15740                                     shoe
## 15741                                     shoe
## 15742                                 shoelace
## 15743                                shoelaces
## 15744                                    shoes
## 15745                                    shoes
## 15746                                    shoes
## 15747                                    shoes
## 15748                                    shoes
## 15749                                    shoes
## 15750                                    shoes
## 15751                                    shoes
## 15752                                    shoes
## 15753                                    shoes
## 15754                                    shoes
## 15755                                    shoes
## 15756                                    shoes
## 15757                                    shoes
## 15758                                    shoes
## 15759                                    shoes
## 15760                                    shoes
## 15761                                    shoes
## 15762                                    shoes
## 15763                                    shoes
## 15764                                    shoes
## 15765                                    shoes
## 15766                                    shoes
## 15767                                    shoes
## 15768                                    shoes
## 15769                                    shoes
## 15770                                    shoes
## 15771                                    shoes
## 15772                                    shoes
## 15773                                    shoes
## 15774                                    shoes
## 15775                                    shoes
## 15776                                    shoes
## 15777                                    shoes
## 15778                                    shoes
## 15779                                    shoes
## 15780                                    shoes
## 15781                                    shoes
## 15782                                    shoes
## 15783                                    shoes
## 15784                                    shoes
## 15785                                    shoes
## 15786                                    shoes
## 15787                                    shoes
## 15788                                    shoes
## 15789                                    shoes
## 15790                                    shoes
## 15791                                    shoes
## 15792                                    shoes
## 15793                                    shoes
## 15794                                    shoes
## 15795                                    shoes
## 15796                                    shoes
## 15797                                    shoes
## 15798                                    shoes
## 15799                                    shoes
## 15800                                    shoes
## 15801                                    shoes
## 15802                                    shoes
## 15803                                    shoes
## 15804                                    shoes
## 15805                                    shoes
## 15806                                    shoes
## 15807                                    shoes
## 15808                                    shoes
## 15809                                    shoes
## 15810                                    shoes
## 15811                                    shoes
## 15812                                    shoes
## 15813                                    shoes
## 15814                               shoeswomen
## 15815                                     shop
## 15816                                     shop
## 15817                                shopper's
## 15818                                 shopping
## 15819                                 shopping
## 15820                                    short
## 15821                                    short
## 15822                                    short
## 15823                                    short
## 15824                                    short
## 15825                                    short
## 15826                                    short
## 15827                                    short
## 15828                                    short
## 15829                                    short
## 15830                                    short
## 15831                                    short
## 15832                                    short
## 15833                                    short
## 15834                                  shorter
## 15835                                 shortest
## 15836                                   shorts
## 15837                                   shorts
## 15838                                   shorts
## 15839                                     shot
## 15840                                     shot
## 15841                                    shots
## 15842                                   shotty
## 15843                                should've
## 15844                                 shoulder
## 15845                                 shoulder
## 15846                                shoulders
## 15847                                shoulders
## 15848                                    shove
## 15849                                     shox
## 15850                                   shrink
## 15851                                   shrink
## 15852                                   shrink
## 15853                            shrinkflation
## 15854                                      sht
## 15855                                     shut
## 15856                                     shut
## 15857                                     sick
## 15858                                     sick
## 15859                                     sick
## 15860                                     sick
## 15861                                     sick
## 15862                                     sick
## 15863                                     sick
## 15864                                  sickest
## 15865                                  siempre
## 15866                                  siempre
## 15867                                   siento
## 15868                                   signal
## 15869                                  signals
## 15870                                signature
## 15871                              significant
## 15872                            significantly
## 15873                            significantly
## 15874                            significantly
## 15875                                    signs
## 15876                                 silently
## 15877                                 silently
## 15878                               silhouette
## 15879                               silhouette
## 15880                               silhouette
## 15881                               silhouette
## 15882                                   silver
## 15883                                   silver
## 15884                                  similar
## 15885                                  similar
## 15886                                  similar
## 15887                                  similar
## 15888                                  similar
## 15889                                  similar
## 15890                                  similar
## 15891                                   simple
## 15892                                   simple
## 15893                                   simple
## 15894                                   simple
## 15895                                   simple
## 15896                                   simple
## 15897                                   simple
## 15898                                   simple
## 15899                                   simple
## 15900                                   simple
## 15901                                   simple
## 15902                                   simple
## 15903                                   simple
## 15904                                   simple
## 15905                              simplemente
## 15906                               simplicity
## 15907                                 simplify
## 15908                                   simply
## 15909                                   simply
## 15910                                   simply
## 15911                                   simply
## 15912                                   simply
## 15913                                   simply
## 15914                                   simply
## 15915                                sincerely
## 15916                                sincerely
## 15917                                     sing
## 15918                                   single
## 15919                                   single
## 15920                                   single
## 15921                                   single
## 15922                                   single
## 15923                                   single
## 15924                                   single
## 15925                                   single
## 15926                                   single
## 15927                                   single
## 15928                                     sins
## 15929                                      sir
## 15930                                     site
## 15931                                     site
## 15932                                     site
## 15933                                     site
## 15934                                     sits
## 15935                                  sitting
## 15936                                  sizable
## 15937                                     size
## 15938                                     size
## 15939                                     size
## 15940                                     size
## 15941                                     size
## 15942                                     size
## 15943                                     size
## 15944                                     size
## 15945                                     size
## 15946                                     size
## 15947                                     size
## 15948                                     size
## 15949                                     size
## 15950                                     size
## 15951                                     size
## 15952                                     size
## 15953                                     size
## 15954                                     size
## 15955                                     size
## 15956                                     size
## 15957                                     size
## 15958                                     size
## 15959                                     size
## 15960                                     size
## 15961                                     size
## 15962                                     size
## 15963                                     size
## 15964                                     size
## 15965                                     size
## 15966                                     size
## 15967                                     size
## 15968                                     size
## 15969                                     size
## 15970                                     size
## 15971                                     size
## 15972                                     size
## 15973                                     size
## 15974                                     size
## 15975                                     size
## 15976                                     size
## 15977                                     size
## 15978                                     size
## 15979                                    sized
## 15980                                    sized
## 15981                                    sizes
## 15982                                    sizes
## 15983                                    sizes
## 15984                                   sizing
## 15985                                   sizing
## 15986                                   sizing
## 15987                                   sizing
## 15988                                   sizing
## 15989                                   sizing
## 15990                                   sizing
## 15991                                   sizing
## 15992                                   sizing
## 15993                                    skate
## 15994                                    skate
## 15995                                    skate
## 15996                                 skechers
## 15997                                sketchers
## 15998                                      ski
## 15999                                   skiers
## 16000                                   skiing
## 16001                                    skill
## 16002                                   skills
## 16003                                   skills
## 16004                                    skims
## 16005                                    skims
## 16006                                     skin
## 16007                                   skinny
## 16008                                     skip
## 16009                                     skip
## 16010                                    skips
## 16011                                    skirt
## 16012                                   skiyee
## 16013                                      sku
## 16014                                      sku
## 16015                                      sky
## 16016                                       sl
## 16017                                       sl
## 16018                                       sl
## 16019                                       sl
## 16020                                       sl
## 16021                                       sl
## 16022                                       sl
## 16023                                       sl
## 16024                                      sl2
## 16025                                      sl2
## 16026                                      sl2
## 16027                                sl2boston
## 16028                                     sl2s
## 16029                                  sleeper
## 16030                                 sleeping
## 16031                                   sleeve
## 16032                                   sleeve
## 16033                                  sleeved
## 16034                                    slide
## 16035                                    slide
## 16036                                  sliders
## 16037                                   slides
## 16038                                   slides
## 16039                                   slides
## 16040                                   slight
## 16041                                 slightly
## 16042                                 slightly
## 16043                                     slim
## 16044                                  slimmer
## 16045                                     slip
## 16046                                     slip
## 16047                                 slippers
## 16048                                slipspeed
## 16049                                     slow
## 16050                                     slow
## 16051                                     slow
## 16052                                     slow
## 16053                                     slow
## 16054                                     slow
## 16055                                  slowest
## 16056                                   slowly
## 16057                                   slowly
## 16058                                   slowly
## 16059                                 sltakumi
## 16060                                    smart
## 16061                                    smart
## 16062                                     smdh
## 16063                                     smfh
## 16064                                      smh
## 16065                         smile.amazon.com
## 16066                                   smiths
## 16067                                    smoke
## 16068                                   smooth
## 16069                                   smooth
## 16070                                   smooth
## 16071                                 smoothly
## 16072                                    snack
## 16073                                     snag
## 16074                                    snake
## 16075                                   snarls
## 16076                                  sneaker
## 16077                                  sneaker
## 16078                                  sneaker
## 16079                                  sneaker
## 16080                                  sneaker
## 16081                                  sneaker
## 16082                                  sneaker
## 16083                                  sneaker
## 16084                                  sneaker
## 16085                                  sneaker
## 16086                                  sneaker
## 16087                                  sneaker
## 16088                                  sneaker
## 16089                                  sneaker
## 16090                                  sneaker
## 16091                                  sneaker
## 16092                                  sneaker
## 16093                                  sneaker
## 16094                                  sneaker
## 16095                                  sneaker
## 16096                                  sneaker
## 16097                                  sneaker
## 16098                           sneakeralerthd
## 16099                          sneakermarketro
## 16100                          sneakermarketro
## 16101                                 sneakers
## 16102                                 sneakers
## 16103                                 sneakers
## 16104                                 sneakers
## 16105                                 sneakers
## 16106                                 sneakers
## 16107                                 sneakers
## 16108                                 sneakers
## 16109                                    sniff
## 16110                                    snike
## 16111                                    snkrs
## 16112                                    snkrs
## 16113                                    snkrs
## 16114                                    snkrs
## 16115                                    snkrs
## 16116                                    snkrs
## 16117                                     snug
## 16118                                     snug
## 16119                                   soccer
## 16120                                   soccer
## 16121                                   soccer
## 16122                                   soccer
## 16123                                   soccer
## 16124                                   social
## 16125                                   social
## 16126                                   social
## 16127                                     sock
## 16128                                     sock
## 16129                                     sock
## 16130                                     sock
## 16131                                     sock
## 16132                                   sock's
## 16133                                    socks
## 16134                                    socks
## 16135                                    socks
## 16136                                    socks
## 16137                                    socks
## 16138                                    socks
## 16139                                    socks
## 16140                                    socks
## 16141                                    socks
## 16142                                    socks
## 16143                                    socks
## 16144                                    socks
## 16145                                    socks
## 16146                                    socks
## 16147                                    socks
## 16148                                    socks
## 16149                                    socks
## 16150                                    socks
## 16151                                     soft
## 16152                                     soft
## 16153                                     soft
## 16154                                     soft
## 16155                                     soft
## 16156                                   softer
## 16157                                 software
## 16158                                 software
## 16159                                 software
## 16160                                     sold
## 16161                                     sold
## 16162                                  soldier
## 16163                                     sole
## 16164                                     sole
## 16165                                     sole
## 16166                                     sole
## 16167                                     sole
## 16168                                    soles
## 16169                                    soles
## 16170                                    soles
## 16171                                    solid
## 16172                                    solid
## 16173                                    solid
## 16174                                    solid
## 16175                                    solid
## 16176                                    solid
## 16177                                    solid
## 16178                                    solid
## 16179                                    solid
## 16180                                    solid
## 16181                                     solo
## 16182                                     solo
## 16183                                     solo
## 16184                                     solo
## 16185                                     solo
## 16186                                 solution
## 16187                              something’s
## 16188                                      son
## 16189                                      son
## 16190                                     song
## 16191                                    sonic
## 16192                                    son’s
## 16193                                      soo
## 16194                                     sooo
## 16195                                     sooo
## 16196                                  soooooo
## 16197                                  soooooo
## 16198                                sophomore
## 16199                                     sore
## 16200                                     sort
## 16201                                     soul
## 16202                                     soul
## 16203                                    sound
## 16204                                    sound
## 16205                                    sound
## 16206                                    sound
## 16207                                   sounds
## 16208                                   sounds
## 16209                                   sounds
## 16210                                   source
## 16211                                   source
## 16212                                    south
## 16213                                    south
## 16214                                    space
## 16215                                    space
## 16216                                    space
## 16217                                    space
## 16218                                    space
## 16219                                    space
## 16220                                    spain
## 16221                                     spam
## 16222                                     spam
## 16223                                 spanning
## 16224                                    spare
## 16225                                    spare
## 16226                                  sparked
## 16227                                 sparking
## 16228                                    speak
## 16229                                     spec
## 16230                                  special
## 16231                                  special
## 16232                                  special
## 16233                                  special
## 16234                                  special
## 16235                                  special
## 16236                                  special
## 16237                                  special
## 16238                                  special
## 16239                                  special
## 16240                                  special
## 16241                                  special
## 16242                              specialized
## 16243                                 specials
## 16244                                 specific
## 16245                                 specific
## 16246                                 specific
## 16247                                 specific
## 16248                                 specific
## 16249                                 specific
## 16250                                 specific
## 16251                                 specific
## 16252                                 specific
## 16253                                 specific
## 16254                                 specific
## 16255                                 specific
## 16256                                 specific
## 16257                                 specific
## 16258                             specifically
## 16259                             specifically
## 16260                             specifically
## 16261                                   speech
## 16262                                    speed
## 16263                                    speed
## 16264                                    speed
## 16265                                    speed
## 16266                                    speed
## 16267                                    speed
## 16268                                    speed
## 16269                                    speed
## 16270                                    speed
## 16271                                    speed
## 16272                                   speith
## 16273                                    spend
## 16274                                    spend
## 16275                                    spend
## 16276                                    spend
## 16277                                 spending
## 16278                                 spending
## 16279                                    spent
## 16280                                    spent
## 16281                                  spezial
## 16282                                  spezial
## 16283                                  spezial
## 16284                                  spezial
## 16285                                 spezial2
## 16286                                 spezials
## 16287                                   spieth
## 16288                                   spieth
## 16289                                   spieth
## 16290                                   spieth
## 16291                                spikeless
## 16292                                   spirit
## 16293                                    split
## 16294                                    split
## 16295                                    split
## 16296                                    split
## 16297                                    split
## 16298                                  sploosh
## 16299                                  sponsor
## 16300                                sponsored
## 16301                              sponsorship
## 16302                              sponsorship
## 16303                                 sporadic
## 16304                                    sport
## 16305                                    sport
## 16306                                    sport
## 16307                                    sport
## 16308                                    sport
## 16309                                    sport
## 16310                                sportchek
## 16311                                   sports
## 16312                                   sports
## 16313                                   sports
## 16314                                   sports
## 16315                                   sports
## 16316                                   sports
## 16317                                   sports
## 16318                                   sports
## 16319                                   sports
## 16320                                   sports
## 16321                               sportsmask
## 16322                               sportswear
## 16323                               sportswear
## 16324                               sportswear
## 16325                               sportswear
## 16326                                   sporty
## 16327                                  spotify
## 16328                                    spray
## 16329                                    spray
## 16330                                  sprayed
## 16331                                   spring
## 16332                                   spring
## 16333                                  springy
## 16334                                sprinting
## 16335                                   spruce
## 16336                                 spursn17
## 16337                                   square
## 16338                                    squat
## 16339                                   squats
## 16340                                   squats
## 16341                                   squeak
## 16342                                  squeaky
## 16343                                  squeaky
## 16344                                  squeeky
## 16345                                       sr
## 16346                            srirxoiam0u00
## 16347                            ss2reqknr8s5g
## 16348                                stability
## 16349                                stability
## 16350                                   stable
## 16351                                   stable
## 16352                                  stadium
## 16353                                    staff
## 16354                                    staff
## 16355                                    staff
## 16356                                    staff
## 16357                               staggering
## 16358                                    stain
## 16359                                   stains
## 16360                             stairclimber
## 16361                                 stallion
## 16362                                     stan
## 16363                                     stan
## 16364                                   stance
## 16365                                    stand
## 16366                                 standard
## 16367                                 standard
## 16368                                 standard
## 16369                                 standard
## 16370                                 standing
## 16371                                 standing
## 16372                                 standing
## 16373                                 standout
## 16374                                  stanley
## 16375                                     star
## 16376                                     star
## 16377                                     star
## 16378                                     star
## 16379                                     star
## 16380                                     star
## 16381                                    stark
## 16382                                    stars
## 16383                                    stars
## 16384                                    stars
## 16385                                    stars
## 16386                                    stars
## 16387                                    start
## 16388                                    start
## 16389                                    start
## 16390                                    start
## 16391                                    start
## 16392                                    start
## 16393                                    start
## 16394                                    start
## 16395                                    start
## 16396                                    start
## 16397                                    start
## 16398                                    start
## 16399                                    start
## 16400                                    start
## 16401                                    start
## 16402                                    start
## 16403                                    start
## 16404                                    start
## 16405                                    start
## 16406                                    start
## 16407                                    start
## 16408                                  started
## 16409                                  started
## 16410                                  started
## 16411                                  started
## 16412                                  started
## 16413                                  started
## 16414                                  started
## 16415                                  started
## 16416                                  started
## 16417                                  started
## 16418                                 starting
## 16419                                 starting
## 16420                                 starting
## 16421                                   starts
## 16422                                   starts
## 16423                                   starts
## 16424                                statement
## 16425                                statement
## 16426                                statement
## 16427                               statements
## 16428                               statements
## 16429                                   static
## 16430                               stationary
## 16431                                    stats
## 16432                                    stats
## 16433                                    stats
## 16434                                    stats
## 16435                                     stay
## 16436                                     stay
## 16437                                     stay
## 16438                                     stay
## 16439                                     stay
## 16440                                     stay
## 16441                                     stay
## 16442                                     stay
## 16443                                     stay
## 16444                                     stay
## 16445                                     stay
## 16446                                   stayed
## 16447                                   stayed
## 16448                                  staying
## 16449                                  staying
## 16450                                    stays
## 16451                                   steady
## 16452                                   steaks
## 16453                                    steal
## 16454                                    steal
## 16455                                    steal
## 16456                                    steal
## 16457                                    steel
## 16458                                 steelers
## 16459                                   stella
## 16460                                     step
## 16461                                     step
## 16462                                    steph
## 16463                                  stephen
## 16464                                    steps
## 16465                                    steps
## 16466                                    steps
## 16467                            stereotypical
## 16468                                    steve
## 16469                                   stewie
## 16470                                     stfu
## 16471                                   sticky
## 16472                                   sticky
## 16473                                    stiff
## 16474                                    stiff
## 16475                                   stitch
## 16476                                 stitched
## 16477                                stitching
## 16478                                stitching
## 16479                                    stock
## 16480                                    stock
## 16481                                    stock
## 16482                                    stock
## 16483                                    stock
## 16484                                    stock
## 16485                                    stock
## 16486                                    stock
## 16487                                    stock
## 16488                                    stock
## 16489                                    stock
## 16490                                    stock
## 16491                                    stock
## 16492                                   stockx
## 16493                                   stockx
## 16494                                   stockx
## 16495                                   stoked
## 16496                                    stone
## 16497                                     stop
## 16498                                     stop
## 16499                                     stop
## 16500                                     stop
## 16501                                     stop
## 16502                                     stop
## 16503                                     stop
## 16504                                     stop
## 16505                                     stop
## 16506                                     stop
## 16507                                     stop
## 16508                                     stop
## 16509                                     stop
## 16510                                     stop
## 16511                                     stop
## 16512                                     stop
## 16513                                     stop
## 16514                                     stop
## 16515                                     stop
## 16516                                     stop
## 16517                                  stopped
## 16518                                  stopped
## 16519                                  stopped
## 16520                                  stopped
## 16521                                  stopped
## 16522                                  stopped
## 16523                                  stopped
## 16524                                  stopped
## 16525                                 stopping
## 16526                                    store
## 16527                                    store
## 16528                                    store
## 16529                                    store
## 16530                                    store
## 16531                                    store
## 16532                                    store
## 16533                                    store
## 16534                                    store
## 16535                                    store
## 16536                                    store
## 16537                                    store
## 16538                                   stored
## 16539                                   stores
## 16540                                   stores
## 16541                                    storm
## 16542                                    story
## 16543                                 straight
## 16544                                 straight
## 16545                                 straight
## 16546                                 straight
## 16547                                  strains
## 16548                                  strange
## 16549                                  strange
## 16550                                 stranger
## 16551                                    strap
## 16552                                strategic
## 16553                                 strategy
## 16554                                 strategy
## 16555                                 strategy
## 16556                                 strategy
## 16557                                 strategy
## 16558                                 strategy
## 16559                                   strava
## 16560                                   strava
## 16561                                   strava
## 16562                                   strava
## 16563                                   strava
## 16564                                streakfly
## 16565                                  streaks
## 16566                              streamlined
## 16567                              streamlined
## 16568                                   street
## 16569                                   street
## 16570                                   street
## 16571                               streetwear
## 16572                                 strength
## 16573                                 strength
## 16574                                 strength
## 16575                                 strength
## 16576                                 strength
## 16577                                 strength
## 16578                                 strength
## 16579                            strengthening
## 16580                              strengthens
## 16581                                   stress
## 16582                                  stretch
## 16583                                stretches
## 16584                                stretches
## 16585                                stretches
## 16586                               stretching
## 16587                               stretching
## 16588                                 striking
## 16589                                  stripes
## 16590                                   strive
## 16591                                   strong
## 16592                                   strong
## 16593                                   strong
## 16594                                   strong
## 16595                                   strong
## 16596                                 stronger
## 16597                                 stronger
## 16598                                 strongly
## 16599                                structure
## 16600                                structure
## 16601                                structure
## 16602                               structured
## 16603                               structured
## 16604                               structured
## 16605                               structured
## 16606                               structured
## 16607                                 struggle
## 16608                                   strung
## 16609                                    stucj
## 16610                                    stuck
## 16611                                    stuck
## 16612                                  student
## 16613                                  student
## 16614                                 students
## 16615                                    study
## 16616                                  studyed
## 16617                                    stuff
## 16618                                    stuff
## 16619                                    stuff
## 16620                                    stuff
## 16621                                    stuff
## 16622                                    stuff
## 16623                                    stuff
## 16624                                 stunning
## 16625                                   stupid
## 16626                                   stupid
## 16627                                   stupid
## 16628                                   stupid
## 16629                                   stupid
## 16630                                stupidest
## 16631                                   sturdy
## 16632                                   stussy
## 16633                                   stussy
## 16634                                 stutters
## 16635                                    style
## 16636                                    style
## 16637                                    style
## 16638                                    style
## 16639                                    style
## 16640                                    style
## 16641                                    style
## 16642                                    style
## 16643                                    style
## 16644                                    style
## 16645                                    style
## 16646                                    style
## 16647                                    style
## 16648                                    style
## 16649                                   styled
## 16650                                   styles
## 16651                                   styles
## 16652                                   styles
## 16653                                   styles
## 16654                         stylishly.highly
## 16655                                       su
## 16656                                       su
## 16657                            su0aljmbfvghw
## 16658                           subcscriptions
## 16659                                 subpoena
## 16660                                subreddit
## 16661                                subreddit
## 16662                                subscribe
## 16663                             subscription
## 16664                             subscription
## 16665                             subscription
## 16666                             subscription
## 16667                             subscription
## 16668                             subscription
## 16669                             subscription
## 16670                             subscription
## 16671                             subscription
## 16672                             subscription
## 16673                             subscription
## 16674                             subscription
## 16675                            subscriptions
## 16676                            subscriptions
## 16677                               subsequent
## 16678                             subsequently
## 16679                                substance
## 16680                                   subtle
## 16681                                   suburb
## 16682                                 suburban
## 16683                                  success
## 16684                               successful
## 16685                                   succès
## 16686                                     suck
## 16687                                     suck
## 16688                                    sucks
## 16689                                    sucks
## 16690                                    sucks
## 16691                                   sudden
## 16692                                   sudden
## 16693                                   sudden
## 16694                                 suddenly
## 16695                                 suddenly
## 16696                                    suede
## 16697                                    suede
## 16698                                    suede
## 16699                                    suede
## 16700                               sufficient
## 16701                                  suggest
## 16702                               suggestion
## 16703                               suggestion
## 16704                              suggestions
## 16705                                     suit
## 16706                                  summary
## 16707                                   summer
## 16708                                   summer
## 16709                                   summer
## 16710                                   summit
## 16711                                   summit
## 16712                                      sun
## 16713                                      sun
## 16714                                      sun
## 16715                                      sun
## 16716                                      sun
## 16717                                 sunlight
## 16718                                   sunset
## 16719                                    super
## 16720                                    super
## 16721                                    super
## 16722                                    super
## 16723                                    super
## 16724                                    super
## 16725                                    super
## 16726                                    super
## 16727                                    super
## 16728                                    super
## 16729                                    super
## 16730                                    super
## 16731                                    super
## 16732                                    super
## 16733                                    super
## 16734                                    super
## 16735                                    super
## 16736                                    super
## 16737                                    super
## 16738                                    super
## 16739                                    super
## 16740                                    super
## 16741                                    super
## 16742                                    super
## 16743                                    super
## 16744                                    super
## 16745                                    super
## 16746                                    super
## 16747                                    super
## 16748                                    super
## 16749                                    super
## 16750                                   superb
## 16751                                   superb
## 16752                            supercritical
## 16753                              superfluous
## 16754                                superhero
## 16755                                 superior
## 16756                                 superior
## 16757                                supernova
## 16758                                supernova
## 16759                                supernova
## 16760                                supershoe
## 16761                                superstar
## 16762                                superstar
## 16763                                superstar
## 16764                                superstar
## 16765                               superstar5
## 16766                               superstars
## 16767                                  supongo
## 16768                                suppliers
## 16769                                  support
## 16770                                  support
## 16771                                  support
## 16772                                  support
## 16773                                  support
## 16774                                  support
## 16775                                  support
## 16776                                  support
## 16777                                  support
## 16778                                  support
## 16779                                  support
## 16780                                  support
## 16781                                supported
## 16782                               supporting
## 16783                               supporting
## 16784                               supportive
## 16785                               supportive
## 16786                                 supports
## 16787                                 supposed
## 16788                                  supreme
## 16789                                 surfaces
## 16790                                 surfaces
## 16791                                    surge
## 16792                                   surges
## 16793                                   surges
## 16794                                  surging
## 16795                                  surpass
## 16796                                  surplus
## 16797                                 surprise
## 16798                                 surprise
## 16799                                 surprise
## 16800                                surprised
## 16801                             surprisingly
## 16802                             surprisingly
## 16803                                 surveyor
## 16804                                surveyors
## 16805                                 suspense
## 16806                           sustainability
## 16807                              sustainable
## 16808                                     swap
## 16809                                 swapping
## 16810                                    swear
## 16811                                 swearing
## 16812                                    sweat
## 16813                                    sweat
## 16814                               sweatpants
## 16815                               sweatpants
## 16816                               sweatshirt
## 16817                    sweatshirthoodiewomen
## 16818                                   sweaty
## 16819                                    sweet
## 16820                                    sweet
## 16821                                    sweet
## 16822                                    sweet
## 16823                             swiftfox1301
## 16824                                     swim
## 16825                                   switch
## 16826                                   switch
## 16827                                   switch
## 16828                                 switched
## 16829                              switzerland
## 16830                                   swoosh
## 16831                                   swoosh
## 16832                                   swoosh
## 16833                                   swoosh
## 16834                                   swoosh
## 16835                                    sybau
## 16836                                 symptoms
## 16837                                     sync
## 16838                                     sync
## 16839                                     sync
## 16840                                     sync
## 16841                                     sync
## 16842                                 syncable
## 16843                                 synching
## 16844                                  syncing
## 16845                                  syncing
## 16846                                synthetic
## 16847                                 syracuse
## 16848                                       sz
## 16849                                   sábado
## 16850                                       só
## 16851                                     sólo
## 16852                                    súper
## 16853                                    súper
## 16854                                      tab
## 16855                                   tabata
## 16856                                    table
## 16857                                     tack
## 16858                                 tactical
## 16859                                      tad
## 16860                                      tag
## 16861                                    takes
## 16862                                    takes
## 16863                                    takes
## 16864                                    takes
## 16865                                   takumi
## 16866                                   takumi
## 16867                                   talent
## 16868                                     talk
## 16869                                     tall
## 16870                                     tall
## 16871                                     tall
## 16872                                   taller
## 16873                                  tampoco
## 16874                                      tan
## 16875                                      tap
## 16876                                  tapered
## 16877                                     tara
## 16878                                     tara
## 16879                                   target
## 16880                                   target
## 16881                                 targeted
## 16882                                 targeted
## 16883                                 targeted
## 16884                                targeting
## 16885                                  targets
## 16886                                  tariffs
## 16887                                  tariffs
## 16888                                    tasks
## 16889                                    taste
## 16890                                    taste
## 16891                                    taste
## 16892                                 tasteful
## 16893                                      tax
## 16894                               taxtroll94
## 16895                                      tbh
## 16896                                      tbh
## 16897                                      tbh
## 16898                                 tbhhhhhh
## 16899                                 tbhonest
## 16900                                       te
## 16901                                    teach
## 16902                                  teacher
## 16903                                 teaching
## 16904                                     team
## 16905                                     team
## 16906                                     team
## 16907                                     team
## 16908                                     team
## 16909                                     team
## 16910                                     team
## 16911                                     team
## 16912                                     team
## 16913                                     team
## 16914                                     team
## 16915                                     team
## 16916                                     team
## 16917                                   team's
## 16918                                   team's
## 16919                                 teamnike
## 16920                                    teams
## 16921                                    teams
## 16922                                 teardown
## 16923                                   teases
## 16924                                     tech
## 16925                                     tech
## 16926                                     tech
## 16927                                     tech
## 16928                                     tech
## 16929                                     tech
## 16930                                     tech
## 16931                                     tech
## 16932                                technical
## 16933                                technical
## 16934                              technically
## 16935                               technology
## 16936                               technology
## 16937                                      tee
## 16938                                  teenage
## 16939                                    teens
## 16940                                    tells
## 16941                                    temas
## 16942                              temperature
## 16943                                    tempo
## 16944                                    tempo
## 16945                                    tempo
## 16946                                    tempo
## 16947                                     temu
## 16948                                      ten
## 16949                                      ten
## 16950                                      ten
## 16951                                      ten
## 16952                                      ten
## 16953                                    tengo
## 16954                                    tenho
## 16955                                   tennis
## 16956                                   tennis
## 16957                                   tennis
## 16958                                   tennis
## 16959                                 tensions
## 16960                                      ter
## 16961                                  terapia
## 16962                                     term
## 16963                                     term
## 16964                                     term
## 16965                                     term
## 16966                                 terminal
## 16967                                 terminar
## 16968                                 terminar
## 16969                                  terminé
## 16970                                    terra
## 16971                                    terra
## 16972                                  terrain
## 16973                                  terrain
## 16974                                 terrible
## 16975                                 terrible
## 16976                                 terrible
## 16977                                 terrible
## 16978                                 terrible
## 16979                                 terrible
## 16980                                 terrible
## 16981                                 terrible
## 16982                                 terrible
## 16983                                 terrible
## 16984                                 terrible
## 16985                                 terrible
## 16986                                 terribly
## 16987                                territory
## 16988                                    terry
## 16989                                     test
## 16990                                     test
## 16991                                     test
## 16992                                testament
## 16993                                  testing
## 16994                                  testing
## 16995                                      tex
## 16996                                      tex
## 16997                                    texas
## 16998                                    texas
## 16999                          texasvolleyball
## 17000                                     text
## 17001                                     text
## 17002                                     text
## 17003                                  textile
## 17004                                 textiles
## 17005                                 thailand
## 17006                                 thankful
## 17007                           thatmitusbloke
## 17008                                   that’s
## 17009                                   that’s
## 17010                                   that’s
## 17011                                   that’s
## 17012                                   that’s
## 17013                                     thee
## 17014                                    theft
## 17015                                    theme
## 17016                                   theory
## 17017                                  there’s
## 17018                                  there’s
## 17019                                  there’s
## 17020                                  there’s
## 17021                                  there’s
## 17022                                   theses
## 17023                                   theyre
## 17024                                  they’re
## 17025                                  they’ve
## 17026                                  they’ve
## 17027                                  they’ve
## 17028                                    thick
## 17029                                    thick
## 17030                                    thick
## 17031                                    thick
## 17032                                  thicker
## 17033                                  thicker
## 17034                                  thicker
## 17035                                     thin
## 17036                                     thin
## 17037                                     thin
## 17038                                 thinking
## 17039                                 thinking
## 17040                                 thinking
## 17041                                 thinking
## 17042                                     thnx
## 17043                                      tho
## 17044                                      tho
## 17045                                      tho
## 17046                                      tho
## 17047                                      tho
## 17048                                      tho
## 17049                                      tho
## 17050                                      tho
## 17051                                      tho
## 17052                                      tho
## 17053                                      tho
## 17054                                      tho
## 17055                                      tho
## 17056                                      tho
## 17057                                   thongs
## 17058                                     thou
## 17059                                 thousand
## 17060                                   thread
## 17061                                   thread
## 17062                                   thrift
## 17063                                    throw
## 17064                                    throw
## 17065                                    throw
## 17066                                    throw
## 17067                                throwback
## 17068                                throwback
## 17069                                throwback
## 17070                               throwbacks
## 17071                                     thug
## 17072                                 thugclub
## 17073                                  thunder
## 17074                                  thunder
## 17075                                  thunder
## 17076                                 thursday
## 17077                                 thursday
## 17078                                      thx
## 17079                                 tibialis
## 17080                                   ticked
## 17081                                      tie
## 17082                                      tie
## 17083                                    tiene
## 17084                                     tier
## 17085                                     tier
## 17086                                     tier
## 17087                                    tiger
## 17088                                    tight
## 17089                                    tight
## 17090                                    tight
## 17091                                    tight
## 17092                                    tight
## 17093                                    tight
## 17094                                    tight
## 17095                                  tighter
## 17096                                      tik
## 17097                                     till
## 17098                                     time
## 17099                                     time
## 17100                                     time
## 17101                                     time
## 17102                                     time
## 17103                                     time
## 17104                                     time
## 17105                                     time
## 17106                                     time
## 17107                                     time
## 17108                                     time
## 17109                                     time
## 17110                                     time
## 17111                                     time
## 17112                                     time
## 17113                                     time
## 17114                                     time
## 17115                                     time
## 17116                                     time
## 17117                                     time
## 17118                                     time
## 17119                                     time
## 17120                                     time
## 17121                                     time
## 17122                                     time
## 17123                                     time
## 17124                                     time
## 17125                                     time
## 17126                                     time
## 17127                                     time
## 17128                                     time
## 17129                                     time
## 17130                                     time
## 17131                                     time
## 17132                                     time
## 17133                                     time
## 17134                                     time
## 17135                                     time
## 17136                                     time
## 17137                                     time
## 17138                                     time
## 17139                                     time
## 17140                                     time
## 17141                                     time
## 17142                                     time
## 17143                                     time
## 17144                                     time
## 17145                                     time
## 17146                                     time
## 17147                                     time
## 17148                                     time
## 17149                                     time
## 17150                                     time
## 17151                                     time
## 17152                                     time
## 17153                                     time
## 17154                                     time
## 17155                                     time
## 17156                                     time
## 17157                                     time
## 17158                                     time
## 17159                                     time
## 17160                                     time
## 17161                                     time
## 17162                                 timeline
## 17163                                    timer
## 17164                                    timer
## 17165                                    timer
## 17166                                    times
## 17167                                    times
## 17168                                    times
## 17169                                    times
## 17170                                    times
## 17171                                    times
## 17172                                    times
## 17173                                    times
## 17174                                    times
## 17175                                    times
## 17176                                    times
## 17177                                    times
## 17178                                    times
## 17179                                    times
## 17180                              timestamped
## 17181                                   timing
## 17182                                   timing
## 17183                                   tinker
## 17184                                     tiny
## 17185                                     tiny
## 17186                                     tiny
## 17187                                     tiny
## 17188                                     tiny
## 17189                              tinyurl.com
## 17190                                      tip
## 17191                                      tip
## 17192                                     tips
## 17193                                     tips
## 17194                                     tire
## 17195                                    tired
## 17196                                   tissue
## 17197                                    title
## 17198                                       tj
## 17199                                      tns
## 17200                                      tnx
## 17201                                  today’s
## 17202                                  today’s
## 17203                                  toddler
## 17204                                  toddler
## 17205                                  toddler
## 17206                                 toddlers
## 17207                                     todo
## 17208                                      toe
## 17209                                      toe
## 17210                                      toe
## 17211                                      toe
## 17212                                      toe
## 17213                                      toe
## 17214                                      toe
## 17215                                      toe
## 17216                                      toe
## 17217                                      toe
## 17218                                   toebox
## 17219                                 toenails
## 17220                                     toes
## 17221                                     toes
## 17222                                     toes
## 17223                                     toes
## 17224                                   toilet
## 17225                                   toilet
## 17226                                      tok
## 17227                                    tokyo
## 17228                                   tokyos
## 17229                                      tom
## 17230                                 tomorrow
## 17231                                 tomorrow
## 17232                                    tonar
## 17233                                     tone
## 17234                                 tonegold
## 17235                                   tongue
## 17236                                   tongue
## 17237                                  tonight
## 17238                                     tool
## 17239                                     tool
## 17240                                     tool
## 17241                                  toolkit
## 17242                                    tooth
## 17243                             toothbrushes
## 17244                                      top
## 17245                                      top
## 17246                                      top
## 17247                                      top
## 17248                                      top
## 17249                                      top
## 17250                                      top
## 17251                                      top
## 17252                                      top
## 17253                                      top
## 17254                                      top
## 17255                                      top
## 17256                                      top
## 17257                                      top
## 17258                                      top
## 17259                                      top
## 17260                                      top
## 17261                                      top
## 17262                                      top
## 17263                                      top
## 17264                                     tops
## 17265                                   tornou
## 17266                                    torre
## 17267                                   torres
## 17268                                   torres
## 17269                                     toss
## 17270                                    total
## 17271                                    total
## 17272                                    total
## 17273                                    total
## 17274                                    total
## 17275                                    total
## 17276                                    total
## 17277                                    total
## 17278                                    total
## 17279                                    total
## 17280                                    total
## 17281                                    total
## 17282                                 totaling
## 17283                                  totally
## 17284                                  totally
## 17285                                  totally
## 17286                                  totally
## 17287                                  totally
## 17288                                  totally
## 17289                                  totally
## 17290                                  totally
## 17291                                  totally
## 17292                                     tote
## 17293                                    touch
## 17294                                 touching
## 17295                                    tough
## 17296                                    tough
## 17297                                    towel
## 17298                                  towelie
## 17299                                     town
## 17300                                     town
## 17301                                     town
## 17302                                    track
## 17303                                    track
## 17304                                    track
## 17305                                    track
## 17306                                    track
## 17307                                    track
## 17308                                    track
## 17309                                    track
## 17310                                    track
## 17311                                    track
## 17312                                    track
## 17313                                    track
## 17314                                    track
## 17315                                    track
## 17316                                    track
## 17317                                    track
## 17318                                    track
## 17319                                    track
## 17320                                    track
## 17321                                    track
## 17322                                    track
## 17323                                    track
## 17324                                    track
## 17325                                    track
## 17326                                    track
## 17327                                    track
## 17328                                    track
## 17329                                    track
## 17330                                  tracked
## 17331                                  tracked
## 17332                                  tracker
## 17333                                  tracker
## 17334                                  tracker
## 17335                                  tracker
## 17336                                 tracking
## 17337                                 tracking
## 17338                                 tracking
## 17339                                 tracking
## 17340                                 tracking
## 17341                                 tracking
## 17342                                 tracking
## 17343                                 tracking
## 17344                                 tracking
## 17345                                 tracking
## 17346                                 tracking
## 17347                                 tracking
## 17348                                 tracking
## 17349                                 tracking
## 17350                                 tracking
## 17351                                 tracking
## 17352                                 tracking
## 17353                                 tracking
## 17354                                 tracking
## 17355                                 tracking
## 17356                                 tracking
## 17357                                 tracking
## 17358                                 tracking
## 17359                                   tracks
## 17360                                   tracks
## 17361                                   tracks
## 17362                                   tracks
## 17363                                   tracks
## 17364                                   tracks
## 17365                                   tracks
## 17366                                tracksuit
## 17367                                 traction
## 17368                                trademark
## 17369                                   trades
## 17370                              traditional
## 17371                              traditional
## 17372                              trafdidrake
## 17373                                    trail
## 17374                                    trail
## 17375                                    trail
## 17376                                    trail
## 17377                                    trail
## 17378                                    trail
## 17379                                    trail
## 17380                                    trail
## 17381                                    trail
## 17382                                    trail
## 17383                                   trails
## 17384                                   trails
## 17385                                    train
## 17386                                    train
## 17387                                    train
## 17388                                    train
## 17389                                    train
## 17390                                    train
## 17391                                    train
## 17392                                  trainer
## 17393                                  trainer
## 17394                                  trainer
## 17395                                  trainer
## 17396                                  trainer
## 17397                                  trainer
## 17398                                  trainer
## 17399                                 trainers
## 17400                                 trainers
## 17401                                 trainers
## 17402                                 trainers
## 17403                                 trainers
## 17404                                 trainers
## 17405                                 trainers
## 17406                                 trainers
## 17407                                 trainers
## 17408                                 trainers
## 17409                                 trainers
## 17410                                 trainers
## 17411                                 trainers
## 17412                                 training
## 17413                                 training
## 17414                                 training
## 17415                                 training
## 17416                                 training
## 17417                                 training
## 17418                                 training
## 17419                                 training
## 17420                                 training
## 17421                                 training
## 17422                                 training
## 17423                                 training
## 17424                                 training
## 17425                                 training
## 17426                                 training
## 17427                                 training
## 17428                                 training
## 17429                                 training
## 17430                                 training
## 17431                                 training
## 17432                                 training
## 17433                                 training
## 17434                                 training
## 17435                                 training
## 17436                                 training
## 17437                                 training
## 17438                                 training
## 17439                                 training
## 17440                                 training
## 17441                                 training
## 17442                                 training
## 17443                                 training
## 17444                                 training
## 17445                                 training
## 17446                               training’s
## 17447                               trampoline
## 17448                               trampoline
## 17449                               transition
## 17450                               translator
## 17451                                     trap
## 17452                                     trap
## 17453                                    trash
## 17454                                    trash
## 17455                                    trash
## 17456                                    trash
## 17457                                    trash
## 17458                                    trash
## 17459                                  tratado
## 17460                                   travel
## 17461                                traveling
## 17462                                traveling
## 17463                                treadmill
## 17464                                treadmill
## 17465                                treadmill
## 17466                                treadmill
## 17467                                treadmill
## 17468                                    treat
## 17469                                treatment
## 17470                                     tree
## 17471                                    trees
## 17472                                    trees
## 17473                                  trefoil
## 17474                                    trend
## 17475                                    trial
## 17476                                    trial
## 17477                                    trial
## 17478                               triathlete
## 17479                             triathlete’s
## 17480                                triathlon
## 17481                               triathlons
## 17482                                  tribase
## 17483                                  tribase
## 17484                                  trigger
## 17485                                  trigger
## 17486                                  trigger
## 17487                                  trigger
## 17488                                   triple
## 17489                                   triple
## 17490                                 tripping
## 17491                               troll_life
## 17492                                    trote
## 17493                                  trouble
## 17494                                 trousers
## 17495                                     true
## 17496                                     true
## 17497                                     true
## 17498                                     true
## 17499                                     true
## 17500                                     true
## 17501                                  truffle
## 17502                                    trump
## 17503                                    trust
## 17504                                    trust
## 17505                                  trusted
## 17506                              trustworthy
## 17507                                    truth
## 17508                                      trx
## 17509                                    tryna
## 17510                                     très
## 17511                                      tts
## 17512                                      tts
## 17513                                      tts
## 17514                                       tu
## 17515                                     tube
## 17516                                  tubular
## 17517                                  tuesday
## 17518                                     tuff
## 17519                                  tumbles
## 17520                                    turbo
## 17521                                    turbo
## 17522                                    turbo
## 17523                                     turf
## 17524                               turnaround
## 17525                                turquoise
## 17526                                      tus
## 17527                                     tuvo
## 17528                                       tv
## 17529                                       tv
## 17530                                       tv
## 17531                                       tv
## 17532                                 tweekers
## 17533                                     twin
## 17534                                     twin
## 17535                                   twinnn
## 17536                                 twisters
## 17537                                     type
## 17538                                     type
## 17539                                     type
## 17540                                    types
## 17541                                  typical
## 17542                                  typical
## 17543                                typically
## 17544                                typically
## 17545                                      tyr
## 17546                                téléphone
## 17547                                      u.s
## 17548                                       ua
## 17549                                       ua
## 17550                                       ua
## 17551                                       ua
## 17552                                       ua
## 17553                                       ua
## 17554                                       ua
## 17555                                       ua
## 17556                                       ua
## 17557                                       ua
## 17558                                       ua
## 17559                                       ua
## 17560                                       ua
## 17561                                       ua
## 17562                                       ua
## 17563                                       ua
## 17564                                       ua
## 17565                                       ua
## 17566                                       ua
## 17567                                       ua
## 17568                                       ua
## 17569                                       ua
## 17570                                       ua
## 17571                                       ua
## 17572                                       ua
## 17573                                       ua
## 17574                                       ua
## 17575                                       ua
## 17576                                       ua
## 17577                                       ua
## 17578                                       ua
## 17579                                       ua
## 17580                                       ua
## 17581                                       ua
## 17582                                       ua
## 17583                                       ua
## 17584                                       ua
## 17585                                       ua
## 17586                                       ua
## 17587                                       ua
## 17588                                       ua
## 17589                                       ua
## 17590                                       ua
## 17591                                       ua
## 17592                                       ua
## 17593                                       ua
## 17594                                       ua
## 17595                                       ua
## 17596                                       ua
## 17597                                       ua
## 17598                                       ua
## 17599                                       ua
## 17600                                       ua
## 17601                                       ua
## 17602                                       ua
## 17603                                       ua
## 17604                                       ua
## 17605                                       ua
## 17606                                       ua
## 17607                                     ua's
## 17608                                     ua’s
## 17609                               ubiquitous
## 17610                                      ubs
## 17611                                     ucla
## 17612                                      ugh
## 17613                                     ugly
## 17614                                     ugly
## 17615                                     ugly
## 17616                                     ugly
## 17617                                     ugly
## 17618                                      uhh
## 17619                                       ui
## 17620                                       ui
## 17621                                       ui
## 17622                                       ui
## 17623                                       uk
## 17624                                       uk
## 17625                                       uk
## 17626                                     uk19
## 17627                                    ultra
## 17628                                    ultra
## 17629                                    ultra
## 17630                                    ultra
## 17631                               ultraboost
## 17632                               ultraboost
## 17633                               ultraboost
## 17634                               ultraboost
## 17635                               ultraboost
## 17636                                       um
## 17637                                       um
## 17638                                       um
## 17639                                       um
## 17640                                umbilical
## 17641                                      una
## 17642                                      una
## 17643                                      una
## 17644                                      una
## 17645                                      una
## 17646                                   unable
## 17647                              unanimously
## 17648                               unanswered
## 17649                              unappealing
## 17650                                     unas
## 17651                              unavailable
## 17652                               unbeatable
## 17653                                    uncle
## 17654                            uncomfortable
## 17655                            uncomfortable
## 17656                            uncomfortable
## 17657                            uncomfortable
## 17658                               undefeated
## 17659                            underarmour's
## 17660                                underated
## 17661                           underestimated
## 17662                               underrated
## 17663                               underrated
## 17664                               underrated
## 17665                               understand
## 17666                               understand
## 17667                               understand
## 17668                               understand
## 17669                               understand
## 17670                               understand
## 17671                                underwear
## 17672                                underwear
## 17673                                   undone
## 17674                                     unds
## 17675                               unexpected
## 17676                              unfortunate
## 17677                              unfortunate
## 17678                                  uniform
## 17679                                  uniform
## 17680                                 uniforms
## 17681                              uninspiring
## 17682                              uninspiring
## 17683                              uninstalled
## 17684                              uninstalled
## 17685                               unintended
## 17686                             unintendedly
## 17687                                   unique
## 17688                                   unique
## 17689                                   unique
## 17690                                   unique
## 17691                                   unique
## 17692                                   unisex
## 17693                                   unisex
## 17694                                   unisex
## 17695                                     unit
## 17696                                   unlock
## 17697                                unmatched
## 17698                                      uno
## 17699                                     unos
## 17700                                  unpause
## 17701                                  unpause
## 17702                               unprepared
## 17703                               unreliable
## 17704                               unreliable
## 17705                               unreviewed
## 17706                                   unseen
## 17707                                   unsold
## 17708                              unspecified
## 17709                                 unusable
## 17710                                  unusual
## 17711                                unveiling
## 17712                                  unveils
## 17713                                  unveils
## 17714                                 unwanted
## 17715                                   unworn
## 17716                                       uo
## 17717                                 upcoming
## 17718                                 upcoming
## 17719                                 upcycled
## 17720                                   update
## 17721                                   update
## 17722                                   update
## 17723                                   update
## 17724                                   update
## 17725                                   update
## 17726                                   update
## 17727                                   update
## 17728                                   update
## 17729                                   update
## 17730                                   update
## 17731                                   update
## 17732                                   update
## 17733                                   update
## 17734                                   update
## 17735                                   update
## 17736                                   update
## 17737                                   update
## 17738                                   update
## 17739                                   update
## 17740                                   update
## 17741                                   update
## 17742                                   update
## 17743                                   update
## 17744                                   update
## 17745                                   update
## 17746                                   update
## 17747                                   update
## 17748                                   update
## 17749                                   update
## 17750                                   update
## 17751                                   update
## 17752                                  updated
## 17753                                  updated
## 17754                                  updated
## 17755                                  updated
## 17756                                  updates
## 17757                                  updates
## 17758                                  updates
## 17759                                  updates
## 17760                                  updates
## 17761                                  updates
## 17762                                 updating
## 17763                                 updating
## 17764                                 updating
## 17765                                  upgrade
## 17766                                   upload
## 17767                                   upload
## 17768                                uploading
## 17769                                  uploads
## 17770                                    upper
## 17771                                    upper
## 17772                                    upper
## 17773                                    upper
## 17774                                    upper
## 17775                                   uppers
## 17776                                      ups
## 17777                                      ups
## 17778                                      ups
## 17779                                      ups
## 17780                                    upset
## 17781                                  uptempo
## 17782                                  uptempo
## 17783                                  uptempo
## 17784                                  uptempo
## 17785                                  uptempo
## 17786                                 uptempos
## 17787                                 uptempos
## 17788                                 uptempos
## 17789                                 uptempos
## 17790                                   uptown
## 17791                                   upvote
## 17792                                       ur
## 17793                                       ur
## 17794                                       ur
## 17795                                       ur
## 17796                                       ur
## 17797                                    urban
## 17798                                    urban
## 17799                                      usa
## 17800                                      usa
## 17801                                    usa's
## 17802                                    usado
## 17803                                    usage
## 17804                                   usando
## 17805                                      usd
## 17806                                  useable
## 17807                                  usefull
## 17808                                  useless
## 17809                                  useless
## 17810                                  useless
## 17811                                  useless
## 17812                                  useless
## 17813                                  useless
## 17814                                  useless
## 17815                                  useless
## 17816                                     user
## 17817                                     user
## 17818                                     user
## 17819                                     user
## 17820                                     user
## 17821                                     user
## 17822                                     user
## 17823                                     user
## 17824                                     user
## 17825                                     user
## 17826                                     user
## 17827                                 username
## 17828                                    users
## 17829                                    users
## 17830                                    usmnt
## 17831                                      uso
## 17832                                    usual
## 17833                                    usual
## 17834                                    usual
## 17835                                    usual
## 17836                                    usual
## 17837                                    usual
## 17838                                     utah
## 17839                                     utf8
## 17840                                     util
## 17841                                  utilize
## 17842                                  utterly
## 17843                                       ux
## 17844                               uygulaması
## 17845                            uygulamasında
## 17846                                       v4
## 17847                                     vale
## 17848                                 valencia
## 17849                                    valid
## 17850                                    valid
## 17851                               validation
## 17852                                 valuable
## 17853                                 valuable
## 17854                                valuation
## 17855                                   values
## 17856                                      van
## 17857                                   vanish
## 17858                                     vans
## 17859                                     vans
## 17860                                 vaporfly
## 17861                                   vapour
## 17862                              vapourwaver
## 17863                                   varias
## 17864                                   varied
## 17865                                  variety
## 17866                                  variety
## 17867                                  variety
## 17868                                  varsity
## 17869                                    vasco
## 17870                                    vasco
## 17871                                     vast
## 17872                                     vast
## 17873                                       ve
## 17874                                       ve
## 17875                                       ve
## 17876                                       ve
## 17877                                       ve
## 17878                                       ve
## 17879                                    veces
## 17880                                 velociti
## 17881                                  velvety
## 17882                                   vender
## 17883                                    vents
## 17884                                      ver
## 17885                                      ver
## 17886                                      ver
## 17887                           verbalizations
## 17888                               verbalized
## 17889                                   verdad
## 17890                                   verify
## 17891                                    versa
## 17892                                versatile
## 17893                                versatile
## 17894                                versatile
## 17895                                versatile
## 17896                              versatility
## 17897                                  version
## 17898                                  version
## 17899                                  version
## 17900                                  version
## 17901                                  version
## 17902                                  version
## 17903                                  version
## 17904                                  version
## 17905                                  version
## 17906                                  version
## 17907                                  version
## 17908                                  version
## 17909                                  version
## 17910                                  version
## 17911                                 versions
## 17912                                 versions
## 17913                                 versions
## 17914                                 versions
## 17915                                   versus
## 17916                                   versus
## 17917                                      vey
## 17918                       vgfcceue0mlzou7y49
## 17919                                       vi
## 17920                                   viable
## 17921                                     vibe
## 17922                                     vibe
## 17923                                    vibes
## 17924                                    vibes
## 17925                                  vibrant
## 17926                                     vice
## 17927                                  vicious
## 17928                                  vicious
## 17929                                      vid
## 17930                                      vid
## 17931                                    video
## 17932                                    video
## 17933                                    video
## 17934                                    video
## 17935                                    video
## 17936                                    video
## 17937                                    video
## 17938                                    video
## 17939                                    video
## 17940                                    video
## 17941                                    video
## 17942                                    video
## 17943                                    video
## 17944                                    video
## 17945                                    video
## 17946                                    video
## 17947                                    video
## 17948                                    video
## 17949                                    video
## 17950                                    video
## 17951                                   videos
## 17952                                   videos
## 17953                                   videos
## 17954                                   videos
## 17955                                   videos
## 17956                                   videos
## 17957                                   videos
## 17958                                   videos
## 17959                                     vids
## 17960                                    viejo
## 17961                                  vietnam
## 17962                                     view
## 17963                                     view
## 17964                                     view
## 17965                                     view
## 17966                                   viewed
## 17967                                  viewing
## 17968                                  viewing
## 17969                                    views
## 17970                                  vintage
## 17971                                  vintage
## 17972                                  vintage
## 17973                                  vintage
## 17974                                  vintage
## 17975                                  vintage
## 17976                                violation
## 17977                                   violet
## 17978                                      vip
## 17979                                    viral
## 17980                                    viral
## 17981                                    viral
## 17982                                    viral
## 17983                                    viral
## 17984                                    viral
## 17985                                      vis
## 17986                                  visible
## 17987                                   vistas
## 17988                                 visually
## 17989                                   vitals
## 17990                                 vitiligo
## 17991                                 vitiligo
## 17992                                     vivo
## 17993                                     vivo
## 17994                             vivobarefoot
## 17995                                       vl
## 17996                                     vlad
## 17997                                vladieboi
## 17998                                     vnds
## 17999                                     você
## 18000                                    voice
## 18001                                    voice
## 18002                                    voice
## 18003                                    voice
## 18004                                    voice
## 18005                                    voice
## 18006                                    voice
## 18007                                voiceover
## 18008                                voiceover
## 18009                               volleyball
## 18010                                     volt
## 18011                                   volume
## 18012                                   volume
## 18013                                   vomero
## 18014                                   vomero
## 18015                                  voodoos
## 18016                                    votes
## 18017                                    vélez
## 18018                                  waisted
## 18019                                     wait
## 18020                                     wait
## 18021                                     wait
## 18022                                     wait
## 18023                                     wait
## 18024                                     wait
## 18025                                   waited
## 18026                                   waited
## 18027                                     wale
## 18028                                    wales
## 18029                                     walk
## 18030                                     walk
## 18031                                     walk
## 18032                                     walk
## 18033                                     walk
## 18034                                     walk
## 18035                                     walk
## 18036                                     walk
## 18037                                     walk
## 18038                                     walk
## 18039                                     walk
## 18040                                   walked
## 18041                                   walked
## 18042                                   walked
## 18043                                  walkers
## 18044                                  walking
## 18045                                  walking
## 18046                                  walking
## 18047                                  walking
## 18048                                  walking
## 18049                                  walking
## 18050                                  walking
## 18051                                  walking
## 18052                                  walking
## 18053                                  walking
## 18054                                  walking
## 18055                                  walking
## 18056                                  walking
## 18057                                  walking
## 18058                                  walking
## 18059                                  walking
## 18060                                  walking
## 18061                                  walking
## 18062                                    walks
## 18063                                    walks
## 18064                                    walks
## 18065                                    walks
## 18066                                    walks
## 18067                                    walks
## 18068                                    walks
## 18069                                    walks
## 18070                                     wall
## 18071                                  walmart
## 18072                                  walmart
## 18073                                  walmart
## 18074                                    wanna
## 18075                                    wanna
## 18076                                    wanna
## 18077                                    wanna
## 18078                                    wanna
## 18079                                  wannabe
## 18080                                     warm
## 18081                                    warns
## 18082                                    warns
## 18083                                     warp
## 18084                                 warriors
## 18085                                     wars
## 18086                                   wasent
## 18087                                     wash
## 18088                                   washed
## 18089                                   washed
## 18090                                   washer
## 18091                                   washes
## 18092                                   wasn’t
## 18093                                   wasn’t
## 18094                                   wasn’t
## 18095                                   wasn’t
## 18096                                   wasn’t
## 18097                                   wasn’t
## 18098                                   wasn’t
## 18099                                    waste
## 18100                                    waste
## 18101                                    waste
## 18102                                   wasted
## 18103                                    watch
## 18104                                    watch
## 18105                                    watch
## 18106                                    watch
## 18107                                    watch
## 18108                                    watch
## 18109                                    watch
## 18110                                    watch
## 18111                                    watch
## 18112                                    watch
## 18113                                    watch
## 18114                                    watch
## 18115                                    watch
## 18116                                    watch
## 18117                                    watch
## 18118                                    watch
## 18119                                    watch
## 18120                                    watch
## 18121                                    watch
## 18122                                    watch
## 18123                                    watch
## 18124                                    watch
## 18125                                    watch
## 18126                                    watch
## 18127                                    watch
## 18128                                    watch
## 18129                                    watch
## 18130                                    watch
## 18131                                    watch
## 18132                                    watch
## 18133                                    watch
## 18134                                  watched
## 18135                                  watcher
## 18136                                  watches
## 18137                                  watches
## 18138                                 watching
## 18139                                  watch’s
## 18140                                    water
## 18141                                    water
## 18142                                    water
## 18143                                    water
## 18144                                    water
## 18145                                    water
## 18146                                    water
## 18147                                    water
## 18148                               waterproof
## 18149                               waterproof
## 18150                               waterproof
## 18151                                   wattba
## 18152                                     wave
## 18153                                 wavering
## 18154                                    waves
## 18155                                     wavy
## 18156                                    wayne
## 18157                                    wdywt
## 18158                                     weak
## 18159                                     weak
## 18160                                 weakened
## 18161                                     wear
## 18162                                     wear
## 18163                                     wear
## 18164                                     wear
## 18165                                     wear
## 18166                                     wear
## 18167                                     wear
## 18168                                     wear
## 18169                                     wear
## 18170                                     wear
## 18171                                     wear
## 18172                                     wear
## 18173                                     wear
## 18174                                     wear
## 18175                                     wear
## 18176                                     wear
## 18177                                     wear
## 18178                                     wear
## 18179                                     wear
## 18180                                     wear
## 18181                                     wear
## 18182                                     wear
## 18183                                     wear
## 18184                                     wear
## 18185                                     wear
## 18186                                     wear
## 18187                                     wear
## 18188                                     wear
## 18189                                     wear
## 18190                                     wear
## 18191                                     wear
## 18192                                     wear
## 18193                                     wear
## 18194                                     wear
## 18195                                     wear
## 18196                                     wear
## 18197                                     wear
## 18198                                     wear
## 18199                                     wear
## 18200                                 wearable
## 18201                                   wearin
## 18202                                   wearin
## 18203                                  wearing
## 18204                                  wearing
## 18205                                  wearing
## 18206                                  wearing
## 18207                                  wearing
## 18208                                  wearing
## 18209                                  wearing
## 18210                                  wearing
## 18211                                  wearing
## 18212                                  wearing
## 18213                                  wearing
## 18214                                  wearing
## 18215                                  wearing
## 18216                                  wearing
## 18217                                  wearing
## 18218                                  wearing
## 18219                                  wearpro
## 18220                                    wears
## 18221                                    wears
## 18222                                    wears
## 18223                                    wears
## 18224                                    wears
## 18225                                  weather
## 18226                                  weather
## 18227                                  weather
## 18228                                  weather
## 18229                                  weather
## 18230                                      web
## 18231                                      web
## 18232                                  website
## 18233                                  website
## 18234                                  website
## 18235                                  website
## 18236                                  website
## 18237                                wednesday
## 18238                                     weds
## 18239                                      wee
## 18240                                     week
## 18241                                     week
## 18242                                     week
## 18243                                     week
## 18244                                     week
## 18245                                     week
## 18246                                     week
## 18247                                     week
## 18248                                     week
## 18249                                     week
## 18250                                     week
## 18251                                     week
## 18252                                     week
## 18253                                  weekend
## 18254                                  weekend
## 18255                                   weekly
## 18256                                   weekly
## 18257                                   weekly
## 18258                                   weekly
## 18259                                   weekly
## 18260                                   weekly
## 18261                                   weekly
## 18262                                    weeks
## 18263                                    weeks
## 18264                                    weeks
## 18265                                    weeks
## 18266                                    weeks
## 18267                                    weeks
## 18268                                    weigh
## 18269                                   weight
## 18270                                   weight
## 18271                                   weight
## 18272                                   weight
## 18273                                   weight
## 18274                                   weight
## 18275                                 weighted
## 18276                            weightlifting
## 18277                                  weights
## 18278                                    weird
## 18279                                    weird
## 18280                                    weird
## 18281                                    weird
## 18282                                    weird
## 18283                                    weird
## 18284                                    weird
## 18285                                    weird
## 18286                                    weird
## 18287                                    weird
## 18288                                    weird
## 18289                                    weird
## 18290                                 wellness
## 18291                                 wellness
## 18292                                 wellness
## 18293                                 wellness
## 18294                                 wellness
## 18295                                 wellness
## 18296                                    wemby
## 18297                                   werent
## 18298                                  weren’t
## 18299                                  weren’t
## 18300                                     werk
## 18301                                     west
## 18302                                      wet
## 18303                                   wexler
## 18304                                    we’ve
## 18305                                   what’s
## 18306                                   wheels
## 18307                                  whisper
## 18308                                    white
## 18309                                    white
## 18310                                    white
## 18311                                    white
## 18312                                    white
## 18313                                    white
## 18314                                    white
## 18315                                    white
## 18316                                    white
## 18317                                    white
## 18318                                    white
## 18319                                    white
## 18320                                    white
## 18321                                    white
## 18322                                    white
## 18323                                    white
## 18324                                    white
## 18325                                    white
## 18326                                    white
## 18327                                    white
## 18328                                    white
## 18329                                    white
## 18330                                    white
## 18331                                    white
## 18332                                    white
## 18333                                    white
## 18334                                    white
## 18335                                    white
## 18336                                    white
## 18337                                    white
## 18338                                    white
## 18339                                    white
## 18340                                    white
## 18341                                    white
## 18342                                    white
## 18343                                    white
## 18344                                    white
## 18345                                    white
## 18346                                    white
## 18347                               whiteboard
## 18348                               whiteboard
## 18349                               whiteboard
## 18350                               whiteboard
## 18351                               whiteboard
## 18352                               whiteboard
## 18353                                   whites
## 18354                                whoever's
## 18355                                wholesale
## 18356                                wholesale
## 18357                                wholesale
## 18358                                wholesale
## 18359                                wholesome
## 18360                                    whoop
## 18361                                   whoops
## 18362                                   whoosh
## 18363                                   wiciak
## 18364                                   wicked
## 18365                                     wide
## 18366                                     wide
## 18367                                     wide
## 18368                                     wide
## 18369                                     wide
## 18370                                     wide
## 18371                                     wide
## 18372                                     wide
## 18373                                     wide
## 18374                                     wide
## 18375                                    wider
## 18376                                    wider
## 18377                                    wider
## 18378                                    wider
## 18379                               widescreen
## 18380                                   widget
## 18381                                   widget
## 18382                                    width
## 18383                                    width
## 18384                                    width
## 18385                                     wife
## 18386                                   wife's
## 18387                                   wife’s
## 18388                                     wifi
## 18389                                     wifi
## 18390                                     wild
## 18391                                     wild
## 18392                                     wild
## 18393                                 williams
## 18394                                   wilson
## 18395                                      win
## 18396                                      win
## 18397                                      win
## 18398                                      win
## 18399                                     wind
## 18400                             windbreakers
## 18401                                   window
## 18402                               windrunner
## 18403                                     wins
## 18404                                   winter
## 18405                                   winter
## 18406                                   winter
## 18407                                 wipeable
## 18408                                 wireless
## 18409                                  wishing
## 18410                                  with'em
## 18411                                      wmn
## 18412                                    woman
## 18413                                    women
## 18414                                    women
## 18415                                    women
## 18416                                  women's
## 18417                                  women's
## 18418                                  women's
## 18419                                  women's
## 18420                                  women's
## 18421                                  women's
## 18422                                wonderful
## 18423                                wonderful
## 18424                                wonderful
## 18425                                wonderful
## 18426                                wonderful
## 18427                                wonderful
## 18428                                wonderful
## 18429                                wonderful
## 18430                                wondering
## 18431                                    wonky
## 18432                                     wont
## 18433                                     wont
## 18434                                    won’t
## 18435                                    won’t
## 18436                                    won’t
## 18437                                    won’t
## 18438                                    won’t
## 18439                                    won’t
## 18440                                    won’t
## 18441                                    won’t
## 18442                                    won’t
## 18443                                    won’t
## 18444                                 woodmont
## 18445                                     wool
## 18446                                     word
## 18447                                    words
## 18448                                     wore
## 18449                                     wore
## 18450                                  workers
## 18451                                  workers
## 18452                                  workers
## 18453                                 workoits
## 18454                                  workout
## 18455                                  workout
## 18456                                  workout
## 18457                                  workout
## 18458                                  workout
## 18459                                  workout
## 18460                                  workout
## 18461                                  workout
## 18462                                  workout
## 18463                                  workout
## 18464                                  workout
## 18465                                  workout
## 18466                                  workout
## 18467                                  workout
## 18468                                  workout
## 18469                                  workout
## 18470                                  workout
## 18471                                  workout
## 18472                                  workout
## 18473                                  workout
## 18474                                  workout
## 18475                                  workout
## 18476                                  workout
## 18477                                  workout
## 18478                                  workout
## 18479                                  workout
## 18480                                  workout
## 18481                                  workout
## 18482                                  workout
## 18483                                  workout
## 18484                                  workout
## 18485                                  workout
## 18486                                  workout
## 18487                                  workout
## 18488                                  workout
## 18489                                  workout
## 18490                                  workout
## 18491                                  workout
## 18492                                  workout
## 18493                                  workout
## 18494                                  workout
## 18495                                  workout
## 18496                                  workout
## 18497                                  workout
## 18498                                  workout
## 18499                                  workout
## 18500                                  workout
## 18501                                  workout
## 18502                                  workout
## 18503                                  workout
## 18504                                  workout
## 18505                                  workout
## 18506                                  workout
## 18507                                  workout
## 18508                                  workout
## 18509                                  workout
## 18510                                  workout
## 18511                                  workout
## 18512                                  workout
## 18513                                 workouts
## 18514                                 workouts
## 18515                                 workouts
## 18516                                 workouts
## 18517                                 workouts
## 18518                                 workouts
## 18519                                 workouts
## 18520                                 workouts
## 18521                                 workouts
## 18522                                 workouts
## 18523                                 workouts
## 18524                                 workouts
## 18525                                 workouts
## 18526                                 workouts
## 18527                                 workouts
## 18528                                 workouts
## 18529                                 workouts
## 18530                                 workouts
## 18531                                 workouts
## 18532                                 workouts
## 18533                                 workouts
## 18534                                 workouts
## 18535                                 workouts
## 18536                                 workouts
## 18537                                 workouts
## 18538                                 workouts
## 18539                                 workouts
## 18540                                 workouts
## 18541                                 workouts
## 18542                                 workouts
## 18543                                 workouts
## 18544                                 workouts
## 18545                                 workouts
## 18546                                 workouts
## 18547                                 workouts
## 18548                                 workouts
## 18549                                 workouts
## 18550                                 workouts
## 18551                                 workouts
## 18552                                 workouts
## 18553                                 workouts
## 18554                                 workouts
## 18555                                 workouts
## 18556                                 workouts
## 18557                                 workouts
## 18558                                 workouts
## 18559                                 workouts
## 18560                                 workouts
## 18561                                 workouts
## 18562                                 workouts
## 18563                                 workouts
## 18564                                 workouts
## 18565                                 workouts
## 18566                                 workouts
## 18567                                 workouts
## 18568                                 workouts
## 18569                                 workouts
## 18570                                workplace
## 18571                                    world
## 18572                                    world
## 18573                                    world
## 18574                                worldwide
## 18575                                     worn
## 18576                                     worn
## 18577                                     worn
## 18578                                     worn
## 18579                                     worn
## 18580                                     worn
## 18581                                     worn
## 18582                                     worn
## 18583                                     worn
## 18584                                     worn
## 18585                                     worn
## 18586                                     worn
## 18587                                    worse
## 18588                                    worse
## 18589                                    worse
## 18590                                    worse
## 18591                                    worst
## 18592                                    worst
## 18593                                    worst
## 18594                                    worst
## 18595                                    worst
## 18596                                    worst
## 18597                                    worst
## 18598                                    worst
## 18599                                    worth
## 18600                                    worth
## 18601                                    worth
## 18602                                    worth
## 18603                                    worth
## 18604                                    worth
## 18605                                    worth
## 18606                              wotherspoon
## 18607                                 wouldn’t
## 18608                                    woven
## 18609                                      wow
## 18610                                      wow
## 18611                                     wrap
## 18612                                  wrapped
## 18613                                 wrestler
## 18614                                 wrestler
## 18615                                   wrists
## 18616                                    write
## 18617                                    write
## 18618                                   writes
## 18619                                  writing
## 18620                                    wrong
## 18621                                    wrong
## 18622                                    wrong
## 18623                                    wrong
## 18624                                    wrong
## 18625                                    wrong
## 18626                                    wrong
## 18627                                    wrong
## 18628                                    wrong
## 18629                                    wrong
## 18630                                    wrong
## 18631                                    wrong
## 18632                                    wrong
## 18633                                    wrong
## 18634                                    wrong
## 18635                                    wrong
## 18636                                    wrong
## 18637                                    wrong
## 18638                                    wrong
## 18639                                      wtf
## 18640                                      wtr
## 18641                                      wut
## 18642                          www.aceoffs.com
## 18643                       www.flightclub.com
## 18644                      www.underarmour.com
## 18645                          www.youtube.com
## 18646                                       x3
## 18647                                       x4
## 18648                       x8u7cf3qrvzgwpk9hg
## 18649                                 xinjiang
## 18650                                      xlg
## 18651                                      xr1
## 18652                                       xs
## 18653                                       xx
## 18654                                       xx
## 18655                                    y'all
## 18656                                   y'know
## 18657                                      y.o
## 18658                                       ya
## 18659                                       ya
## 18660                                       ya
## 18661                                       ya
## 18662                                       ya
## 18663                                       ya
## 18664                                       ya
## 18665                                    yahoo
## 18666                                     yall
## 18667                                     yall
## 18668                                     yall
## 18669                                     yard
## 18670                                      yay
## 18671                                      yay
## 18672                            yayv8i5n1ojze
## 18673                                       ye
## 18674                                       ye
## 18675                                     ye's
## 18676                                      yea
## 18677                                      yea
## 18678                                      yea
## 18679                                     yeah
## 18680                                     yeah
## 18681                                     yeah
## 18682                                     yeah
## 18683                                     yeah
## 18684                                     yeah
## 18685                                     yeah
## 18686                                     yeah
## 18687                                     yeah
## 18688                                     yeah
## 18689                                     yeah
## 18690                                     yeah
## 18691                                     yeah
## 18692                                     yeah
## 18693                                     yeah
## 18694                                     yeah
## 18695                                     yeah
## 18696                                     yeah
## 18697                                     yeah
## 18698                                   year's
## 18699                                   year's
## 18700                                   year's
## 18701                                   year's
## 18702                                   yearly
## 18703                                   yearly
## 18704                                   yearly
## 18705                                   yeeyee
## 18706                                    yeezy
## 18707                                    yeezy
## 18708                                    yeezy
## 18709                                    yeezy
## 18710                                    yeezy
## 18711                                    yeezy
## 18712                                    yeezy
## 18713                                    yeezy
## 18714                                    yeezy
## 18715                                    yeezy
## 18716                                  yeezy's
## 18717                                  yeezy’s
## 18718                                   yellow
## 18719                                   yellow
## 18720                                   yellow
## 18721                                      yep
## 18722                                      yep
## 18723                                      yep
## 18724                                      yep
## 18725                                   yessir
## 18726                                   yessir
## 18727                                    yesss
## 18728                                yesterday
## 18729                                yesterday
## 18730                                yesterday
## 18731                                yesterday
## 18732                                yesterday
## 18733                                       yo
## 18734                                       yo
## 18735                                     yoga
## 18736                                     yoga
## 18737                                     yoga
## 18738                                     yoga
## 18739                                     yoga
## 18740                                     yoga
## 18741                                     yoga
## 18742                                     yoga
## 18743                                     yoga
## 18744                                     yoga
## 18745                                     yoga
## 18746                                     yoke
## 18747                                      yoo
## 18748                                    yorba
## 18749                                     york
## 18750                                    youre
## 18751                                    youre
## 18752                                youtubers
## 18753                                   you’ll
## 18754                                   you’re
## 18755                                   you’re
## 18756                                   you’re
## 18757                                   you’ve
## 18758                                   you’ve
## 18759                                   you’ve
## 18760                                      yrs
## 18761                                      yrs
## 18762                                       yt
## 18763                                       yu
## 18764                                   yugioh
## 18765                                      yup
## 18766                                      yup
## 18767                            yvbc4hdspb7z2
## 18768                                    y’all
## 18769                                     zach
## 18770                              zellerfield
## 18771                                  zendesk
## 18772                                     zers
## 18773                                      zf6
## 18774                                    zheng
## 18775                                     zion
## 18776                                     zion
## 18777                                      zip
## 18778                                      zip
## 18779                                      zip
## 18780                                      zip
## 18781                                       zk
## 18782                       zn5xfujbtbpnrdzncm
## 18783                                      zna
## 18784                                    zones
## 18785                                    zones
## 18786                                    zones
## 18787                                     zoom
## 18788                                     zoom
## 18789                                     zoom
## 18790                                     zoom
## 18791                                     zoom
## 18792                                     zoom
## 18793                                     zoom
## 18794                                  zoomfly
## 18795                                    zumba
## 18796                                 zunnigas
## 18797                                       zx
## 18798                                        ª
## 18799                                        ª
## 18800                                       ªd
## 18801                                       ªd
## 18802                                        à
## 18803                                        à
## 18804                                        à
## 18805                                        á
## 18806                                        á
## 18807                                        á
## 18808                                        á
## 18809                                        á
## 18810                                        á
## 18811                                        á
## 18812                                        á
## 18813                                        ã
## 18814                                        ã
## 18815                                        ã
## 18816                                        ã
## 18817                                        ä
## 18818                                        é
## 18819                                        é
## 18820                                        é
## 18821                                    ótimo
## 18822                                        ö
## 18823                                özelliğin
## 18824                                     útil
## 18825                                     útil
## 18826                                        û
## 18827                                        û
## 18828                                        û
## 18829                                        û
## 18830                                        û
## 18831                                        û
## 18832                                        û
## 18833                                        û
## 18834                                        û
## 18835                                        ü
## 18836                                        ü
## 18837                                        ü
## 18838                                        ü
## 18839                                        ü
## 18840                                        ý
## 18841                                        ý
## 18842                                        ý
## 18843                                        ý
## 18844                                        ý
## 18845                                        ý
## 18846                                        ý
## 18847                                        ý
## 18848                                        ý
## 18849                                        ý
## 18850                                        ý
## 18851                                        þ
## 18852                                        þ
## 18853                                        þ
## 18854                                абсолютна
## 18855                                   адреса
## 18856                                        в
## 18857                                        в
## 18858                                        в
## 18859                                    вашей
## 18860                                 возможно
## 18861                               геолокации
## 18862                                     дает
## 18863                               деградація
## 18864                             залогиниться
## 18865                       зарегестрироваться
## 18866                       зарегистрироваться
## 18867                                      код
## 18868                                      код
## 18869                                   майлом
## 18870                                     мейл
## 18871                                     могу
## 18872                                     могу
## 18873                                       на
## 18874                                    найти
## 18875                                       не
## 18876                                       не
## 18877                                       не
## 18878                                       не
## 18879                                     нету
## 18880                                    никак
## 18881                                       но
## 18882                                 отметить
## 18883                                   отстой
## 18884                             перепробовал
## 18885                               приложения
## 18886                                присылать
## 18887                                 приходит
## 18888                                 проблемы
## 18889                                   разных
## 18890                             регистрацией
## 18891                                   россии
## 18892                                        с
## 18893                                   списке
## 18894                                   страну
## 18895                                   страну
## 18896                                    хочет
## 18897                                     хочу
## 18898                                    хуйне
## 18899                                  التطبيق
## 18900                                  العربية
## 18901                                     اهتم
## 18902                                   باللغة
## 18903                                      جدا
## 18904                                       في
## 18905                                      فيه
## 18906                                    ممتاز
## 18907                                    ممتاز
## 18908                                    نتمنى
## 18909                                    ومحفز
## 18910                                     يكون
## 18911                                       な
## 18912                                     中国
## 18913                                       介
## 18914                                     使用
## 18915                                       善
## 18916                                     无法
## 18917                                   日本一
## 18918                                       星
## 18919                                     書士
## 18920                                     行政
## 18921                                     親切
##                                    word2   n
## 1                               positive 267
## 2                               negative  97
## 3                                  watch  70
## 4                                    app  55
## 5                               positive  52
## 6                                neutral  51
## 7                                     11  47
## 8                                    max  47
## 9                                     01  41
## 10                                 score  40
## 11                                 score  37
## 12                                    12  32
## 13                                   app  32
## 14                                 giphy  30
## 15                                  love  29
## 16                                    02  28
## 17                                     6  28
## 18                                    01  27
## 19                                  i’ve  27
## 20                              training  25
## 21                                   box  25
## 22                                    10  24
## 23                                    06  24
## 24                              negative  23
## 25                                   app  23
## 26                                 shoes  23
## 27                               running  22
## 28                                    02  20
## 29                                    03  19
## 30                                    09  19
## 31                                   app  19
## 32                                  size  19
## 33                                   app  19
## 34                                    10  18
## 35                                    04  18
## 36                                    11  18
## 37                                  love  18
## 38                             recommend  18
## 39                                    08  17
## 40                               fitness  17
## 41                                    12  17
## 42                                    sl  17
## 43                                  club  17
## 44                              friendly  17
## 45                                    12  16
## 46                                 socks  16
## 47                                     5  15
## 48                                    05  15
## 49                                     4  15
## 50                                     5  14
## 51                                     5  14
## 52                                     5  14
## 53                                   pro  14
## 54                               journey  14
## 55                                  free  14
## 56                                   app  14
## 57                                 score  14
## 58                                     5  13
## 59                                     5  13
## 60                                    10  13
## 61                                     5  13
## 62                                   low  13
## 63                                  rate  13
## 64                                     5  13
## 65                                  plan  13
## 66                                     5  12
## 67                                    10  12
## 68                                    03  12
## 69                                 stars  12
## 70                                   low  12
## 71                                 force  12
## 72                               doesn’t  12
## 73                                   app  12
## 74                                cotton  12
## 75                               version  12
## 76                                   air  12
## 77                                   app  12
## 78                                     7  12
## 79                           comfortable  12
## 80                                     5  11
## 81                                     2  11
## 82                                     5  11
## 83                                    11  11
## 84                                     5  11
## 85                                   app  11
## 86                                 shoes  11
## 87                               crashes  11
## 88                                  it’s  11
## 89                                  love  11
## 90                                  mode  11
## 91                                    95  11
## 92                                   ago  11
## 93                                   app  11
## 94                               amazing  11
## 95                                    01  10
## 96                                    07  10
## 97                                     5  10
## 98                                months  10
## 99                                   low  10
## 100                                    9  10
## 101                                music  10
## 102                              running  10
## 103                                  app  10
## 104                                    3  10
## 105                                    8  10
## 106                                plans  10
## 107                                reign  10
## 108                                  cup  10
## 109                                    1   9
## 110                                    5   9
## 111                                   12   9
## 112                                   03   9
## 113                                   06   9
## 114                                    5   9
## 115                                  app   9
## 116                              service   9
## 117                                  fit   9
## 118                                 apps   9
## 119                                goals   9
## 120                                times   9
## 121                               metcon   9
## 122                                  fit   9
## 123                                 shoe   9
## 124                                score   9
## 125                                  sen   9
## 126                                   18   9
## 127                                  app   9
## 128                                 feet   9
## 129                                    5   8
## 130                                    5   8
## 131                                    5   8
## 132                                    5   8
## 133                                    5   8
## 134                                    5   8
## 135                                pairs   8
## 136                                   02   8
## 137                                score   8
## 138                                won’t   8
## 139                               health   8
## 140                              support   8
## 141                             training   8
## 142                                track   8
## 143                              running   8
## 144                                    5   8
## 145                                   10   8
## 146                                media   8
## 147                                  ago   8
## 148                                  fly   8
## 149                                   21   7
## 150                                    1   7
## 151                                   12   7
## 152                                   13   7
## 153                                 nike   7
## 154                                   05   7
## 155                                 star   7
## 156                               offers   7
## 157                              stopped   7
## 158                                    1   7
## 159                               burned   7
## 160                                shoes   7
## 161                              workout   7
## 162                                level   7
## 163                              workout   7
## 164                              changer   7
## 165                             marathon   7
## 166                              version   7
## 167                                found   7
## 168                               checks   7
## 169                                  app   7
## 170                              america   7
## 171                                 nike   7
## 172                                 apps   7
## 173                              hippies   7
## 174                             training   7
## 175                                shoes   7
## 176                                boost   7
## 177                                   06   6
## 178                                    5   6
## 179                                    1   6
## 180                                 nike   6
## 181                                    1   6
## 182                              minutes   6
## 183                                    5   6
## 184                                 mile   6
## 185                                    5   6
## 186                                    5   6
## 187                                 nike   6
## 188                                pairs   6
## 189                                    5   6
## 190                                    5   6
## 191                                  low   6
## 192                                  low   6
## 193                               adidas   6
## 194                                store   6
## 195                                 pace   6
## 196                                 sign   6
## 197                                  app   6
## 198                                   19   6
## 199                                 time   6
## 200                                 load   6
## 201                                    1   6
## 202                             changing   6
## 203                                   em   6
## 204                                 love   6
## 205                               adidas   6
## 206                                  run   6
## 207                                shoes   6
## 208                                store   6
## 209                                plans   6
## 210                              walking   6
## 211                                    6   6
## 212                                    9   6
## 213                                   11   6
## 214                                   12   6
## 215                                 easy   6
## 216                             distance   6
## 217                                 foot   6
## 218                                 load   6
## 219                                 apps   6
## 220                                   10   5
## 221                                   26   5
## 222                                   05   5
## 223                                    1   5
## 224                                   09   5
## 225                                   30   5
## 226                               medium   5
## 227                                times   5
## 228                                   11   5
## 229                                   15   5
## 230                                   23   5
## 231                                   27   5
## 232                                    1   5
## 233                                    5   5
## 234                                    1   5
## 235                                   04   5
## 236                                   08   5
## 237                                    1   5
## 238                                    4   5
## 239                                miles   5
## 240                                    5   5
## 241                              printed   5
## 242                               months   5
## 243                                 nike   5
## 244                                miles   5
## 245                                 nike   5
## 246                                 nike   5
## 247                                  ceo   5
## 248                               pauses   5
## 249                              support   5
## 250                              reports   5
## 251                                 wear   5
## 252                                 pace   5
## 253                                 pace   5
## 254                                  una   5
## 255                                  app   5
## 256                                  app   5
## 257                                 true   5
## 258                             workouts   5
## 259                            relations   5
## 260                                   14   5
## 261                                 nice   5
## 262                                 love   5
## 263                                   1s   5
## 264                                    4   5
## 265                           aplicación   5
## 266                                 mode   5
## 267                                check   5
## 268                               adidas   5
## 269                               health   5
## 270                                  run   5
## 271                                can’t   5
## 272                            announces   5
## 273                                   id   5
## 274                             investor   5
## 275                                makes   5
## 276                                stock   5
## 277                              charged   5
## 278                              version   5
## 279                              awesome   5
## 280                            excellent   5
## 281                              perfect   5
## 282                               update   5
## 283                                 club   5
## 284                                 plan   5
## 285                                   10   5
## 286                                 time   5
## 287                                   13   5
## 288                                comfy   5
## 289                                 rise   5
## 290                             distance   5
## 291                                 user   5
## 292                                notch   5
## 293                                scott   5
## 294                            interface   5
## 295                                 worn   5
## 296                               street   5
## 297                             training   5
## 298                               videos   5
## 299                                 love   5
## 300                             workouts   5
## 301                                   14   4
## 302                                   19   4
## 303                                   20   4
## 304                                   24   4
## 305                                   31   4
## 306                                   01   4
## 307                                   07   4
## 308                                   19   4
## 309                                   21   4
## 310                                   23   4
## 311                                   11   4
## 312                                   25   4
## 313                                    3   4
## 314                                    5   4
## 315                                 mile   4
## 316                                 star   4
## 317                                   16   4
## 318                                   19   4
## 319                                   20   4
## 320                                   04   4
## 321                                   09   4
## 322                                   13   4
## 323                                   15   4
## 324                                    1   4
## 325                                    3   4
## 326                                miles   4
## 327                                    1   4
## 328                                 pair   4
## 329                                   09   4
## 330                                    4   4
## 331                               months   4
## 332                              minutes   4
## 333                                miles   4
## 334                                weeks   4
## 335                                adios   4
## 336                              adistar   4
## 337                                    3   4
## 338                                    5   4
## 339                              anymore   4
## 340                                helps   4
## 341                                  i’m   4
## 342                                makes   4
## 343                               review   4
## 344                                   tv   4
## 345                                  ceo   4
## 346                             features   4
## 347                                shoes   4
## 348                                 pair   4
## 349                                   13   4
## 350                                   00   4
## 351                                login   4
## 352                             workouts   4
## 353                               format   4
## 354                             workouts   4
## 355                                 shoe   4
## 356                                 free   4
## 357                                weeks   4
## 358                              country   4
## 359                              trainer   4
## 360                                 wear   4
## 361                                  ago   4
## 362                               record   4
## 363                                 sync   4
## 364                                    3   4
## 365                                 hill   4
## 366                           aplicación   4
## 367                                 wear   4
## 368                                  app   4
## 369                              running   4
## 370                                    6   4
## 371                               locker   4
## 372                              fitness   4
## 373                                 love   4
## 374                                trial   4
## 375                                  air   4
## 376                               habits   4
## 377                             workouts   4
## 378                                    3   4
## 379                           completely   4
## 380                                 easy   4
## 381                              perfect   4
## 382                                    2   4
## 383                                 nike   4
## 384                                bring   4
## 385                                sense   4
## 386                             training   4
## 387                                buena   4
## 388                              doesn’t   4
## 389                                 love   4
## 390                                shoes   4
## 391                                  acg   4
## 392                                  fan   4
## 393                                 logo   4
## 394                              reports   4
## 395                                 apps   4
## 396                              premium   4
## 397                              trainer   4
## 398                                 free   4
## 399                                  ntc   4
## 400                         subscription   4
## 401                              version   4
## 402                                 plan   4
## 403                                 dive   4
## 404                                   em   4
## 405                                  app   4
## 406                              tracker   4
## 407                            community   4
## 408                                  app   4
## 409                                  pro   4
## 410                              workout   4
## 411                              reviews   4
## 412                                  app   4
## 413                               hippie   4
## 414                               height   4
## 415                                  app   4
## 416                              running   4
## 417                            motivated   4
## 418                             tracking   4
## 419                               screen   4
## 420                                clean   4
## 421                                  los   4
## 422                                 tier   4
## 423                              program   4
## 424                             programs   4
## 425                                 size   4
## 426                              charged   4
## 427                                reign   4
## 428                              tribase   4
## 429                               boosts   4
## 430                           experience   4
## 431                                  pro   4
## 432                                  run   4
## 433                              running   4
## 434                                  ups   4
## 435                                  app   4
## 436                            oversized   4
## 437                              options   4
## 438                                   04   3
## 439                                   07   3
## 440                                   18   3
## 441                                   23   3
## 442                                   26   3
## 443                                   27   3
## 444                                   28   3
## 445                                    1   3
## 446                                   13   3
## 447                                   24   3
## 448                                   09   3
## 449                                   14   3
## 450                                   16   3
## 451                                   21   3
## 452                                    4   3
## 453                                    1   3
## 454                                    3   3
## 455                                   08   3
## 456                                   17   3
## 457                                   19   3
## 458                                    4   3
## 459                                   10   3
## 460                                   17   3
## 461                                   12   3
## 462                                    4   3
## 463                                   28   3
## 464                                   29   3
## 465                                   25   3
## 466                                    3   3
## 467                                   05   3
## 468                                   06   3
## 469                                   07   3
## 470                                   20   3
## 471                                  min   3
## 472                                   08   3
## 473                                    1   3
## 474                                   10   3
## 475                                   27   3
## 476                                   06   3
## 477                                   08   3
## 478                                   28   3
## 479                                   29   3
## 480                                    5   3
## 481                                  pro   3
## 482                              minutes   3
## 483                                    3   3
## 484                                    4   3
## 485                                weeks   3
## 486                              results   3
## 487                                   07   3
## 488                                    3   3
## 489                                    4   3
## 490                                    1   3
## 491                                    3   3
## 492                                    1   3
## 493                                    1   3
## 494                                    3   3
## 495                                    1   3
## 496                                    1   3
## 497                                    2   3
## 498                                    3   3
## 499                                    1   3
## 500                                    4   3
## 501                                 days   3
## 502                                times   3
## 503                                    3   3
## 504                              degrees   3
## 505                                   50   3
## 506                                   10   3
## 507                                    8   3
## 508                                 cuts   3
## 509                                 free   3
## 510                                 dark   3
## 511                              spotify   3
## 512                                asics   3
## 513                              workout   3
## 514                                maxes   3
## 515                                 zoom   3
## 516                              amazing   3
## 517                               review   3
## 518                                video   3
## 519                                  ads   3
## 520                                   es   3
## 521                              awesome   3
## 522                                  bad   3
## 523                                can’t   3
## 524                                   de   3
## 525                                 easy   3
## 526                                feels   3
## 527                               helped   3
## 528                            literally   3
## 529                            regularly   3
## 530                                 stop   3
## 531                               tracks   3
## 532                               update   3
## 533                                 user   3
## 534                            yesterday   3
## 535                                 i’ve   3
## 536                              tribase   3
## 537                            announces   3
## 538                             launches   3
## 539                                   q3   3
## 540                                   ua   3
## 541                             workouts   3
## 542                              sanders   3
## 543                                color   3
## 544                                laces   3
## 545                                socks   3
## 546                                suede   3
## 547                            awareness   3
## 548                                   1s   3
## 549                            primitive   3
## 550                                    2   3
## 551                                 mine   3
## 552                                shoes   3
## 553                           aplicación   3
## 554                                  app   3
## 555                                  log   3
## 556                             register   3
## 557                  accessorieseveryone   3
## 558                                plank   3
## 559                           structured   3
## 560                                  led   3
## 561                              changed   3
## 562                              support   3
## 563                               shirts   3
## 564                            lockdowns   3
## 565                              routine   3
## 566                                 wear   3
## 567                               adidas   3
## 568                                   tu   3
## 569                              display   3
## 570                               matter   3
## 571                                 shit   3
## 572                                 feel   3
## 573                                 love   3
## 574                                    2   3
## 575                                  cop   3
## 576                               eleven   3
## 577                              address   3
## 578                                 code   3
## 579                             messages   3
## 580                              parsing   3
## 581                                socks   3
## 582                                 time   3
## 583                             routines   3
## 584                                 i’ve   3
## 585                              forward   3
## 586                                shoes   3
## 587                              sneaker   3
## 588                             workouts   3
## 589                              manager   3
## 590                                times   3
## 591                                 line   3
## 592                                  pal   3
## 593                             tracking   3
## 594                                 knit   3
## 595                                 it’s   3
## 596                              pebbles   3
## 597                              revenue   3
## 598                               yeshua   3
## 599                                 shoe   3
## 600                                 lens   3
## 601                             tracking   3
## 602                                 toes   3
## 603                                 mile   3
## 604                                 time   3
## 605                                times   3
## 606                                 yeah   3
## 607                                 yeah   3
## 608                                 jake   3
## 609                                start   3
## 610                               spirit   3
## 611                              variety   3
## 612                                elite   3
## 613                                   16   3
## 614                                  app   3
## 615                                   16   3
## 616                           absolutely   3
## 617                             annoying   3
## 618                                 hard   3
## 619                                 time   3
## 620                             grateful   3
## 621                                loved   3
## 622                              noticed   3
## 623                               sports   3
## 624                               holder   3
## 625                              donahoe   3
## 626                                    1   3
## 627                                   40   3
## 628                                brand   3
## 629                                    3   3
## 630                                plank   3
## 631                                mejor   3
## 632                                 ning   3
## 633                                https   3
## 634                               screen   3
## 635                               failed   3
## 636                                  fit   3
## 637                                 mine   3
## 638                                  ntc   3
## 639                             produced   3
## 640                                  90s   3
## 641                                field   3
## 642                               fleece   3
## 643                                    4   3
## 644                                    5   3
## 645                                    9   3
## 646                                  pay   3
## 647                                 mile   3
## 648                               retail   3
## 649                                goals   3
## 650                                pairs   3
## 651                                 bien   3
## 652                               team's   3
## 653                                won’t   3
## 654                                   95   3
## 655                               review   3
## 656                                  ceo   3
## 657                                  dri   3
## 658                                 free   3
## 659                             newsroom   3
## 660                              pegasus   3
## 661                              workout   3
## 662                                    1   3
## 663                                 pair   3
## 664                               owners   3
## 665                                  app   3
## 666                                  app   3
## 667                               button   3
## 668                                 rate   3
## 669                                   41   3
## 670                              wearing   3
## 671                                spray   3
## 672                                goals   3
## 673                                 plan   3
## 674                                music   3
## 675                                  ups   3
## 676                                    5   3
## 677                             favorite   3
## 678                                 cool   3
## 679                                   4s   3
## 680                                  app   3
## 681                                 rock   3
## 682                               fy2026   3
## 683                              control   3
## 684                                  day   3
## 685                                  air   3
## 686                                zones   3
## 687                             question   3
## 688                                 time   3
## 689                             upgraded   3
## 690                                laces   3
## 691                                 pair   3
## 692                                 date   3
## 693                                drops   3
## 694                                falls   3
## 695                                 data   3
## 696                                 walk   3
## 697                                    1   3
## 698                                dunks   3
## 699                                  185   3
## 700                                  190   3
## 701                                   10   3
## 702                               button   3
## 703                                brand   3
## 704                             reviewer   3
## 705                             rotation   3
## 706                                color   3
## 707                              workout   3
## 708                             olympics   3
## 709                           consistent   3
## 710                              reviews   3
## 711                                 line   3
## 712                              journal   3
## 713                                 yoga   3
## 714                             workouts   3
## 715                               fleece   3
## 716                                 it’s   3
## 717                                  i’m   3
## 718                                miles   3
## 719                                  app   3
## 720                                  app   3
## 721                                 apps   3
## 722                                 shoe   3
## 723                               option   3
## 724                                 runs   3
## 725                                 base   3
## 726                               adidas   3
## 727                              doesn’t   3
## 728                                 body   3
## 729                               format   3
## 730                                 shoe   3
## 731                                 nike   3
## 732                              cements   3
## 733                                laces   3
## 734                                 pair   3
## 735                             workouts   3
## 736                             partners   3
## 737                                  toe   3
## 738                                 feet   3
## 739                                 save   3
## 740                                 it’s   3
## 741                                 plan   3
## 742                               styles   3
## 743                                 i’ve   3
## 744                               adidas   3
## 745                              running   3
## 746                                 mile   2
## 747                                   02   2
## 748                                   05   2
## 749                                   09   2
## 750                                    1   2
## 751                                   10   2
## 752                                   11   2
## 753                                   16   2
## 754                                   17   2
## 755                                   29   2
## 756                                   05   2
## 757                                   08   2
## 758                                   09   2
## 759                                   11   2
## 760                                   12   2
## 761                                   27   2
## 762                                   01   2
## 763                                   02   2
## 764                                   03   2
## 765                                   04   2
## 766                                   06   2
## 767                                   28   2
## 768                                   05   2
## 769                                   06   2
## 770                                   08   2
## 771                                   10   2
## 772                                   21   2
## 773                                   28   2
## 774                                   29   2
## 775                                   03   2
## 776                                   10   2
## 777                                   21   2
## 778                                   19   2
## 779                                   21   2
## 780                                   24   2
## 781                                   29   2
## 782                                    3   2
## 783                                   30   2
## 784                                    4   2
## 785                                   21   2
## 786                                    3   2
## 787                                   08   2
## 788                                   15   2
## 789                                    2   2
## 790                                   24   2
## 791                                    4   2
## 792                                   07   2
## 793                                 edit   2
## 794                                 mile   2
## 795                                   08   2
## 796                                   16   2
## 797                                   18   2
## 798                                   21   2
## 799                                   22   2
## 800                                    4   2
## 801                                  app   2
## 802                            condition   2
## 803                                   02   2
## 804                                   03   2
## 805                                   04   2
## 806                                   05   2
## 807                                   06   2
## 808                                   07   2
## 809                                   17   2
## 810                                   22   2
## 811                                   24   2
## 812                                   29   2
## 813                                    4   2
## 814                               medium   2
## 815                                   01   2
## 816                                   03   2
## 817                                    1   2
## 818                                   11   2
## 819                                   12   2
## 820                                   18   2
## 821                                   23   2
## 822                                   24   2
## 823                                   26   2
## 824                                    3   2
## 825                                   31   2
## 826                                    4   2
## 827                               medium   2
## 828                                    3   2
## 829                                    4   2
## 830                                 days   2
## 831                                    3   2
## 832                               minute   2
## 833                                    1   2
## 834                                 2026   2
## 835                                    3   2
## 836                                    3   2
## 837                                    1   2
## 838                                    2   2
## 839                                hours   2
## 840                               months   2
## 841                                 sets   2
## 842                                    3   2
## 843                               update   2
## 844                                world   2
## 845                                    2   2
## 846                                    2   2
## 847                                    4   2
## 848                                    4   2
## 849                                    5   2
## 850                                    1   2
## 851                                    3   2
## 852                                    4   2
## 853                                    5   2
## 854                                    1   2
## 855                                  min   2
## 856                                    2   2
## 857                              flowtro   2
## 858                             workouts   2
## 859                                hours   2
## 860                               adidas   2
## 861                                    5   2
## 862                                  min   2
## 863                               minute   2
## 864                              minutes   2
## 865                                pairs   2
## 866                                times   2
## 867                                bucks   2
## 868                                 mile   2
## 869                                 pack   2
## 870                                pairs   2
## 871                                   10   2
## 872                                bucks   2
## 873                                 nike   2
## 874                                    û   2
## 875                                  90m   2
## 876                                digit   2
## 877                                 nike   2
## 878                                   12   2
## 879                                 nike   2
## 880                                miles   2
## 881                        restructuring   2
## 882                                  air   2
## 883                             uptempos   2
## 884                              amazing   2
## 885                               paused   2
## 886                              partner   2
## 887                                 easy   2
## 888                              running   2
## 889                           statistics   2
## 890                               torres   2
## 891                                 data   2
## 892                              tracker   2
## 893                             distance   2
## 894                              friends   2
## 895                               photos   2
## 896                              support   2
## 897                              dropset   2
## 898                                found   2
## 899                                 i’ve   2
## 900                                 nike   2
## 901                                  nmd   2
## 902                            originals   2
## 903                             products   2
## 904                            purchased   2
## 905                                samba   2
## 906                                sells   2
## 907                                socks   2
## 908                                stock   2
## 909                            supernova   2
## 910                           superstars   2
## 911                              trainer   2
## 912                             training   2
## 913                                ultra   2
## 914                              vintage   2
## 915                                  byd   2
## 916                                 club   2
## 917                             features   2
## 918                               walked   2
## 919                                 nike   2
## 920                               jordan   2
## 921                                techs   2
## 922                                 unit   2
## 923                              content   2
## 924                             trainers   2
## 925                              workout   2
## 926                             workouts   2
## 927                             declines   2
## 928                                    6   2
## 929                                 i’ve   2
## 930                                  muy   2
## 931                                 para   2
## 932                               adidas   2
## 933                                crash   2
## 934                                daily   2
## 935                                don’t   2
## 936                               easily   2
## 937                            excelente   2
## 938                             glitches   2
## 939                                 icon   2
## 940                                isn’t   2
## 941                                   kg   2
## 942                                   la   2
## 943                                 nice   2
## 944                                 nike   2
## 945                                 paid   2
## 946                                 para   2
## 947                              perfect   2
## 948                             requires   2
## 949                                  run   2
## 950                             settings   2
## 951                                shame   2
## 952                                start   2
## 953                                stops   2
## 954                                takes   2
## 955                                   te   2
## 956                              there’s   2
## 957                                 wont   2
## 958                             workouts   2
## 959                                 it’s   2
## 960                                don’t   2
## 961                            including   2
## 962                              ability   2
## 963                                  app   2
## 964                                board   2
## 965                            increases   2
## 966                             leggings   2
## 967                                 logo   2
## 968                                stock   2
## 969                                warns   2
## 970                                  map   2
## 971                            novablast   2
## 972                                 cues   2
## 973                               brands   2
## 974                                heart   2
## 975                             redesign   2
## 976                                  app   2
## 977                                batch   2
## 978                                 boys   2
## 979                                shoes   2
## 980                                reign   2
## 981                        functionality   2
## 982                                makes   2
## 983                               player   2
## 984                                 shoe   2
## 985                                 life   2
## 986                              weather   2
## 987                             friendly   2
## 988                             workouts   2
## 989                               bubble   2
## 990                             downfall   2
## 991                         disappointed   2
## 992                            expensive   2
## 993                                short   2
## 994                                tight   2
## 995                               gulden   2
## 996                              bottoms   2
## 997                             colorway   2
## 998                               screen   2
## 999                           sweatshirt   2
## 1000                               white   2
## 1001                                page   2
## 1002                               white   2
## 1003                               color   2
## 1004                               white   2
## 1005                            workouts   2
## 1006                                  1s   2
## 1007                              adidas   2
## 1008                              adidas   2
## 1009                                 12s   2
## 1010                               socks   2
## 1011                                 sbs   2
## 1012                             uniform   2
## 1013                                link   2
## 1014                               links   2
## 1015                             version   2
## 1016                              adidas   2
## 1017                            columbia   2
## 1018                                  em   2
## 1019                               shoes   2
## 1020                              raises   2
## 1021                              angles   2
## 1022                              access   2
## 1023                                join   2
## 1024                       thefernandocz   2
## 1025                              plated   2
## 1026                             package   2
## 1027                             thunder   2
## 1028                                john   2
## 1029                            language   2
## 1030                             fitness   2
## 1031                                   6   2
## 1032                                  af   2
## 1033                               check   2
## 1034                                dust   2
## 1035                              record   2
## 1036                               style   2
## 1037                                shoe   2
## 1038                                 asf   2
## 1039                                 hoe   2
## 1040                                pair   2
## 1041                                nike   2
## 1042                                june   2
## 1043                            feedback   2
## 1044                              adidas   2
## 1045                               combo   2
## 1046                               waves   2
## 1047                               socks   2
## 1048                                 fit   2
## 1049                            sneakers   2
## 1050                                fits   2
## 1051                               table   2
## 1052                               march   2
## 1053                           marathons   2
## 1054                             stopped   2
## 1055                             useless   2
## 1056                           companion   2
## 1057                             updates   2
## 1058                                shoe   2
## 1059                              adidas   2
## 1060                               money   2
## 1061                               bring   2
## 1062                                sign   2
## 1063                                days   2
## 1064                              months   2
## 1065                               sales   2
## 1066                                sail   2
## 1067                             protect   2
## 1068                               socks   2
## 1069                                 fit   2
## 1070                               shoes   2
## 1071                             neutral   2
## 1072                            activity   2
## 1073                                  12   2
## 1074                                   4   2
## 1075                                   8   2
## 1076                               shoes   2
## 1077                                base   2
## 1078                                   4   2
## 1079                               todos   2
## 1080                                dose   2
## 1081                            training   2
## 1082                            colorway   2
## 1083                               green   2
## 1084                               check   2
## 1085                        availability   2
## 1086                               total   2
## 1087                                   1   2
## 1088                            everyday   2
## 1089                                free   2
## 1090                                 app   2
## 1091                                bugs   2
## 1092                             breaker   2
## 1093                                 ago   2
## 1094                                 app   2
## 1095                           recommend   2
## 1096                             weather   2
## 1097                                 app   2
## 1098                               khaki   2
## 1099                                  de   2
## 1100                               count   2
## 1101                             realize   2
## 1102                              record   2
## 1103                                hard   2
## 1104                                code   2
## 1105                           correctly   2
## 1106                                 run   2
## 1107                               count   2
## 1108                               match   2
## 1109                                play   2
## 1110                           recognize   2
## 1111                               track   2
## 1112                               shoes   2
## 1113                               count   2
## 1114                                stop   2
## 1115                            colorway   2
## 1116                              option   2
## 1117                                pair   2
## 1118                            strategy   2
## 1119                                 app   2
## 1120                                 low   2
## 1121                              access   2
## 1122                                runs   2
## 1123                            exercise   2
## 1124                                 app   2
## 1125                               ritmo   2
## 1126                                   2   2
## 1127                                  2s   2
## 1128                             athlete   2
## 1129                                 lol   2
## 1130                               space   2
## 1131                             flights   2
## 1132                                 app   2
## 1133                                it’s   2
## 1134                               shoes   2
## 1135                          aplicación   2
## 1136                          aplicativo   2
## 1137                                 app   2
## 1138                             fitness   2
## 1139                            programs   2
## 1140                              access   2
## 1141                               class   2
## 1142                            programs   2
## 1143                            customer   2
## 1144                             helpful   2
## 1145                               socks   2
## 1146                               short   2
## 1147                                 app   2
## 1148                                 air   2
## 1149                               color   2
## 1150                                pair   2
## 1151                               pairs   2
## 1152                              sports   2
## 1153                            training   2
## 1154                                i’ve   2
## 1155                              pretty   2
## 1156                          constantly   2
## 1157                             version   2
## 1158                                 cao   2
## 1159                             crossed   2
## 1160                                 adv   2
## 1161                                ipad   2
## 1162                              length   2
## 1163                           perfectly   2
## 1164                                 app   2
## 1165                              charge   2
## 1166                         integration   2
## 1167                           companion   2
## 1168                              health   2
## 1169                              levels   2
## 1170                            training   2
## 1171                       fantastically   2
## 1172                                club   2
## 1173                                   3   2
## 1174                             climbed   2
## 1175                               flops   2
## 1176                               knits   2
## 1177                             runners   2
## 1178                                love   2
## 1179                             january   2
## 1180                              doctor   2
## 1181                                  1s   2
## 1182                                 i’m   2
## 1183                                  45   2
## 1184                                gump   2
## 1185                               gumps   2
## 1186                            password   2
## 1187                                 ceo   2
## 1188                             content   2
## 1189                              highly   2
## 1190                               makes   2
## 1191                            resource   2
## 1192                                foam   2
## 1193                           interface   2
## 1194                                user   2
## 1195                                nike   2
## 1196                                 app   2
## 1197                                loss   2
## 1198                                   1   2
## 1199                          forerunner   2
## 1200                             markers   2
## 1201                               users   2
## 1202                            oriented   2
## 1203                             setting   2
## 1204                                shoe   2
## 1205                               bless   2
## 1206                               shoes   2
## 1207                               shoes   2
## 1208                                 cop   2
## 1209                                grab   2
## 1210                                 pay   2
## 1211                                rock   2
## 1212                                 tex   2
## 1213                                   2   2
## 1214                             feature   2
## 1215                            verified   2
## 1216                                 por   2
## 1217                               ayuda   2
## 1218                                 bay   2
## 1219                                pair   2
## 1220                            outdated   2
## 1221                                 cut   2
## 1222                             workout   2
## 1223                            workouts   2
## 1224                          membership   2
## 1225                            workouts   2
## 1226                                hour   2
## 1227                           marathons   2
## 1228                               price   2
## 1229                            spezials   2
## 1230                              losing   2
## 1231                             figured   2
## 1232                                 app   2
## 1233                           lifestyle   2
## 1234                              armour   2
## 1235                             runners   2
## 1236                                 nah   2
## 1237                                push   2
## 1238                       pantspantsmen   2
## 1239                         recommended   2
## 1240                                yoga   2
## 1241                                line   2
## 1242                              screen   2
## 1243                             workout   2
## 1244                              review   2
## 1245                                love   2
## 1246                               shoes   2
## 1247                             monitor   2
## 1248                      www.rakuten.ca   2
## 1249                           selection   2
## 1250                               slide   2
## 1251                                step   2
## 1252                                shit   2
## 1253                              what’s   2
## 1254                             jealous   2
## 1255                            distance   2
## 1256                            resource   2
## 1257                             variety   2
## 1258                             helpful   2
## 1259                               video   2
## 1260                           removable   2
## 1261                                runs   2
## 1262                            versions   2
## 1263                              format   2
## 1264                              screen   2
## 1265                             support   2
## 1266                                  12   2
## 1267                                   8   2
## 1268                                 app   2
## 1269                                9.99   2
## 1270                         frustrating   2
## 1271                          impossible   2
## 1272                               super   2
## 1273                              fluids   2
## 1274                                 pay   2
## 1275                            confused   2
## 1276                           extremely   2
## 1277                               happy   2
## 1278                              loving   2
## 1279                             missing   2
## 1280                            slightly   2
## 1281                           traveling   2
## 1282                              unable   2
## 1283                             deleted   2
## 1284                                 ran   2
## 1285                                nike   2
## 1286                          challenges   2
## 1287                                   2   2
## 1288                            november   2
## 1289                                   4   2
## 1290                                   6   2
## 1291                                west   2
## 1292                             feature   2
## 1293                                nike   2
## 1294                               sizes   2
## 1295                                 run   2
## 1296                                   4   2
## 1297                                  1s   2
## 1298                                 app   2
## 1299                              semana   2
## 1300                                view   2
## 1301                        estadísticas   2
## 1302                               board   2
## 1303                                foot   2
## 1304                            injuries   2
## 1305                                i’ve   2
## 1306                                 god   2
## 1307                               shoes   2
## 1308                                grey   2
## 1309                                shoe   2
## 1310                             sneaker   2
## 1311                               saved   2
## 1312                               check   2
## 1313                                  de   2
## 1314                             library   2
## 1315                                shop   2
## 1316                               can’t   2
## 1317                              adidas   2
## 1318                                nice   2
## 1319                            detalles   2
## 1320                                días   2
## 1321                          motivation   2
## 1322                               child   2
## 1323                            watching   2
## 1324                                mine   2
## 1325                                 key   2
## 1326                                body   2
## 1327                                   3   2
## 1328                             women's   2
## 1329                              reason   2
## 1330                           headlines   2
## 1331                               issue   2
## 1332                            tracking   2
## 1333                                 add   2
## 1334                               added   2
## 1335                              select   2
## 1336                                 run   2
## 1337                                 app   2
## 1338                               check   2
## 1339                                2026   2
## 1340                               feels   2
## 1341                                 270   2
## 1342                                  90   2
## 1343                                 95s   2
## 1344                               crocs   2
## 1345                             cushion   2
## 1346                           elevation   2
## 1347                                 fan   2
## 1348                            distance   2
## 1349                                call   2
## 1350                               curry   2
## 1351                                thee   2
## 1352                            heatgear   2
## 1353                                   6   2
## 1354                                   7   2
## 1355                               mejor   2
## 1356                               recon   2
## 1357                             workout   2
## 1358                                pace   2
## 1359                              splits   2
## 1360                                week   2
## 1361                                 app   2
## 1362                             tracker   2
## 1363                                i’ve   2
## 1364                                love   2
## 1365                                time   2
## 1366                                mile   2
## 1367                            workouts   2
## 1368                               share   2
## 1369                       imperfections   2
## 1370                            workouts   2
## 1371                                 neo   2
## 1372                               necks   2
## 1373                           programme   2
## 1374                                 fee   2
## 1375                                fool   2
## 1376                              washes   2
## 1377                            workouts   2
## 1378                                 app   2
## 1379                              option   2
## 1380                            playlist   2
## 1381                            completa   2
## 1382                                útil   2
## 1383                            completa   2
## 1384                                  x4   2
## 1385                                feet   2
## 1386                                team   2
## 1387                               bring   2
## 1388                               error   2
## 1389                                ipad   2
## 1390                               login   2
## 1391                                sign   2
## 1392                              unable   2
## 1393                               green   2
## 1394                                nike   2
## 1395                              yellow   2
## 1396                              income   2
## 1397                                loss   2
## 1398                             amazing   2
## 1399                               basis   2
## 1400                               bring   2
## 1401                               can’t   2
## 1402                                pair   2
## 1403                                pick   2
## 1404                             quality   2
## 1405                                mode   2
## 1406                                  af   2
## 1407                              begins   2
## 1408                             bespoke   2
## 1409                               brand   2
## 1410                          collection   2
## 1411                                dunk   2
## 1412                            everyday   2
## 1413                            launches   2
## 1414                                nike   2
## 1415                              outlet   2
## 1416                                  qc   2
## 1417                             quality   2
## 1418                                 rin   2
## 1419                                shoe   2
## 1420                          sportswear   2
## 1421                               wears   2
## 1422                            workouts   2
## 1423                                 ive   2
## 1424                                size   2
## 1425                               width   2
## 1426                              issues   2
## 1427                                nike   2
## 1428                                   1   2
## 1429                                nike   2
## 1430                                  1s   2
## 1431                           colorways   2
## 1432                                 cut   2
## 1433                                neon   2
## 1434                               sales   2
## 1435                                 box   2
## 1436                                walk   2
## 1437                                  ua   2
## 1438                            calories   2
## 1439                                nike   2
## 1440                        subscription   2
## 1441                                 ver   2
## 1442                                2024   2
## 1443                            response   2
## 1444                               reset   2
## 1445                                   3   2
## 1446                                   5   2
## 1447                               frisk   2
## 1448                              resale   2
## 1449                                wall   2
## 1450                              resale   2
## 1451                             dispute   2
## 1452                                  39   2
## 1453                              paying   2
## 1454                               slept   2
## 1455                            standing   2
## 1456                                golf   2
## 1457                             workout   2
## 1458                                fine   2
## 1459                           excellent   2
## 1460                             running   2
## 1461                             doesn’t   2
## 1462                             touches   2
## 1463                            trainers   2
## 1464                            workouts   2
## 1465                                 app   2
## 1466                             battery   2
## 1467                             fitness   2
## 1468                                mine   2
## 1469                                 box   2
## 1470                                bull   2
## 1471                               shoes   2
## 1472                               white   2
## 1473                               shoes   2
## 1474                             existir   2
## 1475                                   4   2
## 1476                          absolutely   2
## 1477                                 app   2
## 1478                               daily   2
## 1479                           fantastic   2
## 1480                                 fix   2
## 1481                                game   2
## 1482                                it’s   2
## 1483                                life   2
## 1484                               music   2
## 1485                                 muy   2
## 1486                         outstanding   2
## 1487                             program   2
## 1488                             reviews   2
## 1489                           wonderful   2
## 1490                                  не   2
## 1491                            pandemic   2
## 1492                             account   2
## 1493                               alert   2
## 1494                                easy   2
## 1495                                nice   2
## 1496                             quickly   2
## 1497                              models   2
## 1498                            releases   2
## 1499                                 tag   2
## 1500                              savage   2
## 1501                               shoes   2
## 1502                                 evo   2
## 1503                               lines   2
## 1504                                rico   2
## 1505                               price   2
## 1506                             revenue   2
## 1507                             revenue   2
## 1508                               issue   2
## 1509                             they’re   2
## 1510                              videos   2
## 1511                            warranty   2
## 1512                            workouts   2
## 1513                                2021   2
## 1514                                mile   2
## 1515                            delivery   2
## 1516                           predictor   2
## 1517                             monitor   2
## 1518                             culture   2
## 1519                                life   2
## 1520                             updates   2
## 1521                              buying   2
## 1522                            colorway   2
## 1523                                data   2
## 1524                                nano   2
## 1525                                size   2
## 1526                                   4   2
## 1527                                fy26   2
## 1528                                 ios   2
## 1529                              prices   2
## 1530                                code   2
## 1531                              raises   2
## 1532                                   3   2
## 1533                               price   2
## 1534                               grows   2
## 1535                                 ben   2
## 1536                                i’ve   2
## 1537                                jake   2
## 1538                                love   2
## 1539                                 490   2
## 1540                               total   2
## 1541                                   2   2
## 1542                             outsole   2
## 1543                                sole   2
## 1544                                   5   2
## 1545                            distance   2
## 1546                             doesn’t   2
## 1547                                i’ve   2
## 1548                               makes   2
## 1549                               stats   2
## 1550                            straight   2
## 1551                                true   2
## 1552                            athletes   2
## 1553                              biking   2
## 1554                                club   2
## 1555                           companion   2
## 1556                                gear   2
## 1557                                 hat   2
## 1558                             history   2
## 1559                                love   2
## 1560                             running   2
## 1561                               score   2
## 1562                               check   2
## 1563                               don’t   2
## 1564                                  de   2
## 1565                                 xlg   2
## 1566                                  11   2
## 1567                                  13   2
## 1568                                 191   2
## 1569                                 194   2
## 1570                                 201   2
## 1571                                 215   2
## 1572                                  11   2
## 1573                             cleaner   2
## 1574                           companies   2
## 1575                                 lol   2
## 1576                              review   2
## 1577                              adidas   2
## 1578                                aren   2
## 1579                                 fit   2
## 1580                                 lol   2
## 1581                               loose   2
## 1582                                nike   2
## 1583                          shoeswomen   2
## 1584                                  ua   2
## 1585                            workouts   2
## 1586                                shoe   2
## 1587                               shoes   2
## 1588                                pair   2
## 1589                                shoe   2
## 1590                                10.5   2
## 1591                                11.5   2
## 1592                                  14   2
## 1593                                 cuz   2
## 1594                          challenges   2
## 1595                             version   2
## 1596                                wide   2
## 1597                               wider   2
## 1598                                move   2
## 1599                             culture   2
## 1600                                game   2
## 1601                                head   2
## 1602                                nike   2
## 1603                                drop   2
## 1604                            workouts   2
## 1605                               loves   2
## 1606                            workouts   2
## 1607                                 220   2
## 1608                                   3   2
## 1609                                   4   2
## 1610                              screen   2
## 1611                                time   2
## 1612                            athletes   2
## 1613                            specific   2
## 1614                                 app   2
## 1615                                mask   2
## 1616                               shoes   2
## 1617                                rich   2
## 1618                              option   2
## 1619                                 gel   2
## 1620                                link   2
## 1621                            climbing   2
## 1622                            workouts   2
## 1623                               smith   2
## 1624                              review   2
## 1625                             running   2
## 1626                            crashing   2
## 1627                         accountable   2
## 1628                                free   2
## 1629                                 toe   2
## 1630                                gear   2
## 1631                            linnartz   2
## 1632                                shop   2
## 1633                            counting   2
## 1634                            movement   2
## 1635                               based   2
## 1636                               happy   2
## 1637                             helpful   2
## 1638                         informative   2
## 1639                             limited   2
## 1640                       uncomfortable   2
## 1641                              series   2
## 1642                               chain   2
## 1643                             anymore   2
## 1644                               pants   2
## 1645                               coord   2
## 1646                                  da   2
## 1647                              jersey   2
## 1648                              issues   2
## 1649                                runs   2
## 1650                            messages   2
## 1651                            stallion   2
## 1652                               socks   2
## 1653                                code   2
## 1654                                pace   2
## 1655                              period   2
## 1656                            workouts   2
## 1657                                maxx   2
## 1658                                 las   2
## 1659                                drop   2
## 1660                               touch   2
## 1661                                   5   2
## 1662                               shoes   2
## 1663                            distance   2
## 1664                               posts   2
## 1665                             reviews   2
## 1666                                time   2
## 1667                               agree   2
## 1668                             useless   2
## 1669                            activity   2
## 1670                            distance   2
## 1671                                love   2
## 1672                                runs   2
## 1673                                info   2
## 1674                             running   2
## 1675                             workout   2
## 1676                               white   2
## 1677                                ruta   2
## 1678                            velociti   2
## 1679                              design   2
## 1680                          aplicación   2
## 1681                                gran   2
## 1682                                 app   2
## 1683                                i’ve   2
## 1684                                 max   2
## 1685                              bought   2
## 1686                               heard   2
## 1687                                   1   2
## 1688                                   5   2
## 1689                                it’s   2
## 1690                                i’ve   2
## 1691                           mentality   2
## 1692                                 ben   2
## 1693                             freezes   2
## 1694                               stuff   2
## 1695                               coach   2
## 1696                                 18s   2
## 1697                             premium   2
## 1698                                bike   2
## 1699                              biking   2
## 1700                             program   2
## 1701                             doesn’t   2
## 1702                                  em   2
## 1703                                hoka   2
## 1704                                nike   2
## 1705                                size   2
## 1706                               socks   2
## 1707                               pants   2
## 1708                               socks   2
## 1709                           resistant   2
## 1710                                 ago   2
## 1711                                 src   2
## 1712                                nike   2
## 1713                               shoes   2
## 1714                               socks   2
## 1715                               space   2
## 1716                             thunder   2
## 1717                               style   2
## 1718                               range   2
## 1719                             variety   2
## 1720                                grey   2
## 1721                                 dri   2
## 1722                               shoes   2
## 1723                               sizes   2
## 1724                                 app   2
## 1725                                 day   2
## 1726                                play   2
## 1727                             receive   2
## 1728                                stop   2
## 1729                                  em   2
## 1730                             buddies   2
## 1731                                 i’m   2
## 1732                             journal   2
## 1733                             program   2
## 1734                            programs   2
## 1735                             routine   2
## 1736                            routines   2
## 1737                             session   2
## 1738                           depending   2
## 1739                            distance   2
## 1740                               don’t   2
## 1741                                it’s   2
## 1742                            programs   2
## 1743                            workouts   2
## 1744                              online   2
## 1745                                  em   2
## 1746                                 app   2
## 1747                             reviews   2
## 1748                          collection   2
## 1749                         partnership   2
## 1750                              slides   2
## 1751                            mobility   2
## 1752                            strength   2
## 1753                             workout   2
## 1754                            comments   2
## 1755                            training   2
## 1756                             reached   2
## 1757                                   2   2
## 1758                                 air   2
## 1759                              flight   2
## 1760                                  gp   2
## 1761                               foams   2
## 1762                                   û   2
## 1763                                   ü   2
## 1764                                   ý   2
## 1765                                   þ   2
## 1766                              paralı   2
## 1767                                   ª   2
## 1768                                могу   2
## 1769                            activity   1
## 1770                                heel   1
## 1771                                  ob   1
## 1772                               stars   1
## 1773                               miles   1
## 1774                               miles   1
## 1775                               miles   1
## 1776                                size   1
## 1777                               miles   1
## 1778                               miles   1
## 1779                                  mi   1
## 1780                                grey   1
## 1781                                 250   1
## 1782                                  01   1
## 1783                                  03   1
## 1784                                  08   1
## 1785                                  12   1
## 1786                                  13   1
## 1787                                  15   1
## 1788                                  22   1
## 1789                                  25   1
## 1790                                   4   1
## 1791                                  02   1
## 1792                                  04   1
## 1793                                  06   1
## 1794                                  16   1
## 1795                                  17   1
## 1796                                   2   1
## 1797                                  20   1
## 1798                                  25   1
## 1799                                  28   1
## 1800                                  07   1
## 1801                                   1   1
## 1802                                  12   1
## 1803                                  13   1
## 1804                                  15   1
## 1805                                  18   1
## 1806                                  24   1
## 1807                                  30   1
## 1808                                  03   1
## 1809                                  04   1
## 1810                                  09   1
## 1811                                  11   1
## 1812                                  12   1
## 1813                                  14   1
## 1814                                1512   1
## 1815                                  16   1
## 1816                                  19   1
## 1817                                   2   1
## 1818                                  23   1
## 1819                                   4   1
## 1820                                  07   1
## 1821                                  09   1
## 1822                                   2   1
## 1823                                  20   1
## 1824                                  22   1
## 1825                                  27   1
## 1826                                  28   1
## 1827                                   3   1
## 1828                                  31   1
## 1829                               4.277   1
## 1830                                 868   1
## 1831                                  02   1
## 1832                                  05   1
## 1833                                  06   1
## 1834                                  07   1
## 1835                                  09   1
## 1836                                  11   1
## 1837                                  12   1
## 1838                                  13   1
## 1839                                  15   1
## 1840                                   2   1
## 1841                                  20   1
## 1842                                  22   1
## 1843                                  23   1
## 1844                                  26   1
## 1845                                  02   1
## 1846                                  09   1
## 1847                                1343   1
## 1848                                  14   1
## 1849                                  16   1
## 1850                                  18   1
## 1851                                  20   1
## 1852                                  23   1
## 1853                                  24   1
## 1854                                  25   1
## 1855                                  27   1
## 1856                                  31   1
## 1857                                   4   1
## 1858                              easyon   1
## 1859                                  01   1
## 1860                                  02   1
## 1861                                  04   1
## 1862                                  05   1
## 1863                                  07   1
## 1864                                   1   1
## 1865                                  10   1
## 1866                                  11   1
## 1867                                  14   1
## 1868                                  15   1
## 1869                                  16   1
## 1870                                  18   1
## 1871                                   2   1
## 1872                                  21   1
## 1873                                  25   1
## 1874                                  27   1
## 1875                                  28   1
## 1876                                  29   1
## 1877                                   3   1
## 1878                                  31   1
## 1879                                  04   1
## 1880                                  05   1
## 1881                                  06   1
## 1882                                  07   1
## 1883                                  08   1
## 1884                                  11   1
## 1885                                  12   1
## 1886                                  13   1
## 1887                                  18   1
## 1888                                  22   1
## 1889                                  23   1
## 1890                                  27   1
## 1891                                  30   1
## 1892                                1775   1
## 1893                                1939   1
## 1894                                2026   1
## 1895                                   6   1
## 1896                                 774   1
## 1897                                 776   1
## 1898                                 812   1
## 1899                                 add   1
## 1900                                 am1   1
## 1901                                 app   1
## 1902                                 bad   1
## 1903                               black   1
## 1904                               brand   1
## 1905                              button   1
## 1906                                 ceo   1
## 1907                               color   1
## 1908                            downtown   1
## 1909                             elliott   1
## 1910                            handball   1
## 1911                                hour   1
## 1912                                imma   1
## 1913                                love   1
## 1914                                 low   1
## 1915                             million   1
## 1916                                 min   1
## 1917                              minute   1
## 1918                                 ntc   1
## 1919                                  og   1
## 1920                                 ogs   1
## 1921                                pair   1
## 1922                                pick   1
## 1923                                 ply   1
## 1924                                 red   1
## 1925                              season   1
## 1926                             session   1
## 1927                                  ua   1
## 1928                                 zna   1
## 1929                           exercises   1
## 1930                                mile   1
## 1931                              yeezys   1
## 1932                                 job   1
## 1933                               miles   1
## 1934                               stuff   1
## 1935                                emea   1
## 1936                               speed   1
## 1937                             billion   1
## 1938                                  gb   1
## 1939                               north   1
## 1940                                 ceo   1
## 1941                             revenue   1
## 1942                               hours   1
## 1943                               miles   1
## 1944                                 ceo   1
## 1945                               north   1
## 1946                             million   1
## 1947                                mile   1
## 1948                               miles   1
## 1949                                00am   1
## 1950                                  01   1
## 1951                                  02   1
## 1952                                  04   1
## 1953                                 104   1
## 1954                                1049   1
## 1955                                  11   1
## 1956                                  12   1
## 1957                                  13   1
## 1958                                  15   1
## 1959                                 150   1
## 1960                                1628   1
## 1961                                  19   1
## 1962                                   2   1
## 1963                                2026   1
## 1964                                  24   1
## 1965                                  25   1
## 1966                                  27   1
## 1967                                  28   1
## 1968                                  29   1
## 1969                                   3   1
## 1970                                  45   1
## 1971                              adidas   1
## 1972                                asia   1
## 1973                                boys   1
## 1974                                cash   1
## 1975                             courses   1
## 1976                                 day   1
## 1977                                emea   1
## 1978                                  en   1
## 1979                                free   1
## 1980                               hours   1
## 1981                                i’ve   1
## 1982                               legit   1
## 1983                                mile   1
## 1984                               miles   1
## 1985                              millas   1
## 1986                                mins   1
## 1987                                 mph   1
## 1988                              newbie   1
## 1989                               pairs   1
## 1990                              pounds   1
## 1991                               stars   1
## 1992                             waiting   1
## 1993                              washes   1
## 1994                                  yr   1
## 1995                           cloudflow   1
## 1996                         disappeared   1
## 1997                               reign   1
## 1998                                 wtf   1
## 1999                                   1   1
## 2000                                  10   1
## 2001                                 120   1
## 2002                                1790   1
## 2003                                2025   1
## 2004                                 314   1
## 2005                                 612   1
## 2006                                 719   1
## 2007                                   9   1
## 2008                            accurate   1
## 2009                               agree   1
## 2010                               bears   1
## 2011                                 buy   1
## 2012                              dollar   1
## 2013                                  kg   1
## 2014                               legit   1
## 2015                             percent   1
## 2016                              pounds   1
## 2017                              pretty   1
## 2018                           recommend   1
## 2019                              refund   1
## 2020                             support   1
## 2021                               todas   1
## 2022                                 556   1
## 2023                            canadian   1
## 2024                               steps   1
## 2025                                damn   1
## 2026                                damn   1
## 2027                                  70   1
## 2028                                2207   1
## 2029                                200m   1
## 2030                              adidas   1
## 2031                                dash   1
## 2032                                2025   1
## 2033                                  80   1
## 2034                               sweet   1
## 2035                                hell   1
## 2036                                  85   1
## 2037                                true   1
## 2038                                nike   1
## 2039                                yeah   1
## 2040                                2025   1
## 2041                               steal   1
## 2042                                nice   1
## 2043                                yeah   1
## 2044                                 hmm   1
## 2045                                2025   1
## 2046                               haven   1
## 2047                            honestly   1
## 2048                               local   1
## 2049                                haha   1
## 2050                             swapped   1
## 2051                                 85s   1
## 2052                                2025   1
## 2053                                half   1
## 2054                                 lol   1
## 2055                                dang   1
## 2056                                2025   1
## 2057                                yeah   1
## 2058                                 bra   1
## 2059                                 ayy   1
## 2060                                2025   1
## 2061                                 toe   1
## 2062                                  80   1
## 2063                                 ayy   1
## 2064                             depends   1
## 2065                                2025   1
## 2066                                 toe   1
## 2067                               gotta   1
## 2068                                real   1
## 2069                                true   1
## 2070                                2025   1
## 2071                                damn   1
## 2072                                 v14   1
## 2073                                dang   1
## 2074                                  im   1
## 2075                                nike   1
## 2076                                  gt   1
## 2077                                hmmm   1
## 2078                                  bc   1
## 2079                                2025   1
## 2080                                nope   1
## 2081                                miss   1
## 2082                               space   1
## 2083                               space   1
## 2084                                damn   1
## 2085                               pairs   1
## 2086                               races   1
## 2087                             adizero   1
## 2088                                  09   1
## 2089                                  14   1
## 2090                                1741   1
## 2091                                  18   1
## 2092                                2026   1
## 2093                                  21   1
## 2094                                  25   1
## 2095                                  26   1
## 2096                                   3   1
## 2097                                  30   1
## 2098                                   7   1
## 2099                          gratitudes   1
## 2100                                 lol   1
## 2101                                mens   1
## 2102                                 usd   1
## 2103                           wholesale   1
## 2104                             billion   1
## 2105                                 min   1
## 2106                                2025   1
## 2107                             picking   1
## 2108                                2001   1
## 2109                                1107   1
## 2110                                oohh   1
## 2111                                1109   1
## 2112                                2025   1
## 2113                                 tie   1
## 2114                                true   1
## 2115                                2025   1
## 2116                               pants   1
## 2117                              resale   1
## 2118                                hope   1
## 2119                                yeah   1
## 2120                                2025   1
## 2121                             million   1
## 2122                               pants   1
## 2123                                1139   1
## 2124                                2025   1
## 2125                                love   1
## 2126                                nike   1
## 2127                              agreed   1
## 2128                             fucking   1
## 2129                                1361   1
## 2130                                2025   1
## 2131                                   5   1
## 2132                             classic   1
## 2133                               miles   1
## 2134                               legit   1
## 2135                                 hey   1
## 2136                                 cuz   1
## 2137                                nike   1
## 2138                                2025   1
## 2139                                   5   1
## 2140                               nikes   1
## 2141                               weird   1
## 2142                         everybodies   1
## 2143                                hope   1
## 2144                                2025   1
## 2145                              jeebus   1
## 2146                             company   1
## 2147                                yeah   1
## 2148                                2025   1
## 2149                                 lol   1
## 2150                                damn   1
## 2151                                mine   1
## 2152                                 yea   1
## 2153                                2025   1
## 2154                              vomero   1
## 2155                                send   1
## 2156                              bricks   1
## 2157                                  qc   1
## 2158                                yeah   1
## 2159                                damn   1
## 2160                                2264   1
## 2161                             11yanks   1
## 2162                                  02   1
## 2163                                  07   1
## 2164                                  14   1
## 2165                                 162   1
## 2166                              1850km   1
## 2167                                   2   1
## 2168                                  20   1
## 2169                                2026   1
## 2170                                  21   1
## 2171                                  22   1
## 2172                                  25   1
## 2173                                  30   1
## 2174                                 405   1
## 2175                                   9   1
## 2176                                amid   1
## 2177                             compare   1
## 2178                                 evo   1
## 2179                                 i’m   1
## 2180                                lmao   1
## 2181                                 lol   1
## 2182                              medium   1
## 2183                               men's   1
## 2184                                 min   1
## 2185                                mini   1
## 2186                              minute   1
## 2187                              months   1
## 2188                                 ply   1
## 2189                              pounds   1
## 2190                                 pro   1
## 2191                               raced   1
## 2192                            thousand   1
## 2193                                  ua   1
## 2194                              upside   1
## 2195                            vapormax   1
## 2196                                yall   1
## 2197                                 net   1
## 2198                                aren   1
## 2199                                1812   1
## 2200                                2025   1
## 2201                             premium   1
## 2202                              dollar   1
## 2203                          excercises   1
## 2204                            workouts   1
## 2205                             deleted   1
## 2206                                yall   1
## 2207                                 nah   1
## 2208                                2025   1
## 2209                                 cal   1
## 2210                                 btw   1
## 2211                                 lol   1
## 2212                                2025   1
## 2213                                 lol   1
## 2214                              whoosh   1
## 2215                              lmfaoo   1
## 2216                              walked   1
## 2217                                yeah   1
## 2218                             consign   1
## 2219                                2025   1
## 2220                             roadman   1
## 2221                             waiting   1
## 2222                                 yep   1
## 2223                                nike   1
## 2224                               cheap   1
## 2225                                2025   1
## 2226                                foam   1
## 2227                             amazing   1
## 2228                              adidas   1
## 2229                             laundry   1
## 2230                                2025   1
## 2231                                worn   1
## 2232                                 air   1
## 2233                                burn   1
## 2234                                dude   1
## 2235                                2025   1
## 2236                                fire   1
## 2237                                nike   1
## 2238                                 bro   1
## 2239                                 wtf   1
## 2240                                nike   1
## 2241                                2025   1
## 2242                               steps   1
## 2243                              bleach   1
## 2244                                nike   1
## 2245                                nope   1
## 2246                                glad   1
## 2247                               knock   1
## 2248                                 nah   1
## 2249                                 ive   1
## 2250                                2025   1
## 2251                                  oz   1
## 2252                                  iv   1
## 2253                                temu   1
## 2254                                2025   1
## 2255                               whoop   1
## 2256                                 buy   1
## 2257                                   ÿ   1
## 2258                                nike   1
## 2259                            everyday   1
## 2260                                mine   1
## 2261                            sltakumi   1
## 2262                                1084   1
## 2263                                 fit   1
## 2264                             they’re   1
## 2265                                  14   1
## 2266                                   2   1
## 2267                                2026   1
## 2268                                   4   1
## 2269                                años   1
## 2270                             heavily   1
## 2271                              months   1
## 2272                             release   1
## 2273                              review   1
## 2274                               shoes   1
## 2275                              sooooo   1
## 2276                             version   1
## 2277                                2025   1
## 2278                             secured   1
## 2279                                 uhh   1
## 2280                                mine   1
## 2281                            vitiligo   1
## 2282                                 bro   1
## 2283                            vitiligo   1
## 2284                                dude   1
## 2285                               cheap   1
## 2286                                2025   1
## 2287                                   ä   1
## 2288                                time   1
## 2289                              rebock   1
## 2290                                2025   1
## 2291                                  g5   1
## 2292                                   1   1
## 2293                                time   1
## 2294                                2025   1
## 2295                                time   1
## 2296                              bleach   1
## 2297                             nahhhhh   1
## 2298                                2025   1
## 2299                                 air   1
## 2300                                 118   1
## 2301                                2025   1
## 2302                             depends   1
## 2303                              people   1
## 2304                               dunks   1
## 2305                                  ma   1
## 2306                                2025   1
## 2307                            honestly   1
## 2308                                shit   1
## 2309                                2025   1
## 2310                                 fly   1
## 2311                               homie   1
## 2312                                2025   1
## 2313                                 nah   1
## 2314                                nuts   1
## 2315                                2025   1
## 2316                                 gif   1
## 2317                            honestly   1
## 2318                                smfh   1
## 2319                                 lol   1
## 2320                                1101   1
## 2321                                   2   1
## 2322                                2026   1
## 2323                                 251   1
## 2324                                 253   1
## 2325                               4.103   1
## 2326                             brother   1
## 2327                                 day   1
## 2328                              medium   1
## 2329                              months   1
## 2330                               phone   1
## 2331                                 van   1
## 2332                                2025   1
## 2333                               curry   1
## 2334                              absurd   1
## 2335                               haven   1
## 2336                               feels   1
## 2337                                2025   1
## 2338                              people   1
## 2339                             removed   1
## 2340                                2025   1
## 2341                             workers   1
## 2342                                 yea   1
## 2343                                 tns   1
## 2344                                 tns   1
## 2345                                 bro   1
## 2346                                2025   1
## 2347                                fuck   1
## 2348                                nope   1
## 2349                              retail   1
## 2350                                 ngl   1
## 2351                                  im   1
## 2352                                huge   1
## 2353                                mine   1
## 2354                              killer   1
## 2355                                2025   1
## 2356                               bouta   1
## 2357                               kinda   1
## 2358                                 wut   1
## 2359                                1444   1
## 2360                               sweet   1
## 2361                                 lol   1
## 2362                                2011   1
## 2363                                2025   1
## 2364                              messed   1
## 2365                                nice   1
## 2366                           bedazzled   1
## 2367                             awesome   1
## 2368                                nice   1
## 2369                                2025   1
## 2370                                  36   1
## 2371                                nice   1
## 2372                                   ª   1
## 2373                                2025   1
## 2374                                1471   1
## 2375                           permitted   1
## 2376                                  ja   1
## 2377                                thnx   1
## 2378                              uptown   1
## 2379                                2025   1
## 2380                                nice   1
## 2381                                2025   1
## 2382                            dropping   1
## 2383                             jealous   1
## 2384                           reporting   1
## 2385                              raffle   1
## 2386                                 yea   1
## 2387                                  00   1
## 2388                                   1   1
## 2389                                2026   1
## 2390                                  30   1
## 2391                                   4   1
## 2392                           basically   1
## 2393                               bucks   1
## 2394                              degree   1
## 2395                               hours   1
## 2396                               miles   1
## 2397                               month   1
## 2398                                pair   1
## 2399                                 y.o   1
## 2400                                2025   1
## 2401                            leggings   1
## 2402                             secured   1
## 2403                                nice   1
## 2404                               hells   1
## 2405                             packers   1
## 2406                                 air   1
## 2407                                 air   1
## 2408                             awesome   1
## 2409                                gaap   1
## 2410                                2025   1
## 2411                                late   1
## 2412                            honestly   1
## 2413                                nike   1
## 2414                                 100   1
## 2415                                damn   1
## 2416                              picked   1
## 2417                                2025   1
## 2418                                  og   1
## 2419                                2025   1
## 2420                                yeah   1
## 2421                            huarache   1
## 2422                            bringing   1
## 2423                                1539   1
## 2424                                nike   1
## 2425                                2025   1
## 2426                                 don   1
## 2427                                size   1
## 2428                                1544   1
## 2429                              twinnn   1
## 2430                              yessir   1
## 2431                                1547   1
## 2432                                1548   1
## 2433                                dope   1
## 2434                                2025   1
## 2435                          absolutely   1
## 2436                                  bc   1
## 2437                            military   1
## 2438                                1552   1
## 2439                                size   1
## 2440                               crocs   1
## 2441                               field   1
## 2442                             soldier   1
## 2443                              jordan   1
## 2444                                2025   1
## 2445                           metallics   1
## 2446                              sevens   1
## 2447                              vomero   1
## 2448                                1570   1
## 2449                                2025   1
## 2450                                 hot   1
## 2451                                1576   1
## 2452                                1577   1
## 2453                                fire   1
## 2454                                1580   1
## 2455                                2025   1
## 2456                                1581   1
## 2457                                yeah   1
## 2458                           similarly   1
## 2459                                  gt   1
## 2460                               reach   1
## 2461                                2025   1
## 2462                                 gif   1
## 2463                            rejuven8   1
## 2464                                   2   1
## 2465                              antall   1
## 2466                                 i’m   1
## 2467                              medium   1
## 2468                             minutes   1
## 2469                               total   1
## 2470                                2025   1
## 2471                               angle   1
## 2472                                2025   1
## 2473                                 lol   1
## 2474                             typical   1
## 2475                                2025   1
## 2476                                damn   1
## 2477                                paid   1
## 2478                              mental   1
## 2479                              mental   1
## 2480                                1625   1
## 2481                              people   1
## 2482                             amazing   1
## 2483                                2025   1
## 2484                           sportchek   1
## 2485                                 yup   1
## 2486                             cheaper   1
## 2487                                2025   1
## 2488                            colorway   1
## 2489                                1641   1
## 2490                             hideous   1
## 2491                                rock   1
## 2492                                1647   1
## 2493                                2025   1
## 2494                               steps   1
## 2495                             yessirr   1
## 2496                                 dnt   1
## 2497                                 yup   1
## 2498                             feeling   1
## 2499                                 100   1
## 2500                             depends   1
## 2501                                2025   1
## 2502                               2000s   1
## 2503                               tacky   1
## 2504                                  99   1
## 2505                                love   1
## 2506                                2025   1
## 2507                             knowing   1
## 2508                                nice   1
## 2509                                1677   1
## 2510                                wear   1
## 2511                                1679   1
## 2512                                2025   1
## 2513                              double   1
## 2514                            uptempos   1
## 2515                                love   1
## 2516                                 fan   1
## 2517                                hell   1
## 2518                                damn   1
## 2519                                 wow   1
## 2520                               barry   1
## 2521                                 yep   1
## 2522                                2025   1
## 2523                              dookie   1
## 2524                             secured   1
## 2525                               tough   1
## 2526                               barry   1
## 2527                                 yep   1
## 2528                               barry   1
## 2529                              vomero   1
## 2530                                1699   1
## 2531                16adimltrbstmblkwrnn   1
## 2532                               color   1
## 2533                                2026   1
## 2534                                mike   1
## 2535                                yeah   1
## 2536                                 160   1
## 2537                                2025   1
## 2538                                love   1
## 2539                               doesn   1
## 2540                                dear   1
## 2541                                2025   1
## 2542                                  bc   1
## 2543                                hope   1
## 2544                                 lol   1
## 2545                                2025   1
## 2546                                 bro   1
## 2547                                 tbh   1
## 2548                          orthopedic   1
## 2549                            matching   1
## 2550                                2025   1
## 2551                                dope   1
## 2552                               dunks   1
## 2553                              rockin   1
## 2554                              killer   1
## 2555                                2025   1
## 2556                             secured   1
## 2557                               super   1
## 2558                                  gt   1
## 2559                                rock   1
## 2560                                2025   1
## 2561                               4.203   1
## 2562                                  id   1
## 2563                                lmao   1
## 2564                               sweet   1
## 2565                            personal   1
## 2566                                2025   1
## 2567                            baaaaahh   1
## 2568                                yeah   1
## 2569                               arent   1
## 2570                                2025   1
## 2571                               enjoy   1
## 2572                                 1st   1
## 2573                              mochas   1
## 2574                               slide   1
## 2575                              people   1
## 2576                               light   1
## 2577                                2025   1
## 2578                              meters   1
## 2579                                   1   1
## 2580                                blue   1
## 2581                                blue   1
## 2582                                 lol   1
## 2583                                2025   1
## 2584                                hard   1
## 2585                                 lei   1
## 2586                                  ha   1
## 2587                                2026   1
## 2588                                2099   1
## 2589                                  34   1
## 2590                                   4   1
## 2591                             billion   1
## 2592                              months   1
## 2593                                neon   1
## 2594                               pairs   1
## 2595                             regular   1
## 2596                              vomero   1
## 2597                                2025   1
## 2598                                 deg   1
## 2599                                dude   1
## 2600                           excellent   1
## 2601                               dunks   1
## 2602                                yeah   1
## 2603                                 air   1
## 2604                                 air   1
## 2605                                2025   1
## 2606                                 air   1
## 2607                                love   1
## 2608                                2025   1
## 2609                               loved   1
## 2610                               dunks   1
## 2611                               super   1
## 2612                                yeah   1
## 2613                                damn   1
## 2614                                2025   1
## 2615                              landed   1
## 2616                                wait   1
## 2617                                yeah   1
## 2618                                2025   1
## 2619                                 265   1
## 2620                               based   1
## 2621                                yeah   1
## 2622                                fire   1
## 2623                                didn   1
## 2624                                2025   1
## 2625                                love   1
## 2626                                 lol   1
## 2627                               570km   1
## 2628                                nike   1
## 2629                                1855   1
## 2630                               throw   1
## 2631                                   1   1
## 2632                                holy   1
## 2633                                2025   1
## 2634                                nice   1
## 2635                             pirates   1
## 2636                            steelers   1
## 2637                              wattba   1
## 2638                                fire   1
## 2639                                2025   1
## 2640                               boots   1
## 2641                                 oof   1
## 2642                                1877   1
## 2643                                1878   1
## 2644                                heat   1
## 2645                                   ª   1
## 2646                                2025   1
## 2647                                fire   1
## 2648                                  ªd   1
## 2649                                fire   1
## 2650                                2025   1
## 2651                               shoes   1
## 2652                               white   1
## 2653                                 acg   1
## 2654                                1895   1
## 2655                                fire   1
## 2656                                   1   1
## 2657                                2026   1
## 2658                                   4   1
## 2659                              closes   1
## 2660                                days   1
## 2661                              forces   1
## 2662                            pandemic   1
## 2663                                  ua   1
## 2664                                 140   1
## 2665                                2025   1
## 2666                               4.344   1
## 2667                               price   1
## 2668                              resale   1
## 2669                              retail   1
## 2670                                nice   1
## 2671                                nike   1
## 2672                                1905   1
## 2673                                1906   1
## 2674                               tight   1
## 2675                                fire   1
## 2676                                  ya   1
## 2677                                2025   1
## 2678                                 yea   1
## 2679                                nike   1
## 2680                                   1   1
## 2681                              maaaan   1
## 2682                                yeah   1
## 2683                                   2   1
## 2684                                2025   1
## 2685                                damn   1
## 2686                                zoom   1
## 2687                                  1s   1
## 2688                               penny   1
## 2689                               penny   1
## 2690                                1928   1
## 2691                                  vi   1
## 2692                                  3s   1
## 2693                                2025   1
## 2694                                hope   1
## 2695                                love   1
## 2696                            contrary   1
## 2697                               penny   1
## 2698                                   1   1
## 2699                                2025   1
## 2700                                love   1
## 2701                                   1   1
## 2702                             missing   1
## 2703                             deleted   1
## 2704                               fakes   1
## 2705                            terrible   1
## 2706                          dayummmmmm   1
## 2707                                2025   1
## 2708                                guys   1
## 2709                                 muy   1
## 2710                                love   1
## 2711                                love   1
## 2712                             sploosh   1
## 2713                                 197   1
## 2714                                2025   1
## 2715                                1961   1
## 2716                                wore   1
## 2717                                pass   1
## 2718                                 100   1
## 2719                                2025   1
## 2720                                 yup   1
## 2721                                1748   1
## 2722                                 dog   1
## 2723                                nike   1
## 2724                                bruh   1
## 2725                                2025   1
## 2726                                   á   1
## 2727                                1986   1
## 2728                             version   1
## 2729                                damn   1
## 2730                                2025   1
## 2731                             deleted   1
## 2732                                damn   1
## 2733                               smart   1
## 2734                             release   1
## 2735                                damn   1
## 2736                                nice   1
## 2737                                  86   1
## 2738                                   1   1
## 2739                                1923   1
## 2740                                 397   1
## 2741                               4.394   1
## 2742                                 403   1
## 2743                                1787   1
## 2744                                   2   1
## 2745                                 2nd   1
## 2746                                time   1
## 2747                             yeezy's   1
## 2748                                1141   1
## 2749                                 157   1
## 2750                                  16   1
## 2751                                1781   1
## 2752                                1920   1
## 2753                                  20   1
## 2754                                2026   1
## 2755                                  3x   1
## 2756                               4.266   1
## 2757                                  53   1
## 2758                                  60   1
## 2759                                 788   1
## 2760                                 831   1
## 2761                                 865   1
## 2762                          absolutely   1
## 2763                          activities   1
## 2764                                 add   1
## 2765                              adidas   1
## 2766                                 air   1
## 2767                            ballpark   1
## 2768                            brothers   1
## 2769                                call   1
## 2770                               coats   1
## 2771                              colors   1
## 2772                          crustacean   1
## 2773                                days   1
## 2774                                diff   1
## 2775                              dollar   1
## 2776                                  el   1
## 2777                                 evo   1
## 2778                               fedex   1
## 2779                                 fit   1
## 2780                                game   1
## 2781                            gazelles   1
## 2782                                 gif   1
## 2783                                 hey   1
## 2784                                hope   1
## 2785                                it’s   1
## 2786                               kinds   1
## 2787                                 kms   1
## 2788                                lack   1
## 2789                                lows   1
## 2790                             minutes   1
## 2791                              mowabb   1
## 2792                                 red   1
## 2793                                runs   1
## 2794                             sliders   1
## 2795                               stars   1
## 2796                              thongs   1
## 2797                                 tnx   1
## 2798                            vaporfly   1
## 2799                              volume   1
## 2800                              washes   1
## 2801                            workouts   1
## 2802                                 yrs   1
## 2803                             billion   1
## 2804                        consistently   1
## 2805                                  20   1
## 2806                                2026   1
## 2807                                2144   1
## 2808                                   4   1
## 2809                             cheaper   1
## 2810                             dollars   1
## 2811                              growth   1
## 2812                                mark   1
## 2813                                mile   1
## 2814                               miles   1
## 2815                                 min   1
## 2816                             minutes   1
## 2817                              vision   1
## 2818                            workouts   1
## 2819                           employees   1
## 2820                                mile   1
## 2821                                2025   1
## 2822                               4.182   1
## 2823                                 cad   1
## 2824                              dollar   1
## 2825                              metros   1
## 2826                                 won   1
## 2827                               4.258   1
## 2828                                pick   1
## 2829                                love   1
## 2830                                nike   1
## 2831                                pair   1
## 2832                              corney   1
## 2833                                  15   1
## 2834                               charm   1
## 2835                            congrats   1
## 2836                               worth   1
## 2837                                400m   1
## 2838                                dash   1
## 2839                                2025   1
## 2840                                 145   1
## 2841                                2267   1
## 2842                               pairs   1
## 2843                              cuando   1
## 2844                               lucky   1
## 2845                               aaron   1
## 2846                                i’ve   1
## 2847                               nosto   1
## 2848                                  14   1
## 2849                                1696   1
## 2850                                  17   1
## 2851                                 522   1
## 2852                                hope   1
## 2853                            totaling   1
## 2854                        personalized   1
## 2855                              retros   1
## 2856                                 lol   1
## 2857                                nike   1
## 2858                             regular   1
## 2859                                2017   1
## 2860                                pair   1
## 2861                                2019   1
## 2862                               y'all   1
## 2863                                2019   1
## 2864                           surprised   1
## 2865                                till   1
## 2866                           including   1
## 2867                             onwards   1
## 2868                                tops   1
## 2869                                  ua   1
## 2870                                2025   1
## 2871                             angelus   1
## 2872                                2026   1
## 2873                               4.130   1
## 2874                                am95   1
## 2875                             anymore   1
## 2876                                nice   1
## 2877                             release   1
## 2878                             results   1
## 2879                             revenue   1
## 2880                             version   1
## 2881                             outlook   1
## 2882                               yayyy   1
## 2883                            bringing   1
## 2884                             outlook   1
## 2885                             revenue   1
## 2886                              target   1
## 2887                              adidas   1
## 2888                               games   1
## 2889                          hede’wachi   1
## 2890                                  j1   1
## 2891                                 nov   1
## 2892                        preparations   1
## 2893                              review   1
## 2894                                  26   1
## 2895                                 buy   1
## 2896                           challenge   1
## 2897                               march   1
## 2898                                 omg   1
## 2899                                pair   1
## 2900                             release   1
## 2901                       restructuring   1
## 2902                                   1   1
## 2903                                1397   1
## 2904                               4.302   1
## 2905                                 512   1
## 2906                                 buy   1
## 2907                            compiled   1
## 2908                                 fit   1
## 2909                              launch   1
## 2910                               pairs   1
## 2911                             release   1
## 2912                              you’re   1
## 2913                                2029   1
## 2914                           prospects   1
## 2915                                yeah   1
## 2916                                2025   1
## 2917                                1355   1
## 2918                              brooks   1
## 2919                               agree   1
## 2920                             removed   1
## 2921                                yeah   1
## 2922                                2025   1
## 2923                             totally   1
## 2924                              agreed   1
## 2925                                 yup   1
## 2926                            clothing   1
## 2927                                2025   1
## 2928                                 206   1
## 2929                                 215   1
## 2930                                nike   1
## 2931                              nike's   1
## 2932                               lifer   1
## 2933                              canada   1
## 2934                                2025   1
## 2935                                tldr   1
## 2936                               lifer   1
## 2937                              bought   1
## 2938                                nike   1
## 2939                                dead   1
## 2940                                2025   1
## 2941                              brooks   1
## 2942                              brooks   1
## 2943                                hard   1
## 2944                                 lol   1
## 2945                                2025   1
## 2946                             deleted   1
## 2947                                fair   1
## 2948                                2025   1
## 2949                                true   1
## 2950                                2026   1
## 2951                                   7   1
## 2952                             records   1
## 2953                                2025   1
## 2954                              pounds   1
## 2955                                yeah   1
## 2956                              cement   1
## 2957                                fuck   1
## 2958                                2025   1
## 2959                                 air   1
## 2960                                dang   1
## 2961                             instant   1
## 2962                               white   1
## 2963                                 lol   1
## 2964                                2025   1
## 2965                                2121   1
## 2966                               minus   1
## 2967                               noice   1
## 2968                                nice   1
## 2969                                 yea   1
## 2970                                2128   1
## 2971                                 omg   1
## 2972                        flightposite   1
## 2973                                2025   1
## 2974                             perfect   1
## 2975                                nike   1
## 2976                        flightposite   1
## 2977                        flightposite   1
## 2978                             removed   1
## 2979                                2025   1
## 2980                              fugazi   1
## 2981                                dang   1
## 2982                                 lol   1
## 2983                             removed   1
## 2984                                love   1
## 2985                                2025   1
## 2986                                 216   1
## 2987                                love   1
## 2988                                  im   1
## 2989                                love   1
## 2990                                love   1
## 2991                                2025   1
## 2992                                love   1
## 2993                                nice   1
## 2994                                2025   1
## 2995                                damn   1
## 2996                                fair   1
## 2997                               damnn   1
## 2998                                 mom   1
## 2999                                 wow   1
## 3000                               black   1
## 3001                                2025   1
## 3002                                 hey   1
## 3003                                yeah   1
## 3004                                cake   1
## 3005                              shades   1
## 3006                                2025   1
## 3007                             finally   1
## 3008                                lmao   1
## 3009                                yeah   1
## 3010                                  gl   1
## 3011                                2026   1
## 3012                                   3   1
## 3013                                   5   1
## 3014                                  km   1
## 3015                                nike   1
## 3016                             minutes   1
## 3017                                2025   1
## 3018                                cool   1
## 3019                             dollars   1
## 3020                                 tax   1
## 3021                                nice   1
## 3022                                love   1
## 3023                               skate   1
## 3024                                2025   1
## 3025                             grabbed   1
## 3026                              orange   1
## 3027                               legit   1
## 3028                                flea   1
## 3029                                2025   1
## 3030                                sell   1
## 3031                                holy   1
## 3032                                aren   1
## 3033                                2025   1
## 3034                               grail   1
## 3035                              pounds   1
## 3036                                2231   1
## 3037                                damn   1
## 3038                                 wow   1
## 3039                              pretty   1
## 3040                                2025   1
## 3041                             rareair   1
## 3042                             rearair   1
## 3043                                 ahh   1
## 3044                               justo   1
## 3045                                2025   1
## 3046                                yeah   1
## 3047                               gotta   1
## 3048                                2025   1
## 3049                                  nh   1
## 3050                                 idk   1
## 3051                                fuck   1
## 3052                                2025   1
## 3053                                 hit   1
## 3054                                  eh   1
## 3055                                yeah   1
## 3056                                 gif   1
## 3057                                2025   1
## 3058                                  yo   1
## 3059                                grey   1
## 3060                                2025   1
## 3061                                 lol   1
## 3062                            airforce   1
## 3063                                dope   1
## 3064                                   1   1
## 3065                                2026   1
## 3066                              minute   1
## 3067                                2025   1
## 3068                                 bro   1
## 3069                              pretty   1
## 3070                              jacked   1
## 3071                             perfect   1
## 3072                                2305   1
## 3073                                2307   1
## 3074                             deleted   1
## 3075                                2025   1
## 3076                                trap   1
## 3077                             correct   1
## 3078                               jesus   1
## 3079                                 god   1
## 3080                             awesome   1
## 3081                                dope   1
## 3082                                 nah   1
## 3083                 nawccccccccccceeeee   1
## 3084                                2025   1
## 3085                              cousin   1
## 3086                               alert   1
## 3087                                 gif   1
## 3088                               alert   1
## 3089                                damn   1
## 3090                                2025   1
## 3091                               fakes   1
## 3092                                grey   1
## 3093                                sail   1
## 3094                               black   1
## 3095                               black   1
## 3096                                2025   1
## 3097                               based   1
## 3098                                fuck   1
## 3099                               cream   1
## 3100                               black   1
## 3101                               black   1
## 3102                               black   1
## 3103                                sail   1
## 3104                               black   1
## 3105                                2025   1
## 3106                               cream   1
## 3107                               black   1
## 3108                                sail   1
## 3109                               black   1
## 3110                                chef   1
## 3111                               black   1
## 3112                               black   1
## 3113                                2025   1
## 3114                                 gif   1
## 3115                               black   1
## 3116                               black   1
## 3117                               black   1
## 3118                              return   1
## 3119                               black   1
## 3120                               black   1
## 3121                                 red   1
## 3122                                2025   1
## 3123                                hell   1
## 3124                               black   1
## 3125                               black   1
## 3126                             shooooo   1
## 3127                                pine   1
## 3128                                2025   1
## 3129                              nogafb   1
## 3130                          mismatched   1
## 3131                               grown   1
## 3132                                 gif   1
## 3133                                2025   1
## 3134                                heat   1
## 3135                                 lol   1
## 3136                                 lol   1
## 3137                                2395   1
## 3138                                sick   1
## 3139                                2026   1
## 3140                                  25   1
## 3141                                   3   1
## 3142                                   4   1
## 3143                                  48   1
## 3144                               hours   1
## 3145                                nike   1
## 3146                                2025   1
## 3147                                 duh   1
## 3148                                 lol   1
## 3149                              talent   1
## 3150                                 wow   1
## 3151                                2025   1
## 3152                                 gif   1
## 3153                          absolutely   1
## 3154                             flyknit   1
## 3155                                2415   1
## 3156                                2025   1
## 3157                             curious   1
## 3158                            trainers   1
## 3159                                2025   1
## 3160                              people   1
## 3161                           throwback   1
## 3162                               posts   1
## 3163                                2025   1
## 3164                                2025   1
## 3165                                2025   1
## 3166                                2025   1
## 3167                                2025   1
## 3168                              people   1
## 3169                                 100   1
## 3170                                2025   1
## 3171                                1490   1
## 3172                                2026   1
## 3173                               elite   1
## 3174                                 pay   1
## 3175                                   2   1
## 3176                                2025   1
## 3177                                 amp   1
## 3178                                2025   1
## 3179                                2025   1
## 3180                                2025   1
## 3181                              cooked   1
## 3182                               viral   1
## 3183                                2025   1
## 3184                                2025   1
## 3185                                2025   1
## 3186                                2025   1
## 3187                          california   1
## 3188                                2025   1
## 3189                                2025   1
## 3190                                 idk   1
## 3191                                 lei   1
## 3192                                   2   1
## 3193                                2025   1
## 3194                                2026   1
## 3195                                  25   1
## 3196                                   3   1
## 3197                                   4   1
## 3198                          collection   1
## 3199                            versions   1
## 3200                        professional   1
## 3201                                sign   1
## 3202                                2025   1
## 3203                                2025   1
## 3204                                2025   1
## 3205                               white   1
## 3206                                2025   1
## 3207                                hell   1
## 3208                                2025   1
## 3209                                2025   1
## 3210                                heck   1
## 3211                                2025   1
## 3212                                2025   1
## 3213                                2025   1
## 3214                                  im   1
## 3215                                2025   1
## 3216                                  10   1
## 3217                                2026   1
## 3218                                   4   1
## 3219                        unintendedly   1
## 3220                             walking   1
## 3221                                2025   1
## 3222                              adidas   1
## 3223                                huge   1
## 3224                                2025   1
## 3225                               soooo   1
## 3226                                2025   1
## 3227                                dude   1
## 3228                                2025   1
## 3229                                2025   1
## 3230                                2025   1
## 3231                                2025   1
## 3232                                2025   1
## 3233                                2025   1
## 3234                                2025   1
## 3235                                damn   1
## 3236                                2025   1
## 3237                                2026   1
## 3238                                yeah   1
## 3239                                2025   1
## 3240                                2025   1
## 3241                                2025   1
## 3242                                 283   1
## 3243                                2025   1
## 3244                                2025   1
## 3245                                 285   1
## 3246                                2025   1
## 3247                                fire   1
## 3248                                2025   1
## 3249                                 287   1
## 3250                                2025   1
## 3251                                love   1
## 3252                                2025   1
## 3253                                nice   1
## 3254                                2025   1
## 3255                               chris   1
## 3256                                2026   1
## 3257                                   3   1
## 3258                                nike   1
## 3259                                2025   1
## 3260                                2025   1
## 3261                              wizard   1
## 3262                                2025   1
## 3263                                  yo   1
## 3264                                2025   1
## 3265                                2025   1
## 3266                                fire   1
## 3267                                2024   1
## 3268                                  gt   1
## 3269                                2024   1
## 3270                                fire   1
## 3271                                2024   1
## 3272                                2024   1
## 3273                               viral   1
## 3274                                2024   1
## 3275                                  20   1
## 3276                               video   1
## 3277                                 amp   1
## 3278                             2fwhite   1
## 3279                               https   1
## 3280                                 day   1
## 3281                               doesn   1
## 3282                                 kid   1
## 3283                                pair   1
## 3284                                 ply   1
## 3285                              ticket   1
## 3286                             version   1
## 3287                                week   1
## 3288                                1131   1
## 3289                                1458   1
## 3290                                1621   1
## 3291                                1623   1
## 3292                                2026   1
## 3293                                   3   1
## 3294                                  4s   1
## 3295                                 4th   1
## 3296                                  5x   1
## 3297                                   6   1
## 3298                                 air   1
## 3299                                 amp   1
## 3300                           bloodbath   1
## 3301                              boston   1
## 3302                               check   1
## 3303                            children   1
## 3304                               color   1
## 3305                               don’t   1
## 3306                                 due   1
## 3307                                fake   1
## 3308                             feature   1
## 3309                               grits   1
## 3310                                  hr   1
## 3311                              inches   1
## 3312                              issues   1
## 3313                                 i’m   1
## 3314                                lack   1
## 3315                                 lol   1
## 3316                                mile   1
## 3317                                 min   1
## 3318                             minutes   1
## 3319                              missed   1
## 3320                              nights   1
## 3321                               north   1
## 3322                              owners   1
## 3323                                pack   1
## 3324                                pair   1
## 3325                              photos   1
## 3326                                 ply   1
## 3327                              pretty   1
## 3328                            separate   1
## 3329                                shoe   1
## 3330                               shoes   1
## 3331                            spezials   1
## 3332                               stars   1
## 3333                                stop   1
## 3334                            strategy   1
## 3335                                 tim   1
## 3336                             version   1
## 3337                            versions   1
## 3338                               weeks   1
## 3339                            workouts   1
## 3340                                 yrs   1
## 3341                              разных   1
## 3342                                 amp   1
## 3343                                 839   1
## 3344                                1376   1
## 3345                                mile   1
## 3346                            purchase   1
## 3347                               month   1
## 3348                                   2   1
## 3349                                2026   1
## 3350                                 563   1
## 3351                                days   1
## 3352                                love   1
## 3353                              minute   1
## 3354                            offering   1
## 3355                            stranger   1
## 3356                                2024   1
## 3357                               miles   1
## 3358                                size   1
## 3359                                time   1
## 3360                             message   1
## 3361                            flawless   1
## 3362                                2024   1
## 3363                                heat   1
## 3364                                2024   1
## 3365                                2024   1
## 3366                                2024   1
## 3367                                2024   1
## 3368                                  gt   1
## 3369                                2024   1
## 3370                                fire   1
## 3371                                2024   1
## 3372                                shoe   1
## 3373                                 100   1
## 3374                                2024   1
## 3375                                2024   1
## 3376                                 50k   1
## 3377                             minutes   1
## 3378                                2012   1
## 3379                                2026   1
## 3380                                   4   1
## 3381                                days   1
## 3382                               miles   1
## 3383                               saved   1
## 3384                                2024   1
## 3385                                2024   1
## 3386                                2024   1
## 3387                                2024   1
## 3388                                2024   1
## 3389                                2024   1
## 3390                                2024   1
## 3391                              chunky   1
## 3392                                2024   1
## 3393                          vapormaxes   1
## 3394                                2024   1
## 3395                                2024   1
## 3396                                2026   1
## 3397                             degrees   1
## 3398                                2024   1
## 3399                                nike   1
## 3400                            uptempos   1
## 3401                                2024   1
## 3402                                2024   1
## 3403                                 323   1
## 3404                                2024   1
## 3405                                2024   1
## 3406                                2024   1
## 3407                                 326   1
## 3408                                2024   1
## 3409                                fire   1
## 3410                                2024   1
## 3411                                2024   1
## 3412                            uptempos   1
## 3413                                2024   1
## 3414                                  19   1
## 3415                                2026   1
## 3416                                2024   1
## 3417                                2024   1
## 3418                             amazing   1
## 3419                                2024   1
## 3420                               happy   1
## 3421                                2024   1
## 3422                                2024   1
## 3423                                2024   1
## 3424                                nike   1
## 3425                                2024   1
## 3426                            stranger   1
## 3427                                2024   1
## 3428                                 wtf   1
## 3429                                2024   1
## 3430                                2024   1
## 3431                              jordan   1
## 3432                                2026   1
## 3433                                  35   1
## 3434                               sales   1
## 3435                                2024   1
## 3436                                2024   1
## 3437                                nice   1
## 3438                          documented   1
## 3439                                2024   1
## 3440                                2024   1
## 3441                                2024   1
## 3442                              calvin   1
## 3443                                2024   1
## 3444                                2024   1
## 3445                              calvin   1
## 3446                                2024   1
## 3447                                2024   1
## 3448                                2024   1
## 3449                                2026   1
## 3450                               bjorn   1
## 3451                               miles   1
## 3452                                 usd   1
## 3453                                2024   1
## 3454                              airpod   1
## 3455                               miles   1
## 3456                                 nah   1
## 3457                                2024   1
## 3458                                foot   1
## 3459                                nike   1
## 3460                                2024   1
## 3461                                  mf   1
## 3462                              single   1
## 3463                                2024   1
## 3464                                 doc   1
## 3465                                   ã   1
## 3466                                2024   1
## 3467                            michelle   1
## 3468                                2024   1
## 3469                                2024   1
## 3470                                2024   1
## 3471                                2024   1
## 3472                                2024   1
## 3473                                 don   1
## 3474                 accessorieseveryone   1
## 3475                                2026   1
## 3476                                  26   1
## 3477                                rare   1
## 3478                           resellers   1
## 3479                                2024   1
## 3480                                mike   1
## 3481                            wellness   1
## 3482                                2024   1
## 3483                              review   1
## 3484                                2024   1
## 3485                                2024   1
## 3486                                2024   1
## 3487                                lmao   1
## 3488                                2024   1
## 3489                               miles   1
## 3490                                  yo   1
## 3491                                2024   1
## 3492                              aurora   1
## 3493                                2024   1
## 3494                                2024   1
## 3495                                damn   1
## 3496                                2024   1
## 3497                                2026   1
## 3498                                2024   1
## 3499                                 wow   1
## 3500                                2024   1
## 3501                                 ten   1
## 3502                                2024   1
## 3503                                2024   1
## 3504                                 gif   1
## 3505                                2024   1
## 3506                                2024   1
## 3507                        slaughtering   1
## 3508                            elevated   1
## 3509                                2024   1
## 3510                              future   1
## 3511                                2024   1
## 3512                                2024   1
## 3513                                2024   1
## 3514                              howwww   1
## 3515                                love   1
## 3516                                2026   1
## 3517                            official   1
## 3518                               sales   1
## 3519                                2024   1
## 3520                                howw   1
## 3521                                2024   1
## 3522                        niceeeeeeeee   1
## 3523                                2024   1
## 3524                                2024   1
## 3525                                nice   1
## 3526                                 yoo   1
## 3527                                2024   1
## 3528                                2024   1
## 3529                                2024   1
## 3530                                2024   1
## 3531                            straight   1
## 3532                               10.50   1
## 3533                                2024   1
## 3534                                2024   1
## 3535                                damn   1
## 3536                                2026   1
## 3537                                4.52   1
## 3538                            champion   1
## 3539                                  ua   1
## 3540                                2024   1
## 3541                                link   1
## 3542                                2024   1
## 3543                                 gif   1
## 3544                                2024   1
## 3545                                2024   1
## 3546                                2024   1
## 3547                            nooooooo   1
## 3548                                2024   1
## 3549                                2024   1
## 3550                              booker   1
## 3551                                2024   1
## 3552                                2024   1
## 3553                                2024   1
## 3554                                 rip   1
## 3555                                  4k   1
## 3556                               party   1
## 3557                                post   1
## 3558                                1930   1
## 3559                                2135   1
## 3560                                life   1
## 3561                              brooks   1
## 3562                                1551   1
## 3563                                2026   1
## 3564                                2369   1
## 3565                                 316   1
## 3566                               4.306   1
## 3567                               4.388   1
## 3568                                4.65   1
## 3569                                 444   1
## 3570                                 449   1
## 3571                               50min   1
## 3572                                 5mm   1
## 3573                                  5x   1
## 3574                              adidas   1
## 3575                               adios   1
## 3576                             adistar   1
## 3577                            analysts   1
## 3578                             billion   1
## 3579                              boston   1
## 3580                                feet   1
## 3581                             finally   1
## 3582                              fruity   1
## 3583                                hour   1
## 3584                               hours   1
## 3585                                 luv   1
## 3586                                mile   1
## 3587                             product   1
## 3588                              protro   1
## 3589                             rareair   1
## 3590                                  sb   1
## 3591                                seat   1
## 3592                                sign   1
## 3593                            sneakers   1
## 3594                           superstar   1
## 3595                               times   1
## 3596                               veces   1
## 3597                               vibes   1
## 3598                                   1   1
## 3599                                  10   1
## 3600                                 100   1
## 3601                                 101   1
## 3602                                 102   1
## 3603                                 103   1
## 3604                                 104   1
## 3605                                 105   1
## 3606                                 106   1
## 3607                                 107   1
## 3608                                 108   1
## 3609                                 109   1
## 3610                                  11   1
## 3611                                 110   1
## 3612                                 111   1
## 3613                                 112   1
## 3614                                 113   1
## 3615                                 114   1
## 3616                                 115   1
## 3617                                 116   1
## 3618                                 117   1
## 3619                                 118   1
## 3620                                 119   1
## 3621                                  12   1
## 3622                                 120   1
## 3623                                 121   1
## 3624                                 122   1
## 3625                                 123   1
## 3626                                 124   1
## 3627                                 125   1
## 3628                                 126   1
## 3629                                 127   1
## 3630                                 128   1
## 3631                                 129   1
## 3632                                  13   1
## 3633                                 130   1
## 3634                                 131   1
## 3635                                 132   1
## 3636                                 133   1
## 3637                                 134   1
## 3638                                 135   1
## 3639                                 136   1
## 3640                                 137   1
## 3641                                 138   1
## 3642                                 139   1
## 3643                                  14   1
## 3644                                 140   1
## 3645                                 141   1
## 3646                                 142   1
## 3647                                 143   1
## 3648                                 144   1
## 3649                                 145   1
## 3650                                 146   1
## 3651                                 147   1
## 3652                                 148   1
## 3653                                 149   1
## 3654                                  15   1
## 3655                                 150   1
## 3656                                 151   1
## 3657                                 152   1
## 3658                                 153   1
## 3659                                 154   1
## 3660                                 155   1
## 3661                                 156   1
## 3662                                 157   1
## 3663                                 158   1
## 3664                                 159   1
## 3665                                  16   1
## 3666                                 160   1
## 3667                                 161   1
## 3668                                 162   1
## 3669                                 163   1
## 3670                                 164   1
## 3671                                 165   1
## 3672                                 166   1
## 3673                                 167   1
## 3674                                 168   1
## 3675                                 169   1
## 3676                                  17   1
## 3677                                 170   1
## 3678                                 171   1
## 3679                                 172   1
## 3680                                 173   1
## 3681                                 174   1
## 3682                                 175   1
## 3683                                 176   1
## 3684                                 177   1
## 3685                                 178   1
## 3686                                 179   1
## 3687                                  18   1
## 3688                                 180   1
## 3689                                 181   1
## 3690                                 182   1
## 3691                                 183   1
## 3692                                 184   1
## 3693                                 185   1
## 3694                                 186   1
## 3695                                 187   1
## 3696                                 188   1
## 3697                                 189   1
## 3698                                  19   1
## 3699                                 190   1
## 3700                                 191   1
## 3701                                 192   1
## 3702                                 193   1
## 3703                                 194   1
## 3704                                 195   1
## 3705                                 196   1
## 3706                                 197   1
## 3707                                 198   1
## 3708                                 199   1
## 3709                                   2   1
## 3710                                  20   1
## 3711                                 200   1
## 3712                                 201   1
## 3713                                 202   1
## 3714                                 203   1
## 3715                                 204   1
## 3716                                 205   1
## 3717                                 206   1
## 3718                                 207   1
## 3719                                 208   1
## 3720                                 209   1
## 3721                                  21   1
## 3722                                 210   1
## 3723                                 211   1
## 3724                                 212   1
## 3725                                 213   1
## 3726                                 214   1
## 3727                                 215   1
## 3728                                 216   1
## 3729                                 217   1
## 3730                                 218   1
## 3731                                 219   1
## 3732                                  22   1
## 3733                                 220   1
## 3734                                 221   1
## 3735                                 222   1
## 3736                                 223   1
## 3737                                 224   1
## 3738                                 225   1
## 3739                                 226   1
## 3740                                 227   1
## 3741                                 228   1
## 3742                                 229   1
## 3743                                  23   1
## 3744                                 230   1
## 3745                                 231   1
## 3746                                 232   1
## 3747                                 233   1
## 3748                                 234   1
## 3749                                 235   1
## 3750                                 236   1
## 3751                                 237   1
## 3752                                 238   1
## 3753                                 239   1
## 3754                                  24   1
## 3755                                 240   1
## 3756                                 241   1
## 3757                                 242   1
## 3758                                 243   1
## 3759                                 244   1
## 3760                                 245   1
## 3761                                 246   1
## 3762                                 247   1
## 3763                                 248   1
## 3764                                 249   1
## 3765                                  25   1
## 3766                                 250   1
## 3767                                 251   1
## 3768                                 252   1
## 3769                                 253   1
## 3770                                 254   1
## 3771                                 255   1
## 3772                                 256   1
## 3773                                 257   1
## 3774                                 258   1
## 3775                                 259   1
## 3776                                  26   1
## 3777                                 260   1
## 3778                                 261   1
## 3779                                 262   1
## 3780                                 263   1
## 3781                                 264   1
## 3782                                 265   1
## 3783                                 266   1
## 3784                                 267   1
## 3785                                 268   1
## 3786                                 269   1
## 3787                                  27   1
## 3788                                 270   1
## 3789                                 271   1
## 3790                                 272   1
## 3791                                 273   1
## 3792                                 274   1
## 3793                                 275   1
## 3794                                 276   1
## 3795                                 277   1
## 3796                                 278   1
## 3797                                 279   1
## 3798                                  28   1
## 3799                                 280   1
## 3800                                 281   1
## 3801                                 282   1
## 3802                                 283   1
## 3803                                 284   1
## 3804                                 285   1
## 3805                                 286   1
## 3806                                 287   1
## 3807                                 288   1
## 3808                                 289   1
## 3809                                  29   1
## 3810                                 290   1
## 3811                                 291   1
## 3812                                 292   1
## 3813                                 293   1
## 3814                                 294   1
## 3815                                 295   1
## 3816                                 296   1
## 3817                                 297   1
## 3818                                 298   1
## 3819                                 299   1
## 3820                                   3   1
## 3821                                  30   1
## 3822                                 300   1
## 3823                                 301   1
## 3824                                 302   1
## 3825                                 303   1
## 3826                                 304   1
## 3827                                 305   1
## 3828                                 306   1
## 3829                                 307   1
## 3830                                 308   1
## 3831                                 309   1
## 3832                                  31   1
## 3833                                 310   1
## 3834                                 311   1
## 3835                                 312   1
## 3836                                 313   1
## 3837                                 314   1
## 3838                                 315   1
## 3839                                 316   1
## 3840                                 317   1
## 3841                                 318   1
## 3842                                 319   1
## 3843                                  32   1
## 3844                                 320   1
## 3845                                 321   1
## 3846                                 322   1
## 3847                                 323   1
## 3848                                 324   1
## 3849                                 325   1
## 3850                                 326   1
## 3851                                 327   1
## 3852                                 328   1
## 3853                                 329   1
## 3854                                  33   1
## 3855                                 330   1
## 3856                                 331   1
## 3857                                 332   1
## 3858                                 333   1
## 3859                                 334   1
## 3860                                 335   1
## 3861                                 336   1
## 3862                                 337   1
## 3863                                 338   1
## 3864                                 339   1
## 3865                                  34   1
## 3866                                 340   1
## 3867                                 341   1
## 3868                                 342   1
## 3869                                 343   1
## 3870                                 344   1
## 3871                                 345   1
## 3872                                 346   1
## 3873                                 347   1
## 3874                                 348   1
## 3875                                 349   1
## 3876                                  35   1
## 3877                                 350   1
## 3878                                 351   1
## 3879                                 352   1
## 3880                                 353   1
## 3881                                 354   1
## 3882                                 355   1
## 3883                                 356   1
## 3884                                 357   1
## 3885                                 358   1
## 3886                                 359   1
## 3887                                  36   1
## 3888                                 360   1
## 3889                                 361   1
## 3890                                 362   1
## 3891                                 363   1
## 3892                                 364   1
## 3893                                 365   1
## 3894                                 366   1
## 3895                                 367   1
## 3896                                 368   1
## 3897                                 369   1
## 3898                                  37   1
## 3899                                 370   1
## 3900                                 371   1
## 3901                                 372   1
## 3902                                 373   1
## 3903                                 374   1
## 3904                                 375   1
## 3905                                 376   1
## 3906                                 377   1
## 3907                                 378   1
## 3908                                 379   1
## 3909                                  38   1
## 3910                                 380   1
## 3911                                 381   1
## 3912                                 382   1
## 3913                                 383   1
## 3914                                 384   1
## 3915                                 385   1
## 3916                                 386   1
## 3917                                 387   1
## 3918                                 388   1
## 3919                                 389   1
## 3920                                  39   1
## 3921                                 390   1
## 3922                                 391   1
## 3923                                 392   1
## 3924                                 393   1
## 3925                                 394   1
## 3926                                 395   1
## 3927                                 396   1
## 3928                                 397   1
## 3929                                 398   1
## 3930                                 399   1
## 3931                                   4   1
## 3932                                  40   1
## 3933                                 400   1
## 3934                                  41   1
## 3935                                  42   1
## 3936                                  43   1
## 3937                                  44   1
## 3938                                  45   1
## 3939                                  46   1
## 3940                                  47   1
## 3941                                 dtc   1
## 3942                                  48   1
## 3943                                  49   1
## 3944                                   5   1
## 3945                                  50   1
## 3946                                  51   1
## 3947                                  52   1
## 3948                                  53   1
## 3949                                  54   1
## 3950                                  55   1
## 3951                                  56   1
## 3952                                  57   1
## 3953                                  58   1
## 3954                                  59   1
## 3955                                   6   1
## 3956                                  60   1
## 3957                                  61   1
## 3958                                  62   1
## 3959                                  63   1
## 3960                                  64   1
## 3961                                  65   1
## 3962                                  66   1
## 3963                                  67   1
## 3964                                  68   1
## 3965                                  69   1
## 3966                                   7   1
## 3967                                  70   1
## 3968                                  71   1
## 3969                                  72   1
## 3970                                  73   1
## 3971                                  74   1
## 3972                                  75   1
## 3973                                  76   1
## 3974                                  77   1
## 3975                                  78   1
## 3976                                  79   1
## 3977                                   8   1
## 3978                                  80   1
## 3979                                  81   1
## 3980                                  82   1
## 3981                                  83   1
## 3982                                  84   1
## 3983                                  85   1
## 3984                                  86   1
## 3985                                  87   1
## 3986                                  88   1
## 3987                                  89   1
## 3988                                   9   1
## 3989                                  90   1
## 3990                                  91   1
## 3991                                  92   1
## 3992                                  93   1
## 3993                                  94   1
## 3994                                  95   1
## 3995                                  96   1
## 3996                                  97   1
## 3997                                  98   1
## 3998                                  99   1
## 3999                                 198   1
## 4000                                2026   1
## 4001                                  23   1
## 4002                                 370   1
## 4003                               bucks   1
## 4004                                 cad   1
## 4005                              colors   1
## 4006                               doesn   1
## 4007                             figured   1
## 4008                               miles   1
## 4009                             minutes   1
## 4010                                ross   1
## 4011                                2024   1
## 4012                               pairs   1
## 4013                                  4d   1
## 4014                                800m   1
## 4015                                2024   1
## 4016                                2024   1
## 4017                              custom   1
## 4018                          completely   1
## 4019                                2024   1
## 4020                                 404   1
## 4021                                2024   1
## 4022                                book   1
## 4023                                2024   1
## 4024                                2024   1
## 4025                               books   1
## 4026                                2024   1
## 4027                                nike   1
## 4028                                2024   1
## 4029                                2024   1
## 4030                          absolutely   1
## 4031                                2026   1
## 4032                                4.57   1
## 4033                                4.63   1
## 4034                                 ran   1
## 4035                             revenue   1
## 4036                                smdh   1
## 4037                                2024   1
## 4038                                2024   1
## 4039                                nice   1
## 4040                                2024   1
## 4041                                2024   1
## 4042                                hype   1
## 4043                                2024   1
## 4044                                 nah   1
## 4045                                2024   1
## 4046                                2024   1
## 4047                               viral   1
## 4048                                2024   1
## 4049                              pretty   1
## 4050                                2024   1
## 4051                                2024   1
## 4052                                2026   1
## 4053                                  43   1
## 4054                                2024   1
## 4055                                  ew   1
## 4056                                2024   1
## 4057                                dude   1
## 4058                                2024   1
## 4059                                wait   1
## 4060                                2024   1
## 4061                                2024   1
## 4062                                 425   1
## 4063                                2024   1
## 4064                               crazy   1
## 4065                                2024   1
## 4066                                love   1
## 4067                                2024   1
## 4068                                2024   1
## 4069                                2024   1
## 4070                                2026   1
## 4071                                2024   1
## 4072                                2024   1
## 4073                                 net   1
## 4074                                2024   1
## 4075                                2024   1
## 4076                                2024   1
## 4077                                2024   1
## 4078                                2024   1
## 4079                                nice   1
## 4080                                2024   1
## 4081                                2024   1
## 4082                                glad   1
## 4083                                2024   1
## 4084                                2026   1
## 4085                                mile   1
## 4086                             billion   1
## 4087                                2024   1
## 4088                                2024   1
## 4089                                2024   1
## 4090                            familiar   1
## 4091                                2024   1
## 4092                                2024   1
## 4093                                2024   1
## 4094                                2024   1
## 4095                                2023   1
## 4096                                2023   1
## 4097                                2023   1
## 4098                             sitting   1
## 4099                                2026   1
## 4100                                  eu   1
## 4101                                 map   1
## 4102                             picking   1
## 4103                              pretty   1
## 4104                               weird   1
## 4105                                  46   1
## 4106                                2023   1
## 4107                                2023   1
## 4108                                2023   1
## 4109                                  bc   1
## 4110                                2023   1
## 4111                                2023   1
## 4112                                2023   1
## 4113                             sprayed   1
## 4114                                2023   1
## 4115                                2023   1
## 4116                                2023   1
## 4117                                2023   1
## 4118                           абсолютна   1
## 4119                                2026   1
## 4120                             billion   1
## 4121                               miles   1
## 4122                                wear   1
## 4123                                2023   1
## 4124                               yesss   1
## 4125                                2023   1
## 4126                              cheeto   1
## 4127                                2023   1
## 4128                                2023   1
## 4129                                2023   1
## 4130                                2023   1
## 4131                                itch   1
## 4132                                2023   1
## 4133                                2023   1
## 4134                                2023   1
## 4135                                 ive   1
## 4136                                2023   1
## 4137                                 gif   1
## 4138                                2026   1
## 4139                                 ran   1
## 4140                                2023   1
## 4141                                2023   1
## 4142                                 ima   1
## 4143                                2023   1
## 4144                                2023   1
## 4145                                2023   1
## 4146                                2023   1
## 4147                            purchase   1
## 4148                                2023   1
## 4149                                2023   1
## 4150                                2023   1
## 4151                                2023   1
## 4152                                2026   1
## 4153                                flip   1
## 4154                                love   1
## 4155                                2023   1
## 4156                                 nah   1
## 4157                                2023   1
## 4158                            sleeping   1
## 4159                                2023   1
## 4160                                2023   1
## 4161                                 gif   1
## 4162                                2023   1
## 4163                                 485   1
## 4164                                2023   1
## 4165                                 486   1
## 4166                                2023   1
## 4167                                hoes   1
## 4168                                2023   1
## 4169                                2023   1
## 4170                                  ha   1
## 4171                                2023   1
## 4172                                2026   1
## 4173                                ekin   1
## 4174                                   1   1
## 4175                                2023   1
## 4176                              adidas   1
## 4177                                 493   1
## 4178                              proves   1
## 4179                                 499   1
## 4180                              jacket   1
## 4181                               space   1
## 4182                           downsized   1
## 4183                                2096   1
## 4184                                 789   1
## 4185                                rear   1
## 4186                               grade   1
## 4187                         perforation   1
## 4188                                10km   1
## 4189                                1327   1
## 4190                                  15   1
## 4191                                1919   1
## 4192                                2026   1
## 4193                               4.390   1
## 4194                                 600   1
## 4195                                 690   1
## 4196                                   8   1
## 4197                            adjusted   1
## 4198                                 air   1
## 4199                               apple   1
## 4200                               bucks   1
## 4201                              campus   1
## 4202                              casual   1
## 4203                              clicks   1
## 4204                                days   1
## 4205                                dogs   1
## 4206                           estrellas   1
## 4207                            everyday   1
## 4208                            favorite   1
## 4209                            features   1
## 4210                                 gtx   1
## 4211                                  km   1
## 4212                             mohamed   1
## 4213                              months   1
## 4214                                phil   1
## 4215                                size   1
## 4216                            workouts   1
## 4217                                yoga   1
## 4218                               miles   1
## 4219                                 bad   1
## 4220                             edition   1
## 4221                               miles   1
## 4222                               miles   1
## 4223                                 161   1
## 4224                                2026   1
## 4225                                2228   1
## 4226                           discounts   1
## 4227                               extra   1
## 4228                                 kms   1
## 4229                               miles   1
## 4230                                nice   1
## 4231                               notes   1
## 4232                                 pop   1
## 4233                              sadida   1
## 4234                                 usd   1
## 4235                               4.400   1
## 4236                                edgy   1
## 4237                               miles   1
## 4238                               pairs   1
## 4239                              racers   1
## 4240                                 wtf   1
## 4241                              victim   1
## 4242                               stock   1
## 4243                                 smh   1
## 4244                                2026   1
## 4245                              adidas   1
## 4246                              bought   1
## 4247                              minute   1
## 4248                                sell   1
## 4249                             billion   1
## 4250                            griselda   1
## 4251                                 513   1
## 4252                                yeah   1
## 4253                                   3   1
## 4254                                   1   1
## 4255                                 hey   1
## 4256                                2026   1
## 4257                                heck   1
## 4258                                 gif   1
## 4259                                2026   1
## 4260                             removed   1
## 4261                                 yea   1
## 4262                                2026   1
## 4263                                 yup   1
## 4264                                 gif   1
## 4265                                 gif   1
## 4266                                 don   1
## 4267                                 lol   1
## 4268                                 bro   1
## 4269                                2026   1
## 4270                               kinda   1
## 4271                               miles   1
## 4272                                 air   1
## 4273                                yeah   1
## 4274                               lucky   1
## 4275                                 560   1
## 4276                                2026   1
## 4277                                hell   1
## 4278                            horrible   1
## 4279                                nike   1
## 4280                           massively   1
## 4281                                2026   1
## 4282                               290km   1
## 4283                                 gif   1
## 4284                                size   1
## 4285                             ceiling   1
## 4286                                nike   1
## 4287                                hell   1
## 4288                                1558   1
## 4289                                2025   1
## 4290                             finally   1
## 4291                            official   1
## 4292                            workouts   1
## 4293                                 nah   1
## 4294                                hard   1
## 4295                                 gif   1
## 4296                            medieval   1
## 4297                              adidas   1
## 4298                                2025   1
## 4299                               check   1
## 4300                               y'all   1
## 4301                                  fr   1
## 4302                                 595   1
## 4303                                 596   1
## 4304                                 598   1
## 4305                               dunks   1
## 4306                                game   1
## 4307                                 run   1
## 4308                                runs   1
## 4309                                time   1
## 4310                                half   1
## 4311                                drop   1
## 4312                               crash   1
## 4313                                week   1
## 4314                                   1   1
## 4315                                2026   1
## 4316                               4.369   1
## 4317                                 7mm   1
## 4318                                   8   1
## 4319                                 816   1
## 4320                                 852   1
## 4321                                 864   1
## 4322                                apps   1
## 4323                              golden   1
## 4324                                gran   1
## 4325                               hunna   1
## 4326                             initial   1
## 4327                                i’ve   1
## 4328                                 lol   1
## 4329                                 min   1
## 4330                               snake   1
## 4331                            suitable   1
## 4332                          unintended   1
## 4333                              vomero   1
## 4334                                week   1
## 4335                               weeks   1
## 4336                               store   1
## 4337                               miles   1
## 4338                                2025   1
## 4339                                 eur   1
## 4340                            exercise   1
## 4341                                 lbs   1
## 4342                                 mph   1
## 4343                              pounds   1
## 4344                                cmon   1
## 4345                             limited   1
## 4346                            workouts   1
## 4347                                 603   1
## 4348                                 605   1
## 4349                 accessorieseveryone   1
## 4350                                2025   1
## 4351                               dunks   1
## 4352                                2025   1
## 4353                             deleted   1
## 4354                               solid   1
## 4355                             minutes   1
## 4356                               dunks   1
## 4357                                 626   1
## 4358                                 tbf   1
## 4359                               trash   1
## 4360                                2025   1
## 4361                            terrible   1
## 4362                           traveling   1
## 4363                                yeah   1
## 4364                                 632   1
## 4365                                 633   1
## 4366                              guilty   1
## 4367                               dunks   1
## 4368                                 yea   1
## 4369                                2025   1
## 4370                                 lol   1
## 4371                              narrow   1
## 4372                             totally   1
## 4373                                2025   1
## 4374                             pegasus   1
## 4375                              pounds   1
## 4376                                 cal   1
## 4377                                 lol   1
## 4378                                yeah   1
## 4379                                 don   1
## 4380                                2025   1
## 4381                          invincible   1
## 4382                             serrano   1
## 4383                                am95   1
## 4384                                 664   1
## 4385                               nikes   1
## 4386                     congrutulations   1
## 4387                                 tnx   1
## 4388                                2025   1
## 4389                            calories   1
## 4390                                 bet   1
## 4391                               nigha   1
## 4392                                stfu   1
## 4393                       interestingly   1
## 4394                                yeah   1
## 4395                               crocs   1
## 4396                               viral   1
## 4397                                2025   1
## 4398                               teams   1
## 4399                                 don   1
## 4400                                   2   1
## 4401                             removed   1
## 4402                                 tnx   1
## 4403                                  tf   1
## 4404                                2025   1
## 4405                                love   1
## 4406                                 695   1
## 4407                             kitchen   1
## 4408                               viral   1
## 4409                                 700   1
## 4410                           yesterday   1
## 4411                                time   1
## 4412                                2026   1
## 4413                                  22   1
## 4414                                  44   1
## 4415                                 day   1
## 4416                                days   1
## 4417                                  km   1
## 4418                               miles   1
## 4419                           sapphires   1
## 4420                               times   1
## 4421                                  ua   1
## 4422                                   ý   1
## 4423                                   þ   1
## 4424                                2025   1
## 4425                               bucks   1
## 4426                                 cad   1
## 4427                             minutos   1
## 4428                                 top   1
## 4429                                shoe   1
## 4430                               steps   1
## 4431                                 lot   1
## 4432                                loss   1
## 4433                                tags   1
## 4434                                   3   1
## 4435                               viral   1
## 4436                               viral   1
## 4437                                lmao   1
## 4438                           cardboard   1
## 4439                             pattern   1
## 4440                                   1   1
## 4441                                2025   1
## 4442                              adidas   1
## 4443                                 y.o   1
## 4444                               legit   1
## 4445                                  ai   1
## 4446                              swirls   1
## 4447                              travis   1
## 4448                                yeah   1
## 4449                                2025   1
## 4450                                  rs   1
## 4451                           cardboard   1
## 4452                                  im   1
## 4453                              toilet   1
## 4454                           stitching   1
## 4455                                2025   1
## 4456                                fake   1
## 4457                                   1   1
## 4458                           decreases   1
## 4459                              bought   1
## 4460                                2025   1
## 4461                                nice   1
## 4462                            platinum   1
## 4463                                pros   1
## 4464                                2025   1
## 4465                                  85   1
## 4466                                fake   1
## 4467                                 usd   1
## 4468                                   2   1
## 4469                               ultra   1
## 4470                                easy   1
## 4471                                2025   1
## 4472                               fakes   1
## 4473                            flyknits   1
## 4474                                 buy   1
## 4475                                  80   1
## 4476                                 yep   1
## 4477                                2025   1
## 4478                                love   1
## 4479                                 air   1
## 4480                                   1   1
## 4481                            flyknits   1
## 4482                                2025   1
## 4483                                 2nd   1
## 4484                                 2nd   1
## 4485                                   2   1
## 4486                                2025   1
## 4487                             reminds   1
## 4488                                 usd   1
## 4489                                 tag   1
## 4490                           quarterly   1
## 4491                             futuras   1
## 4492                               viral   1
## 4493                                size   1
## 4494                                 shi   1
## 4495                                  lv   1
## 4496                                drop   1
## 4497                           downsized   1
## 4498                               grade   1
## 4499                                   1   1
## 4500                                  10   1
## 4501                               10min   1
## 4502                                1365   1
## 4503                                   2   1
## 4504                                2026   1
## 4505                              2a5340   1
## 4506                                 434   1
## 4507                              adidas   1
## 4508                               aquas   1
## 4509                                guys   1
## 4510                                 idk   1
## 4511                               miles   1
## 4512                                 min   1
## 4513                             minutes   1
## 4514                                  mm   1
## 4515                                pack   1
## 4516                                  ua   1
## 4517                               weeks   1
## 4518                                 yrs   1
## 4519                                2025   1
## 4520                              babies   1
## 4521                                bruh   1
## 4522                               euros   1
## 4523                                hope   1
## 4524                                love   1
## 4525                              pounds   1
## 4526                                quid   1
## 4527                                 usd   1
## 4528                              yessir   1
## 4529                             scratch   1
## 4530                            workouts   1
## 4531                               sheee   1
## 4532                                damn   1
## 4533                            congrats   1
## 4534                                damn   1
## 4535                     congratulations   1
## 4536                            congrats   1
## 4537                                 00s   1
## 4538                                2025   1
## 4539                               viral   1
## 4540                               green   1
## 4541                                   1   1
## 4542                                   3   1
## 4543                              forest   1
## 4544                               green   1
## 4545                               viral   1
## 4546                               mowab   1
## 4547                               viral   1
## 4548                              mowabb   1
## 4549                                2025   1
## 4550                               white   1
## 4551                             safaris   1
## 4552                              cortez   1
## 4553                              purple   1
## 4554                                2025   1
## 4555                              factor   1
## 4556                                love   1
## 4557                                 ngl   1
## 4558                               green   1
## 4559                                 3,6   1
## 4560                               gumps   1
## 4561                                2025   1
## 4562                                2184   1
## 4563                               green   1
## 4564                                gump   1
## 4565                              purple   1
## 4566                               white   1
## 4567                               green   1
## 4568                                 gif   1
## 4569                                2025   1
## 4570                               bucks   1
## 4571                                 cut   1
## 4572                                lows   1
## 4573                                nike   1
## 4574                                  og   1
## 4575                              people   1
## 4576                                pink   1
## 4577                               3,4,5   1
## 4578                               green   1
## 4579                               heads   1
## 4580                               white   1
## 4581                                pink   1
## 4582                               green   1
## 4583                              cortez   1
## 4584                               green   1
## 4585                                1039   1
## 4586                                1430   1
## 4587                                lows   1
## 4588                               royal   1
## 4589                                2025   1
## 4590                                lows   1
## 4591                                  og   1
## 4592                                pink   1
## 4593                                   2   1
## 4594                                2025   1
## 4595                                yeah   1
## 4596                                 bro   1
## 4597                                yeah   1
## 4598                                2025   1
## 4599                                mine   1
## 4600                                 gif   1
## 4601                              agreed   1
## 4602                                 gif   1
## 4603                                2025   1
## 4604                                 lol   1
## 4605                                yeah   1
## 4606                                yeah   1
## 4607                                 gif   1
## 4608                            thursday   1
## 4609                                  00   1
## 4610                                  10   1
## 4611                                2026   1
## 4612                                 653   1
## 4613                                  ah   1
## 4614                           completed   1
## 4615                                 due   1
## 4616                                 evo   1
## 4617                           excellent   1
## 4618                             million   1
## 4619                              months   1
## 4620                               teams   1
## 4621                           wholesale   1
## 4622                                  10   1
## 4623                             billion   1
## 4624                               month   1
## 4625                                  20   1
## 4626                                2025   1
## 4627                              adidas   1
## 4628                               paper   1
## 4629                            would've   1
## 4630                                it’s   1
## 4631                                nice   1
## 4632                               space   1
## 4633                                 gif   1
## 4634                                1814   1
## 4635                               4.114   1
## 4636                                4.24   1
## 4637                                4.89   1
## 4638                                 air   1
## 4639                                mass   1
## 4640                               retro   1
## 4641                                2025   1
## 4642                             squeeky   1
## 4643                              prolly   1
## 4644                                 gif   1
## 4645                                 yep   1
## 4646                                 920   1
## 4647                                2025   1
## 4648                                nike   1
## 4649                                 gif   1
## 4650                             vintage   1
## 4651                                2025   1
## 4652                            straight   1
## 4653                               surge   1
## 4654                            gorgeous   1
## 4655                                 936   1
## 4656                               clean   1
## 4657                                tuff   1
## 4658                                 nah   1
## 4659                                2025   1
## 4660                            honestly   1
## 4661                                yeah   1
## 4662                             baggier   1
## 4663                               clean   1
## 4664                                2025   1
## 4665                                  ad   1
## 4666                                dual   1
## 4667                           frequency   1
## 4668                              geared   1
## 4669                                hype   1
## 4670                                it’s   1
## 4671                               miles   1
## 4672                              neon's   1
## 4673                                  og   1
## 4674                                pair   1
## 4675                               prior   1
## 4676                               retro   1
## 4677                           sophomore   1
## 4678                             uptempo   1
## 4679                             version   1
## 4680                                 cal   1
## 4681                                 gif   1
## 4682                               4.197   1
## 4683                                4.96   1
## 4684                               bin23   1
## 4685                              killed   1
## 4686                              people   1
## 4687                                2025   1
## 4688                                  97   1
## 4689                              sounds   1
## 4690                               solid   1
## 4691                                yeah   1
## 4692                             rocking   1
## 4693                                 969   1
## 4694                                 tho   1
## 4695                                2025   1
## 4696                                 930   1
## 4697                                 air   1
## 4698                                yeah   1
## 4699                            realtree   1
## 4700                                love   1
## 4701                                2025   1
## 4702                                  99   1
## 4703                                 981   1
## 4704                                nice   1
## 4705                                  yo   1
## 4706                               mossy   1
## 4707                           influence   1
## 4708                                2025   1
## 4709                               bucks   1
## 4710                                 cad   1
## 4711                                mile   1
## 4712                                 naw   1
## 4713                                hard   1
## 4714                                yeah   1
## 4715                              lowkey   1
## 4716                                whoa   1
## 4717                                dope   1
## 4718                                 won   1
## 4719                                damn   1
## 4720                               loved   1
## 4721                           yesterday   1
## 4722                               grade   1
## 4723                             version   1
## 4724                            distance   1
## 4725                               4.100   1
## 4726                                   ª   1
## 4727                               house   1
## 4728                              jaafar   1
## 4729                                 548   1
## 4730                            decision   1
## 4731                               steps   1
## 4732                              glutes   1
## 4733                           shoulders   1
## 4734                            favorite   1
## 4735                                fire   1
## 4736                                love   1
## 4737                              staple   1
## 4738                             stunner   1
## 4739                            treasure   1
## 4740                               worst   1
## 4741                                  10   1
## 4742                                 100   1
## 4743                            accurate   1
## 4744                               awful   1
## 4745                              badass   1
## 4746                               blown   1
## 4747                             changed   1
## 4748                             correct   1
## 4749                           desperate   1
## 4750                             garbage   1
## 4751                            gorgeous   1
## 4752                                hate   1
## 4753                          incredible   1
## 4754                              insane   1
## 4755                               loved   1
## 4756                               loves   1
## 4757                           recommend   1
## 4758                                sick   1
## 4759                            smashing   1
## 4760                                suck   1
## 4761                                true   1
## 4762                               quick   1
## 4763                            recovery   1
## 4764                                1373   1
## 4765                                1403   1
## 4766                                 hey   1
## 4767                               range   1
## 4768                                  de   1
## 4769                                joke   1
## 4770                                  de   1
## 4771                               shift   1
## 4772                             digital   1
## 4773                            strategy   1
## 4774                               blues   1
## 4775                               level   1
## 4776                                4.14   1
## 4777                                4.90   1
## 4778                              denied   1
## 4779                               paths   1
## 4780                             premium   1
## 4781                            workouts   1
## 4782                                line   1
## 4783                               4.251   1
## 4784                                i’ve   1
## 4785                           excellent   1
## 4786                                fell   1
## 4787                            strength   1
## 4788                             closing   1
## 4789                                held   1
## 4790                               pause   1
## 4791                              strain   1
## 4792                             tracker   1
## 4793                            sneakers   1
## 4794                                  26   1
## 4795                                 411   1
## 4796                          absolutely   1
## 4797                                 app   1
## 4798                               email   1
## 4799                             entered   1
## 4800                                 fix   1
## 4801                                it’s   1
## 4802                                i’ve   1
## 4803                                sign   1
## 4804                         unavailable   1
## 4805                             feature   1
## 4806                                 app   1
## 4807                             knowing   1
## 4808                            multiple   1
## 4809                             doesn’t   1
## 4810                             lacking   1
## 4811                                love   1
## 4812                         perspective   1
## 4813                            activity   1
## 4814                                 app   1
## 4815                             awesome   1
## 4816                        consistently   1
## 4817                            distance   1
## 4818                               don’t   1
## 4819                                feet   1
## 4820                                 gps   1
## 4821                                info   1
## 4822                         information   1
## 4823                                mile   1
## 4824                             pausing   1
## 4825                            tracking   1
## 4826                             amazing   1
## 4827                                 map   1
## 4828                             measure   1
## 4829                              photos   1
## 4830                               track   1
## 4831                              tracks   1
## 4832                                   à   1
## 4833                            adhesion   1
## 4834                                 air   1
## 4835                            colorway   1
## 4836                            inspired   1
## 4837                          lunarterra   1
## 4838                               mowab   1
## 4839                                pair   1
## 4840                                sock   1
## 4841                               stuff   1
## 4842                               torre   1
## 4843                                 824   1
## 4844                                 119   1
## 4845                             anymore   1
## 4846                                i’ve   1
## 4847                              tendon   1
## 4848                                 amp   1
## 4849                               issue   1
## 4850                                solo   1
## 4851                            actkiccs   1
## 4852                             swiftly   1
## 4853                                dumb   1
## 4854                               share   1
## 4855                          challenges   1
## 4856                                days   1
## 4857                              highly   1
## 4858                              people   1
## 4859                            recovery   1
## 4860                        subscription   1
## 4861                              física   1
## 4862                                 346   1
## 4863                              change   1
## 4864                             history   1
## 4865                            included   1
## 4866                             running   1
## 4867                             tracked   1
## 4868                             walking   1
## 4869                           correctly   1
## 4870                            customer   1
## 4871                               don’t   1
## 4872                            download   1
## 4873                              finish   1
## 4874                               goals   1
## 4875                              here’s   1
## 4876                                 i’m   1
## 4877                                 log   1
## 4878                               notes   1
## 4879                              streak   1
## 4880                             there’s   1
## 4881                               timer   1
## 4882                            tracking   1
## 4883                                 box   1
## 4884                                calm   1
## 4885                          difference   1
## 4886                            elements   1
## 4887                                size   1
## 4888                              kidney   1
## 4889                                  es   1
## 4890                                 age   1
## 4891                                free   1
## 4892                           generator   1
## 4893                                 mid   1
## 4894                             sparked   1
## 4895                             options   1
## 4896                            workouts   1
## 4897                            activity   1
## 4898                          additional   1
## 4899                                 ads   1
## 4900                              button   1
## 4901                            download   1
## 4902                            features   1
## 4903                                it’d   1
## 4904                               miles   1
## 4905                          pickleball   1
## 4906                          resistance   1
## 4907                             rucking   1
## 4908                              themes   1
## 4909                                time   1
## 4910                              update   1
## 4911                             widgets   1
## 4912                            workouts   1
## 4913                                 468   1
## 4914                                dark   1
## 4915                            workouts   1
## 4916                                1797   1
## 4917                                  11   1
## 4918                              adidas   1
## 4919                          fractional   1
## 4920                               notes   1
## 4921                            personal   1
## 4922                           replacing   1
## 4923                            workouts   1
## 4924                           purchased   1
## 4925                             content   1
## 4926                            exercise   1
## 4927                            features   1
## 4928                             savings   1
## 4929                                 276   1
## 4930                                   1   1
## 4931                              adidas   1
## 4932                                 bro   1
## 4933                           increased   1
## 4934                               tiene   1
## 4935                            promoter   1
## 4936                              boston   1
## 4937                           estupenda   1
## 4938                               level   1
## 4939                              levels   1
## 4940                             running   1
## 4941                                   1   1
## 4942                                  10   1
## 4943                                  11   1
## 4944                                  12   1
## 4945                                  13   1
## 4946                                  14   1
## 4947                                  15   1
## 4948                                  16   1
## 4949                                  17   1
## 4950                                  18   1
## 4951                                  19   1
## 4952                                   2   1
## 4953                                  20   1
## 4954                                  21   1
## 4955                                  22   1
## 4956                                  23   1
## 4957                                  24   1
## 4958                                  25   1
## 4959                                  26   1
## 4960                                  27   1
## 4961                                  28   1
## 4962                                  29   1
## 4963                                   3   1
## 4964                                  30   1
## 4965                                  31   1
## 4966                                  32   1
## 4967                                  33   1
## 4968                                  34   1
## 4969                                  35   1
## 4970                                  36   1
## 4971                                  37   1
## 4972                                  38   1
## 4973                                  39   1
## 4974                                   4   1
## 4975                                  40   1
## 4976                                  41   1
## 4977                                  42   1
## 4978                                  43   1
## 4979                                  44   1
## 4980                                  45   1
## 4981                                  46   1
## 4982                                  47   1
## 4983                                  48   1
## 4984                                  49   1
## 4985                                   5   1
## 4986                                  50   1
## 4987                                  51   1
## 4988                                  52   1
## 4989                                  53   1
## 4990                                  54   1
## 4991                                  55   1
## 4992                                  56   1
## 4993                                  57   1
## 4994                                  58   1
## 4995                                  59   1
## 4996                                   6   1
## 4997                                  60   1
## 4998                                  61   1
## 4999                                  62   1
## 5000                                  63   1
## 5001                                  64   1
## 5002                                  65   1
## 5003                                  66   1
## 5004                                  67   1
## 5005                                  68   1
## 5006                                  69   1
## 5007                                   7   1
## 5008                                  70   1
## 5009                                  71   1
## 5010                                   8   1
## 5011                                   9   1
## 5012                             adiclub   1
## 5013                            adissage   1
## 5014                             adizero   1
## 5015                           announces   1
## 5016                               aruku   1
## 5017                              attire   1
## 5018                                 bad   1
## 5019                            beauties   1
## 5020                               boost   1
## 5021                              boston   1
## 5022                             branded   1
## 5023                            branding   1
## 5024                            busenitz   1
## 5025                              campus   1
## 5026                               china   1
## 5027                                city   1
## 5028                           climacool   1
## 5029                             clothes   1
## 5030                             collage   1
## 5031                              cooked   1
## 5032                             crushed   1
## 5033                              darryn   1
## 5034                             decides   1
## 5035                                 def   1
## 5036                               didnt   1
## 5037                             doesn’t   1
## 5038                               drive   1
## 5039                                 eqt   1
## 5040                                  es   1
## 5041                                 evo   1
## 5042                             factory   1
## 5043                              family   1
## 5044                               forum   1
## 5045                                gear   1
## 5046                               grand   1
## 5047                              guilty   1
## 5048                            handball   1
## 5049                               heads   1
## 5050                               house   1
## 5051                              hummel   1
## 5052                            imported   1
## 5053                           increíble   1
## 5054                               jeans   1
## 5055                              jordan   1
## 5056                              killin   1
## 5057                                kits   1
## 5058                                  la   1
## 5059                               lacks   1
## 5060                             leather   1
## 5061                               legal   1
## 5062                           lettering   1
## 5063                                line   1
## 5064                                logo   1
## 5065                                love   1
## 5066                               makes   1
## 5067                               masks   1
## 5068                                mens   1
## 5069                               merch   1
## 5070                            mexicana   1
## 5071                            midsoles   1
## 5072                               mules   1
## 5073                                  nb   1
## 5074                               north   1
## 5075                              online   1
## 5076                            original   1
## 5077                                  os   1
## 5078                              outlet   1
## 5079                                pair   1
## 5080                                para   1
## 5081                               posts   1
## 5082                                 pro   1
## 5083                           promotion   1
## 5084                           providing   1
## 5085                                  q3   1
## 5086                              raises   1
## 5087                               range   1
## 5088                          rapidmoves   1
## 5089                              reddit   1
## 5090                            releases   1
## 5091                            reliable   1
## 5092                             removed   1
## 5093                            replaces   1
## 5094                             reports   1
## 5095                           responded   1
## 5096                             reviews   1
## 5097                                roms   1
## 5098                                runs   1
## 5099                           runtastic   1
## 5100                               samoa   1
## 5101                              school   1
## 5102                              severs   1
## 5103                            shutting   1
## 5104                                site   1
## 5105                                  sl   1
## 5106                            standard   1
## 5107                               store   1
## 5108                                 t2s   1
## 5109                               tokyo   1
## 5110                                 top   1
## 5111                            trainers   1
## 5112                         transferred   1
## 5113                             trefoil   1
## 5114                                 trx   1
## 5115                                très   1
## 5116                          ultraboost   1
## 5117                                user   1
## 5118                       uygulamasında   1
## 5119                             walking   1
## 5120                               warns   1
## 5121                             website   1
## 5122                        windbreakers   1
## 5123                                  ye   1
## 5124                             youtube   1
## 5125                                  zx   1
## 5126                                site   1
## 5127                            adidasza   1
## 5128                             account   1
## 5129                                   8   1
## 5130                             addidas   1
## 5131                                pro3   1
## 5132                                pro4   1
## 5133                              slides   1
## 5134                                   4   1
## 5135                                   8   1
## 5136                            ayakkabı   1
## 5137                              boston   1
## 5138                                 sl2   1
## 5139                                   9   1
## 5140                       automatically   1
## 5141                               music   1
## 5142                               strap   1
## 5143                           operating   1
## 5144                              profit   1
## 5145                               ideas   1
## 5146                               based   1
## 5147                             failure   1
## 5148                            strategy   1
## 5149                                 382   1
## 5150                                sign   1
## 5151                             running   1
## 5152                                 ads   1
## 5153                              highly   1
## 5154                            jordan's   1
## 5155                                love   1
## 5156                             nonstop   1
## 5157                             runners   1
## 5158                                 408   1
## 5159                             where’s   1
## 5160                           analytics   1
## 5161                            focusing   1
## 5162                             primary   1
## 5163                               stuff   1
## 5164                               voice   1
## 5165                           contained   1
## 5166                                time   1
## 5167                               throw   1
## 5168                                 map   1
## 5169                                 156   1
## 5170                                love   1
## 5171                                 187   1
## 5172                                smdh   1
## 5173                               views   1
## 5174                               glide   1
## 5175                                 cap   1
## 5176                                cute   1
## 5177                                 142   1
## 5178                                1358   1
## 5179                                2004   1
## 5180                                 453   1
## 5181                                 727   1
## 5182                                  88   1
## 5183                                1475   1
## 5184                                2410   1
## 5185                               4.368   1
## 5186                                 747   1
## 5187                                half   1
## 5188                           subreddit   1
## 5189                            compared   1
## 5190                            continue   1
## 5191                              weight   1
## 5192                            compared   1
## 5193                             amazing   1
## 5194                                  52   1
## 5195                                  72   1
## 5196                              august   1
## 5197                             fitness   1
## 5198                              poorly   1
## 5199                              recent   1
## 5200                                   4   1
## 5201                                i’ve   1
## 5202                              poorly   1
## 5203                                 pop   1
## 5204                           explosive   1
## 5205                               speed   1
## 5206                            shoelace   1
## 5207                                1012   1
## 5208                                1345   1
## 5209                                1504   1
## 5210                                 420   1
## 5211                             amazing   1
## 5212                                 bro   1
## 5213                             mileage   1
## 5214                             renders   1
## 5215                              silver   1
## 5216                             version   1
## 5217                               weird   1
## 5218                                1666   1
## 5219                                1720   1
## 5220                                 649   1
## 5221                                 813   1
## 5222                            comfiest   1
## 5223                                   ª   1
## 5224                                1145   1
## 5225                                 888   1
## 5226                                 dee   1
## 5227                                deed   1
## 5228                                 huh   1
## 5229                                 699   1
## 5230                             peloton   1
## 5231                                hell   1
## 5232                                 899   1
## 5233                                2366   1
## 5234                                 713   1
## 5235                              driven   1
## 5236                              friend   1
## 5237                                 map   1
## 5238                                 220   1
## 5239                               loyal   1
## 5240                                1253   1
## 5241                                  37   1
## 5242                                 386   1
## 5243                                 bag   1
## 5244                              bakins   1
## 5245                             bubbles   1
## 5246                             comfort   1
## 5247                              design   1
## 5248                              flight   1
## 5249                              gordan   1
## 5250                                 jet   1
## 5251                             jordans   1
## 5252                              mowabb   1
## 5253                              patrol   1
## 5254                            phordans   1
## 5255                              pippen   1
## 5256                              pocket   1
## 5257                               sport   1
## 5258                                tech   1
## 5259                              threes   1
## 5260                                walk   1
## 5261                                1978   1
## 5262                               movie   1
## 5263                                 90s   1
## 5264                                  97   1
## 5265                           amsterdam   1
## 5266                             devices   1
## 5267                             stopped   1
## 5268                                  90   1
## 5269                                 pro   1
## 5270                                book   1
## 5271                             element   1
## 5272                            inspired   1
## 5273                                 pre   1
## 5274                                 100   1
## 5275                              querer   1
## 5276                               cover   1
## 5277                      sneakeralerthd   1
## 5278                                wall   1
## 5279                          wallstreet   1
## 5280                         piricinilli   1
## 5281                         silverfagan   1
## 5282                             workout   1
## 5283                               hasta   1
## 5284                         dummscience   1
## 5285                           streaming   1
## 5286                               felix   1
## 5287                                2146   1
## 5288                               moves   1
## 5289                                1766   1
## 5290                             project   1
## 5291                                   2   1
## 5292                                   3   1
## 5293                                race   1
## 5294                                4.48   1
## 5295                             limited   1
## 5296                         comfortable   1
## 5297                             updated   1
## 5298                                 lol   1
## 5299                              insole   1
## 5300                                1036   1
## 5301                            distance   1
## 5302                                4.69   1
## 5303                               shoes   1
## 5304                                  86   1
## 5305                                 662   1
## 5306                                  og   1
## 5307                               trash   1
## 5308                            training   1
## 5309                                1247   1
## 5310                                 177   1
## 5311                                  62   1
## 5312                      adidasfootball   1
## 5313                            athletes   1
## 5314                              cardio   1
## 5315                               color   1
## 5316                                easy   1
## 5317                             fitness   1
## 5318                               helps   1
## 5319                              highly   1
## 5320                             insight   1
## 5321                                it’s   1
## 5322                                i’ve   1
## 5323                               model   1
## 5324                             product   1
## 5325                             program   1
## 5326                                  qc   1
## 5327                             quality   1
## 5328                            recourse   1
## 5329                           selection   1
## 5330                                shoe   1
## 5331                               short   1
## 5332                              simply   1
## 5333                               super   1
## 5334                              that’s   1
## 5335                             there’s   1
## 5336                                tool   1
## 5337                             variety   1
## 5338                                yeah   1
## 5339                          motivating   1
## 5340                                1277   1
## 5341                                fire   1
## 5342                               music   1
## 5343                               shoes   1
## 5344                               snike   1
## 5345                              driver   1
## 5346                                 god   1
## 5347                            mapmyrun   1
## 5348                               falls   1
## 5349                                  ua   1
## 5350                          basketball   1
## 5351                            football   1
## 5352                          industrial   1
## 5353                                logo   1
## 5354                           podiatric   1
## 5355                               covid   1
## 5356                                weak   1
## 5357                             awesome   1
## 5358                                1336   1
## 5359                                  mi   1
## 5360                                quem   1
## 5361                                 145   1
## 5362                               clogs   1
## 5363                               color   1
## 5364                           detergent   1
## 5365                               field   1
## 5366                                fire   1
## 5367                                grey   1
## 5368                                 mcl   1
## 5369                                 psc   1
## 5370                                rich   1
## 5371                                sand   1
## 5372                               style   1
## 5373                              upvote   1
## 5374                               white   1
## 5375                            provided   1
## 5376                            concerns   1
## 5377                             divided   1
## 5378                           downgrade   1
## 5379                                goal   1
## 5380                                 map   1
## 5381                                1540   1
## 5382                             devices   1
## 5383                                sooo   1
## 5384                             tablets   1
## 5385                             friends   1
## 5386                                 100   1
## 5387                                love   1
## 5388                               black   1
## 5389                                 280   1
## 5390                               shots   1
## 5391                               don’t   1
## 5392                                read   1
## 5393                               color   1
## 5394                              cusion   1
## 5395                          protection   1
## 5396                             rubbing   1
## 5397                               socks   1
## 5398                             support   1
## 5399                          tendonitis   1
## 5400                            twisters   1
## 5401                                team   1
## 5402                               1,600   1
## 5403                                  70   1
## 5404                                 ceo   1
## 5405                             elliott   1
## 5406                              phased   1
## 5407                               plans   1
## 5408                               skims   1
## 5409                           thousands   1
## 5410                                 100   1
## 5411                                2016   1
## 5412                            features   1
## 5413                           recording   1
## 5414                            repeated   1
## 5415                             robotic   1
## 5416                                 low   1
## 5417                          membership   1
## 5418                           operating   1
## 5419                             revenue   1
## 5420                                2398   1
## 5421                              adidas   1
## 5422                                  li   1
## 5423                                 490   1
## 5424                            colorway   1
## 5425                              cuenta   1
## 5426                          statements   1
## 5427                              garcía   1
## 5428                             camel’s   1
## 5429                                1201   1
## 5430                                 196   1
## 5431                                2063   1
## 5432                                 250   1
## 5433                                 376   1
## 5434                                 380   1
## 5435                                 422   1
## 5436                                 490   1
## 5437                                 896   1
## 5438                              bummed   1
## 5439                                it’s   1
## 5440                                nice   1
## 5441                                nike   1
## 5442                             updated   1
## 5443                               desde   1
## 5444                      principalmente   1
## 5445                                  de   1
## 5446                              además   1
## 5447                                 app   1
## 5448                               buena   1
## 5449                                  de   1
## 5450                      felicitaciones   1
## 5451                                 más   1
## 5452                                pero   1
## 5453                                 por   1
## 5454                                tuvo   1
## 5455                               cheio   1
## 5456                             pratico   1
## 5457                                   é   1
## 5458                               neons   1
## 5459                                  en   1
## 5460                                 112   1
## 5461                                 130   1
## 5462                                 171   1
## 5463                                 175   1
## 5464                                 180   1
## 5465                                2017   1
## 5466                                  21   1
## 5467                                 235   1
## 5468                                 240   1
## 5469                                 242   1
## 5470                                 248   1
## 5471                                 257   1
## 5472                                 260   1
## 5473                                 262   1
## 5474                                 272   1
## 5475                                 287   1
## 5476                                   3   1
## 5477                                  30   1
## 5478                                 356   1
## 5479                                 369   1
## 5480                             3stripe   1
## 5481                                   4   1
## 5482                                 427   1
## 5483                                 433   1
## 5484                                  51   1
## 5485                                  54   1
## 5486                                  73   1
## 5487                          absolutely   1
## 5488                               acabo   1
## 5489                            accurate   1
## 5490                                 add   1
## 5491                            adjusted   1
## 5492                           affecting   1
## 5493                                 app   1
## 5494                         arbitrarily   1
## 5495                       automatically   1
## 5496                              avoids   1
## 5497                               awful   1
## 5498                                 bar   1
## 5499                                 bob   1
## 5500                               bring   1
## 5501                              brings   1
## 5502                            calendar   1
## 5503                                call   1
## 5504                              called   1
## 5505                            calories   1
## 5506                               check   1
## 5507                              choice   1
## 5508                             choices   1
## 5509                         complements   1
## 5510                               conks   1
## 5511                        consistently   1
## 5512                           continues   1
## 5513                             crashed   1
## 5514                             created   1
## 5515                             deadass   1
## 5516                                dear   1
## 5517                           declining   1
## 5518                              design   1
## 5519                           developer   1
## 5520                              didn’t   1
## 5521                        disappointed   1
## 5522                            dropping   1
## 5523                           eficiente   1
## 5524                           everytime   1
## 5525                           excellent   1
## 5526                            feedback   1
## 5527                                 fit   1
## 5528                             fitness   1
## 5529                                fore   1
## 5530                             freezes   1
## 5531                            friendly   1
## 5532                               froze   1
## 5533                                 fun   1
## 5534                           functions   1
## 5535                                 gps   1
## 5536                               hands   1
## 5537                                hard   1
## 5538                              hasn’t   1
## 5539                             healthy   1
## 5540                             helpful   1
## 5541                              highly   1
## 5542                            honestly   1
## 5543                              insist   1
## 5544                       inspirational   1
## 5545                            inspires   1
## 5546                          interfaces   1
## 5547                              invite   1
## 5548                              issues   1
## 5549                                 ive   1
## 5550                                 i’d   1
## 5551                                i’ll   1
## 5552                               lacks   1
## 5553                            launched   1
## 5554                             learned   1
## 5555                                list   1
## 5556                               loads   1
## 5557                             logging   1
## 5558                                logo   1
## 5559                                logs   1
## 5560                               loses   1
## 5561                                lost   1
## 5562                                 map   1
## 5563                               means   1
## 5564                             metrics   1
## 5565                            misfires   1
## 5566                              misses   1
## 5567                                 mmi   1
## 5568                            multiple   1
## 5569                        notification   1
## 5570                                 ntc   1
## 5571                                 oct   1
## 5572                                  og   1
## 5573                                ojly   1
## 5574                              paired   1
## 5575                                 pay   1
## 5576                         performance   1
## 5577                                pero   1
## 5578                            problema   1
## 5579                             promote   1
## 5580                            purchase   1
## 5581                           purchases   1
## 5582                                race   1
## 5583                              rating   1
## 5584                              reason   1
## 5585                           receiving   1
## 5586                            recently   1
## 5587                             refuses   1
## 5588                            replaced   1
## 5589                            requests   1
## 5590                            restarts   1
## 5591                             reviews   1
## 5592                             running   1
## 5593                              screen   1
## 5594                              search   1
## 5595                           seemingly   1
## 5596                                sets   1
## 5597                                shut   1
## 5598                                sign   1
## 5599                             signing   1
## 5600                              simple   1
## 5601                              simply   1
## 5602                              smooth   1
## 5603                             soooooo   1
## 5604                           specially   1
## 5605                              stable   1
## 5606                             started   1
## 5607                              starts   1
## 5608                              stinks   1
## 5609                               stuck   1
## 5610                          suggestion   1
## 5611                               super   1
## 5612                           supported   1
## 5613                           switching   1
## 5614                                sync   1
## 5615                               syncs   1
## 5616                              taught   1
## 5617                                tech   1
## 5618                               tells   1
## 5619                            terrible   1
## 5620                              that’s   1
## 5621                               theme   1
## 5622                                told   1
## 5623                                tons   1
## 5624                            tracking   1
## 5625                              unable   1
## 5626                        unbelievable   1
## 5627                            unusable   1
## 5628                             updates   1
## 5629                               usage   1
## 5630                             useless   1
## 5631                             weren’t   1
## 5632                              what’s   1
## 5633                          whiteboard   1
## 5634                             workout   1
## 5635                            wouldn’t   1
## 5636                               wrong   1
## 5637                                   é   1
## 5638                             company   1
## 5639                             partner   1
## 5640                               sales   1
## 5641                             forcing   1
## 5642                                nike   1
## 5643                               4.362   1
## 5644                             anymore   1
## 5645                                plan   1
## 5646                               tired   1
## 5647                             airplay   1
## 5648                                 app   1
## 5649                                 gps   1
## 5650                               issue   1
## 5651                               phone   1
## 5652                            software   1
## 5653                      subcscriptions   1
## 5654                             watch’s   1
## 5655                               won’t   1
## 5656                            workouts   1
## 5657                               helps   1
## 5658                                اهتم   1
## 5659                              kareem   1
## 5660                       incorporating   1
## 5661                                  ua   1
## 5662                              answer   1
## 5663                              priced   1
## 5664                            manually   1
## 5665                                 137   1
## 5666                                 146   1
## 5667                                 252   1
## 5668                                 add   1
## 5669                            connects   1
## 5670                              easily   1
## 5671                                guys   1
## 5672                                it’s   1
## 5673                                love   1
## 5674                             require   1
## 5675                             section   1
## 5676                               snkrs   1
## 5677                             they’re   1
## 5678                                 483   1
## 5679                            distance   1
## 5680                                home   1
## 5681                         inclusivity   1
## 5682                               avoir   1
## 5683                             trashed   1
## 5684                                pain   1
## 5685                             support   1
## 5686                                  de   1
## 5687                           organized   1
## 5688                            swearing   1
## 5689                                  17   1
## 5690                             anymore   1
## 5691                                 day   1
## 5692                                link   1
## 5693                            injuries   1
## 5694                            workouts   1
## 5695                                 app   1
## 5696                                half   1
## 5697                            infinite   1
## 5698                               owned   1
## 5699                               reign   1
## 5700                               shoes   1
## 5701                                sold   1
## 5702                               store   1
## 5703                             upgrade   1
## 5704                            adjusted   1
## 5705                       advertisement   1
## 5706                            announce   1
## 5707                             atlanta   1
## 5708                               books   1
## 5709                                 bro   1
## 5710                            campaign   1
## 5711                          challenges   1
## 5712                            clothing   1
## 5713                              direct   1
## 5714                            employee   1
## 5715                            engineer   1
## 5716                              family   1
## 5717                              fiscal   1
## 5718                                flow   1
## 5719                                heat   1
## 5720                               hires   1
## 5721                          introduces   1
## 5722                                 i’m   1
## 5723                                 job   1
## 5724                                lays   1
## 5725                               loses   1
## 5726                             machina   1
## 5727                               makes   1
## 5728                              motion   1
## 5729                                 net   1
## 5730                              oakley   1
## 5731                                pays   1
## 5732                         performance   1
## 5733                               plans   1
## 5734                               posts   1
## 5735                                  q2   1
## 5736                              raises   1
## 5737                              reddit   1
## 5738                       restructuring   1
## 5739                              retail   1
## 5740                             revamps   1
## 5741                             reviews   1
## 5742                               sales   1
## 5743                               sells   1
## 5744                               shoes   1
## 5745                              spikes   1
## 5746                           sponsored   1
## 5747                              sports   1
## 5748                             stretch   1
## 5749                             targets   1
## 5750                                team   1
## 5751                             testing   1
## 5752                              timing   1
## 5753                                type   1
## 5754                             updates   1
## 5755                             website   1
## 5756                             youtube   1
## 5757                              gordon   1
## 5758                            tomorrow   1
## 5759                               camel   1
## 5760                            tomorrow   1
## 5761                                 519   1
## 5762                             program   1
## 5763                            scarcity   1
## 5764                               stash   1
## 5765                           featuring   1
## 5766                                 con   1
## 5767                                1688   1
## 5768                                 479   1
## 5769                                 icl   1
## 5770                             pacific   1
## 5771                              market   1
## 5772                             podiums   1
## 5773                             saucony   1
## 5774                               tryna   1
## 5775                                 565   1
## 5776                           downsized   1
## 5777                              gravel   1
## 5778                              runner   1
## 5779                                 705   1
## 5780                                 air   1
## 5781                                care   1
## 5782                                logo   1
## 5783                              losers   1
## 5784                           resellers   1
## 5785                           sketchers   1
## 5786                               music   1
## 5787                          atrapalham   1
## 5788                                 mas   1
## 5789                                 day   1
## 5790                                seal   1
## 5791                             memphis   1
## 5792                                role   1
## 5793                               curry   1
## 5794                                 377   1
## 5795                               retro   1
## 5796                                 742   1
## 5797                                easy   1
## 5798                                boom   1
## 5799                              hookem   1
## 5800                               nikes   1
## 5801                            trainers   1
## 5802                             welfare   1
## 5803                               worth   1
## 5804                                foot   1
## 5805                                 i’m   1
## 5806                               lucas   1
## 5807                                 win   1
## 5808                       athletevanity   1
## 5809                                nike   1
## 5810                          activities   1
## 5811                               style   1
## 5812                                 333   1
## 5813                              adidas   1
## 5814                                camp   1
## 5815                                nike   1
## 5816                               color   1
## 5817                                 até   1
## 5818                                 das   1
## 5819                             pendant   1
## 5820                                1227   1
## 5821                                1753   1
## 5822                              adidas   1
## 5823                               shoes   1
## 5824                             telling   1
## 5825                               coach   1
## 5826                                pace   1
## 5827                                   5   1
## 5828                                   6   1
## 5829                                   7   1
## 5830                                   8   1
## 5831                              bought   1
## 5832                             gaining   1
## 5833                                  il   1
## 5834                                   2   1
## 5835                                2217   1
## 5836                                  tp   1
## 5837                                 714   1
## 5838                              dealer   1
## 5839                           awareness   1
## 5840                               pause   1
## 5841                           uninstall   1
## 5842                             unpause   1
## 5843                                   1   1
## 5844                               pause   1
## 5845                             assumed   1
## 5846                          integrated   1
## 5847                               pause   1
## 5848                              paused   1
## 5849                            populate   1
## 5850                              resume   1
## 5851                                stop   1
## 5852                             stopped   1
## 5853                             syncing   1
## 5854                               tells   1
## 5855                         uninstalled   1
## 5856                          verbalized   1
## 5857                              forest   1
## 5858                              strava   1
## 5859                                  de   1
## 5860                          comparando   1
## 5861                         comfortwise   1
## 5862                            consumer   1
## 5863                           consumers   1
## 5864                               level   1
## 5865                              runner   1
## 5866                                pace   1
## 5867                          connection   1
## 5868                                 toe   1
## 5869                               total   1
## 5870                              double   1
## 5871                                 mis   1
## 5872                            workouts   1
## 5873                                 199   1
## 5874                                2232   1
## 5875                                 312   1
## 5876                               4.392   1
## 5877                                 5.0   1
## 5878                            addition   1
## 5879                             awesome   1
## 5880                            detailed   1
## 5881                                easy   1
## 5882                             feature   1
## 5883                                flic   1
## 5884                                free   1
## 5885                          inaccurate   1
## 5886                                it’s   1
## 5887                                love   1
## 5888                              pretty   1
## 5889                               price   1
## 5890                            required   1
## 5891                               shirt   1
## 5892                                shoe   1
## 5893                               shoes   1
## 5894                                team   1
## 5895                                user   1
## 5896                             workout   1
## 5897                               apple   1
## 5898                                auto   1
## 5899                        inconvenient   1
## 5900                                 fit   1
## 5901                             giyorum   1
## 5902                                  en   1
## 5903                                para   1
## 5904                                heck   1
## 5905                             letsgoo   1
## 5906                              maximo   1
## 5907                                pero   1
## 5908                                 ref   1
## 5909                                 229   1
## 5910                              powder   1
## 5911                             toddler   1
## 5912                                 551   1
## 5913                               media   1
## 5914                                1703   1
## 5915                                2273   1
## 5916                                nike   1
## 5917                         vapourwaver   1
## 5918                               4.304   1
## 5919                                 651   1
## 5920                                 946   1
## 5921                                body   1
## 5922                                bois   1
## 5923                               bunny   1
## 5924                              chance   1
## 5925                          experience   1
## 5926                         experiences   1
## 5927                                hard   1
## 5928                            honestly   1
## 5929                              pretty   1
## 5930                            products   1
## 5931                             reviews   1
## 5932                                  rn   1
## 5933                              screen   1
## 5934                                sell   1
## 5935                              spirit   1
## 5936                        subscription   1
## 5937                               taste   1
## 5938                                 686   1
## 5939                              adidas   1
## 5940                         firefighter   1
## 5941                            sneakers   1
## 5942                                2323   1
## 5943                                 682   1
## 5944                                 35l   1
## 5945                               pants   1
## 5946                               jeans   1
## 5947                               1890s   1
## 5948                                1607   1
## 5949                               fresh   1
## 5950                                gain   1
## 5951                               makes   1
## 5952                             minimus   1
## 5953                               sheet   1
## 5954                               shoes   1
## 5955                                spot   1
## 5956                                 arm   1
## 5957                           knowledge   1
## 5958                               shoes   1
## 5959                                 sun   1
## 5960                               boots   1
## 5961                                1401   1
## 5962                             decline   1
## 5963                                   3   1
## 5964                                 497   1
## 5965                           including   1
## 5966                                pair   1
## 5967                                 745   1
## 5968                                 366   1
## 5969                             account   1
## 5970                               shoes   1
## 5971                                tech   1
## 5972                               dirty   1
## 5973                                rows   1
## 5974                             forward   1
## 5975                             history   1
## 5976                                1750   1
## 5977                                4.21   1
## 5978                                wear   1
## 5979                      arjaybicomskee   1
## 5980                           declaring   1
## 5981                              viable   1
## 5982                                   5   1
## 5983                                amid   1
## 5984                                 cap   1
## 5985                                turf   1
## 5986                                 air   1
## 5987                              guided   1
## 5988                            services   1
## 5989                               teams   1
## 5990                                 app   1
## 5991                              colour   1
## 5992                             fitness   1
## 5993                                free   1
## 5994                           functiona   1
## 5995                          functional   1
## 5996                     functionalities   1
## 5997                                nike   1
## 5998                              styles   1
## 5999                             version   1
## 6000                                   0   1
## 6001                           defective   1
## 6002                       knowledgeable   1
## 6003                               kyrie   1
## 6004                                push   1
## 6005                                nike   1
## 6006                              jersey   1
## 6007                               lines   1
## 6008                            player’s   1
## 6009                              season   1
## 6010                               socks   1
## 6011                             student   1
## 6012                                team   1
## 6013                             workout   1
## 6014                                   2   1
## 6015                                   3   1
## 6016                                 app   1
## 6017                               drain   1
## 6018                               saved   1
## 6019                          separating   1
## 6020                              fandom   1
## 6021                              yellow   1
## 6022                                  ve   1
## 6023                            özelliği   1
## 6024                                2154   1
## 6025                                   2   1
## 6026                                2335   1
## 6027                                  2s   1
## 6028                              adidas   1
## 6029                                 i’m   1
## 6030                                  im   1
## 6031                                 run   1
## 6032                                 sea   1
## 6033                                warn   1
## 6034                           superstar   1
## 6035                                jump   1
## 6036                                 app   1
## 6037                                 244   1
## 6038                               clean   1
## 6039                                nike   1
## 6040                        expectations   1
## 6041                                1344   1
## 6042                                 482   1
## 6043                                1042   1
## 6044                                 616   1
## 6045                                 792   1
## 6046                              colors   1
## 6047                               combo   1
## 6048                                 day   1
## 6049                                girl   1
## 6050                        invigorating   1
## 6051                               italy   1
## 6052                                knit   1
## 6053                                park   1
## 6054                               shoes   1
## 6055                              living   1
## 6056                                 336   1
## 6057                               4.161   1
## 6058                               sound   1
## 6059                              sounds   1
## 6060                        periodically   1
## 6061                            workouts   1
## 6062                             athlete   1
## 6063                             conmigo   1
## 6064                             fitness   1
## 6065                                plan   1
## 6066                              runner   1
## 6067                                shoe   1
## 6068                             workout   1
## 6069                                 i’m   1
## 6070                          forwarding   1
## 6071                              weight   1
## 6072                             quietly   1
## 6073                       restructuring   1
## 6074                           optimally   1
## 6075                                pair   1
## 6076                         foamposites   1
## 6077                               stand   1
## 6078                                 hii   1
## 6079                                hope   1
## 6080                              parkes   1
## 6081                                mark   1
## 6082                         unfortunate   1
## 6083                             siempre   1
## 6084                                 373   1
## 6085                                  al   1
## 6086                                  de   1
## 6087                                 4.6   1
## 6088                                   7   1
## 6089                                1124   1
## 6090                                  75   1
## 6091                                  ya   1
## 6092                          gozooooooo   1
## 6093                            strength   1
## 6094                                pair   1
## 6095                             spezial   1
## 6096                            discount   1
## 6097                               music   1
## 6098                                1945   1
## 6099                               shoes   1
## 6100                                pray   1
## 6101                                 con   1
## 6102                            diseñada   1
## 6103                                  la   1
## 6104                                  mi   1
## 6105                                font   1
## 6106                                 guy   1
## 6107                              screen   1
## 6108                                size   1
## 6109                               sizes   1
## 6110                           complaint   1
## 6111                          complaints   1
## 6112                            exercise   1
## 6113                         frustration   1
## 6114                              sports   1
## 6115                                1857   1
## 6116                                ride   1
## 6117                              riding   1
## 6118                               route   1
## 6119                              trails   1
## 6120                             trainer   1
## 6121                           treadmill   1
## 6122                             widgets   1
## 6123                              hiking   1
## 6124                                it’s   1
## 6125                                love   1
## 6126                               seats   1
## 6127                                love   1
## 6128                                2077   1
## 6129                               share   1
## 6130                            sparking   1
## 6131                                 387   1
## 6132                                2202   1
## 6133                              crocus   1
## 6134                                1757   1
## 6135                               month   1
## 6136                                 309   1
## 6137                              boring   1
## 6138                          bothersome   1
## 6139                       disappointing   1
## 6140                            extended   1
## 6141                              faster   1
## 6142                                firm   1
## 6143                               funky   1
## 6144                             glitchy   1
## 6145                             intense   1
## 6146                        overwhelming   1
## 6147                               plain   1
## 6148                               rough   1
## 6149                            sluggish   1
## 6150                             smudged   1
## 6151                               stark   1
## 6152                             stating   1
## 6153                               wonky   1
## 6154                            phishing   1
## 6155                               sized   1
## 6156                                   5   1
## 6157                                 126   1
## 6158                                 149   1
## 6159                                  1s   1
## 6160                                2343   1
## 6161                                2344   1
## 6162                                2346   1
## 6163                                2349   1
## 6164                                2353   1
## 6165                                2357   1
## 6166                                2359   1
## 6167                                2360   1
## 6168                                2361   1
## 6169                                2365   1
## 6170                                2367   1
## 6171                                2368   1
## 6172                                2371   1
## 6173                                2373   1
## 6174                              2fgrey   1
## 6175                              adidas   1
## 6176                                 amp   1
## 6177                                bars   1
## 6178                               boost   1
## 6179                                cats   1
## 6180                                dots   1
## 6181                                 eye   1
## 6182                              forces   1
## 6183                              friday   1
## 6184                               homie   1
## 6185                              jordan   1
## 6186                               lines   1
## 6187                           metallics   1
## 6188                             midsole   1
## 6189                            midsoles   1
## 6190                               mixed   1
## 6191                             neutral   1
## 6192                                nike   1
## 6193                               oreos   1
## 6194                               pants   1
## 6195                             pegasus   1
## 6196                                shoe   1
## 6197                           stitching   1
## 6198                          superstars   1
## 6199                                 toe   1
## 6200                            versions   1
## 6201                                volt   1
## 6202                                 dn8   1
## 6203                                nike   1
## 6204                             quality   1
## 6205                            nonsense   1
## 6206                                 269   1
## 6207                                 npc   1
## 6208                                 guy   1
## 6209                                1218   1
## 6210                                1239   1
## 6211                                1323   1
## 6212                                1333   1
## 6213                                 ate   1
## 6214                                 lol   1
## 6215                               mixed   1
## 6216                               water   1
## 6217                              adidas   1
## 6218                              nicely   1
## 6219                                nike   1
## 6220                                1800   1
## 6221                              buying   1
## 6222                                 eye   1
## 6223                                it’s   1
## 6224                              campus   1
## 6225                               laces   1
## 6226                               shoes   1
## 6227                            interval   1
## 6228                               tests   1
## 6229                                nike   1
## 6230                                   4   1
## 6231                                june   1
## 6232                              adidas   1
## 6233                           technical   1
## 6234                                1778   1
## 6235                                1784   1
## 6236                                   4   1
## 6237                            charcoal   1
## 6238                              jacket   1
## 6239                              leches   1
## 6240                                  og   1
## 6241                             pegasus   1
## 6242                              ribbon   1
## 6243                              rstill   1
## 6244                                1780   1
## 6245                                1785   1
## 6246                                1995   1
## 6247                           jackson's   1
## 6248                               chair   1
## 6249                           correctly   1
## 6250                            searches   1
## 6251                                 sec   1
## 6252                                 219   1
## 6253                                i’ve   1
## 6254                              fluids   1
## 6255                                4.19   1
## 6256                              cardio   1
## 6257                            changing   1
## 6258                                cool   1
## 6259                                easy   1
## 6260                              faster   1
## 6261                               magic   1
## 6262                                mind   1
## 6263                        powerlifting   1
## 6264                            strength   1
## 6265                               types   1
## 6266                               upper   1
## 6267                              weight   1
## 6268                             workout   1
## 6269                                 add   1
## 6270                                2265   1
## 6271                                4.39   1
## 6272                                  64   1
## 6273                                1981   1
## 6274                                 704   1
## 6275                         factsorstfu   1
## 6276                              fusion   1
## 6277                          sennabolso   1
## 6278                             flowing   1
## 6279                              jacket   1
## 6280                   jacketjacketwomen   1
## 6281                                1287   1
## 6282                                  56   1
## 6283                         application   1
## 6284                                   2   1
## 6285                                vids   1
## 6286                            workouts   1
## 6287                              videos   1
## 6288                                 407   1
## 6289                                431m   1
## 6290                              adidas   1
## 6291                                 ceo   1
## 6292                                 350   1
## 6293                                  4d   1
## 6294                           inventory   1
## 6295                                 pro   1
## 6296                             running   1
## 6297                              triple   1
## 6298                             women's   1
## 6299                           yesterday   1
## 6300                                   9   1
## 6301                              adidas   1
## 6302                               links   1
## 6303                                 150   1
## 6304                               4.205   1
## 6305                              google   1
## 6306                                nike   1
## 6307                                2341   1
## 6308                            compared   1
## 6309                       dipmasterflex   1
## 6310                          incredible   1
## 6311                                 11s   1
## 6312                              lovers   1
## 6313                            marathon   1
## 6314                             signing   1
## 6315                               4.177   1
## 6316                                 lol   1
## 6317                                shit   1
## 6318                               4.106   1
## 6319                                left   1
## 6320                               match   1
## 6321                              rubber   1
## 6322                                blue   1
## 6323                                crew   1
## 6324                             lebrons   1
## 6325                                nike   1
## 6326                            recently   1
## 6327                               sucks   1
## 6328                             thicker   1
## 6329                                  79   1
## 6330                                 map   1
## 6331                                true   1
## 6332                                 hit   1
## 6333                                1186   1
## 6334                                1374   1
## 6335                                2162   1
## 6336                              brings   1
## 6337                             brought   1
## 6338                          discovered   1
## 6339                               doesn   1
## 6340                               feels   1
## 6341                               fresh   1
## 6342                             jumping   1
## 6343                               jumps   1
## 6344                           retailers   1
## 6345                                wear   1
## 6346                               width   1
## 6347                              briefs   1
## 6348                              shorts   1
## 6349                               bring   1
## 6350                                2325   1
## 6351                             combine   1
## 6352                              drives   1
## 6353                              adidas   1
## 6354                                 297   1
## 6355                               gonna   1
## 6356                                pink   1
## 6357                         immediately   1
## 6358                                  94   1
## 6359                               doesn   1
## 6360                                 fog   1
## 6361                        interpreting   1
## 6362                                2047   1
## 6363                                2081   1
## 6364                                 361   1
## 6365                                4.31   1
## 6366                             anymore   1
## 6367                           awareness   1
## 6368                              choose   1
## 6369                             classic   1
## 6370                              create   1
## 6371                               doesn   1
## 6372                               fails   1
## 6373                            identity   1
## 6374                              lineup   1
## 6375                                 lol   1
## 6376                            momentum   1
## 6377                              schill   1
## 6378                               socks   1
## 6379                              aglets   1
## 6380                            playbook   1
## 6381                                1284   1
## 6382                                4.81   1
## 6383                                 add   1
## 6384                          artificial   1
## 6385                               catch   1
## 6386                                copy   1
## 6387                          equivalent   1
## 6388                              podium   1
## 6389                                shoe   1
## 6390                                 sl2   1
## 6391                             changed   1
## 6392                              theses   1
## 6393                            national   1
## 6394                                  em   1
## 6395                           elevation   1
## 6396                                 423   1
## 6397                              내일도   1
## 6398                                free   1
## 6399                                nike   1
## 6400                             amazing   1
## 6401                        consistently   1
## 6402                                i’ve   1
## 6403                           exercises   1
## 6404                                  4s   1
## 6405                                 85s   1
## 6406                                lows   1
## 6407                              models   1
## 6408                               girls   1
## 6409                             farve's   1
## 6410                                2214   1
## 6411                                blue   1
## 6412                             crimson   1
## 6413                              spruce   1
## 6414                               white   1
## 6415                       comprehensive   1
## 6416                          developers   1
## 6417                                  em   1
## 6418                            interval   1
## 6419                           attention   1
## 6420                             balance   1
## 6421                                 joh   1
## 6422                                walk   1
## 6423                             weather   1
## 6424                                 170   1
## 6425                                1727   1
## 6426                                1957   1
## 6427                                2106   1
## 6428                                 231   1
## 6429                                 247   1
## 6430                               4.159   1
## 6431                                 581   1
## 6432                                 623   1
## 6433                                 683   1
## 6434                                 687   1
## 6435                                 693   1
## 6436                                 818   1
## 6437                                 889   1
## 6438                            checking   1
## 6439                            disagree   1
## 6440                                  dm   1
## 6441                              gaffes   1
## 6442                                glad   1
## 6443                                 idk   1
## 6444                                 lol   1
## 6445                                move   1
## 6446                                nice   1
## 6447                                   à   1
## 6448                               reach   1
## 6449                             release   1
## 6450                            specials   1
## 6451                                1463   1
## 6452                               basic   1
## 6453                                 395   1
## 6454                                 app   1
## 6455                                 idk   1
## 6456                                ruck   1
## 6457                               won’t   1
## 6458                                 675   1
## 6459                          adrenaline   1
## 6460                                 guy   1
## 6461                            hyperion   1
## 6462                                1048   1
## 6463                                1054   1
## 6464                                1083   1
## 6465                                1070   1
## 6466                                 333   1
## 6467                                 802   1
## 6468                              bought   1
## 6469                               lot's   1
## 6470                               plays   1
## 6471                               react   1
## 6472                             leading   1
## 6473                               beige   1
## 6474                              joints   1
## 6475                                pair   1
## 6476                                 ugh   1
## 6477                               named   1
## 6478                            programs   1
## 6479                             history   1
## 6480                              issues   1
## 6481                              online   1
## 6482                             options   1
## 6483                             quality   1
## 6484                                  26   1
## 6485                                 4.2   1
## 6486                                 i’m   1
## 6487                                 ubs   1
## 6488                                2396   1
## 6489                               green   1
## 6490                                 hey   1
## 6491                                hope   1
## 6492                           özelliğin   1
## 6493                               4.213   1
## 6494                                 95s   1
## 6495                                pink   1
## 6496                              popped   1
## 6497                            releases   1
## 6498                            versions   1
## 6499                                wrap   1
## 6500                                feel   1
## 6501                           represent   1
## 6502                                1158   1
## 6503                            pretreat   1
## 6504                              broski   1
## 6505                                 cad   1
## 6506                                game   1
## 6507                                  jd   1
## 6508                             overpay   1
## 6509                                   9   1
## 6510                             awesome   1
## 6511                           conscious   1
## 6512                                 ish   1
## 6513                            programa   1
## 6514                         application   1
## 6515                             doesn’t   1
## 6516                               forma   1
## 6517                           excelente   1
## 6518                                 lol   1
## 6519                              fixing   1
## 6520                          experience   1
## 6521                                 gps   1
## 6522                                 396   1
## 6523                              adidas   1
## 6524                                 app   1
## 6525                               bunny   1
## 6526                                nike   1
## 6527                              quando   1
## 6528                          confidence   1
## 6529                              muscle   1
## 6530                            patience   1
## 6531                              wither   1
## 6532                         connections   1
## 6533                             quality   1
## 6534                              milage   1
## 6535                              hiking   1
## 6536                              attack   1
## 6537                              target   1
## 6538                                 478   1
## 6539                                1182   1
## 6540                          developers   1
## 6541                                   1   1
## 6542                              campus   1
## 6543                                i’ve   1
## 6544                                 tie   1
## 6545                                1841   1
## 6546                                 158   1
## 6547                                  10   1
## 6548                                 950   1
## 6549                                mark   1
## 6550                               marks   1
## 6551                                1212   1
## 6552                           excelente   1
## 6553                                love   1
## 6554                                1240   1
## 6555                            february   1
## 6556                           forebodes   1
## 6557                             insider   1
## 6558                                 isn   1
## 6559                       professionals   1
## 6560                               reset   1
## 6561                                stay   1
## 6562                            strategy   1
## 6563                                  em   1
## 6564                            business   1
## 6565                                love   1
## 6566                            schedule   1
## 6567                        accidentally   1
## 6568                               press   1
## 6569                              sticks   1
## 6570                              people   1
## 6571                              frozen   1
## 6572                                1736   1
## 6573                                2152   1
## 6574                                2316   1
## 6575                                 304   1
## 6576                               4.315   1
## 6577                               4.324   1
## 6578                                 579   1
## 6579                                 608   1
## 6580                                 614   1
## 6581                        adidas.where   1
## 6582                            converse   1
## 6583                             dickies   1
## 6584                              easily   1
## 6585                               fresh   1
## 6586                                nice   1
## 6587                                nike   1
## 6588                              normal   1
## 6589                            onitsuka   1
## 6590                              online   1
## 6591                                real   1
## 6592                         replacement   1
## 6593                             they’re   1
## 6594                             program   1
## 6595                              funded   1
## 6596                                 idk   1
## 6597                           equipment   1
## 6598                                fake   1
## 6599                               reign   1
## 6600                              stocks   1
## 6601                             wearing   1
## 6602                                 bye   1
## 6603                                nike   1
## 6604                                shoe   1
## 6605                          personally   1
## 6606                             updated   1
## 6607                                1367   1
## 6608                                 tax   1
## 6609                                 día   1
## 6610                               4.340   1
## 6611                                 lol   1
## 6612                            distance   1
## 6613                                pace   1
## 6614                                  os   1
## 6615                                1556   1
## 6616                                   5   1
## 6617                                 bay   1
## 6618                            workouts   1
## 6619                            workouts   1
## 6620                               bogus   1
## 6621                              center   1
## 6622                                 cfo   1
## 6623                                outs   1
## 6624                                1913   1
## 6625                                2176   1
## 6626                            ajournal   1
## 6627                                 amp   1
## 6628                           myoglobin   1
## 6629                               nikey   1
## 6630                               penny   1
## 6631                               smoke   1
## 6632                                nike   1
## 6633                               covid   1
## 6634                            sporadic   1
## 6635                               shoes   1
## 6636                              slides   1
## 6637                                2290   1
## 6638                              amount   1
## 6639                                burn   1
## 6640                          calculator   1
## 6641                              counts   1
## 6642                        expenditures   1
## 6643                                 ect   1
## 6644                            expended   1
## 6645                                i’ve   1
## 6646                               makes   1
## 6647                               miles   1
## 6648                                pace   1
## 6649                             there’s   1
## 6650                            workouts   1
## 6651                               klein   1
## 6652                             messing   1
## 6653                                  de   1
## 6654                                 por   1
## 6655                             killers   1
## 6656                                film   1
## 6657                            involved   1
## 6658                                  10   1
## 6659                                 una   1
## 6660                                 976   1
## 6661                           pineapple   1
## 6662                               brand   1
## 6663                                  ua   1
## 6664                             leading   1
## 6665                                2000   1
## 6666                                  80   1
## 6667                                 80s   1
## 6668                             gazelle   1
## 6669                                pair   1
## 6670                                sean   1
## 6671                                 105   1
## 6672                                2327   1
## 6673                                 sl2   1
## 6674                               4.207   1
## 6675                                flag   1
## 6676                              street   1
## 6677                                1460   1
## 6678                         association   1
## 6679                           survivors   1
## 6680                              orange   1
## 6681                                1728   1
## 6682                                 add   1
## 6683                              afford   1
## 6684                                beat   1
## 6685                               close   1
## 6686                             compare   1
## 6687                             connect   1
## 6688                              create   1
## 6689                                deal   1
## 6690                         immediately   1
## 6691                              listen   1
## 6692                                live   1
## 6693                            manually   1
## 6694                         necessarily   1
## 6695                             perform   1
## 6696                              praise   1
## 6697                                quit   1
## 6698                               reach   1
## 6699                             recover   1
## 6700                                rely   1
## 6701                                 run   1
## 6702                                save   1
## 6703                                stay   1
## 6704                              stream   1
## 6705                            tolerate   1
## 6706                               track   1
## 6707                                type   1
## 6708                                wait   1
## 6709                                walk   1
## 6710                                wear   1
## 6711                                1549   1
## 6712                              design   1
## 6713                           tracksuit   1
## 6714                               texas   1
## 6715                          categories   1
## 6716                               steps   1
## 6717                                1660   1
## 6718                           footprint   1
## 6719                               plate   1
## 6720                                sole   1
## 6721                                 lol   1
## 6722                                 box   1
## 6723                                roll   1
## 6724                                tube   1
## 6725                             machine   1
## 6726                                 muy   1
## 6727                            strength   1
## 6728                             workout   1
## 6729                              caveat   1
## 6730                              deeply   1
## 6731                            medicine   1
## 6732                                1088   1
## 6733                              shorts   1
## 6734                                2301   1
## 6735                             beetles   1
## 6736                              floors   1
## 6737                      accountability   1
## 6738                                 544   1
## 6739                            deferred   1
## 6740                            beginner   1
## 6741                            everyday   1
## 6742                                shoe   1
## 6743                             wearpro   1
## 6744                                1112   1
## 6745                               rocks   1
## 6746                                tops   1
## 6747                           including   1
## 6748                               goals   1
## 6749                                love   1
## 6750                             section   1
## 6751                                  im   1
## 6752                               stone   1
## 6753                              stones   1
## 6754                              emptor   1
## 6755                                 94s   1
## 6756                              team's   1
## 6757                     charles_bowers3   1
## 6758                               n’est   1
## 6759                              ground   1
## 6760                                 ceo   1
## 6761                              burger   1
## 6762                               phone   1
## 6763                             service   1
## 6764                              signal   1
## 6765                                data   1
## 6766                             watches   1
## 6767                                   4   1
## 6768                                logo   1
## 6769                                   4   1
## 6770                                   1   1
## 6771                                 304   1
## 6772                                 app   1
## 6773                        doisporcento   1
## 6774                                 ago   1
## 6775                              admits   1
## 6776                               bjorn   1
## 6777                               calls   1
## 6778                             donahoe   1
## 6779                              duties   1
## 6780                             elliott   1
## 6781                             extends   1
## 6782                               frisk   1
## 6783                          inheriting   1
## 6784                              kasper   1
## 6785                              patrik   1
## 6786                           replacing   1
## 6787                             signals   1
## 6788                           stephanie   1
## 6789                          transition   1
## 6790                              floors   1
## 6791                                2019   1
## 6792                            training   1
## 6793                                2275   1
## 6794                              issues   1
## 6795                              snarls   1
## 6796                                wear   1
## 6797                                 345   1
## 6798                                 app   1
## 6799                                  im   1
## 6800                                 lol   1
## 6801                                para   1
## 6802                               stats   1
## 6803                                 add   1
## 6804                          aplicación   1
## 6805                        disappointed   1
## 6806                           encourage   1
## 6807                                i’ve   1
## 6808                               speed   1
## 6809                                 182   1
## 6810                                love   1
## 6811                           movements   1
## 6812                               phase   1
## 6813                                 air   1
## 6814                                 don   1
## 6815                               4.164   1
## 6816                                 771   1
## 6817                                post   1
## 6818                                2073   1
## 6819                          activities   1
## 6820                                city   1
## 6821                                love   1
## 6822                            settings   1
## 6823                              values   1
## 6824                                  al   1
## 6825                                nice   1
## 6826                                  de   1
## 6827                                4.58   1
## 6828                                 ntc   1
## 6829                                 325   1
## 6830                                 app   1
## 6831                          experience   1
## 6832                            language   1
## 6833                              mental   1
## 6834                            tracking   1
## 6835                            starting   1
## 6836                              modern   1
## 6837                                gray   1
## 6838                             upwards   1
## 6839                                i’ve   1
## 6840                             pursuit   1
## 6841                               surge   1
## 6842                                 45m   1
## 6843                                 160   1
## 6844                              rivals   1
## 6845                              adidas   1
## 6846                             barkley   1
## 6847                              santos   1
## 6848                           wonderful   1
## 6849                                soft   1
## 6850                          overpriced   1
## 6851                                 gpt   1
## 6852                               shirt   1
## 6853                                nike   1
## 6854                                  en   1
## 6855                                 qui   1
## 6856                                1746   1
## 6857                                1996   1
## 6858                                 bro   1
## 6859                          disposable   1
## 6860                             feeling   1
## 6861                                 fit   1
## 6862                           gluestick   1
## 6863                                  gr   1
## 6864                                http   1
## 6865                            material   1
## 6866                           materials   1
## 6867                                mids   1
## 6868                              online   1
## 6869                                pair   1
## 6870                              prices   1
## 6871                                shit   1
## 6872                               socks   1
## 6873                            knockoff   1
## 6874                                1155   1
## 6875                                200m   1
## 6876                                2169   1
## 6877                                2218   1
## 6878                                 app   1
## 6879                                half   1
## 6880                                 isn   1
## 6881                            marathon   1
## 6882                                mark   1
## 6883                               sizes   1
## 6884                               tempo   1
## 6885                                2292   1
## 6886                                spam   1
## 6887                            unwanted   1
## 6888                                 274   1
## 6889                                 app   1
## 6890                                1144   1
## 6891                                love   1
## 6892                                crew   1
## 6893                             patrick   1
## 6894                                2358   1
## 6895                                  de   1
## 6896                       athletevanity   1
## 6897                                 cat   1
## 6898                                code   1
## 6899                               heart   1
## 6900                              arrive   1
## 6901                                  40   1
## 6902                             fashion   1
## 6903                            flagship   1
## 6904                                lows   1
## 6905                              outlet   1
## 6906                               vibes   1
## 6907                                10.5   1
## 6908                                blue   1
## 6909                                 não   1
## 6910                              person   1
## 6911                             workout   1
## 6912                                1223   1
## 6913                                1366   1
## 6914                                1406   1
## 6915                                 281   1
## 6916                               covid   1
## 6917                           headwinds   1
## 6918                              online   1
## 6919                             revenue   1
## 6920                               sales   1
## 6921                            weakness   1
## 6922                           interface   1
## 6923                              market   1
## 6924                               trail   1
## 6925                                 118   1
## 6926                                 385   1
## 6927                           excelente   1
## 6928                                2304   1
## 6929                               based   1
## 6930                          individual   1
## 6931                           routinely   1
## 6932                            straight   1
## 6933                            workouts   1
## 6934                              ninjas   1
## 6935                              kansas   1
## 6936                              nike's   1
## 6937                               chats   1
## 6938                                talk   1
## 6939                              adidas   1
## 6940                           featuring   1
## 6941                                time   1
## 6942                              silver   1
## 6943                            taylor's   1
## 6944                               shoes   1
## 6945                               choir   1
## 6946                                sock   1
## 6947                               signs   1
## 6948                              foamer   1
## 6949                                imho   1
## 6950                                 kid   1
## 6951                                kids   1
## 6952                              series   1
## 6953                          silhouette   1
## 6954                           vladieboi   1
## 6955                                type   1
## 6956                                 air   1
## 6957                          flightclub   1
## 6958                          overpriced   1
## 6959                              jordan   1
## 6960                               pedro   1
## 6961                                 toe   1
## 6962                                2097   1
## 6963                                4.75   1
## 6964                             formats   1
## 6965                             options   1
## 6966                               stuff   1
## 6967                               types   1
## 6968                             workout   1
## 6969                            prenatal   1
## 6970                                2414   1
## 6971                               4.377   1
## 6972                                 846   1
## 6973                               clogs   1
## 6974                       disappointing   1
## 6975                                heat   1
## 6976                               neons   1
## 6977                                pair   1
## 6978                             pallets   1
## 6979                               retro   1
## 6980                          silhouette   1
## 6981                          throwbacks   1
## 6982                               white   1
## 6983                                2286   1
## 6984                              review   1
## 6985                                1008   1
## 6986                                 193   1
## 6987                                2178   1
## 6988                                2338   1
## 6989                                 741   1
## 6990                                  92   1
## 6991                                 937   1
## 6992                                 949   1
## 6993                                 994   1
## 6994                                  af   1
## 6995                               didnt   1
## 6996                               don’t   1
## 6997                                  em   1
## 6998                           interface   1
## 6999                           intuitive   1
## 7000                           primarily   1
## 7001                                 app   1
## 7002                               racks   1
## 7003                                wall   1
## 7004                               cache   1
## 7005                              stored   1
## 7006                               login   1
## 7007                                save   1
## 7008                                sign   1
## 7009                                 app   1
## 7010                                  9s   1
## 7011                               laced   1
## 7012                                 irl   1
## 7013                                 ben   1
## 7014                                 obv   1
## 7015                                2205   1
## 7016                                 837   1
## 7017                       alternatively   1
## 7018                               don’t   1
## 7019                                 due   1
## 7020                          competitor   1
## 7021                              adidas   1
## 7022                            majority   1
## 7023                             there’s   1
## 7024                        alternatives   1
## 7025                                i’ve   1
## 7026                             current   1
## 7027                              adidas   1
## 7028                           worldwide   1
## 7029                            material   1
## 7030                                2024   1
## 7031                              adidas   1
## 7032                              aswell   1
## 7033                              easily   1
## 7034                                 hey   1
## 7035                              marker   1
## 7036                                 app   1
## 7037                               brand   1
## 7038                                 ntc   1
## 7039                              posing   1
## 7040                             quality   1
## 7041                               store   1
## 7042                              trends   1
## 7043                                hoka   1
## 7044                                   2   1
## 7045                                   4   1
## 7046                                 ass   1
## 7047                                shoe   1
## 7048                                1379   1
## 7049                                1988   1
## 7050                                 261   1
## 7051                          collection   1
## 7052                              fleece   1
## 7053                                it’s   1
## 7054                                 ntc   1
## 7055                          recommends   1
## 7056                              review   1
## 7057                                 800   1
## 7058                               apple   1
## 7059                                 189   1
## 7060                              sizing   1
## 7061                           september   1
## 7062                             bennett   1
## 7063                                lead   1
## 7064                               talks   1
## 7065                               voice   1
## 7066                               walks   1
## 7067                                 124   1
## 7068                                 357   1
## 7069                             amazing   1
## 7070                                chat   1
## 7071                               speak   1
## 7072                                  81   1
## 7073                             feature   1
## 7074                                cola   1
## 7075                                 irl   1
## 7076                                 397   1
## 7077                                  de   1
## 7078                                i’ve   1
## 7079                            numerous   1
## 7080                            received   1
## 7081                            required   1
## 7082                              save40   1
## 7083                              friend   1
## 7084                               shoes   1
## 7085                             bottler   1
## 7086                                1520   1
## 7087                                days   1
## 7088                                 lol   1
## 7089                               water   1
## 7090                             weather   1
## 7091                              season   1
## 7092                                 821   1
## 7093                                sins   1
## 7094                              browne   1
## 7095                                1175   1
## 7096                                 988   1
## 7097                              adidas   1
## 7098                                2132   1
## 7099                                hold   1
## 7100                                logo   1
## 7101                                  12   1
## 7102                                dust   1
## 7103                             jerseys   1
## 7104                                  sb   1
## 7105                                2026   1
## 7106                               sweat   1
## 7107                                 471   1
## 7108                               doesn   1
## 7109                               https   1
## 7110                                  jd   1
## 7111                                zion   1
## 7112                                item   1
## 7113                                 109   1
## 7114                                 123   1
## 7115                                2139   1
## 7116                                  2s   1
## 7117                             awkward   1
## 7118                               black   1
## 7119                            blocking   1
## 7120                              campus   1
## 7121                              coding   1
## 7122                         combination   1
## 7123                              combos   1
## 7124                          eventually   1
## 7125                               lines   1
## 7126                             options   1
## 7127                             palette   1
## 7128                              static   1
## 7129                            tomorrow   1
## 7130                                true   1
## 7131                               white   1
## 7132                                  4s   1
## 7133                                1176   1
## 7134                                2173   1
## 7135                                2429   1
## 7136                                asap   1
## 7137                                fall   1
## 7138                                it’s   1
## 7139                           materials   1
## 7140                                 pop   1
## 7141                                true   1
## 7142                                 121   1
## 7143                                1550   1
## 7144                                1554   1
## 7145                                1639   1
## 7146                                1868   1
## 7147                                2014   1
## 7148                                 220   1
## 7149                               4.202   1
## 7150                               4.284   1
## 7151                                 817   1
## 7152                             awesome   1
## 7153                                wasn   1
## 7154                                1733   1
## 7155                                  22   1
## 7156                                 ive   1
## 7157                              theyve   1
## 7158                                 mix   1
## 7159                              scheme   1
## 7160                         overwhelmed   1
## 7161                                blue   1
## 7162                           aesthetic   1
## 7163                               boots   1
## 7164                                 fix   1
## 7165                              reebok   1
## 7166                               bulls   1
## 7167                              friday   1
## 7168                               hacer   1
## 7169                                 una   1
## 7170                                 red   1
## 7171                               4.230   1
## 7172                               agora   1
## 7173                            tbhonest   1
## 7174                               nikes   1
## 7175                                pair   1
## 7176                               shoes   1
## 7177                             rocking   1
## 7178                                1813   1
## 7179                               4.180   1
## 7180                                4.27   1
## 7181                                 647   1
## 7182                                 676   1
## 7183                                 amp   1
## 7184                             gazelle   1
## 7185                               level   1
## 7186                                shoe   1
## 7187                            straight   1
## 7188                                wise   1
## 7189                                1098   1
## 7190                                1680   1
## 7191                                1744   1
## 7192                                1844   1
## 7193                                1851   1
## 7194                                1860   1
## 7195                                2033   1
## 7196                               4.162   1
## 7197                               4.262   1
## 7198                               4.378   1
## 7199                                4.64   1
## 7200                                4.67   1
## 7201                                 645   1
## 7202                                 740   1
## 7203                                 919   1
## 7204                                 934   1
## 7205                                af1s   1
## 7206                             amazing   1
## 7207                                 amp   1
## 7208                                fits   1
## 7209                                 imo   1
## 7210                             leather   1
## 7211                           leisurely   1
## 7212                              length   1
## 7213                             lifting   1
## 7214                         lightweight   1
## 7215                                love   1
## 7216                           materials   1
## 7217                              modern   1
## 7218                               pairs   1
## 7219                               pants   1
## 7220                             perfect   1
## 7221                            reliable   1
## 7222                              retros   1
## 7223                               short   1
## 7224                              simple   1
## 7225                             sneaker   1
## 7226                                sock   1
## 7227                               socks   1
## 7228                               solid   1
## 7229                            trainers   1
## 7230                             walking   1
## 7231                                2425   1
## 7232                                 542   1
## 7233                                 552   1
## 7234                                 568   1
## 7235                                 698   1
## 7236                                 998   1
## 7237                                  af   1
## 7238                                 amp   1
## 7239                              decent   1
## 7240                                  ho   1
## 7241                                 i’m   1
## 7242                          navigation   1
## 7243                          superstars   1
## 7244                          throwbacks   1
## 7245                             thunder   1
## 7246                       entrenamiento   1
## 7247                                 101   1
## 7248                                 125   1
## 7249                              lfgggg   1
## 7250                            tomorrow   1
## 7251                                1590   1
## 7252                         recommended   1
## 7253                              cheers   1
## 7254                               means   1
## 7255                            sections   1
## 7256                                2384   1
## 7257                                2434   1
## 7258                           collected   1
## 7259                               man's   1
## 7260                             section   1
## 7261                              adidas   1
## 7262                                boom   1
## 7263                               leads   1
## 7264                                eeoc   1
## 7265                                   4   1
## 7266                             suicide   1
## 7267                               shoes   1
## 7268                                   2   1
## 7269                               4.375   1
## 7270                              events   1
## 7271                               massy   1
## 7272                                nike   1
## 7273                                 tab   1
## 7274                               views   1
## 7275                                1243   1
## 7276                               truth   1
## 7277                              adidas   1
## 7278                               can’t   1
## 7279                       disappointing   1
## 7280                             guiding   1
## 7281                               don’t   1
## 7282                             history   1
## 7283                               store   1
## 7284                              fourth   1
## 7285                                1249   1
## 7286                                dias   1
## 7287                             gazelle   1
## 7288                                pics   1
## 7289                             insoles   1
## 7290                                4.29   1
## 7291                             related   1
## 7292                            consejos   1
## 7293                                 gps   1
## 7294                              routes   1
## 7295                         mindfulness   1
## 7296                                true   1
## 7297                                edge   1
## 7298                             element   1
## 7299                           implement   1
## 7300                                love   1
## 7301                                1840   1
## 7302                                 168   1
## 7303                                 abt   1
## 7304                                1843   1
## 7305                              highly   1
## 7306                             quality   1
## 7307                                shoe   1
## 7308                                  es   1
## 7309                             permite   1
## 7310                                fail   1
## 7311                                it’s   1
## 7312                                lack   1
## 7313                        registration   1
## 7314                           supernova   1
## 7315                                2329   1
## 7316                              change   1
## 7317                               close   1
## 7318                                fill   1
## 7319                                flew   1
## 7320                              forgot   1
## 7321                             idiotic   1
## 7322                                 mis   1
## 7323                                move   1
## 7324                                rely   1
## 7325                            separate   1
## 7326                                shut   1
## 7327                            straight   1
## 7328                          unanswered   1
## 7329                               wrong   1
## 7330                            analysts   1
## 7331                            sneakers   1
## 7332                              coming   1
## 7333                              simple   1
## 7334                                 nrc   1
## 7335                              safety   1
## 7336                              slides   1
## 7337                                 toe   1
## 7338                               lifts   1
## 7339                               moves   1
## 7340                           analytics   1
## 7341                           breakdown   1
## 7342                             fitness   1
## 7343                                nice   1
## 7344                            platform   1
## 7345                              review   1
## 7346                            training   1
## 7347                                  já   1
## 7348                                 441   1
## 7349                                it’s   1
## 7350                               level   1
## 7351                              shirts   1
## 7352                                tops   1
## 7353                               apres   1
## 7354                              didn’t   1
## 7355                            distance   1
## 7356                                  el   1
## 7357                                este   1
## 7358                                  la   1
## 7359                                  mi   1
## 7360                               otros   1
## 7361                               temas   1
## 7362                                unas   1
## 7363                           bloomberg   1
## 7364                             painted   1
## 7365                              puerta   1
## 7366                               4.232   1
## 7367                                 884   1
## 7368                                 con   1
## 7369                              you’re   1
## 7370                               plank   1
## 7371                          positivity   1
## 7372                                  mi   1
## 7373                                test   1
## 7374                                4.45   1
## 7375                              served   1
## 7376                              design   1
## 7377                                term   1
## 7378                                1634   1
## 7379                                2009   1
## 7380                                 527   1
## 7381                                 701   1
## 7382                                1473   1
## 7383                                2314   1
## 7384                                mate   1
## 7385                                 não   1
## 7386                               mismo   1
## 7387                                apps   1
## 7388                               users   1
## 7389                               it’ll   1
## 7390                          connection   1
## 7391                              issues   1
## 7392                                i’ve   1
## 7393                                push   1
## 7394                          seamlessly   1
## 7395                             motivan   1
## 7396                               users   1
## 7397                           artículos   1
## 7398                            liberals   1
## 7399                               worse   1
## 7400                                 746   1
## 7401                                   6   1
## 7402                               helps   1
## 7403                            accurate   1
## 7404                           distances   1
## 7405                              tracks   1
## 7406                             badgers   1
## 7407                                i’ve   1
## 7408                             there’s   1
## 7409                              tracks   1
## 7410                              errors   1
## 7411                              hassle   1
## 7412                               issue   1
## 7413                                  iv   1
## 7414                                  ls   1
## 7415                                sync   1
## 7416                               synch   1
## 7417                              acting   1
## 7418                                ahem   1
## 7419                               buggy   1
## 7420                              drains   1
## 7421                             hurting   1
## 7422                                sell   1
## 7423                             sliding   1
## 7424                             telling   1
## 7425                            unusable   1
## 7426                            original   1
## 7427                                2044   1
## 7428                                  99   1
## 7429                             boycott   1
## 7430                        connectivity   1
## 7431                              direct   1
## 7432                            friendly   1
## 7433                               level   1
## 7434                           relations   1
## 7435                             revenue   1
## 7436                            spending   1
## 7437                              adidas   1
## 7438                                aren   1
## 7439                           consumers   1
## 7440                                play   1
## 7441                               yahoo   1
## 7442                            customer   1
## 7443                            customer   1
## 7444                               4.229   1
## 7445                                 ben   1
## 7446                                 bro   1
## 7447                         integration   1
## 7448                              locked   1
## 7449                                nike   1
## 7450                           refreshed   1
## 7451                           regularly   1
## 7452                                  20   1
## 7453                             replace   1
## 7454                            adelante   1
## 7455                          exercising   1
## 7456                            prepping   1
## 7457                              resume   1
## 7458                        unacceptable   1
## 7459                           expansion   1
## 7460                                 mon   1
## 7461                             glucose   1
## 7462                               pause   1
## 7463                                 445   1
## 7464                               white   1
## 7465                                 bee   1
## 7466                                 628   1
## 7467                                  de   1
## 7468                                  el   1
## 7469                          inaccurate   1
## 7470                                 ads   1
## 7471                              access   1
## 7472                             endless   1
## 7473                        unapologetic   1
## 7474                           deadlifts   1
## 7475                               chuck   1
## 7476                              adidas   1
## 7477                              aspect   1
## 7478                               colin   1
## 7479                                2098   1
## 7480                                 254   1
## 7481                                  gg   1
## 7482                               royal   1
## 7483                                2117   1
## 7484                               stops   1
## 7485                                1763   1
## 7486                                1831   1
## 7487                                 291   1
## 7488                                 599   1
## 7489                              adidas   1
## 7490                                blue   1
## 7491                               bring   1
## 7492                              camera   1
## 7493                                data   1
## 7494                                 imo   1
## 7495                         instructors   1
## 7496                                 lol   1
## 7497                             mapping   1
## 7498                             outfits   1
## 7499                              review   1
## 7500                               shoes   1
## 7501                               stuff   1
## 7502                                tone   1
## 7503                              unique   1
## 7504                               video   1
## 7505                              summer   1
## 7506                             weather   1
## 7507                              winter   1
## 7508                               shoes   1
## 7509                                nike   1
## 7510                                1001   1
## 7511                                1974   1
## 7512                                1976   1
## 7513                               4.136   1
## 7514                               4.183   1
## 7515                                 fam   1
## 7516                                half   1
## 7517                                 lol   1
## 7518                              resell   1
## 7519                                 sum   1
## 7520                              theory   1
## 7521                                 tho   1
## 7522                                1052   1
## 7523                                mine   1
## 7524                                   2   1
## 7525                               black   1
## 7526                           franchise   1
## 7527                            workouts   1
## 7528                              larger   1
## 7529                                  af   1
## 7530                           lockdowns   1
## 7531                                team   1
## 7532                           workforce   1
## 7533                              commit   1
## 7534                                2311   1
## 7535                           birthdate   1
## 7536                                data   1
## 7537                                feet   1
## 7538                               route   1
## 7539                                time   1
## 7540                             version   1
## 7541                               words   1
## 7542                                 442   1
## 7543                            measured   1
## 7544                               pause   1
## 7545                             running   1
## 7546                           solitario   1
## 7547                         electrónico   1
## 7548                        electrónicos   1
## 7549                                  10   1
## 7550                           excelente   1
## 7551                                você   1
## 7552                            inspired   1
## 7553                              purple   1
## 7554                                 160   1
## 7555                                base   1
## 7556                             cutting   1
## 7557                             savings   1
## 7558                                rica   1
## 7559                                 250   1
## 7560                                  50   1
## 7561                            expected   1
## 7562                             batting   1
## 7563                               shirt   1
## 7564                              stance   1
## 7565                                  ua   1
## 7566                              locate   1
## 7567                               click   1
## 7568                             recover   1
## 7569                                stay   1
## 7570                                walk   1
## 7571                              estate   1
## 7572                            amiright   1
## 7573                           happening   1
## 7574                                it’s   1
## 7575                             mileage   1
## 7576                               steps   1
## 7577                              simple   1
## 7578                           clockwise   1
## 7579                            controls   1
## 7580                            calories   1
## 7581                              didn’t   1
## 7582                            workouts   1
## 7583                                runs   1
## 7584                            workouts   1
## 7585                              adidas   1
## 7586                                data   1
## 7587                              runner   1
## 7588                               worst   1
## 7589                                  je   1
## 7590                             minutes   1
## 7591                                pair   1
## 7592                               pairs   1
## 7593                         suggestions   1
## 7594                               times   1
## 7595                             women's   1
## 7596                                yoga   1
## 7597                                 yrs   1
## 7598                                1010   1
## 7599                               c’est   1
## 7600                                 2.0   1
## 7601                               4.382   1
## 7602                               4.396   1
## 7603                                1896   1
## 7604                             edition   1
## 7605                            touching   1
## 7606                                 511   1
## 7607                                cost   1
## 7608                              upside   1
## 7609                                  11   1
## 7610                                 685   1
## 7611                          disruption   1
## 7612                            lockdown   1
## 7613                          quarantine   1
## 7614                             strains   1
## 7615                             women's   1
## 7616                            workouts   1
## 7617                                1402   1
## 7618                                2008   1
## 7619                             deleted   1
## 7620                                 app   1
## 7621                              jersey   1
## 7622                                 234   1
## 7623                                city   1
## 7624                             crashes   1
## 7625                              issues   1
## 7626                               pleas   1
## 7627                               won’t   1
## 7628                                 app   1
## 7629                                   2   1
## 7630                          constantly   1
## 7631                                i’ve   1
## 7632                                love   1
## 7633                                 455   1
## 7634                               won’t   1
## 7635                                pair   1
## 7636                                1714   1
## 7637                                   4   1
## 7638                              adidas   1
## 7639                              legacy   1
## 7640                             loyalty   1
## 7641                                miss   1
## 7642                              people   1
## 7643                              pickup   1
## 7644                             respect   1
## 7645                                shit   1
## 7646                                wear   1
## 7647                                2332   1
## 7648                                2352   1
## 7649                                2372   1
## 7650                                esta   1
## 7651                                1106   1
## 7652                               prone   1
## 7653                                 due   1
## 7654                            memories   1
## 7655                            friendly   1
## 7656                             account   1
## 7657                            function   1
## 7658                            glitches   1
## 7659                               space   1
## 7660                                 328   1
## 7661                            features   1
## 7662                                card   1
## 7663                               trump   1
## 7664                             protect   1
## 7665                              length   1
## 7666                                neck   1
## 7667                             stylish   1
## 7668                                 977   1
## 7669                            location   1
## 7670                               white   1
## 7671                                 449   1
## 7672                             classic   1
## 7673                            contrast   1
## 7674                               daros   1
## 7675                             ronaldo   1
## 7676                                 547   1
## 7677                                 550   1
## 7678                             classic   1
## 7679                              mellow   1
## 7680                              hoodie   1
## 7681                            leggings   1
## 7682                               style   1
## 7683                                tops   1
## 7684               hoodiesweatshirtwomen   1
## 7685                               train   1
## 7686                            training   1
## 7687                        practitioner   1
## 7688                                shot   1
## 7689                                 414   1
## 7690                                2313   1
## 7691                                feet   1
## 7692                          serenocrvg   1
## 7693                             writing   1
## 7694                                  bc   1
## 7695                                  de   1
## 7696                           actividad   1
## 7697                                solo   1
## 7698                                  ya   1
## 7699                                 los   1
## 7700                               mente   1
## 7701                                  de   1
## 7702                              aspect   1
## 7703                                1394   1
## 7704                             vulture   1
## 7705                                  la   1
## 7706                                2026   1
## 7707                              brazil   1
## 7708                              insane   1
## 7709                             jerseys   1
## 7710                                kits   1
## 7711                               stand   1
## 7712                            workouts   1
## 7713                                1587   1
## 7714                           customers   1
## 7715                           favourite   1
## 7716                              fitbit   1
## 7717                           fractures   1
## 7718                                mile   1
## 7719                              modern   1
## 7720                          navigation   1
## 7721                         performance   1
## 7722                            platform   1
## 7723                                race   1
## 7724                             running   1
## 7725                                time   1
## 7726                            training   1
## 7727                             updates   1
## 7728                             version   1
## 7729                                   7   1
## 7730                               brand   1
## 7731                             extends   1
## 7732                                flow   1
## 7733                                 fox   1
## 7734                                left   1
## 7735                                  xi   1
## 7736                                 ngl   1
## 7737                               4.380   1
## 7738                                 set   1
## 7739                                shoe   1
## 7740                                foam   1
## 7741                            platform   1
## 7742                               setup   1
## 7743                               setup   1
## 7744                                 401   1
## 7745                                 aj1   1
## 7746                              alerts   1
## 7747                              booker   1
## 7748                              cheers   1
## 7749                              timers   1
## 7750                              flawed   1
## 7751                              return   1
## 7752                               heart   1
## 7753                             options   1
## 7754                                cost   1
## 7755                                lows   1
## 7756                                 sku   1
## 7757                                 914   1
## 7758                                   2   1
## 7759                              dozens   1
## 7760                              moving   1
## 7761                      sustainability   1
## 7762                                plan   1
## 7763                           wholesale   1
## 7764                                1887   1
## 7765                                 ppl   1
## 7766                                 sea   1
## 7767                                  gt   1
## 7768                                wide   1
## 7769                              adidas   1
## 7770                               5,000   1
## 7771                          consistent   1
## 7772                             routine   1
## 7773                             running   1
## 7774                             support   1
## 7775                                  le   1
## 7776                              énorme   1
## 7777                               track   1
## 7778                            national   1
## 7779                              adidas   1
## 7780                                post   1
## 7781                                shoe   1
## 7782                               shoes   1
## 7783                               wears   1
## 7784                                1259   1
## 7785                                1286   1
## 7786                                1701   1
## 7787                          activities   1
## 7788                               basis   1
## 7789                               can’t   1
## 7790                          categories   1
## 7791                           distances   1
## 7792                              errand   1
## 7793                            exercise   1
## 7794                                it’s   1
## 7795                                i’ve   1
## 7796                             jogging   1
## 7797                           necessity   1
## 7798                                pair   1
## 7799                                runs   1
## 7800                                shoe   1
## 7801                            tracking   1
## 7802                                walk   1
## 7803                               walks   1
## 7804                               wears   1
## 7805                              weekly   1
## 7806                             workout   1
## 7807                            workouts   1
## 7808                              campus   1
## 7809                                   ã   1
## 7810                                1100   1
## 7811                                2102   1
## 7812                                 bro   1
## 7813                                 gem   1
## 7814                                love   1
## 7815                              outlet   1
## 7816                             quality   1
## 7817                           resellers   1
## 7818                                shot   1
## 7819                               solid   1
## 7820                                   û   1
## 7821                                 idk   1
## 7822                            wavering   1
## 7823                               boots   1
## 7824                             classes   1
## 7825                                breh   1
## 7826                                 app   1
## 7827                                blue   1
## 7828                        environments   1
## 7829                               grass   1
## 7830                                grey   1
## 7831                              purple   1
## 7832                                time   1
## 7833                               color   1
## 7834                                grey   1
## 7835                               tough   1
## 7836                      cristianodaros   1
## 7837                              coulda   1
## 7838                           atividade   1
## 7839                                   2   1
## 7840                                 900   1
## 7841                              adidas   1
## 7842                               apple   1
## 7843                             archive   1
## 7844                            blocking   1
## 7845                           cleansing   1
## 7846                          collection   1
## 7847                          compatible   1
## 7848                           ecosystem   1
## 7849                              export   1
## 7850                            exported   1
## 7851                                 hog   1
## 7852                                i’ve   1
## 7853                            manually   1
## 7854                           migration   1
## 7855                            policies   1
## 7856                                runs   1
## 7857                               saver   1
## 7858                                scam   1
## 7859                             sources   1
## 7860                            starting   1
## 7861                                1392   1
## 7862                                 343   1
## 7863                                   6   1
## 7864                                   8   1
## 7865                              friday   1
## 7866                                it’s   1
## 7867                               wrong   1
## 7868                            coincide   1
## 7869                               error   1
## 7870                         registrados   1
## 7871                          absolutely   1
## 7872                              soccer   1
## 7873                                2247   1
## 7874                                  10   1
## 7875                                1521   1
## 7876                                1604   1
## 7877                                1656   1
## 7878                                1754   1
## 7879                                1808   1
## 7880                                1980   1
## 7881                                2170   1
## 7882                                 241   1
## 7883                                 286   1
## 7884                                 296   1
## 7885                                 337   1
## 7886                                   4   1
## 7887                               4.107   1
## 7888                                4.44   1
## 7889                                 438   1
## 7890                                 473   1
## 7891                                  75   1
## 7892                                  78   1
## 7893                                 amp   1
## 7894                           brightens   1
## 7895                                 ceo   1
## 7896                          completely   1
## 7897                               crash   1
## 7898                                gift   1
## 7899                              giving   1
## 7900                                grey   1
## 7901                              hooped   1
## 7902                                it’s   1
## 7903                                 i’d   1
## 7904                              matter   1
## 7905                             perfect   1
## 7906                          progressed   1
## 7907                             release   1
## 7908                         shenanigans   1
## 7909                                shoe   1
## 7910                                 sir   1
## 7911                             sneaker   1
## 7912                               steps   1
## 7913                              that’s   1
## 7914                             version   1
## 7915                             walking   1
## 7916                                wall   1
## 7917                                wife   1
## 7918                                1278   1
## 7919                                  20   1
## 7920                                2068   1
## 7921                                2145   1
## 7922                               4.286   1
## 7923                             burners   1
## 7924                            charging   1
## 7925                               funny   1
## 7926                                love   1
## 7927                                 map   1
## 7928                              nike’s   1
## 7929                             reduced   1
## 7930                                1950   1
## 7931                                 lat   1
## 7932                                  13   1
## 7933                              agosto   1
## 7934                         assinaturas   1
## 7935                         bendiciones   1
## 7936                              correo   1
## 7937                             corrida   1
## 7938                               créer   1
## 7939                           cualquier   1
## 7940                              cuenta   1
## 7941                          diferentes   1
## 7942                            energias   1
## 7943                       entrenamiento   1
## 7944                             espalda   1
## 7945                                esta   1
## 7946                          exercícios   1
## 7947                              fintes   1
## 7948                                 gps   1
## 7949                                gran   1
## 7950                             jericho   1
## 7951                              marcar   1
## 7952                          nacimiento   1
## 7953                             navegar   1
## 7954                               nuevo   1
## 7955                             partida   1
## 7956                          relajación   1
## 7957                              romper   1
## 7958                                 sac   1
## 7959                            terminar   1
## 7960                              tierra   1
## 7961                                 tus   1
## 7962                           téléphone   1
## 7963                                unos   1
## 7964                          validation   1
## 7965                              vender   1
## 7966                                 610   1
## 7967                                  af   1
## 7968                                 app   1
## 7969                               dunks   1
## 7970                             quickly   1
## 7971                              resell   1
## 7972                           sprinting   1
## 7973                              versus   1
## 7974                             haven’t   1
## 7975                            compound   1
## 7976                                1610   1
## 7977                                2164   1
## 7978                                2315   1
## 7979                                 249   1
## 7980                                 268   1
## 7981                           materials   1
## 7982                             where'd   1
## 7983                          personally   1
## 7984                               shoes   1
## 7985                           developer   1
## 7986                             friends   1
## 7987                                 god   1
## 7988                              spread   1
## 7989                           returning   1
## 7990                              panels   1
## 7991                            sections   1
## 7992                                2022   1
## 7993                       disappointing   1
## 7994                                it’s   1
## 7995                                 atm   1
## 7996                                   1   1
## 7997                                  19   1
## 7998                                  31   1
## 7999                                   9   1
## 8000                              no22nd   1
## 8001                             quarter   1
## 8002                              flawed   1
## 8003                                free   1
## 8004                              person   1
## 8005                                runs   1
## 8006                             support   1
## 8007                            workouts   1
## 8008                          waterproof   1
## 8009                                hard   1
## 8010                              bought   1
## 8011                             jointly   1
## 8012                                 428   1
## 8013                                 450   1
## 8014                            majority   1
## 8015                                   4   1
## 8016                              midway   1
## 8017                                   1   1
## 8018                                  12   1
## 8019                                   5   1
## 8020                             quality   1
## 8021                          incredibly   1
## 8022                                 af1   1
## 8023                                 das   1
## 8024                               black   1
## 8025                           holetoday   1
## 8026                       understanding   1
## 8027                                cuts   1
## 8028                        disappointed   1
## 8029                            invested   1
## 8030                                 457   1
## 8031                             copping   1
## 8032                                dead   1
## 8033                               slept   1
## 8034                               worth   1
## 8035                                 mix   1
## 8036                                shoe   1
## 8037                                1231   1
## 8038                                 app   1
## 8039                              shirts   1
## 8040                                 una   1
## 8041                                 tax   1
## 8042                            rotation   1
## 8043                                anta   1
## 8044                          fahrenheit   1
## 8045                               flame   1
## 8046                            deadline   1
## 8047                          configurar   1
## 8048                                  de   1
## 8049                              editar   1
## 8050                            editarla   1
## 8051                               poner   1
## 8052                         frustrating   1
## 8053                                1205   1
## 8054                                1943   1
## 8055                                 200   1
## 8056                                2086   1
## 8057                                2309   1
## 8058                                  63   1
## 8059                                 app   1
## 8060                                half   1
## 8061                                  io   1
## 8062                              logged   1
## 8063                             variety   1
## 8064                           worthless   1
## 8065                               ankle   1
## 8066                              record   1
## 8067                                  11   1
## 8068                                lost   1
## 8069                               worst   1
## 8070                               sport   1
## 8071                            thinking   1
## 8072                                 due   1
## 8073                            rebounds   1
## 8074                              videos   1
## 8075                             message   1
## 8076                                 96s   1
## 8077                              jacket   1
## 8078                               jeans   1
## 8079                                2158   1
## 8080                            colorway   1
## 8081                             midsole   1
## 8082                             workout   1
## 8083                               4.271   1
## 8084                                 sea   1
## 8085                          overworked   1
## 8086                              retail   1
## 8087                            compared   1
## 8088                                 mon   1
## 8089                              heures   1
## 8090                                  la   1
## 8091                                2011   1
## 8092                        alimentación   1
## 8093                           movilidad   1
## 8094                                 363   1
## 8095                              choice   1
## 8096                               enjoy   1
## 8097                              hasn’t   1
## 8098                                it’s   1
## 8099                            language   1
## 8100                                nice   1
## 8101                                team   1
## 8102                               plans   1
## 8103                            workouts   1
## 8104                                1562   1
## 8105                            honestly   1
## 8106                                ease   1
## 8107                                 con   1
## 8108                             outcome   1
## 8109                            settings   1
## 8110                                 417   1
## 8111                               yeezy   1
## 8112                             america   1
## 8113                               socks   1
## 8114                               voice   1
## 8115                            analysis   1
## 8116                            features   1
## 8117                              review   1
## 8118                                shoe   1
## 8119                               stats   1
## 8120                                1288   1
## 8121                                root   1
## 8122                              mizuno   1
## 8123                                  la   1
## 8124                                   7   1
## 8125                            response   1
## 8126                             apparel   1
## 8127                               fixed   1
## 8128                                i’ve   1
## 8129                            accurate   1
## 8130                               won’t   1
## 8131                            response   1
## 8132                               niche   1
## 8133                               shoes   1
## 8134                              google   1
## 8135                                nike   1
## 8136                               solid   1
## 8137                                1328   1
## 8138                                   é   1
## 8139                           awareness   1
## 8140                               worse   1
## 8141                          kilómetros   1
## 8142                                   û   1
## 8143                               socks   1
## 8144                            sporting   1
## 8145                                 fit   1
## 8146                                   1   1
## 8147                             compute   1
## 8148                              forget   1
## 8149                                 log   1
## 8150                               solve   1
## 8151                           subscribe   1
## 8152                              causas   1
## 8153                                lace   1
## 8154                                4.76   1
## 8155                                  48   1
## 8156                                  55   1
## 8157                                 629   1
## 8158                            compared   1
## 8159                              people   1
## 8160                              choice   1
## 8161                                  90   1
## 8162                            allowing   1
## 8163                               level   1
## 8164                              muscle   1
## 8165                               sales   1
## 8166                               shift   1
## 8167                            clothing   1
## 8168                               party   1
## 8169                            sweaters   1
## 8170                                 les   1
## 8171                              retail   1
## 8172                       realdipmaster   1
## 8173                        acceleration   1
## 8174                             reports   1
## 8175                               sales   1
## 8176                             running   1
## 8177                             ramadan   1
## 8178                              called   1
## 8179                              linked   1
## 8180                                 455   1
## 8181                               cheap   1
## 8182                              scally   1
## 8183                             runners   1
## 8184                                 vet   1
## 8185                               can’t   1
## 8186                          completely   1
## 8187                                i’ve   1
## 8188                              family   1
## 8189                                it’s   1
## 8190                                 443   1
## 8191                         aggravating   1
## 8192                                nike   1
## 8193                               voice   1
## 8194                             workout   1
## 8195                               wrong   1
## 8196                             changed   1
## 8197                               dunks   1
## 8198                                 fun   1
## 8199                               happy   1
## 8200                              puerto   1
## 8201                               yorba   1
## 8202                               issue   1
## 8203                               codes   1
## 8204                              coupon   1
## 8205                             pegasus   1
## 8206                                  80   1
## 8207                                 ntc   1
## 8208                              claims   1
## 8209                                1236   1
## 8210                                   5   1
## 8211                               mucho   1
## 8212                             running   1
## 8213                                it’s   1
## 8214                              aspect   1
## 8215                                user   1
## 8216                                 726   1
## 8217                             mileage   1
## 8218                                 361   1
## 8219                            distance   1
## 8220                              social   1
## 8221                               split   1
## 8222                               sonic   1
## 8223                               world   1
## 8224                                 506   1
## 8225                               phase   1
## 8226                            accuracy   1
## 8227                             anymore   1
## 8228                             average   1
## 8229                               based   1
## 8230                            calories   1
## 8231                              casual   1
## 8232                          challenges   1
## 8233                            compared   1
## 8234                           completed   1
## 8235                             current   1
## 8236                            downside   1
## 8237                            duration   1
## 8238                                hike   1
## 8239                               isn’t   1
## 8240                                it’s   1
## 8241                                i’ve   1
## 8242                                lags   1
## 8243                            measured   1
## 8244                         measurement   1
## 8245                             morning   1
## 8246                             reading   1
## 8247                             runners   1
## 8248                             running   1
## 8249                                runs   1
## 8250                               speed   1
## 8251                               steps   1
## 8252                             tracker   1
## 8253                            tracking   1
## 8254                              walked   1
## 8255                                 app   1
## 8256                          challenges   1
## 8257                           completed   1
## 8258                                 ran   1
## 8259                           uploading   1
## 8260                             workers   1
## 8261                           directeur   1
## 8262                                   2   1
## 8263                                   4   1
## 8264                                   5   1
## 8265                           september   1
## 8266                         collections   1
## 8267                              reebok   1
## 8268                                 wtr   1
## 8269                                 329   1
## 8270                                 fix   1
## 8271                            returned   1
## 8272                             tearing   1
## 8273                                 cut   1
## 8274                                zach   1
## 8275                               miles   1
## 8276                          accurately   1
## 8277                         communicate   1
## 8278                             connect   1
## 8279                              crease   1
## 8280                                feel   1
## 8281                                 fit   1
## 8282                               force   1
## 8283                              format   1
## 8284                                 pay   1
## 8285                            register   1
## 8286                             require   1
## 8287                             reverse   1
## 8288                                save   1
## 8289                                send   1
## 8290                               solve   1
## 8291                                time   1
## 8292                               wanna   1
## 8293                          apparently   1
## 8294                                 doo   1
## 8295                               ready   1
## 8296                               walks   1
## 8297                                 por   1
## 8298                            football   1
## 8299                                 571   1
## 8300                              profit   1
## 8301                               yeezy   1
## 8302                                2125   1
## 8303                             crónico   1
## 8304                              admits   1
## 8305                               holds   1
## 8306                               tells   1
## 8307                                 200   1
## 8308                             portion   1
## 8309                                  se   1
## 8310                                 sea   1
## 8311                                 due   1
## 8312                                 lie   1
## 8313                                live   1
## 8314                              notice   1
## 8315                                read   1
## 8316                                talk   1
## 8317                          understand   1
## 8318                               waste   1
## 8319                             account   1
## 8320                              assist   1
## 8321                            bludgeon   1
## 8322                               break   1
## 8323                               bunch   1
## 8324                                care   1
## 8325                            download   1
## 8326                               exist   1
## 8327                              expect   1
## 8328                                 fix   1
## 8329                              forget   1
## 8330                                it’s   1
## 8331                                mind   1
## 8332                              notice   1
## 8333                             realize   1
## 8334                            register   1
## 8335                                shut   1
## 8336                               swipe   1
## 8337                              update   1
## 8338                                wait   1
## 8339                                wear   1
## 8340                                lmao   1
## 8341                                 170   1
## 8342                                sock   1
## 8343                                 156   1
## 8344                                1663   1
## 8345                                1724   1
## 8346                                1869   1
## 8347                                1912   1
## 8348                                2122   1
## 8349                                 214   1
## 8350                                2223   1
## 8351                                 284   1
## 8352                                 606   1
## 8353                                 967   1
## 8354                                 980   1
## 8355                              option   1
## 8356                               setup   1
## 8357                                pair   1
## 8358                                 pic   1
## 8359                                bout   1
## 8360                         rollerskate   1
## 8361                           basically   1
## 8362                                años   1
## 8363                            counting   1
## 8364                               print   1
## 8365                                 bro   1
## 8366                             brother   1
## 8367                                1535   1
## 8368                              rating   1
## 8369                                 map   1
## 8370                                 cuz   1
## 8371                           exercises   1
## 8372                            workouts   1
## 8373                            workouts   1
## 8374                                   4   1
## 8375                                 app   1
## 8376                                 nrc   1
## 8377                           runtastic   1
## 8378                                26.3   1
## 8379                            horrible   1
## 8380                                2322   1
## 8381                                 484   1
## 8382                                 573   1
## 8383                               happy   1
## 8384                             phoenix   1
## 8385                              button   1
## 8386                                  fo   1
## 8387                          disrespect   1
## 8388                             deleted   1
## 8389                               apple   1
## 8390                             battery   1
## 8391                         inspiration   1
## 8392                            straight   1
## 8393                                4.62   1
## 8394                                1874   1
## 8395                                shoe   1
## 8396                                   2   1
## 8397                                home   1
## 8398                                  rc   1
## 8399                               train   1
## 8400                                  ua   1
## 8401                              rivals   1
## 8402                                  48   1
## 8403                                  52   1
## 8404                        misdelivered   1
## 8405                               pulls   1
## 8406                           character   1
## 8407                           consumers   1
## 8408                          motivation   1
## 8409                                1527   1
## 8410                              300.00   1
## 8411                               4.269   1
## 8412                                cool   1
## 8413                                date   1
## 8414                            debating   1
## 8415                             fingers   1
## 8416                                shoe   1
## 8417                                4.91   1
## 8418                            recently   1
## 8419                                   6   1
## 8420                                  12   1
## 8421                                  17   1
## 8422                                   3   1
## 8423                                  35   1
## 8424                                   5   1
## 8425                             workout   1
## 8426                            trainer2   1
## 8427                            training   1
## 8428                                 amp   1
## 8429                                 fit   1
## 8430                               socks   1
## 8431                              modern   1
## 8432                             restock   1
## 8433                                coup   1
## 8434                           chambered   1
## 8435                                   0   1
## 8436                                1320   1
## 8437                               4.133   1
## 8438                                 466   1
## 8439                                mine   1
## 8440                            pitching   1
## 8441                                told   1
## 8442                                1559   1
## 8443                                   7   1
## 8444                                 bag   1
## 8445                                 yea   1
## 8446                            finisher   1
## 8447                                 ass   1
## 8448                                 bot   1
## 8449                                hard   1
## 8450                               https   1
## 8451                              people   1
## 8452                               reply   1
## 8453                                shit   1
## 8454                                rack   1
## 8455                         dummscience   1
## 8456                              casual   1
## 8457                      collaborations   1
## 8458                                lows   1
## 8459                                  se   1
## 8460                                1340   1
## 8461                                1691   1
## 8462                                1804   1
## 8463                                1823   1
## 8464                                 637   1
## 8465                                   8   1
## 8466                                af1s   1
## 8467                              airmax   1
## 8468                                 def   1
## 8469                            hahahaha   1
## 8470                                 imo   1
## 8471                                  sb   1
## 8472                         versatility   1
## 8473                               worth   1
## 8474                                 618   1
## 8475                                 619   1
## 8476                                1233   1
## 8477                                 i’m   1
## 8478                            özelliği   1
## 8479                               speed   1
## 8480                          difficulty   1
## 8481                                love   1
## 8482                            advanced   1
## 8483                                text   1
## 8484                                 154   1
## 8485                                   à   1
## 8486                               bueno   1
## 8487                                 día   1
## 8488                                 más   1
## 8489                             gracias   1
## 8490                                  mi   1
## 8491                                   à   1
## 8492                              depuis   1
## 8493                               4.153   1
## 8494                               fando   1
## 8495                                nike   1
## 8496                            progress   1
## 8497                                call   1
## 8498                                miss   1
## 8499                                  ua   1
## 8500                                 ces   1
## 8501                               comfy   1
## 8502                                1465   1
## 8503                            beginner   1
## 8504                                life   1
## 8505                             mileage   1
## 8506                                   6   1
## 8507                          accessible   1
## 8508                              charge   1
## 8509                        customizable   1
## 8510                                easy   1
## 8511                               holds   1
## 8512                                i’ve   1
## 8513                                 log   1
## 8514                                mark   1
## 8515                          obtainable   1
## 8516                               track   1
## 8517                               coast   1
## 8518                                 858   1
## 8519                       accessibility   1
## 8520                            accurate   1
## 8521                         alternative   1
## 8522                                 app   1
## 8523                               can’t   1
## 8524                              delete   1
## 8525                                free   1
## 8526                                 fun   1
## 8527                                pace   1
## 8528                               peasy   1
## 8529                            routines   1
## 8530                             running   1
## 8531                           tutorials   1
## 8532                                user   1
## 8533                            workouts   1
## 8534                             women's   1
## 8535                                 300   1
## 8536                                 925   1
## 8537                               sends   1
## 8538                            starting   1
## 8539                                1423   1
## 8540                            recovers   1
## 8541                              cheers   1
## 8542                                it’s   1
## 8543                            junttila   1
## 8544                            swelling   1
## 8545                            allowing   1
## 8546                                 sky   1
## 8547                                1700   1
## 8548                              easily   1
## 8549                            function   1
## 8550                                 jus   1
## 8551                                 wow   1
## 8552                              fechas   1
## 8553                                  al   1
## 8554                                1285   1
## 8555                                 217   1
## 8556                                   7   1
## 8557                             cushion   1
## 8558                                 lol   1
## 8559                                  78   1
## 8560                       investigation   1
## 8561                            subpoena   1
## 8562                                 app   1
## 8563                              guided   1
## 8564                                warm   1
## 8565                             fitness   1
## 8566                               tells   1
## 8567                            workouts   1
## 8568                               water   1
## 8569                           lawnmower   1
## 8570                                 487   1
## 8571                                  de   1
## 8572                                  50   1
## 8573                              avance   1
## 8574                             condado   1
## 8575                               erian   1
## 8576                                  la   1
## 8577                               mejor   1
## 8578                           recorrido   1
## 8579                            registro   1
## 8580                                1271   1
## 8581                              modern   1
## 8582                                blue   1
## 8583                              cambié   1
## 8584                              design   1
## 8585                              drives   1
## 8586                              school   1
## 8587                                1128   1
## 8588                                1130   1
## 8589                                 204   1
## 8590                             product   1
## 8591                              barbel   1
## 8592                            distance   1
## 8593                             doesn’t   1
## 8594                             setting   1
## 8595                                love   1
## 8596                                ball   1
## 8597                               kinda   1
## 8598                              runner   1
## 8599                                shoe   1
## 8600                            trainers   1
## 8601                                  v4   1
## 8602                             version   1
## 8603                           depending   1
## 8604                                 joy   1
## 8605                              torres   1
## 8606                                nike   1
## 8607                                1411   1
## 8608                                1416   1
## 8609                                1669   1
## 8610                                2210   1
## 8611                                2226   1
## 8612                                  29   1
## 8613                               4.139   1
## 8614                                  44   1
## 8615                                 539   1
## 8616                                 627   1
## 8617                                 641   1
## 8618                                 665   1
## 8619                                 bro   1
## 8620                              cousin   1
## 8621                                 dia   1
## 8622                               heavy   1
## 8623                                iono   1
## 8624                                live   1
## 8625                          mismatched   1
## 8626                                 tho   1
## 8627                                 285   1
## 8628                                 306   1
## 8629                                  40   1
## 8630                           addresses   1
## 8631                             country   1
## 8632                               entry   1
## 8633                               field   1
## 8634                           including   1
## 8635                                spam   1
## 8636                             stating   1
## 8637                               typed   1
## 8638                              folder   1
## 8639                            question   1
## 8640                              adidas   1
## 8641                                logo   1
## 8642                               grows   1
## 8643                          department   1
## 8644                                bien   1
## 8645                                call   1
## 8646                              elated   1
## 8647                             layoffs   1
## 8648                         opportunity   1
## 8649                                1254   1
## 8650                                  70   1
## 8651                              adidas   1
## 8652                              cuanto   1
## 8653                      entrenamientos   1
## 8654                                este   1
## 8655                          fortalecer   1
## 8656                              madrid   1
## 8657                                  mi   1
## 8658                           recuperar   1
## 8659                               retos   1
## 8660                                 uno   1
## 8661                           reminders   1
## 8662                                esta   1
## 8663                                  la   1
## 8664                                  te   1
## 8665                              people   1
## 8666                                1066   1
## 8667                           community   1
## 8668                                love   1
## 8669                               users   1
## 8670                              videos   1
## 8671                            workouts   1
## 8672                         disappeared   1
## 8673                               hanes   1
## 8674                                 201   1
## 8675                             agility   1
## 8676                            mobility   1
## 8677                               bunny   1
## 8678                              return   1
## 8679                                i’ve   1
## 8680                            national   1
## 8681                            changing   1
## 8682                            requests   1
## 8683                                 178   1
## 8684                                  23   1
## 8685                              adidas   1
## 8686                             benefit   1
## 8687                             wearing   1
## 8688                               worst   1
## 8689                             running   1
## 8690                                life   1
## 8691                              adidas   1
## 8692                            teaching   1
## 8693                              change   1
## 8694                                info   1
## 8695                                user   1
## 8696                            activity   1
## 8697                             invalid   1
## 8698                                 600   1
## 8699                               alpha   1
## 8700                                 app   1
## 8701                          basketball   1
## 8702                                body   1
## 8703                               event   1
## 8704                               focus   1
## 8705                               video   1
## 8706                                  el   1
## 8707                                  en   1
## 8708                                  es   1
## 8709                                  61   1
## 8710                          personales   1
## 8711                               level   1
## 8712                             profile   1
## 8713                                nice   1
## 8714                            japanese   1
## 8715                             support   1
## 8716                          employment   1
## 8717                                 236   1
## 8718                               lists   1
## 8719                               men's   1
## 8720                                 doc   1
## 8721                                died   1
## 8722                                 hat   1
## 8723                             micoach   1
## 8724                                 muy   1
## 8725                              currys   1
## 8726                               named   1
## 8727                                runs   1
## 8728                              highly   1
## 8729                            deleting   1
## 8730                                2266   1
## 8731                           installed   1
## 8732                             loading   1
## 8733                               buena   1
## 8734                           excelente   1
## 8735                          formidable   1
## 8736                                  la   1
## 8737                                mala   1
## 8738                                  mi   1
## 8739                                 muy   1
## 8740                         simplemente   1
## 8741                               found   1
## 8742                                 284   1
## 8743                                para   1
## 8744                                  mi   1
## 8745                            footwear   1
## 8746                              jamais   1
## 8747                                   3   1
## 8748                           statement   1
## 8749                                 app   1
## 8750                                isla   1
## 8751                            facebook   1
## 8752                               llena   1
## 8753                                heck   1
## 8754                            problema   1
## 8755                                date   1
## 8756                              amando   1
## 8757                            gostando   1
## 8758                              usando   1
## 8759                                buen   1
## 8760                           começando   1
## 8761                                  es   1
## 8762                             comprei   1
## 8763                                size   1
## 8764                              sizing   1
## 8765                               4.348   1
## 8766                              adidas   1
## 8767                                 365   1
## 8768                               foams   1
## 8769                             midsole   1
## 8770                             runners   1
## 8771                                1354   1
## 8772                                2234   1
## 8773                            freezing   1
## 8774                                i’ve   1
## 8775                                1298   1
## 8776                                love   1
## 8777                           mapmyhike   1
## 8778                               money   1
## 8779                              runner   1
## 8780                             running   1
## 8781                            tracking   1
## 8782                             walking   1
## 8783                             washing   1
## 8784                                   2   1
## 8785                                 sls   1
## 8786                                 421   1
## 8787                            calories   1
## 8788                            colorway   1
## 8789                               issue   1
## 8790                                lair   1
## 8791                            location   1
## 8792                               miles   1
## 8793                                pair   1
## 8794                          turnaround   1
## 8795                             siempre   1
## 8796                                para   1
## 8797                               intro   1
## 8798                       notifications   1
## 8799                        expectations   1
## 8800                           buenísimo   1
## 8801                               donde   1
## 8802                                 día   1
## 8803                                  es   1
## 8804                          iniciativa   1
## 8805                                 los   1
## 8806                          motivadora   1
## 8807                                para   1
## 8808                             quality   1
## 8809                                ruta   1
## 8810                            gráficas   1
## 8811                                  mi   1
## 8812                                  10   1
## 8813                                 143   1
## 8814                                2017   1
## 8815                         application   1
## 8816                                 bag   1
## 8817                       comprehensive   1
## 8818                                data   1
## 8819                            features   1
## 8820                                free   1
## 8821                         instruction   1
## 8822                                 job   1
## 8823                         performance   1
## 8824                          propulsion   1
## 8825                              review   1
## 8826                             service   1
## 8827                           structure   1
## 8828                               taste   1
## 8829                            terrible   1
## 8830                            tracking   1
## 8831                               video   1
## 8832                            workouts   1
## 8833                              energy   1
## 8834                         performance   1
## 8835                               sport   1
## 8836                             battery   1
## 8837                           squeaking   1
## 8838                              adidas   1
## 8839                                   3   1
## 8840                                   5   1
## 8841                          colourways   1
## 8842                              offers   1
## 8843                                shoe   1
## 8844                                 392   1
## 8845                               board   1
## 8846                               based   1
## 8847                         competition   1
## 8848                          enthusiast   1
## 8849                           excelente   1
## 8850                           exercises   1
## 8851                               goals   1
## 8852                               ideal   1
## 8853                              levels   1
## 8854                                list   1
## 8855                                mats   1
## 8856                            movement   1
## 8857                             running   1
## 8858                             tracker   1
## 8859                                  66   1
## 8860                                 aka   1
## 8861                          impossible   1
## 8862                                laid   1
## 8863                                sets   1
## 8864                               takes   1
## 8865                              weight   1
## 8866                                yoga   1
## 8867                                 app   1
## 8868                               daily   1
## 8869                               tonar   1
## 8870                                1238   1
## 8871                              hunger   1
## 8872                                2085   1
## 8873                                2104   1
## 8874                               4.237   1
## 8875                                it’s   1
## 8876                               email   1
## 8877                           literally   1
## 8878                               price   1
## 8879                             account   1
## 8880                                data   1
## 8881                                 331   1
## 8882                                1973   1
## 8883                              return   1
## 8884                                2268   1
## 8885                           bloomberg   1
## 8886                            exceeded   1
## 8887                                 i’m   1
## 8888                                1.3b   1
## 8889                                2070   1
## 8890                          perfection   1
## 8891                               based   1
## 8892                                1407   1
## 8893                                 app   1
## 8894                                 asf   1
## 8895                              jordan   1
## 8896                                 lol   1
## 8897                                nike   1
## 8898                              y'know   1
## 8899                                  67   1
## 8900                               can’t   1
## 8901                            athletes   1
## 8902                                 i.e   1
## 8903                              issues   1
## 8904                            guidance   1
## 8905                                 led   1
## 8906                             curated   1
## 8907                                nike   1
## 8908                               focus   1
## 8909                               issue   1
## 8910                                data   1
## 8911                              gunnar   1
## 8912                              plenty   1
## 8913                                2230   1
## 8914                                shit   1
## 8915                           agreement   1
## 8916                            contract   1
## 8917                             details   1
## 8918                               range   1
## 8919                           packaging   1
## 8920                               dough   1
## 8921                             durable   1
## 8922                              filter   1
## 8923                                 fun   1
## 8924                               greys   1
## 8925                           keychains   1
## 8926                               money   1
## 8927                             padding   1
## 8928                                reps   1
## 8929                               space   1
## 8930                              squish   1
## 8931                              sweaty   1
## 8932                                  sz   1
## 8933                                para   1
## 8934                             coaches   1
## 8935                            accurate   1
## 8936                            annoying   1
## 8937                                busy   1
## 8938                        disappointed   1
## 8939                             durable   1
## 8940                                easy   1
## 8941                               happy   1
## 8942                               laggy   1
## 8943                              stable   1
## 8944                       uncomfortable   1
## 8945                          underrated   1
## 8946                          unreliable   1
## 8947                                1075   1
## 8948                               4.257   1
## 8949                               candy   1
## 8950                             checked   1
## 8951                                lord   1
## 8952                                deal   1
## 8953                                shoe   1
## 8954                                1213   1
## 8955                            softener   1
## 8956                               inane   1
## 8957                         instructors   1
## 8958                                 i’m   1
## 8959                                 wow   1
## 8960                               login   1
## 8961                                love   1
## 8962                           correctly   1
## 8963                         recognition   1
## 8964                              defect   1
## 8965                            closures   1
## 8966                               house   1
## 8967                              outlet   1
## 8968                              stores   1
## 8969                         jameshoang7   1
## 8970                                 i’m   1
## 8971                                real   1
## 8972                                i’ve   1
## 8973                                 pls   1
## 8974                               4.296   1
## 8975                                1486   1
## 8976                                nuff   1
## 8977                                pour   1
## 8978                               comfy   1
## 8979                               rigid   1
## 8980                              sparse   1
## 8981                                dust   1
## 8982                                  le   1
## 8983                            follower   1
## 8984                                nike   1
## 8985                                1143   1
## 8986                                2206   1
## 8987                                  59   1
## 8988                                 702   1
## 8989                                 710   1
## 8990                                 734   1
## 8991                                 736   1
## 8992                                  76   1
## 8993                                  87   1
## 8994                                  af   1
## 8995                                 bro   1
## 8996                              dhgate   1
## 8997                               karma   1
## 8998                                 lol   1
## 8999                                nike   1
## 9000                                pair   1
## 9001                               sales   1
## 9002                                shit   1
## 9003                               shoes   1
## 9004                            sneakers   1
## 9005                             turkish   1
## 9006                                1949   1
## 9007                                2219   1
## 9008                                 709   1
## 9009                                  77   1
## 9010                                  15   1
## 9011                                2026   1
## 9012                              colors   1
## 9013                             perfect   1
## 9014                               short   1
## 9015                             sneaker   1
## 9016                            projects   1
## 9017                                  10   1
## 9018                                  32   1
## 9019                                 4.8   1
## 9020                                   6   1
## 9021                            scarcity   1
## 9022                                 200   1
## 9023                                1685   1
## 9024                             tougher   1
## 9025                                   ª   1
## 9026                            abundant   1
## 9027                                  31   1
## 9028                             friends   1
## 9029                                love   1
## 9030                               photo   1
## 9031                                it’s   1
## 9032                                meet   1
## 9033                                 nah   1
## 9034                             patriot   1
## 9035                         ntvascainos   1
## 9036                           earlfando   1
## 9037                                1864   1
## 9038                         discovering   1
## 9039                              triple   1
## 9040                             coaches   1
## 9041                                cues   1
## 9042                              device   1
## 9043                                easy   1
## 9044                           fantastic   1
## 9045                                lots   1
## 9046                        nikeappsucks   1
## 9047                            sessions   1
## 9048                            sneakers   1
## 9049                               super   1
## 9050                                  ua   1
## 9051                         henrytheath   1
## 9052                           signature   1
## 9053                                days   1
## 9054                                dunk   1
## 9055                             nokmust   1
## 9056                             startup   1
## 9057                                1057   1
## 9058                            workouts   1
## 9059                                1492   1
## 9060                             efforts   1
## 9061                              losing   1
## 9062                              you’ve   1
## 9063                                1206   1
## 9064                                   5   1
## 9065                               light   1
## 9066                               split   1
## 9067                                  yk   1
## 9068                                mile   1
## 9069                              people   1
## 9070                            shipment   1
## 9071                                1184   1
## 9072                              campus   1
## 9073                                tire   1
## 9074                                 day   1
## 9075                      categorization   1
## 9076                             leather   1
## 9077                               color   1
## 9078                                line   1
## 9079                               shoes   1
## 9080                            training   1
## 9081                                shoe   1
## 9082                              bought   1
## 9083                                1181   1
## 9084                                  ua   1
## 9085                                 933   1
## 9086                            activity   1
## 9087                                apps   1
## 9088                            clothing   1
## 9089                             coaches   1
## 9090                             feature   1
## 9091                            features   1
## 9092                             fitness   1
## 9093                                  j1   1
## 9094                                love   1
## 9095                               music   1
## 9096                                nike   1
## 9097                             players   1
## 9098                            purchase   1
## 9099                                shoe   1
## 9100                             spezial   1
## 9101                               story   1
## 9102                            sweaters   1
## 9103                             teacher   1
## 9104                             trainer   1
## 9105                                true   1
## 9106                              videos   1
## 9107                               brand   1
## 9108                                pair   1
## 9109                              sambas   1
## 9110                                hard   1
## 9111                             profile   1
## 9112                          accurately   1
## 9113                             anymore   1
## 9114                          encourages   1
## 9115                                i’ll   1
## 9116                                 i’m   1
## 9117                         suggestions   1
## 9118                            terrible   1
## 9119                             totally   1
## 9120                                wise   1
## 9121                             targets   1
## 9122                              adidas   1
## 9123                                hard   1
## 9124                                 i’m   1
## 9125                                i’ve   1
## 9126                                 map   1
## 9127                                 mmr   1
## 9128                               pause   1
## 9129                          personally   1
## 9130                            tracking   1
## 9131                               y’all   1
## 9132                                   2   1
## 9133                                  de   1
## 9134                             running   1
## 9135                            agency’s   1
## 9136                               judge   1
## 9137                              driver   1
## 9138                                owes   1
## 9139                               stole   1
## 9140                          constantly   1
## 9141                            progress   1
## 9142                                1768   1
## 9143                                4.16   1
## 9144                        accomplished   1
## 9145                                 air   1
## 9146                             anymore   1
## 9147                             average   1
## 9148                               based   1
## 9149                      biomechanially   1
## 9150                         comfortable   1
## 9151                               comfy   1
## 9152                           fantastic   1
## 9153                                glad   1
## 9154                                nice   1
## 9155                                pain   1
## 9156                            pleasant   1
## 9157                           pressured   1
## 9158                                safe   1
## 9159                                snug   1
## 9160                              stupid   1
## 9161                                heat   1
## 9162                             amazing   1
## 9163                               built   1
## 9164                           cluttered   1
## 9165                                dead   1
## 9166                             digging   1
## 9167                                fine   1
## 9168                           forgiving   1
## 9169                           immensely   1
## 9170                              narrow   1
## 9171                                poor   1
## 9172                             roughly   1
## 9173                               super   1
## 9174                             tighter   1
## 9175                                  80   1
## 9176                                1170   1
## 9177                                1212   1
## 9178                                1215   1
## 9179                                1447   1
## 9180                                1569   1
## 9181                                1579   1
## 9182                                2024   1
## 9183                                   3   1
## 9184                               4.157   1
## 9185                               4.165   1
## 9186                               4.168   1
## 9187                               4.301   1
## 9188                               4.336   1
## 9189                               4.373   1
## 9190                                 960   1
## 9191                                 bro   1
## 9192                                call   1
## 9193                              copped   1
## 9194                            courtesy   1
## 9195                                 cuz   1
## 9196                                 dry   1
## 9197                                feel   1
## 9198                             forward   1
## 9199                                  gt   1
## 9200                                jake   1
## 9201                            starting   1
## 9202                            surveyor   1
## 9203                                 tho   1
## 9204                                 por   1
## 9205                              speaks   1
## 9206                             regular   1
## 9207                               texan   1
## 9208                                cool   1
## 9209                              gender   1
## 9210                                  40   1
## 9211                             support   1
## 9212                             snagged   1
## 9213                           surprised   1
## 9214                           compañero   1
## 9215                             apparel   1
## 9216                             athlete   1
## 9217                               green   1
## 9218                                1341   1
## 9219                                 624   1
## 9220                                  ua   1
## 9221                                1605   1
## 9222                                 tho   1
## 9223                                 173   1
## 9224                             offbeat   1
## 9225                                 500   1
## 9226                                 501   1
## 9227                                june   1
## 9228                                  ya   1
## 9229                              option   1
## 9230                             related   1
## 9231                            provided   1
## 9232                              screen   1
## 9233                                time   1
## 9234                             arrived   1
## 9235                                beat   1
## 9236                               broke   1
## 9237                               caved   1
## 9238                              delete   1
## 9239                              deside   1
## 9240                               fixed   1
## 9241                               found   1
## 9242                             muscled   1
## 9243                                nike   1
## 9244                               start   1
## 9245                            starting   1
## 9246                                   8   1
## 9247                                blow   1
## 9248                                hole   1
## 9249                            features   1
## 9250                       encouragement   1
## 9251                                 255   1
## 9252                               4.179   1
## 9253                                 amo   1
## 9254                                 app   1
## 9255                           attention   1
## 9256                                  bo   1
## 9257                              button   1
## 9258                             buttons   1
## 9259                                coat   1
## 9260                             matches   1
## 9261                             summary   1
## 9262                              button   1
## 9263                                   2   1
## 9264                                  la   1
## 9265                              summer   1
## 9266                                 127   1
## 9267                                1510   1
## 9268                                1578   1
## 9269                                1881   1
## 9270                                1885   1
## 9271                                1899   1
## 9272                                1908   1
## 9273                                1956   1
## 9274                                2116   1
## 9275                                 286   1
## 9276                                 307   1
## 9277                                 318   1
## 9278                                 426   1
## 9279                                 bro   1
## 9280                           colorways   1
## 9281                          department   1
## 9282                                rock   1
## 9283                                shoe   1
## 9284                                  tv   1
## 9285                                 893   1
## 9286                                boot   1
## 9287                                2023   1
## 9288                                2025   1
## 9289                                line   1
## 9290                                1873   1
## 9291                                2300   1
## 9292                               4.331   1
## 9293                               4.386   1
## 9294                                4.92   1
## 9295                                 900   1
## 9296                             anymore   1
## 9297                                 app   1
## 9298                           beautiful   1
## 9299                                bout   1
## 9300                                club   1
## 9301                         comfortable   1
## 9302                               comfy   1
## 9303                           increíble   1
## 9304                           initially   1
## 9305                               makes   1
## 9306                              nicely   1
## 9307                             perfect   1
## 9308                              person   1
## 9309                              planks   1
## 9310                             pleated   1
## 9311                             premium   1
## 9312                              pretty   1
## 9313                            properly   1
## 9314                             running   1
## 9315                              scrubs   1
## 9316                                snug   1
## 9317                    stylishly.highly   1
## 9318                              tennis   1
## 9319                                 tts   1
## 9320                                wise   1
## 9321                                   ã   1
## 9322                                 159   1
## 9323                                   3   1
## 9324                          activities   1
## 9325                             amazing   1
## 9326                              highly   1
## 9327                               isn’t   1
## 9328                                josh   1
## 9329                         lightweight   1
## 9330                         performance   1
## 9331                                plan   1
## 9332                            plateaus   1
## 9333                          powerhouse   1
## 9334                             program   1
## 9335                            progress   1
## 9336                             routine   1
## 9337                            routines   1
## 9338                            solution   1
## 9339                             stamina   1
## 9340                             toolkit   1
## 9341                             tracker   1
## 9342                              trends   1
## 9343                               zones   1
## 9344                              decent   1
## 9345                              nicely   1
## 9346                             perfect   1
## 9347                           perfectly   1
## 9348                                life   1
## 9349                                 402   1
## 9350                                  83   1
## 9351                            accurate   1
## 9352                              coming   1
## 9353                             display   1
## 9354                                it’s   1
## 9355                       notifications   1
## 9356                             running   1
## 9357                                 207   1
## 9358                                 251   1
## 9359                                  37   1
## 9360                            customer   1
## 9361                             gimmick   1
## 9362                               store   1
## 9363                            spursn17   1
## 9364                                 4.0   1
## 9365               leggingsleggingswomen   1
## 9366                               pants   1
## 9367                                  40   1
## 9368                                feet   1
## 9369                               lines   1
## 9370                             midsole   1
## 9371                                 top   1
## 9372                         uninspiring   1
## 9373                              whites   1
## 9374                              insole   1
## 9375                               miles   1
## 9376                              market   1
## 9377                       crewhoodiemen   1
## 9378                                crop   1
## 9379                               girls   1
## 9380                     hoodiehoodiemen   1
## 9381                                 lol   1
## 9382                             uniform   1
## 9383                             ensures   1
## 9384                             reminds   1
## 9385                         performance   1
## 9386                                1457   1
## 9387                                   1   1
## 9388                                2k3s   1
## 9389                                  96   1
## 9390                              posite   1
## 9391                                 amp   1
## 9392                                 iii   1
## 9393                               4.252   1
## 9394                            manually   1
## 9395                                  em   1
## 9396                                  ya   1
## 9397                                   4   1
## 9398                                4.36   1
## 9399                                1731   1
## 9400                                foam   1
## 9401                             outsole   1
## 9402                             running   1
## 9403                               video   1
## 9404                                heat   1
## 9405                                 267   1
## 9406                                1589   1
## 9407                                   4   1
## 9408                                  6s   1
## 9409                     congratulations   1
## 9410                                nets   1
## 9411                                shit   1
## 9412                                  ua   1
## 9413                       accessibility   1
## 9414                               4.274   1
## 9415                                 763   1
## 9416                                 af1   1
## 9417                                 air   1
## 9418                          collective   1
## 9419                               racer   1
## 9420                                2018   1
## 9421                                 744   1
## 9422                               4.397   1
## 9423                             midsole   1
## 9424                          restocking   1
## 9425                               soles   1
## 9426                               stack   1
## 9427                            trainers   1
## 9428                                 337   1
## 9429                                 336   1
## 9430                             version   1
## 9431                               weren   1
## 9432                                1933   1
## 9433                                1942   1
## 9434                                2141   1
## 9435                                4.53   1
## 9436                                  69   1
## 9437                            workouts   1
## 9438                            movement   1
## 9439                       organizations   1
## 9440                                1172   1
## 9441                                  50   1
## 9442                         instruction   1
## 9443                    kingmidascustoms   1
## 9444                                  im   1
## 9445                                size   1
## 9446                              urgent   1
## 9447                              didn’t   1
## 9448                                  dr   1
## 9449                                lion   1
## 9450                                 log   1
## 9451                         suggestions   1
## 9452                                 139   1
## 9453                                1811   1
## 9454                                 201   1
## 9455                               4.123   1
## 9456                             chewing   1
## 9457                             forward   1
## 9458                            friendly   1
## 9459                                gang   1
## 9460                              hoping   1
## 9461                                 lol   1
## 9462                            swimming   1
## 9463                                45.5   1
## 9464                            campaign   1
## 9465                                fans   1
## 9466                                pads   1
## 9467                              player   1
## 9468                              shirts   1
## 9469                                team   1
## 9470                                1228   1
## 9471                                 bro   1
## 9472                            employee   1
## 9473                          management   1
## 9474                                2046   1
## 9475                              system   1
## 9476                                wise   1
## 9477                                  58   1
## 9478                              fields   1
## 9479                                joke   1
## 9480                               store   1
## 9481                              people   1
## 9482                             runners   1
## 9483                                fall   1
## 9484                               4.361   1
## 9485                               4.395   1
## 9486                            pressure   1
## 9487                                zoom   1
## 9488                            criminal   1
## 9489                               4.150   1
## 9490                                 481   1
## 9491                              bought   1
## 9492                              grails   1
## 9493                                hate   1
## 9494                                   1   1
## 9495                                 i’m   1
## 9496                                1474   1
## 9497                              bottom   1
## 9498                                  de   1
## 9499                              jajaja   1
## 9500                               shoes   1
## 9501                           correctly   1
## 9502                                dios   1
## 9503                                  um   1
## 9504                                gump   1
## 9505                                runs   1
## 9506                     fortunemagazine   1
## 9507                                loes   1
## 9508                                  14   1
## 9509                                1734   1
## 9510                               4.216   1
## 9511                                 app   1
## 9512                                it’s   1
## 9513                              lunges   1
## 9514                            standard   1
## 9515                                 ten   1
## 9516                              paused   1
## 9517                              double   1
## 9518                                lots   1
## 9519                                love   1
## 9520                            multiple   1
## 9521                             support   1
## 9522                                pair   1
## 9523                             quarter   1
## 9524                                   1   1
## 9525                            business   1
## 9526                                 438   1
## 9527                               dunks   1
## 9528                           distances   1
## 9529                            partners   1
## 9530                                sick   1
## 9531                                  19   1
## 9532                                2222   1
## 9533                                 244   1
## 9534                                 291   1
## 9535                                 350   1
## 9536                                  36   1
## 9537                                 394   1
## 9538                                 447   1
## 9539                                  59   1
## 9540                                   6   1
## 9541                                  65   1
## 9542                              access   1
## 9543                       accessibility   1
## 9544                                  ad   1
## 9545                              adidas   1
## 9546                             amazing   1
## 9547                                apps   1
## 9548                               can’t   1
## 9549                       comprehensive   1
## 9550                                data   1
## 9551                           effective   1
## 9552                              expert   1
## 9553                             forever   1
## 9554                            geometry   1
## 9555                                i’ll   1
## 9556                                 i’m   1
## 9557                                i’ve   1
## 9558                               legit   1
## 9559                                logs   1
## 9560                           marketing   1
## 9561                              metcon   1
## 9562                                nike   1
## 9563                                 ole   1
## 9564                              option   1
## 9565                                plan   1
## 9566                            positive   1
## 9567                             regular   1
## 9568                                  rn   1
## 9569                             running   1
## 9570                              simply   1
## 9571                             they’re   1
## 9572                                time   1
## 9573                             updates   1
## 9574                               upper   1
## 9575                             weights   1
## 9576                                 430   1
## 9577                             amazing   1
## 9578                          constantly   1
## 9579                           worthless   1
## 9580                               terry   1
## 9581                                pack   1
## 9582                             targets   1
## 9583                          challenges   1
## 9584                                1951   1
## 9585                                mint   1
## 9586                               white   1
## 9587                                 680   1
## 9588                                 871   1
## 9589                           expensive   1
## 9590                               night   1
## 9591                                flat   1
## 9592                                  10   1
## 9593                                 403   1
## 9594                                 app   1
## 9595                         competition   1
## 9596                               daily   1
## 9597                         encouraging   1
## 9598                                glad   1
## 9599                          gooperfect   1
## 9600                                puma   1
## 9601                                  ui   1
## 9602                                  15   1
## 9603                                   2   1
## 9604                                join   1
## 9605                             leaving   1
## 9606                              people   1
## 9607                             perfect   1
## 9608                                 run   1
## 9609                               takes   1
## 9610                                wear   1
## 9611                            workouts   1
## 9612                            abruptly   1
## 9613                             assumes   1
## 9614                            declares   1
## 9615                               exits   1
## 9616                                1178   1
## 9617                           teammates   1
## 9618                                 app   1
## 9619                                i’ve   1
## 9620                                 434   1
## 9621                                 476   1
## 9622                              didn’t   1
## 9623                           excellent   1
## 9624                          experience   1
## 9625                                 map   1
## 9626                                move   1
## 9627                                 806   1
## 9628                              jersey   1
## 9629                                  28   1
## 9630                                 yea   1
## 9631                                1163   1
## 9632                             asinine   1
## 9633                               crocs   1
## 9634                               fresh   1
## 9635                               heart   1
## 9636                              insane   1
## 9637                                love   1
## 9638                               loved   1
## 9639                            research   1
## 9640                            stunning   1
## 9641                                suck   1
## 9642                            tweekers   1
## 9643                           dispenser   1
## 9644                                  en   1
## 9645                                 411   1
## 9646                                 215   1
## 9647                                 224   1
## 9648                              screen   1
## 9649                            accurate   1
## 9650                          challenges   1
## 9651                               color   1
## 9652                           colorways   1
## 9653                           effective   1
## 9654                            emphatic   1
## 9655                               posts   1
## 9656                                 run   1
## 9657                             saludos   1
## 9658                           satisfied   1
## 9659                                time   1
## 9660                               nunca   1
## 9661                          completely   1
## 9662                         disappeared   1
## 9663                             doesn’t   1
## 9664                               4.279   1
## 9665                           exercises   1
## 9666                             fitness   1
## 9667                                 gui   1
## 9668                              option   1
## 9669                             outdoor   1
## 9670                            workouts   1
## 9671                               issue   1
## 9672                                i’ve   1
## 9673                           correctly   1
## 9674                           strategic   1
## 9675                          supporting   1
## 9676                            compared   1
## 9677                                1047   1
## 9678                                  na   1
## 9679                                 900   1
## 9680                             classic   1
## 9681                            customer   1
## 9682                         improvement   1
## 9683                             tracker   1
## 9684                            training   1
## 9685                                 850   1
## 9686                           including   1
## 9687                             outlook   1
## 9688                                  q1   1
## 9689                                  q1   1
## 9690                                  q2   1
## 9691                             returns   1
## 9692                                  de   1
## 9693                              además   1
## 9694                              ground   1
## 9695                                lots   1
## 9696                               share   1
## 9697                           stephanie   1
## 9698                                 s22   1
## 9699                               watch   1
## 9700                                walk   1
## 9701                                1362   1
## 9702                                4.60   1
## 9703                                 day   1
## 9704                               fines   1
## 9705                            recently   1
## 9706                              runner   1
## 9707                                size   1
## 9708                                stop   1
## 9709                                  ad   1
## 9710                           unveiling   1
## 9711                                 11s   1
## 9712                                2018   1
## 9713                                1242   1
## 9714                                 339   1
## 9715                               can’t   1
## 9716                               makes   1
## 9717                               mitus   1
## 9718                                 718   1
## 9719                                 317   1
## 9720                            corredor   1
## 9721                             connect   1
## 9722                             doesn’t   1
## 9723                               polar   1
## 9724                                  3s   1
## 9725                                 gus   1
## 9726                                 973   1
## 9727                                  cw   1
## 9728                              indoor   1
## 9729                             indoors   1
## 9730                                nice   1
## 9731                          superstar5   1
## 9732                              update   1
## 9733                               shirt   1
## 9734                             tracker   1
## 9735                                yoga   1
## 9736                                edit   1
## 9737                               apple   1
## 9738                               based   1
## 9739                               email   1
## 9740                                stop   1
## 9741                                   2   1
## 9742                          basketball   1
## 9743                            response   1
## 9744                              sloppy   1
## 9745                              amount   1
## 9746                                 fit   1
## 9747                          basketball   1
## 9748                            internal   1
## 9749                         challenging   1
## 9750                               knock   1
## 9751                           including   1
## 9752                               yeezy   1
## 9753                                 los   1
## 9754                              adidas   1
## 9755                              sambai   1
## 9756                              action   1
## 9757                                 af1   1
## 9758                          collection   1
## 9759                                glue   1
## 9760                                leap   1
## 9761                             midsole   1
## 9762                                 526   1
## 9763                                list   1
## 9764                              adidas   1
## 9765                              fumble   1
## 9766                                4.10   1
## 9767                                1599   1
## 9768                             jillian   1
## 9769                                 114   1
## 9770                       4lrkcwli2mkoc   1
## 9771                  7ow9uiyfetrxdsobyn   1
## 9772                  asjkibidvgfmxphcdq   1
## 9773                  cgtqdfzemzlihopw35   1
## 9774                       foh28ucxzfjzu   1
## 9775                       fufybccdkoy1w   1
## 9776                  fxnrobm8q0rkomr5nf   1
## 9777                       gpys1ljxjyupg   1
## 9778                  h42aeseqaly4hitnlh   1
## 9779                  ifnbpfxfgetn8bh0vz   1
## 9780                  keq3dg4poe37dnatvm   1
## 9781                       kiau2euyxjqb2   1
## 9782                  kl9iawej2mxlzvzp2o   1
## 9783                   l1kuhbcqxoojyr0m4   1
## 9784                  mnxijdzyiqrglvakxa   1
## 9785                       mputzqqomykpk   1
## 9786                  n4fcjylldgpc95d4ku   1
## 9787                       r5sxjycu21auk   1
## 9788                       rl9yqavfj2ula   1
## 9789                       rpjyoncygkngo   1
## 9790                  rvxnufxxubfyjhw6lo   1
## 9791                       sgwptmd47pv04   1
## 9792                       srirxoiam0u00   1
## 9793                       ss2reqknr8s5g   1
## 9794                       su0aljmbfvghw   1
## 9795                  vgfcceue0mlzou7y49   1
## 9796                  x8u7cf3qrvzgwpk9hg   1
## 9797                       yayv8i5n1ojze   1
## 9798                       yvbc4hdspb7z2   1
## 9799                  zn5xfujbtbpnrdzncm   1
## 9800                                 630   1
## 9801                                 lol   1
## 9802                               shoes   1
## 9803                                  bs   1
## 9804                               gotta   1
## 9805                                 731   1
## 9806                           incorrect   1
## 9807                         inspiration   1
## 9808                                 max   1
## 9809                                  ua   1
## 9810                               fakat   1
## 9811                                 180   1
## 9812                                  ua   1
## 9813                                 523   1
## 9814                                   3   1
## 9815                             perfect   1
## 9816                            terribly   1
## 9817                              august   1
## 9818                              market   1
## 9819                         partnership   1
## 9820                              stores   1
## 9821                            business   1
## 9822                               4.112   1
## 9823                                pull   1
## 9824                               stick   1
## 9825                             monitor   1
## 9826                               stain   1
## 9827                              stains   1
## 9828                                nike   1
## 9829                                arms   1
## 9830                             address   1
## 9831                            complete   1
## 9832                            distance   1
## 9833                                pace   1
## 9834                            progress   1
## 9835                              that’s   1
## 9836                                 179   1
## 9837                                 30k   1
## 9838                                 401   1
## 9839                        additionally   1
## 9840                             anymore   1
## 9841                       encouragement   1
## 9842                         integration   1
## 9843                                it’s   1
## 9844                                i’ve   1
## 9845                              loving   1
## 9846                                nice   1
## 9847                             sharing   1
## 9848                              target   1
## 9849                              what’s   1
## 9850                                1925   1
## 9851                                ebay   1
## 9852                            training   1
## 9853                              adidas   1
## 9854                            almighty   1
## 9855                              melhor   1
## 9856                            workouts   1
## 9857                               outta   1
## 9858                                1742   1
## 9859                               49ers   1
## 9860                              adidas   1
## 9861                               black   1
## 9862                               chain   1
## 9863                               color   1
## 9864                             daytons   1
## 9865                                fair   1
## 9866                                rims   1
## 9867                               rings   1
## 9868                            standard   1
## 9869                            versions   1
## 9870                             harvest   1
## 9871                               zheng   1
## 9872                              change   1
## 9873                                 hit   1
## 9874                                hoop   1
## 9875                              matter   1
## 9876                              notice   1
## 9877                               treat   1
## 9878                                wear   1
## 9879                                1911   1
## 9880                                  54   1
## 9881                                1330   1
## 9882                           yesterday   1
## 9883                                2105   1
## 9884                              fitbit   1
## 9885                                ized   1
## 9886                                maps   1
## 9887                               phone   1
## 9888                            searches   1
## 9889                          translator   1
## 9890                                  tv   1
## 9891                                tool   1
## 9892                                 354   1
## 9893                                1853   1
## 9894                                 755   1
## 9895                                 932   1
## 9896                                   1   1
## 9897                                 cop   1
## 9898                                 hit   1
## 9899                                lock   1
## 9900                                 pay   1
## 9901                                pick   1
## 9902                                rock   1
## 9903                               stare   1
## 9904                               start   1
## 9905                                  31   1
## 9906                             product   1
## 9907                             couldnt   1
## 9908                            features   1
## 9909                            location   1
## 9910                             mileage   1
## 9911                                pain   1
## 9912                             premium   1
## 9913                         requirement   1
## 9914                             running   1
## 9915                              signal   1
## 9916                        sporadically   1
## 9917                             tracker   1
## 9918                              export   1
## 9919                              format   1
## 9920                                damn   1
## 9921                              mexico   1
## 9922                                 af1   1
## 9923                           materials   1
## 9924                                pair   1
## 9925                                love   1
## 9926                                1572   1
## 9927                               woods   1
## 9928                              artist   1
## 9929                                1964   1
## 9930                             sneaker   1
## 9931                                1858   1
## 9932                               apoyo   1
## 9933                            comienzo   1
## 9934                               court   1
## 9935                              courts   1
## 9936                               loved   1
## 9937                         permissions   1
## 9938                                 ogs   1
## 9939                                lags   1
## 9940                            designer   1
## 9941                                pace   1
## 9942                            barefoot   1
## 9943                               green   1
## 9944                            saturday   1
## 9945                                nike   1
## 9946                                  du   1
## 9947                        realmilgrauu   1
## 9948                                 593   1
## 9949                                 601   1
## 9950                                 amp   1
## 9951                               trail   1
## 9952                        disappointed   1
## 9953                                boat   1
## 9954                                 147   1
## 9955                                2334   1
## 9956                                2345   1
## 9957                              pretty   1
## 9958                            sneakers   1
## 9959                          sweatshirt   1
## 9960                                 128   1
## 9961                              that’s   1
## 9962                         appreciated   1
## 9963                              helped   1
## 9964                             improve   1
## 9965                           greatness   1
## 9966                                 lcp   1
## 9967                                 3.0   1
## 9968                             goddess   1
## 9969                                   1   1
## 9970                                 100   1
## 9971                                1786   1
## 9972                                2291   1
## 9973                              accent   1
## 9974                                 app   1
## 9975                                 box   1
## 9976                                 bro   1
## 9977                              campus   1
## 9978                               force   1
## 9979                               light   1
## 9980                               olive   1
## 9981                               pants   1
## 9982                              sporty   1
## 9983                               white   1
## 9984                          celticsgrd   1
## 9985                               black   1
## 9986                               dunks   1
## 9987                                ehhh   1
## 9988                                gold   1
## 9989                                  im   1
## 9990                         lightweight   1
## 9991                            midnight   1
## 9992                                pair   1
## 9993                              panels   1
## 9994                                shai   1
## 9995                               suede   1
## 9996                               tones   1
## 9997                              tongue   1
## 9998                                volt   1
## 9999                          advertised   1
## 10000                              shoes   1
## 10001                              4.278   1
## 10002                              tight   1
## 10003                               feet   1
## 10004                              album   1
## 10005                              store   1
## 10006                             injury   1
## 10007                              4.236   1
## 10008                            covered   1
## 10009                          financial   1
## 10010                         globaldata   1
## 10011                                ass   1
## 10012                                 24   1
## 10013                                  6   1
## 10014                                  8   1
## 10015                            perfect   1
## 10016                               para   1
## 10017                               size   1
## 10018                               1922   1
## 10019                                air   1
## 10020                             future   1
## 10021                             jordan   1
## 10022                               mine   1
## 10023                             series   1
## 10024                            started   1
## 10025                                103   1
## 10026                           archivos   1
## 10027                                  5   1
## 10028                               rice   1
## 10029                               2385   1
## 10030                             adidas   1
## 10031                          basically   1
## 10032                               i’ll   1
## 10033                             mowing   1
## 10034                           calories   1
## 10035                           redesign   1
## 10036                            segment   1
## 10037                         customized   1
## 10038                       inspirations   1
## 10039                               runs   1
## 10040                          practical   1
## 10041                                636   1
## 10042                             adidas   1
## 10043                              named   1
## 10044                         turnaround   1
## 10045                             bottom   1
## 10046                               sole   1
## 10047                              soles   1
## 10048                                842   1
## 10049                                844   1
## 10050                           colorway   1
## 10051                             colour   1
## 10052                                  2   1
## 10053                                840   1
## 10054                                 la   1
## 10055                              mucho   1
## 10056                                 la   1
## 10057                               1773   1
## 10058                               2175   1
## 10059                               1619   1
## 10060                               4.84   1
## 10061                                465   1
## 10062                                585   1
## 10063                                fix   1
## 10064                              named   1
## 10065                               nice   1
## 10066                           pitching   1
## 10067                          primarily   1
## 10068                           rounding   1
## 10069                           blinders   1
## 10070                              gonna   1
## 10071                               i’ll   1
## 10072                            washing   1
## 10073                               witb   1
## 10074                                 10   1
## 10075                               1659   1
## 10076                                997   1
## 10077                            classes   1
## 10078                                cut   1
## 10079                               days   1
## 10080                                fit   1
## 10081                              goers   1
## 10082                             loving   1
## 10083                            machine   1
## 10084                              makes   1
## 10085                             people   1
## 10086                              shoes   1
## 10087                           training   1
## 10088                               wear   1
## 10089                               1614   1
## 10090                               sido   1
## 10091                             doable   1
## 10092                             sentir   1
## 10093                                 10   1
## 10094                          ejercicio   1
## 10095                            updated   1
## 10096                         superstars   1
## 10097                               1000   1
## 10098                               2193   1
## 10099                               yeah   1
## 10100                                  û   1
## 10101                               2422   1
## 10102                              samba   1
## 10103                                408   1
## 10104                               stay   1
## 10105                             retail   1
## 10106                              sizes   1
## 10107                               star   1
## 10108                               mark   1
## 10109                               book   1
## 10110                              racer   1
## 10111                               1493   1
## 10112                             corner   1
## 10113                        embroidered   1
## 10114                            spezial   1
## 10115                           spezial2   1
## 10116                          stretches   1
## 10117                                guy   1
## 10118                           bringing   1
## 10119                                tho   1
## 10120                               1329   1
## 10121                                182   1
## 10122                                799   1
## 10123                       occasionally   1
## 10124                         propublica   1
## 10125                             school   1
## 10126                               1226   1
## 10127                                  3   1
## 10128                                app   1
## 10129                                god   1
## 10130                               guys   1
## 10131                               hard   1
## 10132                               i’ve   1
## 10133                           recently   1
## 10134                             robert   1
## 10135                          surprised   1
## 10136                               2271   1
## 10137                             adidas   1
## 10138                                bad   1
## 10139                           birthday   1
## 10140                           daughter   1
## 10141                                hoe   1
## 10142                               it’s   1
## 10143                               i’ve   1
## 10144                           memories   1
## 10145                               nike   1
## 10146                             runner   1
## 10147                            running   1
## 10148                             saving   1
## 10149                             trails   1
## 10150                               user   1
## 10151                               1506   1
## 10152                               1507   1
## 10153                               2432   1
## 10154                              4.319   1
## 10155                                510   1
## 10156                                 56   1
## 10157                                 71   1
## 10158                                822   1
## 10159                                908   1
## 10160                                992   1
## 10161                                asf   1
## 10162                                bad   1
## 10163                            carried   1
## 10164                             earned   1
## 10165                               easy   1
## 10166                           feelings   1
## 10167                          inflation   1
## 10168                               life   1
## 10169                             metcon   1
## 10170                               pass   1
## 10171                                run   1
## 10172                           surfaces   1
## 10173                                  á   1
## 10174                                648   1
## 10175                           advanced   1
## 10176                              megan   1
## 10177                             strive   1
## 10178                                pic   1
## 10179                            workout   1
## 10180                         delivering   1
## 10181                              issue   1
## 10182                                 18   1
## 10183                                air   1
## 10184                            changed   1
## 10185                       disappointed   1
## 10186                          exercised   1
## 10187                           improved   1
## 10188                            tracked   1
## 10189                               tips   1
## 10190                               1863   1
## 10191                               it’s   1
## 10192                               i’ve   1
## 10193                          admitting   1
## 10194                               apps   1
## 10195                            burpees   1
## 10196                               mids   1
## 10197                               nike   1
## 10198                            premium   1
## 10199                            running   1
## 10200                             speech   1
## 10201                          backpacks   1
## 10202                                860   1
## 10203                               worn   1
## 10204                          completed   1
## 10205                              found   1
## 10206                       investigated   1
## 10207                           received   1
## 10208                            touched   1
## 10209                           chiseled   1
## 10210                               woke   1
## 10211                           trainers   1
## 10212                            turners   1
## 10213                               2020   1
## 10214                           compiled   1
## 10215                                298   1
## 10216                             adidas   1
## 10217                                sec   1
## 10218                                166   1
## 10219                                464   1
## 10220                                  5   1
## 10221                         activities   1
## 10222                           activity   1
## 10223                            content   1
## 10224                               data   1
## 10225                            fanatic   1
## 10226                            fitness   1
## 10227                             fourth   1
## 10228                          insurance   1
## 10229                                isn   1
## 10230                               it’s   1
## 10231                             keeper   1
## 10232                             mental   1
## 10233                                mmr   1
## 10234                           properly   1
## 10235                          stability   1
## 10236                            there’s   1
## 10237                            fitness   1
## 10238                                 11   1
## 10239                             adidas   1
## 10240                            returns   1
## 10241                               bout   1
## 10242                        gratulation   1
## 10243                               sing   1
## 10244                               1879   1
## 10245                                302   1
## 10246                              4.240   1
## 10247                         exhaustion   1
## 10248                               gear   1
## 10249                        houseofheat   1
## 10250                        compression   1
## 10251                              loose   1
## 10252                             runner   1
## 10253                            runners   1
## 10254                      counterfeited   1
## 10255                                282   1
## 10256                                328   1
## 10257                       conventional   1
## 10258                               hard   1
## 10259                             return   1
## 10260                             runner   1
## 10261                             sturdy   1
## 10262                            weights   1
## 10263                          readiness   1
## 10264                              4.367   1
## 10265                              4.399   1
## 10266                           lockdown   1
## 10267                            midsole   1
## 10268                             pushes   1
## 10269                               slip   1
## 10270                                tab   1
## 10271                               wasn   1
## 10272                               1283   1
## 10273                               hoka   1
## 10274                            anxiety   1
## 10275                                152   1
## 10276                               2115   1
## 10277                                405   1
## 10278                                 ya   1
## 10279                              comfy   1
## 10280                               cool   1
## 10281                               ugly   1
## 10282                               team   1
## 10283                               yeah   1
## 10284                               nike   1
## 10285                               4.79   1
## 10286                               easy   1
## 10287                           engaging   1
## 10288                               info   1
## 10289                               note   1
## 10290                            reporte   1
## 10291                            running   1
## 10292                              video   1
## 10293                             videos   1
## 10294                             people   1
## 10295                             soften   1
## 10296                           progress   1
## 10297                              track   1
## 10298                               nike   1
## 10299                               2026   1
## 10300                          mentality   1
## 10301                           prestons   1
## 10302                     extraordinaria   1
## 10303                               pour   1
## 10304                               grid   1
## 10305                             adidas   1
## 10306                               mike   1
## 10307                                app   1
## 10308                               gems   1
## 10309                               1643   1
## 10310                                590   1
## 10311                            efforts   1
## 10312                         advertised   1
## 10313                        frustrating   1
## 10314                            limited   1
## 10315                       motivational   1
## 10316                              rec’d   1
## 10317                            suggest   1
## 10318                               rest   1
## 10319                           strength   1
## 10320                      strengthening   1
## 10321                           training   1
## 10322                              walks   1
## 10323                                app   1
## 10324                               bled   1
## 10325                       considerably   1
## 10326                        frustrating   1
## 10327                           captured   1
## 10328                                pls   1
## 10329                              trail   1
## 10330                              boots   1
## 10331                          essential   1
## 10332                        frustration   1
## 10333                             routes   1
## 10334                              trail   1
## 10335                             trails   1
## 10336                            walking   1
## 10337                            repeats   1
## 10338                             retail   1
## 10339                            unveils   1
## 10340                              viral   1
## 10341                                hop   1
## 10342                                 05   1
## 10343                              jawns   1
## 10344                               vibe   1
## 10345                                872   1
## 10346                                905   1
## 10347                               rule   1
## 10348                               stop   1
## 10349                               john   1
## 10350                       neurologists   1
## 10351                            running   1
## 10352                               ties   1
## 10353                               4.99   1
## 10354                            gravely   1
## 10355                                lol   1
## 10356                            repeats   1
## 10357                               100m   1
## 10358                                6ft   1
## 10359                                931   1
## 10360                             adidas   1
## 10361                             costco   1
## 10362                               hard   1
## 10363                            pilates   1
## 10364                          pregnancy   1
## 10365                              store   1
## 10366                           workouts   1
## 10367                               147m   1
## 10368                               604m   1
## 10369                              goals   1
## 10370                              pause   1
## 10371                              makes   1
## 10372                              ahead   1
## 10373                              podge   1
## 10374                                478   1
## 10375                                489   1
## 10376                               aint   1
## 10377                                 eh   1
## 10378                               love   1
## 10379                                 em   1
## 10380                            clifton   1
## 10381                              esque   1
## 10382                               gain   1
## 10383                                 nb   1
## 10384                            redwing   1
## 10385                              shoes   1
## 10386                               topo   1
## 10387                              shoes   1
## 10388                         whiteboard   1
## 10389                           workoits   1
## 10390                           workouts   1
## 10391                           townhall   1
## 10392                                due   1
## 10393                              punch   1
## 10394                               1250   1
## 10395                             faster   1
## 10396                             colors   1
## 10397                               crap   1
## 10398                               shit   1
## 10399                          throwback   1
## 10400                                194   1
## 10401                               2177   1
## 10402                                456   1
## 10403                                gym   1
## 10404                               page   1
## 10405                            realize   1
## 10406                          returning   1
## 10407                            version   1
## 10408                               2114   1
## 10409                                979   1
## 10410                               1090   1
## 10411                             accord   1
## 10412                            depends   1
## 10413                           feedback   1
## 10414                                i’d   1
## 10415                                183   1
## 10416                                187   1
## 10417                            depends   1
## 10418                                don   1
## 10419                               fell   1
## 10420                               fuck   1
## 10421                               it’s   1
## 10422                               nike   1
## 10423                             pandas   1
## 10424                             pretty   1
## 10425                               yeah   1
## 10426                                bro   1
## 10427                               fits   1
## 10428                                gif   1
## 10429                         jacketkids   1
## 10430                            quality   1
## 10431                         underneath   1
## 10432                               i’ve   1
## 10433                                129   1
## 10434                           teamnike   1
## 10435                              4.313   1
## 10436                               shoe   1
## 10437                               shoe   1
## 10438                              dance   1
## 10439                            diamond   1
## 10440                                lol   1
## 10441                          runtastic   1
## 10442                               2194   1
## 10443                                144   1
## 10444                               1568   1
## 10445                                562   1
## 10446                             choice   1
## 10447                         experience   1
## 10448                                pop   1
## 10449                             update   1
## 10450                               user   1
## 10451                             boston   1
## 10452                            stories   1
## 10453                                ass   1
## 10454                             riding   1
## 10455                               2235   1
## 10456                             coffee   1
## 10457                               damn   1
## 10458                             desert   1
## 10459                              drops   1
## 10460                              humid   1
## 10461                                sun   1
## 10462                              shoes   1
## 10463                                494   1
## 10464                                 10   1
## 10465                                 23   1
## 10466                         maintained   1
## 10467                           marathon   1
## 10468                                 ua   1
## 10469                           workouts   1
## 10470                                map   1
## 10471                             walked   1
## 10472                            walking   1
## 10473                                228   1
## 10474                                232   1
## 10475                                  3   1
## 10476                              9,280   1
## 10477                                lol   1
## 10478                              store   1
## 10479                                tho   1
## 10480                           training   1
## 10481                              drive   1
## 10482                            machina   1
## 10483                               shoe   1
## 10484                             summit   1
## 10485                                381   1
## 10486                                380   1
## 10487                          caminamos   1
## 10488                                app   1
## 10489                              entry   1
## 10490                            leaders   1
## 10491                               1918   1
## 10492                    www.aceoffs.com   1
## 10493       fieldtesting.underarmour.com   1
## 10494           m.dickssportinggoods.com   1
## 10495                   smile.amazon.com   1
## 10496                        tinyurl.com   1
## 10497                 www.flightclub.com   1
## 10498                www.underarmour.com   1
## 10499                    www.youtube.com   1
## 10500                           inspired   1
## 10501                           trainers   1
## 10502                                  1   1
## 10503                          programas   1
## 10504                              black   1
## 10505                            borders   1
## 10506                             button   1
## 10507                         difference   1
## 10508                                fan   1
## 10509                              issue   1
## 10510                               loss   1
## 10511                            midsole   1
## 10512                            service   1
## 10513                           shoutout   1
## 10514                     inconvenienced   1
## 10515                           friendly   1
## 10516                             sticky   1
## 10517                               week   1
## 10518                                770   1
## 10519                             thirst   1
## 10520                              green   1
## 10521                               walk   1
## 10522                                idk   1
## 10523                              loves   1
## 10524                             people   1
## 10525                           training   1
## 10526                         ultraboost   1
## 10527                               1377   1
## 10528                               4.42   1
## 10529                             beasts   1
## 10530                              fades   1
## 10531                               lmao   1
## 10532                                lol   1
## 10533                              means   1
## 10534                              retro   1
## 10535                             review   1
## 10536                               wise   1
## 10537                                era   1
## 10538                            trainer   1
## 10539                            claimed   1
## 10540                                319   1
## 10541                             collab   1
## 10542                               1105   1
## 10543                              4.287   1
## 10544                               ii's   1
## 10545                                  2   1
## 10546                             insert   1
## 10547                             mexico   1
## 10548                                100   1
## 10549                           comenzar   1
## 10550                               1472   1
## 10551                              shoes   1
## 10552                              nurse   1
## 10553                                113   1
## 10554                                buy   1
## 10555                             change   1
## 10556                                lab   1
## 10557                            program   1
## 10558                          questions   1
## 10559                            anymore   1
## 10560                               time   1
## 10561                               i’ve   1
## 10562                           targeted   1
## 10563                           patterns   1
## 10564                           workouts   1
## 10565                                age   1
## 10566                          motivated   1
## 10567                               lots   1
## 10568                           location   1
## 10569                                959   1
## 10570                               sick   1
## 10571                               2407   1
## 10572                        enhancement   1
## 10573                                 fg   1
## 10574                                fun   1
## 10575                              4.270   1
## 10576                                 ur   1
## 10577                                367   1
## 10578                           informed   1
## 10579                                def   1
## 10580                               glad   1
## 10581                              gonna   1
## 10582                                 js   1
## 10583                             paying   1
## 10584                           retiring   1
## 10585                         subscribed   1
## 10586                           thinking   1
## 10587                              wrong   1
## 10588                               risk   1
## 10589                       representing   1
## 10590                              how'd   1
## 10591                            wearing   1
## 10592                               nice   1
## 10593                              guess   1
## 10594                              swing   1
## 10595                             adjust   1
## 10596                             closes   1
## 10597                            deleted   1
## 10598                             issued   1
## 10599                                lol   1
## 10600                              react   1
## 10601                               1469   1
## 10602                               1822   1
## 10603                               2330   1
## 10604                                472   1
## 10605                                764   1
## 10606                           workouts   1
## 10607                                por   1
## 10608                                 de   1
## 10609                                i’m   1
## 10610                                 só   1
## 10611                                186   1
## 10612                            aspects   1
## 10613                              users   1
## 10614                           predicts   1
## 10615                          including   1
## 10616                                map   1
## 10617                            margins   1
## 10618                                run   1
## 10619                             vdixon   1
## 10620                               it’s   1
## 10621                      significantly   1
## 10622                                fix   1
## 10623                                gps   1
## 10624                               half   1
## 10625                             memory   1
## 10626                            results   1
## 10627                         narratives   1
## 10628                           behavior   1
## 10629                               4.20   1
## 10630                           messages   1
## 10631                                i’m   1
## 10632                         noticeable   1
## 10633                              4.314   1
## 10634                              audio   1
## 10635                             blends   1
## 10636                            confirm   1
## 10637                           distance   1
## 10638                              phone   1
## 10639                             safety   1
## 10640                               hiit   1
## 10641                               it’s   1
## 10642                               247m   1
## 10643                              apple   1
## 10644                             boston   1
## 10645                              don’t   1
## 10646                                dsw   1
## 10647                            hunting   1
## 10648                             jordan   1
## 10649                               junk   1
## 10650                              sport   1
## 10651                             shines   1
## 10652                              beats   1
## 10653                              falls   1
## 10654                           identity   1
## 10655                             surges   1
## 10656                            walking   1
## 10657                                210   1
## 10658                                290   1
## 10659                              heavy   1
## 10660                            healthy   1
## 10661                           distance   1
## 10662                             highly   1
## 10663                           tracking   1
## 10664                             volume   1
## 10665                          incentive   1
## 10666                             pushed   1
## 10667                                app   1
## 10668                            content   1
## 10669                              light   1
## 10670                              makes   1
## 10671                      comprehensive   1
## 10672                          effective   1
## 10673                        frustrating   1
## 10674                      frustratingly   1
## 10675                               soft   1
## 10676                        streamlined   1
## 10677                               user   1
## 10678                                muy   1
## 10679                             stupid   1
## 10680                               word   1
## 10681                              steps   1
## 10682                           workouts   1
## 10683                            rizferd   1
## 10684                             courts   1
## 10685                             soccer   1
## 10686                           workouts   1
## 10687                                  3   1
## 10688                               edge   1
## 10689                           standard   1
## 10690                            chasing   1
## 10691                           customer   1
## 10692                               1102   1
## 10693                            removed   1
## 10694                            product   1
## 10695                           routines   1
## 10696                                 72   1
## 10697                                pro   1
## 10698                                run   1
## 10699                              check   1
## 10700                               2245   1
## 10701                         apparently   1
## 10702                                i’m   1
## 10703                         superstars   1
## 10704                          yesterday   1
## 10705                               font   1
## 10706                             highly   1
## 10707                            useless   1
## 10708                          excellent   1
## 10709                       instructions   1
## 10710                               love   1
## 10711                               shoe   1
## 10712                           consumer   1
## 10713                          decisions   1
## 10714                                 6s   1
## 10715                               lots   1
## 10716                              medio   1
## 10717                               para   1
## 10718                           delivery   1
## 10719                         developers   1
## 10720                             review   1
## 10721                             screen   1
## 10722                         subscribed   1
## 10723                              skate   1
## 10724                                  8   1
## 10725                               4.30   1
## 10726                         relentless   1
## 10727                                143   1
## 10728                              235v3   1
## 10729                              g300s   1
## 10730                              notes   1
## 10731                               1664   1
## 10732                                643   1
## 10733                           breaking   1
## 10734                                sl2   1
## 10735                               snag   1
## 10736                              stuff   1
## 10737                               cute   1
## 10738                              light   1
## 10739                               nice   1
## 10740                                338   1
## 10741                               shoe   1
## 10742                               july   1
## 10743                          successor   1
## 10744                                due   1
## 10745                               1716   1
## 10746                          hexagonal   1
## 10747                        practically   1
## 10748                             book1s   1
## 10749                       construction   1
## 10750                               pair   1
## 10751                   kingmidascustoms   1
## 10752                            stories   1
## 10753                              13.49   1
## 10754                            closing   1
## 10755                                buy   1
## 10756                             delete   1
## 10757                              stops   1
## 10758                                546   1
## 10759                             copped   1
## 10760                                384   1
## 10761                              voice   1
## 10762                          voiceover   1
## 10763                             volume   1
## 10764                                 55   1
## 10765                             extend   1
## 10766                              voice   1
## 10767                               pump   1
## 10768                          companies   1
## 10769                                164   1
## 10770                            average   1
## 10771                              muito   1
## 10772                           outlined   1
## 10773                            workout   1
## 10774                       calisthenics   1
## 10775                                lol   1
## 10776                               1833   1
## 10777                           interval   1
## 10778                               pull   1
## 10779                                591   1
## 10780                              paseo   1
## 10781                                nas   1
## 10782                                388   1
## 10783                        disappeared   1
## 10784                              feels   1
## 10785                        informative   1
## 10786                           language   1
## 10787                               nice   1
## 10788                               dont   1
## 10789                                ceo   1
## 10790                             pocket   1
## 10791                          motivator   1
## 10792                              gains   1
## 10793                              can’t   1
## 10794                           function   1
## 10795                               hiit   1
## 10796                              plans   1
## 10797                             timing   1
## 10798                               user   1
## 10799                                  2   1
## 10800                             giving   1
## 10801                              level   1
## 10802                             hasn’t   1
## 10803                                 ua   1
## 10804                           features   1
## 10805                          interface   1
## 10806                               info   1
## 10807                               tool   1
## 10808                              doesn   1
## 10809                           donating   1
## 10810                               glut   1
## 10811                           overhang   1
## 10812                           jumpmans   1
## 10813                            running   1
## 10814                                day   1
## 10815                                buy   1
## 10816                                 3s   1
## 10817                            friends   1
## 10818                             17.0.3   1
## 10819                               26.3   1
## 10820                                8.8   1
## 10821                                  9   1
## 10822                            anymore   1
## 10823                              apple   1
## 10824                           firmware   1
## 10825                             update   1
## 10826                                163   1
## 10827                                353   1
## 10828                                446   1
## 10829                                 63   1
## 10830                           friendly   1
## 10831                               i’ve   1
## 10832                         litterally   1
## 10833                               love   1
## 10834                                 os   1
## 10835                               os26   1
## 10836                            screens   1
## 10837                            updated   1
## 10838                                448   1
## 10839                               lock   1
## 10840                               paid   1
## 10841                              photo   1
## 10842                              ratio   1
## 10843                            version   1
## 10844                           pictures   1
## 10845                             joints   1
## 10846                           opinions   1
## 10847                             adidas   1
## 10848                               line   1
## 10849                                iba   1
## 10850                                bad   1
## 10851                         consistent   1
## 10852                            perfect   1
## 10853                           properly   1
## 10854                              shown   1
## 10855                           supposed   1
## 10856                            syncing   1
## 10857                              stuff   1
## 10858                               1311   1
## 10859                                  2   1
## 10860                                444   1
## 10861                                484   1
## 10862                                 50   1
## 10863                                app   1
## 10864                          defective   1
## 10865                               it’d   1
## 10866                                i’d   1
## 10867                         previously   1
## 10868                            remains   1
## 10869                             unable   1
## 10870                      uncomfortable   1
## 10871                               1953   1
## 10872                                463   1
## 10873                                app   1
## 10874                               it’s   1
## 10875                               i’ve   1
## 10876                             listed   1
## 10877                           tracking   1
## 10878                            wearing   1
## 10879                            whyyyyy   1
## 10880                            jerseys   1
## 10881                             metcon   1
## 10882                               tech   1
## 10883                                607   1
## 10884                          organized   1
## 10885                        synchronize   1
## 10886                                100   1
## 10887                               2025   1
## 10888                           accurate   1
## 10889                            amazing   1
## 10890                            awesome   1
## 10891                          basically   1
## 10892                             broken   1
## 10893                            bubbles   1
## 10894                           bullshit   1
## 10895                         capitalism   1
## 10896                            causing   1
## 10897                         consistent   1
## 10898                            correct   1
## 10899                            crashed   1
## 10900                           crashing   1
## 10901                         deliberate   1
## 10902                      disappointing   1
## 10903                          excellent   1
## 10904                          extremely   1
## 10905                               fair   1
## 10906                               fine   1
## 10907                                fun   1
## 10908                             giving   1
## 10909                                gps   1
## 10910                              guide   1
## 10911                           happened   1
## 10912                           imported   1
## 10913                           improved   1
## 10914                       inconvenient   1
## 10915                         incredibly   1
## 10916                             insane   1
## 10917                            keeping   1
## 10918                              kinda   1
## 10919                        lightweight   1
## 10920                          literally   1
## 10921                          motivates   1
## 10922                            primary   1
## 10923                           reliable   1
## 10924                         ridiculous   1
## 10925                             ruined   1
## 10926                               safe   1
## 10927                             simple   1
## 10928                            started   1
## 10929                           supposed   1
## 10930                         surprising   1
## 10931                           terrible   1
## 10932                            totally   1
## 10933                              trash   1
## 10934                            updated   1
## 10935                               user   1
## 10936                              weird   1
## 10937                              worse   1
## 10938                              molds   1
## 10939                              fluid   1
## 10940                             méndez   1
## 10941                                hit   1
## 10942                           longtime   1
## 10943                                bet   1
## 10944                             change   1
## 10945                          literally   1
## 10946                           migrated   1
## 10947                          recommend   1
## 10948                              wager   1
## 10949                               wear   1
## 10950                              worry   1
## 10951                             advise   1
## 10952                              check   1
## 10953                               post   1
## 10954                            recheck   1
## 10955                               send   1
## 10956                             switch   1
## 10957                                 13   1
## 10958                                 14   1
## 10959                                 15   1
## 10960                                 30   1
## 10961                                  4   1
## 10962                                5’1   1
## 10963                               82kg   1
## 10964                             adding   1
## 10965                          astounded   1
## 10966                          averaging   1
## 10967                          committed   1
## 10968                            curious   1
## 10969                           deleting   1
## 10970                         devastated   1
## 10971                       disappointed   1
## 10972                           entering   1
## 10973                            excited   1
## 10974                            finally   1
## 10975                            heading   1
## 10976                             hooked   1
## 10977                          impressed   1
## 10978                             inside   1
## 10979                          listening   1
## 10980                          literally   1
## 10981                             locked   1
## 10982                            logging   1
## 10983                           noticing   1
## 10984                            packing   1
## 10985                             paying   1
## 10986                           planning   1
## 10987                       recommending   1
## 10988                              short   1
## 10989                            sliding   1
## 10990                          sprinting   1
## 10991                           stacking   1
## 10992                              stuck   1
## 10993                             taking   1
## 10994                            talking   1
## 10995                            walking   1
## 10996                            writing   1
## 10997                       accidentally   1
## 10998                             bought   1
## 10999                             burned   1
## 11000                            circled   1
## 11001                            cleared   1
## 11002                             closed   1
## 11003                             cycled   1
## 11004                         downloaded   1
## 11005                            enjoyed   1
## 11006                              heard   1
## 11007                                hit   1
## 11008                             joined   1
## 11009                            learned   1
## 11010                              moved   1
## 11011                          offloaded   1
## 11012                         personally   1
## 11013                        recommended   1
## 11014                        reconnected   1
## 11015                        reinstalled   1
## 11016                          restarted   1
## 11017                            started   1
## 11018                            stopped   1
## 11019                         subscribed   1
## 11020                           switched   1
## 11021                            trained   1
## 11022                           verified   1
## 11023                              penny   1
## 11024                                low   1
## 11025                               tend   1
## 11026                                750   1
## 11027                                317   1
## 11028                            designs   1
## 11029                                  3   1
## 11030                                af1   1
## 11031                              color   1
## 11032                                  ª   1
## 11033                                928   1
## 11034                             adidas   1
## 11035                              coord   1
## 11036                             styles   1
## 11037                               nike   1
## 11038                            quality   1
## 11039                               love   1
## 11040                                 bo   1
## 11041                              wayne   1
## 11042                               nike   1
## 11043                             cheers   1
## 11044                           question   1
## 11045                               it’s   1
## 11046                            garbage   1
## 11047                                  2   1
## 11048                               2024   1
## 11049                         fundraiser   1
## 11050                          exclusive   1
## 11051                            germany   1
## 11052                             brands   1
## 11053                           canadian   1
## 11054                           williams   1
## 11055                                amp   1
## 11056                                 ea   1
## 11057                          exclusive   1
## 11058                                 ne   1
## 11059                               1574   1
## 11060                                263   1
## 11061                                269   1
## 11062                               fill   1
## 11063                               1349   1
## 11064                              4.253   1
## 11065                              4.318   1
## 11066                              model   1
## 11067                               1171   1
## 11068                             people   1
## 11069                               2209   1
## 11070                              4.300   1
## 11071                            blessed   1
## 11072                            content   1
## 11073                             womens   1
## 11074                           registro   1
## 11075                              walks   1
## 11076                            flights   1
## 11077                               mids   1
## 11078                               nick   1
## 11079                                158   1
## 11080                               cuts   1
## 11081                            keeping   1
## 11082                            logging   1
## 11083                        performance   1
## 11084                               site   1
## 11085                            wishing   1
## 11086                           holder’s   1
## 11087                                smh   1
## 11088                            awesome   1
## 11089                                10k   1
## 11090                               2419   1
## 11091                           stroller   1
## 11092                                  4   1
## 11093                             mackie   1
## 11094                           varvatos   1
## 11095                           customer   1
## 11096                                fun   1
## 11097                                i’m   1
## 11098                               nike   1
## 11099                               nike   1
## 11100                               1225   1
## 11101                                654   1
## 11102                               1274   1
## 11103                               yoke   1
## 11104                             wexler   1
## 11105                               hill   1
## 11106                                14s   1
## 11107                               1927   1
## 11108                                  3   1
## 11109                                 4s   1
## 11110                                  6   1
## 11111                                  8   1
## 11112                            address   1
## 11113                           endorsed   1
## 11114                         essentials   1
## 11115                                guy   1
## 11116                            history   1
## 11117                               logo   1
## 11118                                low   1
## 11119                               mode   1
## 11120                              model   1
## 11121                             models   1
## 11122                             prices   1
## 11123                            product   1
## 11124                           releases   1
## 11125                              shoes   1
## 11126                              socks   1
## 11127                             spieth   1
## 11128                             symbol   1
## 11129                               wore   1
## 11130                               zion   1
## 11131                             banned   1
## 11132                                  1   1
## 11133                              dunks   1
## 11134                               iván   1
## 11135                            adamson   1
## 11136                                app   1
## 11137                               july   1
## 11138                                 89   1
## 11139                           expertly   1
## 11140                            helping   1
## 11141                              flaws   1
## 11142                                ffs   1
## 11143                             format   1
## 11144                                nos   1
## 11145                                lol   1
## 11146                               shit   1
## 11147                                air   1
## 11148                                128   1
## 11149                                  5   1
## 11150                               rope   1
## 11151                          explosive   1
## 11152                               2255   1
## 11153                              logos   1
## 11154                           reversed   1
## 11155                               26th   1
## 11156                                  4   1
## 11157                            folders   1
## 11158                               mail   1
## 11159                                453   1
## 11160                            checked   1
## 11161                             picked   1
## 11162                     justfreshkicks   1
## 11163                             update   1
## 11164                            attendu   1
## 11165                              talks   1
## 11166                              abdul   1
## 11167                             wiciak   1
## 11168                            rorsted   1
## 11169                     shaunkay544514   1
## 11170                           seamless   1
## 11171                                 18   1
## 11172                              miles   1
## 11173                          motivated   1
## 11174                            records   1
## 11175                             denims   1
## 11176                                543   1
## 11177                          clubbells   1
## 11178                             durant   1
## 11179                            plank's   1
## 11180                                310   1
## 11181                              aight   1
## 11182                            missing   1
## 11183                             sports   1
## 11184                             hidden   1
## 11185                             weight   1
## 11186                            workout   1
## 11187                               burn   1
## 11188                          kickstart   1
## 11189                              white   1
## 11190                                885   1
## 11191                                ass   1
## 11192                              4.288   1
## 11193                              combo   1
## 11194                               jake   1
## 11195                              loose   1
## 11196                              makes   1
## 11197                          nicekicks   1
## 11198                           nowadays   1
## 11199                               2387   1
## 11200                           betina’s   1
## 11201                     kicksundercost   1
## 11202                             nike's   1
## 11203                               1461   1
## 11204                              likes   1
## 11205                               love   1
## 11206                               shoe   1
## 11207                              crazy   1
## 11208                            failure   1
## 11209                           function   1
## 11210                             injury   1
## 11211                                led   1
## 11212                                379   1
## 11213                     dressdresskids   1
## 11214                                dri   1
## 11215                   hoodiehoodiekids   1
## 11216                              names   1
## 11217                          oversized   1
## 11218                               1337   1
## 11219                                job   1
## 11220                               pair   1
## 11221                              price   1
## 11222                               i’ve   1
## 11223                               2306   1
## 11224                           annoying   1
## 11225                            bothers   1
## 11226                               cool   1
## 11227                             decent   1
## 11228                              feels   1
## 11229                             floppy   1
## 11230                               hard   1
## 11231                                mid   1
## 11232                             stupid   1
## 11233                            wearing   1
## 11234                              weird   1
## 11235                             forgot   1
## 11236                               data   1
## 11237                              socks   1
## 11238                              godso   1
## 11239                                462   1
## 11240                              feels   1
## 11241                            stadium   1
## 11242                           recently   1
## 11243                               home   1
## 11244                                890   1
## 11245                        interesante   1
## 11246                            bending   1
## 11247                            managed   1
## 11248                         preference   1
## 11249                             writes   1
## 11250                             racers   1
## 11251                               runs   1
## 11252                            version   1
## 11253                             bought   1
## 11254                               offs   1
## 11255                               pace   1
## 11256                                bro   1
## 11257                               bruv   1
## 11258                             people   1
## 11259                              4.384   1
## 11260                                  6   1
## 11261                                  8   1
## 11262                                 ad   1
## 11263                             jersey   1
## 11264                               beat   1
## 11265                         uygulaması   1
## 11266                               2278   1
## 11267                               song   1
## 11268                                ise   1
## 11269                                low   1
## 11270                                237   1
## 11271                             cambió   1
## 11272                          chaussure   1
## 11273                              estoy   1
## 11274                          extrañare   1
## 11275                             lluvia   1
## 11276                               meta   1
## 11277                         motivación   1
## 11278                         recomiendo   1
## 11279                            sección   1
## 11280                            terminé   1
## 11281                                uso   1
## 11282                             verdad   1
## 11283                        provocative   1
## 11284                             fields   1
## 11285                               cost   1
## 11286                                195   1
## 11287                                  1   1
## 11288                               1009   1
## 11289                               2376   1
## 11290                               2377   1
## 11291                               2379   1
## 11292                             advice   1
## 11293                               bags   1
## 11294                            comfort   1
## 11295                              4.346   1
## 11296                              shoes   1
## 11297                             luster   1
## 11298                              depth   1
## 11299                             sports   1
## 11300                            widgets   1
## 11301                                183   1
## 11302                             colour   1
## 11303                               1459   1
## 11304                               1167   1
## 11305                             actual   1
## 11306                            doesn’t   1
## 11307                               it’s   1
## 11308                           workouts   1
## 11309                             region   1
## 11310                              samba   1
## 11311                              times   1
## 11312                            outsole   1
## 11313                             screen   1
## 11314                              sizes   1
## 11315                            olympic   1
## 11316                        deportistas   1
## 11317                            mejores   1
## 11318                            rutinas   1
## 11319                                  4   1
## 11320                            there’s   1
## 11321                               2067   1
## 11322                             raises   1
## 11323                           gqmexico   1
## 11324                               4.12   1
## 11325                                 70   1
## 11326                                90s   1
## 11327                           evenings   1
## 11328                              night   1
## 11329                              reply   1
## 11330                            squates   1
## 11331                               date   1
## 11332                                 18   1
## 11333                                 70   1
## 11334                           consumer   1
## 11335                            protect   1
## 11336                          detergent   1
## 11337                                nov   1
## 11338                           response   1
## 11339                               love   1
## 11340                              https   1
## 11341                               time   1
## 11342                               half   1
## 11343                               code   1
## 11344                            coureur   1
## 11345                            running   1
## 11346                            travail   1
## 11347                            workout   1
## 11348                             change   1
## 11349                              kevin   1
## 11350                             growth   1
## 11351                              ahead   1
## 11352                              feels   1
## 11353                             adidas   1
## 11354                           covering   1
## 11355                                def   1
## 11356                             jacket   1
## 11357                             loving   1
## 11358                              moves   1
## 11359                              paint   1
## 11360                              seude   1
## 11361                         superstars   1
## 11362                            version   1
## 11363                                120   1
## 11364                           comments   1
## 11365                           material   1
## 11366                               nike   1
## 11367                              notes   1
## 11368                            package   1
## 11369                          runtastic   1
## 11370                                  4   1
## 11371                             helped   1
## 11372                              james   1
## 11373                               1936   1
## 11374                            earlier   1
## 11375                               blue   1
## 11376                              blues   1
## 11377                               1777   1
## 11378                            classes   1
## 11379                              light   1
## 11380                           workouts   1
## 11381                                870   1
## 11382                             corner   1
## 11383                               mine   1
## 11384                             review   1
## 11385                              scars   1
## 11386                              socks   1
## 11387                               till   1
## 11388                             toebox   1
## 11389                              boost   1
## 11390                                day   1
## 11391                              drive   1
## 11392                         department   1
## 11393                          essential   1
## 11394                                fit   1
## 11395                                lol   1
## 11396                                711   1
## 11397                                728   1
## 11398                                 af   1
## 11399                           checking   1
## 11400                             design   1
## 11401                            granted   1
## 11402                             noctas   1
## 11403                              shoes   1
## 11404                               sick   1
## 11405                                top   1
## 11406                          subreddit   1
## 11407                               feel   1
## 11408                              start   1
## 11409                                 30   1
## 11410                                  5   1
## 11411                              socks   1
## 11412                       specifically   1
## 11413                               type   1
## 11414                                 ua   1
## 11415                               wise   1
## 11416                        intensities   1
## 11417                               1970   1
## 11418                             exists   1
## 11419                            amazing   1
## 11420                            bendiga   1
## 11421                             muscle   1
## 11422                             extend   1
## 11423                            learned   1
## 11424                               1060   1
## 11425                                 67   1
## 11426                                174   1
## 11427                               2236   1
## 11428                                  4   1
## 11429                        athleticism   1
## 11430                        comfortable   1
## 11431                                dad   1
## 11432                           fabulous   1
## 11433                                fit   1
## 11434                             people   1
## 11435                         pickleball   1
## 11436                           recently   1
## 11437                            running   1
## 11438                                  û   1
## 11439                                149   1
## 11440                               shoe   1
## 11441                                227   1
## 11442                         acompañado   1
## 11443                               1412   1
## 11444                                301   1
## 11445                                318   1
## 11446                                477   1
## 11447                             adidas   1
## 11448                               body   1
## 11449                            changer   1
## 11450                            coaches   1
## 11451                           happened   1
## 11452                            healthy   1
## 11453                             hiking   1
## 11454                         imbalances   1
## 11455                          including   1
## 11456                                ive   1
## 11457                                i’m   1
## 11458                               left   1
## 11459                                 qc   1
## 11460                               1603   1
## 11461                             advice   1
## 11462                              shoes   1
## 11463                            sneaker   1
## 11464                       subscription   1
## 11465                              bumps   1
## 11466                              heavy   1
## 11467                           programs   1
## 11468                            purpose   1
## 11469                               shoe   1
## 11470                             squats   1
## 11471                               blue   1
## 11472                          chocolate   1
## 11473                              cross   1
## 11474                             inside   1
## 11475                                jog   1
## 11476                             jogger   1
## 11477                               love   1
## 11478                             purple   1
## 11479                             weight   1
## 11480                               shoe   1
## 11481                              shoes   1
## 11482                              bolts   1
## 11483                                pro   1
## 11484                             combat   1
## 11485                        comfortable   1
## 11486                              roomy   1
## 11487                              shirt   1
## 11488                             shorts   1
## 11489                         supportive   1
## 11490                              white   1
## 11491                                 4s   1
## 11492                              rebel   1
## 11493                               1846   1
## 11494                               feet   1
## 11495                               step   1
## 11496                             joints   1
## 11497                               pair   1
## 11498                               1424   1
## 11499                       itshappening   1
## 11500                               live   1
## 11501                             salute   1
## 11502                              shoes   1
## 11503                           regional   1
## 11504                               1093   1
## 11505                                866   1
## 11506                            amazing   1
## 11507                               body   1
## 11508                               glad   1
## 11509                               nike   1
## 11510                          shortcuts   1
## 11511                             hoodie   1
## 11512                               soft   1
## 11513                            insoles   1
## 11514                                592   1
## 11515                             videos   1
## 11516                          territory   1
## 11517                              gamma   1
## 11518                           resource   1
## 11519                                391   1
## 11520                              4.209   1
## 11521                              happy   1
## 11522                              reset   1
## 11523                              don’t   1
## 11524                              named   1
## 11525                           consumer   1
## 11526                         leadership   1
## 11527                                344   1
## 11528                               1944   1
## 11529                                  4   1
## 11530                             format   1
## 11531                         galloway’s   1
## 11532                             update   1
## 11533                         activities   1
## 11534                        comfortable   1
## 11535                              makes   1
## 11536                            bitcoin   1
## 11537                                  5   1
## 11538                                 50   1
## 11539                           admitted   1
## 11540                          canceling   1
## 11541                              can’t   1
## 11542                               feel   1
## 11543                               list   1
## 11544                          perfectly   1
## 11545                            shorter   1
## 11546                              stole   1
## 11547                            talking   1
## 11548                           unusable   1
## 11549                           unusable   1
## 11550                                531   1
## 11551                            amazing   1
## 11552                              class   1
## 11553                              elvis   1
## 11554                            forever   1
## 11555                           location   1
## 11556                           platform   1
## 11557                           tracking   1
## 11558                           trainers   1
## 11559                            wearing   1
## 11560                          realistic   1
## 11561                             abroad   1
## 11562                        maintenance   1
## 11563                              admit   1
## 11564                                buy   1
## 11565                             charge   1
## 11566                           continue   1
## 11567                                cop   1
## 11568                               drop   1
## 11569                            finally   1
## 11570                               grab   1
## 11571                               hold   1
## 11572                               live   1
## 11573                               pass   1
## 11574                                pay   1
## 11575                               rock   1
## 11576                              shove   1
## 11577                            totally   1
## 11578                               wait   1
## 11579                                los   1
## 11580                                 el   1
## 11581                               bien   1
## 11582                               it’s   1
## 11583                               1371   1
## 11584                               1513   1
## 11585                                4.3   1
## 11586                                708   1
## 11587                               holy   1
## 11588                           negative   1
## 11589                               nike   1
## 11590                             nogafb   1
## 11591                                 41   1
## 11592                               1224   1
## 11593                            primero   1
## 11594                         recomiendo   1
## 11595                                445   1
## 11596                                 88   1
## 11597                            anymore   1
## 11598                          correctly   1
## 11599                                fix   1
## 11600                           previous   1
## 11601                             simply   1
## 11602                              won’t   1
## 11603                             screen   1
## 11604                            screens   1
## 11605                             busted   1
## 11606                        authorities   1
## 11607                                 er   1
## 11608                            factory   1
## 11609                          marshalls   1
## 11610                               nike   1
## 11611                             outlet   1
## 11612                             police   1
## 11613                             raffle   1
## 11614                           retailer   1
## 11615                            closest   1
## 11616                                668   1
## 11617                               1630   1
## 11618                             canada   1
## 11619                             simple   1
## 11620                               feet   1
## 11621                          excelente   1
## 11622                             adidas   1
## 11623                           flooding   1
## 11624                              weigh   1
## 11625                           compared   1
## 11626                                dor   1
## 11627                               love   1
## 11628                            perfect   1
## 11629                               runs   1
## 11630                           features   1
## 11631                              miles   1
## 11632                             people   1
## 11633                               code   1
## 11634                        credentials   1
## 11635                           everyday   1
## 11636                              issue   1
## 11637                             issues   1
## 11638                             online   1
## 11639                               i’ve   1
## 11640                               1310   1
## 11641                                cap   1
## 11642                             facing   1
## 11643                         indentions   1
## 11644                            initial   1
## 11645                              peels   1
## 11646                              faced   1
## 11647                                 ya   1
## 11648                       seguimientos   1
## 11649                         conectarse   1
## 11650                               1032   1
## 11651                               1050   1
## 11652                               1069   1
## 11653                               1076   1
## 11654                               1077   1
## 11655                                110   1
## 11656                               1159   1
## 11657                                117   1
## 11658                               1200   1
## 11659                               1209   1
## 11660                               1221   1
## 11661                               1273   1
## 11662                               1307   1
## 11663                               1318   1
## 11664                               1347   1
## 11665                                137   1
## 11666                               1375   1
## 11667                               1381   1
## 11668                               1399   1
## 11669                               1436   1
## 11670                               1448   1
## 11671                                 15   1
## 11672                               1529   1
## 11673                                 16   1
## 11674                               1617   1
## 11675                                163   1
## 11676                               1652   1
## 11677                               1653   1
## 11678                               1673   1
## 11679                               1704   1
## 11680                               1712   1
## 11681                               1783   1
## 11682                               1791   1
## 11683                               1850   1
## 11684                               2012   1
## 11685                                210   1
## 11686                               2113   1
## 11687                               2119   1
## 11688                                212   1
## 11689                                218   1
## 11690                               2185   1
## 11691                               2227   1
## 11692                               2249   1
## 11693                               2261   1
## 11694                               2262   1
## 11695                               2394   1
## 11696                               2403   1
## 11697                                303   1
## 11698                                347   1
## 11699                                376   1
## 11700                                385   1
## 11701                                399   1
## 11702                              4.309   1
## 11703                                459   1
## 11704                                488   1
## 11705                                 53   1
## 11706                                584   1
## 11707                                622   1
## 11708                                635   1
## 11709                                773   1
## 11710                                779   1
## 11711                                 80   1
## 11712                                 83   1
## 11713                                853   1
## 11714                                877   1
## 11715                                898   1
## 11716                                906   1
## 11717                                962   1
## 11718                          apologies   1
## 11719                               beat   1
## 11720                           clothing   1
## 11721                               dark   1
## 11722                               fuck   1
## 11723                      functionality   1
## 11724                                gif   1
## 11725                              haven   1
## 11726                               love   1
## 11727                              truth   1
## 11728                             vomero   1
## 11729                           marathon   1
## 11730                              angry   1
## 11731                             nubuck   1
## 11732                         basketball   1
## 11733                           favorite   1
## 11734                               user   1
## 11735                               fire   1
## 11736                              green   1
## 11737                           slightly   1
## 11738                              clean   1
## 11739                       indefinitely   1
## 11740                                 01   1
## 11741                             crotch   1
## 11742                               feet   1
## 11743                        trafdidrake   1
## 11744                               lmao   1
## 11745                            angeles   1
## 11746                          challenge   1
## 11747                            correos   1
## 11748                              datos   1
## 11749                     entrenamientos   1
## 11750                           felicito   1
## 11751                             logros   1
## 11752                            primium   1
## 11753                               0.01   1
## 11754                                 60   1
## 11755                         connection   1
## 11756                             weight   1
## 11757                                gps   1
## 11758                               ucla   1
## 11759                                 12   1
## 11760                                 60   1
## 11761                           material   1
## 11762                             adidas   1
## 11763                                app   1
## 11764                               cnbc   1
## 11765                                gps   1
## 11766                                hit   1
## 11767                                 58   1
## 11768                                 65   1
## 11769                          countless   1
## 11770                             cousin   1
## 11771                               nike   1
## 11772                               paid   1
## 11773                           progress   1
## 11774                            running   1
## 11775                               1089   1
## 11776                                195   1
## 11777                               4.83   1
## 11778                             easier   1
## 11779                            lighter   1
## 11780                              nicer   1
## 11781                           recently   1
## 11782                          knowledge   1
## 11783                               4.61   1
## 11784                             energy   1
## 11785                                 10   1
## 11786                                290   1
## 11787                                315   1
## 11788                                af1   1
## 11789                             betina   1
## 11790                        challenging   1
## 11791                         confession   1
## 11792                              crazy   1
## 11793                              curry   1
## 11794                             forces   1
## 11795                               free   1
## 11796                               it’s   1
## 11797                               i’ve   1
## 11798                                joe   1
## 11799                            keeping   1
## 11800                               mids   1
## 11801                            picking   1
## 11802                        qualityi’ve   1
## 11803                            running   1
## 11804                                 sb   1
## 11805                          searching   1
## 11806                           sneakers   1
## 11807                               stan   1
## 11808                             thisss   1
## 11809                           tracking   1
## 11810                           training   1
## 11811                              treat   1
## 11812                               ua’s   1
## 11813                                 um   1
## 11814                           uptempos   1
## 11815                            variety   1
## 11816                            wearing   1
## 11817                              weird   1
## 11818                           workouts   1
## 11819                              y’all   1
## 11820                               past   1
## 11821                                 20   1
## 11822                                  5   1
## 11823                                 85   1
## 11824                               code   1
## 11825                              curry   1
## 11826                             demand   1
## 11827                               flat   1
## 11828                                jbl   1
## 11829                              jonah   1
## 11830                              kanye   1
## 11831                              kevin   1
## 11832                             neeraj   1
## 11833                               nike   1
## 11834                            rocking   1
## 11835                                ron   1
## 11836                              sales   1
## 11837                              shirt   1
## 11838                             spieth   1
## 11839                            stephen   1
## 11840                               tech   1
## 11841                           upcoming   1
## 11842                            version   1
## 11843                               wolf   1
## 11844                            women's   1
## 11845                            workout   1
## 11846                               drop   1
## 11847                              men's   1
## 11848                               1735   1
## 11849                               am97   1
## 11850                              clown   1
## 11851                          materials   1
## 11852                                469   1
## 11853                               user   1
## 11854                               2052   1
## 11855                            program   1
## 11856                               crvg   1
## 11857                               1468   1
## 11858                               hope   1
## 11859                                278   1
## 11860                                559   1
## 11861                                797   1
## 11862                               1683   1
## 11863                              terra   1
## 11864                             arktos   1
## 11865                                box   1
## 11866                              money   1
## 11867                           enclosed   1
## 11868                               shoe   1
## 11869                              south   1
## 11870                               1251   1
## 11871                               dunk   1
## 11872                          wonderful   1
## 11873                               mail   1
## 11874                         background   1
## 11875                              2015s   1
## 11876                              fedex   1
## 11877                         kettlebell   1
## 11878                           debating   1
## 11879                              shoes   1
## 11880                               days   1
## 11881                           otomatik   1
## 11882                             update   1
## 11883                             washes   1
## 11884                          headwinds   1
## 11885                             adidas   1
## 11886                             online   1
## 11887                        comfortable   1
## 11888                              rough   1
## 11889                            squeaky   1
## 11890                            segunda   1
## 11891                              yamal   1
## 11892                                 cw   1
## 11893                            kingdom   1
## 11894                           software   1
## 11895                               j’ai   1
## 11896                            process   1
## 11897                              issue   1
## 11898                             screen   1
## 11899                            workout   1
## 11900                                top   1
## 11901                             yellow   1
## 11902                            control   1
## 11903                            defects   1
## 11904                         difference   1
## 11905                        frustration   1
## 11906                       frustrations   1
## 11907                             issues   1
## 11908                               pain   1
## 11909                          retailers   1
## 11910                                 ui   1
## 11911                               easy   1
## 11912                                  3   1
## 11913                           exercise   1
## 11914                            largest   1
## 11915                              music   1
## 11916                            putting   1
## 11917                            running   1
## 11918                             series   1
## 11919                              shoes   1
## 11920                         sportswear   1
## 11921                                app   1
## 11922                                 se   1
## 11923                              apple   1
## 11924                           trainers   1
## 11925                               half   1
## 11926                             earned   1
## 11927                           freaking   1
## 11928                            stating   1
## 11929                               data   1
## 11930                           marathon   1
## 11931                              4.169   1
## 11932                                cop   1
## 11933                            website   1
## 11934                               1219   1
## 11935                                346   1
## 11936                                 el   1
## 11937                            logging   1
## 11938                                  3   1
## 11939                             change   1
## 11940                              enter   1
## 11941                              input   1
## 11942                                log   1
## 11943                                set   1
## 11944                           listings   1
## 11945                           okabashi   1
## 11946                           original   1
## 11947                             choose   1
## 11948                           creating   1
## 11949                            feature   1
## 11950                           included   1
## 11951                              miles   1
## 11952                              tells   1
## 11953                              track   1
## 11954                            wrapped   1
## 11955                             versus   1
## 11956                            appears   1
## 11957                              can’t   1
## 11958                               mrtb   1
## 11959                         activities   1
## 11960                               déçu   1
## 11961                            feature   1
## 11962                            running   1
## 11963                              route   1
## 11964                               2015   1
## 11965                            bombing   1
## 11966                                jus   1
## 11967                              kudos   1
## 11968                                map   1
## 11969                         previously   1
## 11970                              video   1
## 11971                                5ks   1
## 11972                           obstacle   1
## 11973                             pretty   1
## 11974                          recommend   1
## 11975                                 el   1
## 11976                                 16   1
## 11977                               28th   1
## 11978                               lows   1
## 11979                            madness   1
## 11980                             fabian   1
## 11981                               1856   1
## 11982                              corps   1
## 11983                             mdpc62   1
## 11984                                 20   1
## 11985                               1598   1
## 11986                               2040   1
## 11987                                895   1
## 11988                              fakes   1
## 11989                                 ro   1
## 11990                              share   1
## 11991                             stands   1
## 11992                                 bs   1
## 11993                          campaigns   1
## 11994                           fernando   1
## 11995                            gimmick   1
## 11996                               ploy   1
## 11997                               push   1
## 11998                                  3   1
## 11999                             august   1
## 12000                         mismatched   1
## 12001                      international   1
## 12002                              mcfly   1
## 12003                               hoje   1
## 12004                              color   1
## 12005                           recently   1
## 12006                                 ua   1
## 12007                              built   1
## 12008                            deleted   1
## 12009                          therapist   1
## 12010                             impact   1
## 12011                            reduced   1
## 12012                           trainers   1
## 12013                             stains   1
## 12014                             stockx   1
## 12015                               1862   1
## 12016                          distances   1
## 12017                            oktober   1
## 12018                              skirt   1
## 12019                              sweat   1
## 12020                            toddler   1
## 12021                               2402   1
## 12022                               4.70   1
## 12023                                 jd   1
## 12024                               1276   1
## 12025                               1279   1
## 12026                               1910   1
## 12027                                458   1
## 12028                                759   1
## 12029                            changed   1
## 12030                              isn’t   1
## 12031                            residue   1
## 12032                            rubbing   1
## 12033                           shortage   1
## 12034                             wouldn   1
## 12035                             policy   1
## 12036                                419   1
## 12037                                640   1
## 12038                               feet   1
## 12039                               gang   1
## 12040                                  1   1
## 12041                               1000   1
## 12042                              95000   1
## 12043                          colorways   1
## 12044                            content   1
## 12045                                day   1
## 12046                           decently   1
## 12047                                 dn   1
## 12048                              excee   1
## 12049                        fantaposite   1
## 12050                             greedy   1
## 12051                              heart   1
## 12052                            jordans   1
## 12053                               size   1
## 12054                          stability   1
## 12055                            uptempo   1
## 12056                                 xc   1
## 12057                            depends   1
## 12058                              brand   1
## 12059                         cushioning   1
## 12060                                 mi   1
## 12061                         cushioning   1
## 12062                            october   1
## 12063                                 de   1
## 12064                                 04   1
## 12065                              wears   1
## 12066                            hooping   1
## 12067                                dwc   1
## 12068                               plan   1
## 12069                                lol   1
## 12070                               call   1
## 12071                                meh   1
## 12072                           distance   1
## 12073                          addiction   1
## 12074                               hype   1
## 12075                       interactions   1
## 12076                              space   1
## 12077                              spend   1
## 12078                             stated   1
## 12079                             volume   1
## 12080                        association   1
## 12081                          condition   1
## 12082                           industry   1
## 12083                                psc   1
## 12084                               shoe   1
## 12085                          avanzados   1
## 12086                               para   1
## 12087                           training   1
## 12088                               fits   1
## 12089                               hovr   1
## 12090                               love   1
## 12091                              terms   1
## 12092                               it’s   1
## 12093                              solid   1
## 12094                             aliada   1
## 12095                                app   1
## 12096                      entrenamiento   1
## 12097                             opción   1
## 12098                            terapia   1
## 12099                               cada   1
## 12100                           nuestras   1
## 12101                       aplicaciones   1
## 12102                                app   1
## 12103                             slides   1
## 12104                            expires   1
## 12105                                vip   1
## 12106                              4.178   1
## 12107                              worst   1
## 12108                             keeper   1
## 12109                               2001   1
## 12110                               2003   1
## 12111                                lol   1
## 12112                                 10   1
## 12113                                795   1
## 12114                              march   1
## 12115                               size   1
## 12116                           versions   1
## 12117                             washed   1
## 12118                         windrunner   1
## 12119                                396   1
## 12120                              ultra   1
## 12121                           strength   1
## 12122                            heavier   1
## 12123                                 pm   1
## 12124                           honestly   1
## 12125                               crop   1
## 12126                               size   1
## 12127                           feedback   1
## 12128                              4.325   1
## 12129                               wool   1
## 12130                               para   1
## 12131                              upper   1
## 12132                               free   1
## 12133                              login   1
## 12134                             safari   1
## 12135                              barca   1
## 12136                           hardware   1
## 12137                               logo   1
## 12138                                 5s   1
## 12139                               1563   1
## 12140                            hitting   1
## 12141                                ray   1
## 12142                                  1   1
## 12143                                  8   1
## 12144                                 9s   1
## 12145                                fan   1
## 12146                               free   1
## 12147                              turbo   1
## 12148                         aesthetics   1
## 12149                               2051   1
## 12150                          evolution   1
## 12151                              turbo   1
## 12152                                 66   1
## 12153                            wearing   1
## 12154                           original   1
## 12155                               shoe   1
## 12156                              amigo   1
## 12157                            antigua   1
## 12158                         aplicación   1
## 12159                              apple   1
## 12160                             cuerpo   1
## 12161                             esposo   1
## 12162                                 ha   1
## 12163                            opinion   1
## 12164                         referencia   1
## 12165                              reloj   1
## 12166                             rutina   1
## 12167                             récord   1
## 12168                             jordan   1
## 12169                              moore   1
## 12170                             jordan   1
## 12171                             briggs   1
## 12172                            obama's   1
## 12173                                 de   1
## 12174                              bites   1
## 12175                             sizing   1
## 12176                               1914   1
## 12177                                20s   1
## 12178                              4.374   1
## 12179                               crew   1
## 12180                                hey   1
## 12181                                lol   1
## 12182                            portion   1
## 12183                               rise   1
## 12184                                run   1
## 12185                                top   1
## 12186                                age   1
## 12187                           distance   1
## 12188                            innings   1
## 12189                             school   1
## 12190                             volume   1
## 12191                               navy   1
## 12192                               1695   1
## 12193                              4.118   1
## 12194                             height   1
## 12195                              lines   1
## 12196                            reminds   1
## 12197                             retros   1
## 12198                              shoes   1
## 12199                              trend   1
## 12200                                air   1
## 12201                               grau   1
## 12202                               pttd   1
## 12203                                  3   1
## 12204                        calculation   1
## 12205                               goal   1
## 12206                               hike   1
## 12207                         impossible   1
## 12208                          intervals   1
## 12209                                i’m   1
## 12210                            leading   1
## 12211                               loop   1
## 12212                               mark   1
## 12213                              miles   1
## 12214                               miss   1
## 12215                               till   1
## 12216                               time   1
## 12217                              times   1
## 12218                              track   1
## 12219                          treadmill   1
## 12220                               walk   1
## 12221                              walks   1
## 12222                       consistently   1
## 12223                              count   1
## 12224                            doesn’t   1
## 12225                               goal   1
## 12226                            matches   1
## 12227                               pace   1
## 12228                              sound   1
## 12229                                2.3   1
## 12230                                 31   1
## 12231                                 67   1
## 12232                                  8   1
## 12233                             adidas   1
## 12234                             biking   1
## 12235                              bring   1
## 12236                           calories   1
## 12237                            doesn’t   1
## 12238                              don’t   1
## 12239                            drawing   1
## 12240                               edit   1
## 12241                              guess   1
## 12242                               i’ll   1
## 12243                             messes   1
## 12244                           properly   1
## 12245                                ran   1
## 12246                            session   1
## 12247                            summary   1
## 12248                            walking   1
## 12249                             you’re   1
## 12250                             adding   1
## 12251                             blacks   1
## 12252                               blue   1
## 12253                           inspired   1
## 12254                               left   1
## 12255                              entre   1
## 12256                              bucks   1
## 12257                             shirts   1
## 12258                              times   1
## 12259                              users   1
## 12260                          recommend   1
## 12261                             macron   1
## 12262                                554   1
## 12263                           mobility   1
## 12264                               test   1
## 12265                            workout   1
## 12266                               001s   1
## 12267                                002   1
## 12268                               2065   1
## 12269                           boggling   1
## 12270                             resell   1
## 12271                               soul   1
## 12272                           reminder   1
## 12273                           sessions   1
## 12274                               1346   1
## 12275                               1495   1
## 12276                               1496   1
## 12277                               1645   1
## 12278                               4.13   1
## 12279                              4.250   1
## 12280                                8am   1
## 12281                              break   1
## 12282                             crispy   1
## 12283                           crumbled   1
## 12284                          delivered   1
## 12285                               rest   1
## 12286                             retail   1
## 12287                          should've   1
## 12288                            started   1
## 12289                                til   1
## 12290                           interior   1
## 12291                                map   1
## 12292                           glitches   1
## 12293                          squeaking   1
## 12294                                cbr   1
## 12295                       interruption   1
## 12296                          annoyance   1
## 12297                         stretching   1
## 12298                           colorway   1
## 12299                               baby   1
## 12300                         increments   1
## 12301                           strength   1
## 12302                             tabata   1
## 12303                               test   1
## 12304                               it’s   1
## 12305                               till   1
## 12306                                vey   1
## 12307                                 es   1
## 12308                              image   1
## 12309                        actividades   1
## 12310                              datos   1
## 12311                          l’adresse   1
## 12312                           stitched   1
## 12313                              sizes   1
## 12314                             trotar   1
## 12315                         kimmyjeans   1
## 12316                               nike   1
## 12317                               2204   1
## 12318                               2281   1
## 12319                                  3   1
## 12320                          eliminate   1
## 12321                           features   1
## 12322                          interface   1
## 12323                              items   1
## 12324                              penny   1
## 12325                              beach   1
## 12326                     thatmitusbloke   1
## 12327                                bag   1
## 12328                                423   1
## 12329                            meeting   1
## 12330                            retired   1
## 12331                               yeah   1
## 12332                               drop   1
## 12333                                ect   1
## 12334                               love   1
## 12335                                yup   1
## 12336                                app   1
## 12337                             runner   1
## 12338                               user   1
## 12339                               yoga   1
## 12340                             global   1
## 12341                                 85   1
## 12342                                app   1
## 12343                             custom   1
## 12344                               icon   1
## 12345                             screen   1
## 12346                            support   1
## 12347                               1137   1
## 12348                              4.122   1
## 12349                             coming   1
## 12350                              legit   1
## 12351                             struck   1
## 12352                            wearing   1
## 12353                              kinda   1
## 12354                              socks   1
## 12355                                af1   1
## 12356                          beautiful   1
## 12357                           branding   1
## 12358                            comfort   1
## 12359                                day   1
## 12360                               pair   1
## 12361                                gym   1
## 12362                               font   1
## 12363                                 el   1
## 12364                              4.264   1
## 12365                            unbound   1
## 12366                                map   1
## 12367                               1730   1
## 12368                               2137   1
## 12369                                pro   1
## 12370                               easy   1
## 12371                          underwear   1
## 12372                         changement   1
## 12373                               1537   1
## 12374                               2195   1
## 12375                                 79   1
## 12376                             hungry   1
## 12377                              worth   1
## 12378                               easy   1
## 12379                           progress   1
## 12380                                 la   1
## 12381                             colors   1
## 12382                               1216   1
## 12383                               1335   1
## 12384                                  2   1
## 12385                                ago   1
## 12386                            deleted   1
## 12387                              don’t   1
## 12388                                run   1
## 12389                            running   1
## 12390                               1295   1
## 12391                               1299   1
## 12392                               2283   1
## 12393                                4.7   1
## 12394                                441   1
## 12395                                app   1
## 12396                         dethroning   1
## 12397                                due   1
## 12398                            finally   1
## 12399                         postpartum   1
## 12400                            updates   1
## 12401                             totals   1
## 12402                          timeframe   1
## 12403                              shoes   1
## 12404                            walking   1
## 12405                             yeezys   1
## 12406                              4.140   1
## 12407                              4.142   1
## 12408                              4.170   1
## 12409                                fit   1
## 12410                            outdoor   1
## 12411                               rise   1
## 12412                               1626   1
## 12413                                oak   1
## 12414                             bought   1
## 12415                               crop   1
## 12416                               para   1
## 12417                               todo   1
## 12418                                117   1
## 12419                                231   1
## 12420                                355   1
## 12421                                482   1
## 12422                                 57   1
## 12423                           ensuring   1
## 12424                             losses   1
## 12425                              makes   1
## 12426                        application   1
## 12427                        comparisons   1
## 12428                            feature   1
## 12429                          inspiring   1
## 12430                               tool   1
## 12431                     accountability   1
## 12432                            earlier   1
## 12433                        encouraging   1
## 12434                             killer   1
## 12435                               tara   1
## 12436                               tips   1
## 12437                                254   1
## 12438                               glad   1
## 12439                               love   1
## 12440                           daughter   1
## 12441                           strength   1
## 12442                              yeezy   1
## 12443                                ppl   1
## 12444                               1994   1
## 12445                             easily   1
## 12446                         advocating   1
## 12447                               haze   1
## 12448                             hoping   1
## 12449                            quality   1
## 12450                            variety   1
## 12451                             friday   1
## 12452                                set   1
## 12453                         stretching   1
## 12454                                 91   1
## 12455                            forward   1
## 12456                               it’s   1
## 12457                           workouts   1
## 12458                                819   1
## 12459                           colorway   1
## 12460                                820   1
## 12461                             colors   1
## 12462                               easy   1
## 12463                              trail   1
## 12464                               love   1
## 12465                               2390   1
## 12466                            watcher   1
## 12467                              tanks   1
## 12468                             life’s   1
## 12469                                map   1
## 12470                         downloaded   1
## 12471                               este   1
## 12472                                los   1
## 12473                              fácil   1
## 12474                                tap   1
## 12475                           trainers   1
## 12476                               week   1
## 12477                               pair   1
## 12478                         activities   1
## 12479                           attempts   1
## 12480                              coats   1
## 12481                            comment   1
## 12482                               days   1
## 12483                          exercises   1
## 12484                                leg   1
## 12485                      notifications   1
## 12486                           programs   1
## 12487                            running   1
## 12488                              steps   1
## 12489                        partnership   1
## 12490                              donde   1
## 12491                            fatigue   1
## 12492                              focus   1
## 12493                               mass   1
## 12494                           strength   1
## 12495                             tissue   1
## 12496                                 47   1
## 12497                            account   1
## 12498                                add   1
## 12499                               apps   1
## 12500                              built   1
## 12501                            connect   1
## 12502                            doesn’t   1
## 12503                            haven’t   1
## 12504                               it’s   1
## 12505                               i’ve   1
## 12506                            library   1
## 12507                               love   1
## 12508                               play   1
## 12509                            playing   1
## 12510                          playlists   1
## 12511                    recommendations   1
## 12512                           settings   1
## 12513                         soundcloud   1
## 12514                             source   1
## 12515                            spotify   1
## 12516                             volume   1
## 12517                              bueno   1
## 12518                             exacto   1
## 12519                             fresco   1
## 12520                               util   1
## 12521                           multiple   1
## 12522                               paid   1
## 12523                                app   1
## 12524                              night   1
## 12525                             update   1
## 12526                              vélez   1
## 12527                                 la   1
## 12528                                374   1
## 12529                                 tv   1
## 12530                               pone   1
## 12531                                muy   1
## 12532                             screen   1
## 12533                               2317   1
## 12534                                351   1
## 12535                                561   1
## 12536                                580   1
## 12537                                ifs   1
## 12538                                lol   1
## 12539                               1338   1
## 12540                            interim   1
## 12541                             robert   1
## 12542                                  2   1
## 12543                               2.0s   1
## 12544                           recently   1
## 12545                                x4s   1
## 12546                              voice   1
## 12547                               1747   1
## 12548                              4.387   1
## 12549                               foot   1
## 12550                               heel   1
## 12551                           question   1
## 12552                              sized   1
## 12553                                toe   1
## 12554                        assinaturas   1
## 12555                               nike   1
## 12556                                 ma   1
## 12557                           football   1
## 12558                          headlines   1
## 12559                          qualifier   1
## 12560                            boycott   1
## 12561                           features   1
## 12562                              aging   1
## 12563                           parabéns   1
## 12564                               past   1
## 12565                              black   1
## 12566                                991   1
## 12567                               2319   1
## 12568                                 x4   1
## 12569                        sympathizer   1
## 12570                           footwear   1
## 12571                               puma   1
## 12572                            saucony   1
## 12573                                 sc   1
## 12574                           sneakers   1
## 12575                              socks   1
## 12576                               1031   1
## 12577                                 d1   1
## 12578                              games   1
## 12579                               peux   1
## 12580                         completion   1
## 12581                               2183   1
## 12582                           activity   1
## 12583                             afford   1
## 12584                             gaiter   1
## 12585              sweatshirthoodiewomen   1
## 12586                               time   1
## 12587                             chopra   1
## 12588                               1751   1
## 12589                                 60   1
## 12590                              awful   1
## 12591                                bad   1
## 12592                            biggest   1
## 12593                             breaks   1
## 12594                             broken   1
## 12595                           browsing   1
## 12596                               bugs   1
## 12597                           comments   1
## 12598                           couldn’t   1
## 12599                             crashy   1
## 12600                               data   1
## 12601                             doesnt   1
## 12602                              don’t   1
## 12603                              drops   1
## 12604                              email   1
## 12605                         frustrated   1
## 12606                            garbage   1
## 12607                      impossibilité   1
## 12608                               it’s   1
## 12609                                i’m   1
## 12610                               logs   1
## 12611                            missing   1
## 12612                              music   1
## 12613                                ntc   1
## 12614                                ons   1
## 12615                                pos   1
## 12616                              rapid   1
## 12617                               read   1
## 12618                       recuperación   1
## 12619                           removing   1
## 12620                             review   1
## 12621                         scheduling   1
## 12622                             seated   1
## 12623                          sentiment   1
## 12624                           terrible   1
## 12625                       triathlete’s   1
## 12626                        unnecessary   1
## 12627                              video   1
## 12628                          worthless   1
## 12629                                 не   1
## 12630                           проблемы   1
## 12631                               中国   1
## 12632                                app   1
## 12633                              gracy   1
## 12634                           suburban   1
## 12635                              vista   1
## 12636                                zen   1
## 12637                              4.193   1
## 12638                                  þ   1
## 12639                              enjoy   1
## 12640                          astronaut   1
## 12641                              don’t   1
## 12642                               scam   1
## 12643                         connection   1
## 12644                                 20   1
## 12645                                app   1
## 12646                             boring   1
## 12647                          bothering   1
## 12648                            colored   1
## 12649                            doesn’t   1
## 12650                         downgraded   1
## 12651                          excellent   1
## 12652                               foot   1
## 12653                      functionality   1
## 12654                           hateeeee   1
## 12655                             issues   1
## 12656                               it’s   1
## 12657                              laggy   1
## 12658                                meh   1
## 12659                              messy   1
## 12660                              music   1
## 12661                            running   1
## 12662                            spotify   1
## 12663                           terrible   1
## 12664                             toggle   1
## 12665                           trainers   1
## 12666                             unable   1
## 12667                             videos   1
## 12668                           workouts   1
## 12669                              posts   1
## 12670                            updated   1
## 12671                             adidas   1
## 12672                               july   1
## 12673                               june   1
## 12674                          september   1
## 12675                                 sr   1
## 12676                               1025   1
## 12677                               1140   1
## 12678                               1501   1
## 12679                               1676   1
## 12680                               1758   1
## 12681                               1810   1
## 12682                               1901   1
## 12683                               2021   1
## 12684                               2093   1
## 12685                                331   1
## 12686                              4.102   1
## 12687                               4.66   1
## 12688                                659   1
## 12689                                838   1
## 12690                                880   1
## 12691                                913   1
## 12692                                974   1
## 12693                                983   1
## 12694                            alright   1
## 12695                             bright   1
## 12696                              brisk   1
## 12697                             chunky   1
## 12698                         collection   1
## 12699                              color   1
## 12700                          colorways   1
## 12701                             crotch   1
## 12702                           features   1
## 12703                                fir   1
## 12704                               flow   1
## 12705                               goal   1
## 12706                               grab   1
## 12707                               heal   1
## 12708                        informative   1
## 12709                              kicks   1
## 12710                               kits   1
## 12711                               love   1
## 12712                               mids   1
## 12713                               nice   1
## 12714                               nike   1
## 12715                             option   1
## 12716                         originally   1
## 12717                              panda   1
## 12718                              pants   1
## 12719                             pickup   1
## 12720                     representative   1
## 12721                            retired   1
## 12722                              score   1
## 12723                               shad   1
## 12724                               shoe   1
## 12725                           sneakers   1
## 12726                            stripes   1
## 12727                           surprise   1
## 12728                              touch   1
## 12729                                 ui   1
## 12730                              video   1
## 12731                            weekend   1
## 12732                                382   1
## 12733                           breaking   1
## 12734                                349   1
## 12735                                app   1
## 12736                             colour   1
## 12737                               days   1
## 12738                              white   1
## 12739                          materials   1
## 12740                              shoes   1
## 12741                               miss   1
## 12742                            depaula   1
## 12743                            nichols   1
## 12744                             adidas   1
## 12745                               it’s   1
## 12746                             lesson   1
## 12747                                run   1
## 12748                               runs   1
## 12749                               1282   1
## 12750                                144   1
## 12751                                 17   1
## 12752                                181   1
## 12753                                188   1
## 12754                                197   1
## 12755                               2076   1
## 12756                               2083   1
## 12757                               2312   1
## 12758                               2434   1
## 12759                                246   1
## 12760                                264   1
## 12761                                274   1
## 12762                                 29   1
## 12763                                295   1
## 12764                                298   1
## 12765                                299   1
## 12766                                330   1
## 12767                                341   1
## 12768                                344   1
## 12769                                452   1
## 12770                                657   1
## 12771                                697   1
## 12772                                 74   1
## 12773                                 84   1
## 12774                                 99   1
## 12775                            account   1
## 12776                                 ad   1
## 12777                             adidas   1
## 12778                              ain’t   1
## 12779                          announced   1
## 12780                               apps   1
## 12781                               asmr   1
## 12782                           assigned   1
## 12783                           athletes   1
## 12784                          backwards   1
## 12785                          baconator   1
## 12786                            baltoro   1
## 12787                               blue   1
## 12788                             bowery   1
## 12789                             brands   1
## 12790                              built   1
## 12791                              cedes   1
## 12792                             church   1
## 12793                           clothing   1
## 12794                            coaches   1
## 12795                           comeback   1
## 12796                         commercial   1
## 12797                          composite   1
## 12798                             cooked   1
## 12799                              coord   1
## 12800                             cortez   1
## 12801                               crew   1
## 12802                            culture   1
## 12803                           customer   1
## 12804                               cuts   1
## 12805                             deeply   1
## 12806                          designers   1
## 12807                             didn’t   1
## 12808                            digital   1
## 12809                           directly   1
## 12810                              doesn   1
## 12811                            doesn’t   1
## 12812                        downshifter   1
## 12813                              dress   1
## 12814                             drifit   1
## 12815                              dunks   1
## 12816                               earl   1
## 12817                          exercises   1
## 12818                            factory   1
## 12819                            falling   1
## 12820                                 fc   1
## 12821                            finally   1
## 12822                                fit   1
## 12823                              fixes   1
## 12824                               foam   1
## 12825                         footlocker   1
## 12826                            forever   1
## 12827                               fy23   1
## 12828                             global   1
## 12829                               gore   1
## 12830                                guy   1
## 12831                              hates   1
## 12832                             hoodie   1
## 12833                        hyperflight   1
## 12834                          including   1
## 12835                          inventory   1
## 12836                                isn   1
## 12837                              isn’t   1
## 12838                               i’ve   1
## 12839                             jordan   1
## 12840                            jordans   1
## 12841                                 kd   1
## 12842                               kolu   1
## 12843                               lays   1
## 12844                             legend   1
## 12845                              loves   1
## 12846                             loving   1
## 12847                              lunar   1
## 12848                                 lw   1
## 12849                             master   1
## 12850                             metxon   1
## 12851                               moon   1
## 12852                           nebraska   1
## 12853                               nice   1
## 12854                          nikestore   1
## 12855                             offers   1
## 12856                            olympic   1
## 12857                               paid   1
## 12858                           partners   1
## 12859                             person   1
## 12860                            pledged   1
## 12861                              posts   1
## 12862                                pro   1
## 12863                           products   1
## 12864                          purchases   1
## 12865                              quest   1
## 12866                             racers   1
## 12867                              react   1
## 12868                           recycles   1
## 12869                             reddit   1
## 12870                         redevelops   1
## 12871                            refines   1
## 12872                            replied   1
## 12873                            revenue   1
## 12874                         reversible   1
## 12875                            runners   1
## 12876                           savaleos   1
## 12877                                 sb   1
## 12878                             screen   1
## 12879                               sell   1
## 12880                               sets   1
## 12881                                sfb   1
## 12882                              shirt   1
## 12883                           shopping   1
## 12884                            shouldn   1
## 12885                              shuts   1
## 12886                              signs   1
## 12887                              skims   1
## 12888                             slides   1
## 12889                            started   1
## 12890                             stores   1
## 12891                              storm   1
## 12892                           stranger   1
## 12893                          struggles   1
## 12894                              style   1
## 12895                              sucks   1
## 12896                              super   1
## 12897                          surprised   1
## 12898                               team   1
## 12899                             teases   1
## 12900                            totally   1
## 12901                              trail   1
## 12902                            trainer   1
## 12903                           trainers   1
## 12904                     underestimated   1
## 12905                            unveils   1
## 12906                             update   1
## 12907                             upside   1
## 12908                               warm   1
## 12909                               wear   1
## 12910                            website   1
## 12911                          wholesale   1
## 12912                           whomever   1
## 12913                            women's   1
## 12914                              words   1
## 12915                              world   1
## 12916                            written   1
## 12917                               yoga   1
## 12918                             you’re   1
## 12919                               zoom   1
## 12920                             adidas   1
## 12921                                dei   1
## 12922                             iconic   1
## 12923                              sales   1
## 12924                             listed   1
## 12925                              skirt   1
## 12926                                acg   1
## 12927                         collection   1
## 12928                               2321   1
## 12929                                667   1
## 12930                               damn   1
## 12931                                fit   1
## 12932                           jordan's   1
## 12933                            quality   1
## 12934                              bring   1
## 12935                            running   1
## 12936                           training   1
## 12937                            program   1
## 12938                               anta   1
## 12939                              gamma   1
## 12940                            inicial   1
## 12941                            mundial   1
## 12942                                 r1   1
## 12943                                v2s   1
## 12944                                xr1   1
## 12945                               2020   1
## 12946                                720   1
## 12947                             aren’t   1
## 12948                               2381   1
## 12949                               mine   1
## 12950                               cool   1
## 12951                               page   1
## 12952                             promos   1
## 12953                         conditions   1
## 12954                                pop   1
## 12955                                395   1
## 12956                              found   1
## 12957                                gpx   1
## 12958                               nike   1
## 12959                               nope   1
## 12960                              level   1
## 12961                               nike   1
## 12962                              times   1
## 12963                              white   1
## 12964                           workouts   1
## 12965                              recon   1
## 12966                              llena   1
## 12967                             shotty   1
## 12968                               grab   1
## 12969                            reasons   1
## 12970                              nosto   1
## 12971                         searchpage   1
## 12972                            brother   1
## 12973                             review   1
## 12974                            doesn’t   1
## 12975                            section   1
## 12976                                953   1
## 12977                         difference   1
## 12978                           stronger   1
## 12979                        disappeared   1
## 12980                               link   1
## 12981                         alternated   1
## 12982                          followers   1
## 12983                               i’ve   1
## 12984                                i’d   1
## 12985                                bad   1
## 12986                               2017   1
## 12987                                226   1
## 12988                                  3   1
## 12989                                  4   1
## 12990                                  5   1
## 12991                               2021   1
## 12992                                 im   1
## 12993                                lol   1
## 12994                                218   1
## 12995                                247   1
## 12996                                app   1
## 12997                           sessions   1
## 12998                               post   1
## 12999                                 12   1
## 13000                                220   1
## 13001                        application   1
## 13002                               apps   1
## 13003                            doesn’t   1
## 13004                            dropped   1
## 13005                              lacks   1
## 13006                             offers   1
## 13007                            perfect   1
## 13008                                por   1
## 13009                            program   1
## 13010                             simply   1
## 13011                               team   1
## 13012                              timed   1
## 13013                           wellness   1
## 13014                            workout   1
## 13015                                 em   1
## 13016                               2112   1
## 13017                              doesn   1
## 13018                               oreo   1
## 13019                              oreos   1
## 13020                              upper   1
## 13021                            rutinas   1
## 13022                               2174   1
## 13023                            reviews   1
## 13024                              times   1
## 13025                              socks   1
## 13026                             advice   1
## 13027                               link   1
## 13028                               tips   1
## 13029                               1360   1
## 13030                               1419   1
## 13031                              4.109   1
## 13032                              weren   1
## 13033                            pigeons   1
## 13034                             uppers   1
## 13035                            esquece   1
## 13036                                ser   1
## 13037                              tenho   1
## 13038                               vale   1
## 13039                                pas   1
## 13040                             collab   1
## 13041                              don’t   1
## 13042                                  5   1
## 13043                                  1   1
## 13044                           comments   1
## 13045                               lows   1
## 13046                               fuck   1
## 13047                              fakes   1
## 13048                              guess   1
## 13049                               bugs   1
## 13050                               jogs   1
## 13051                          pendleton   1
## 13052                                run   1
## 13053                                886   1
## 13054                            decides   1
## 13055                            logging   1
## 13056                                 28   1
## 13057                                  5   1
## 13058                               2243   1
## 13059                                muy   1
## 13060                            quality   1
## 13061                            there’s   1
## 13062                                 40   1
## 13063                      modifications   1
## 13064                            amazing   1
## 13065                      comprehensive   1
## 13066                         continuity   1
## 13067                           creative   1
## 13068                               lots   1
## 13069                      opportunities   1
## 13070                            running   1
## 13071                              users   1
## 13072                            variety   1
## 13073                                job   1
## 13074                              color   1
## 13075                             design   1
## 13076                             images   1
## 13077                            release   1
## 13078                          announced   1
## 13079                             closes   1
## 13080                          partially   1
## 13081                                  1   1
## 13082                                10s   1
## 13083                               1916   1
## 13084                               1994   1
## 13085                               2001   1
## 13086                                 23   1
## 13087                                521   1
## 13088                             colors   1
## 13089                           colorway   1
## 13090                                cws   1
## 13091                              fixed   1
## 13092                          huaraches   1
## 13093                             jordan   1
## 13094                            jordans   1
## 13095                               lows   1
## 13096                               nike   1
## 13097                               nmds   1
## 13098                               pair   1
## 13099                              pairs   1
## 13100                              prime   1
## 13101                             sambas   1
## 13102                                top   1
## 13103                               user   1
## 13104                              white   1
## 13105                                 80   1
## 13106                             adidas   1
## 13107                               hope   1
## 13108                                 jp   1
## 13109                               1726   1
## 13110                              hyped   1
## 13111                              rises   1
## 13112                               days   1
## 13113                           chicagos   1
## 13114                               pink   1
## 13115                            reviews   1
## 13116                          rousteing   1
## 13117                            gerekir   1
## 13118                           athletes   1
## 13119                              media   1
## 13120                             refuge   1
## 13121                               nike   1
## 13122                            scottie   1
## 13123                            special   1
## 13124                                usa   1
## 13125                               2129   1
## 13126                           chopping   1
## 13127                              tiger   1
## 13128                               2060   1
## 13129                                  4   1
## 13130                           catalogs   1
## 13131                              found   1
## 13132                          inventory   1
## 13133                            october   1
## 13134                            profile   1
## 13135                            reviews   1
## 13136                              store   1
## 13137                                day   1
## 13138                               1711   1
## 13139                               nike   1
## 13140                            started   1
## 13141                                 68   1
## 13142                             sábado   1
## 13143                             income   1
## 13144                               loss   1
## 13145                               1121   1
## 13146                                 35   1
## 13147                                944   1
## 13148                               abou   1
## 13149                              dunks   1
## 13150                               it’s   1
## 13151                                muy   1
## 13152                               plan   1
## 13153                         commission   1
## 13154                               shoe   1
## 13155                               2028   1
## 13156                                131   1
## 13157                                155   1
## 13158                                485   1
## 13159                            anymore   1
## 13160                           customer   1
## 13161                            doesn’t   1
## 13162                               hope   1
## 13163                               it’s   1
## 13164                              super   1
## 13165                                102   1
## 13166                                  4   1
## 13167                                454   1
## 13168                        disappeared   1
## 13169                              doesn   1
## 13170                               time   1
## 13171                           colorway   1
## 13172                               line   1
## 13173                                red   1
## 13174                               july   1
## 13175                            october   1
## 13176                               2109   1
## 13177                                 4s   1
## 13178                              vibes   1
## 13179                               2095   1
## 13180                               2111   1
## 13181                               imma   1
## 13182                                sat   1
## 13183                                142   1
## 13184                               2035   1
## 13185                         challenges   1
## 13186                                10s   1
## 13187                                16s   1
## 13188                                acg   1
## 13189                            flyknit   1
## 13190                           founders   1
## 13191                              merch   1
## 13192                          ownership   1
## 13193                               page   1
## 13194                               pair   1
## 13195                                red   1
## 13196                          runtastic   1
## 13197                             scrubs   1
## 13198                               site   1
## 13199                            stories   1
## 13200                                toe   1
## 13201                        traditional   1
## 13202                             triple   1
## 13203                            version   1
## 13204                              qball   1
## 13205                               1395   1
## 13206                                150   1
## 13207                               bret   1
## 13208                           selected   1
## 13209                              4.323   1
## 13210                             adidas   1
## 13211                             owners   1
## 13212                            special   1
## 13213                                7.0   1
## 13214                           anúncios   1
## 13215                             update   1
## 13216                             update   1
## 13217                              tails   1
## 13218                           başlatma   1
## 13219                           başlatma   1
## 13220                       notification   1
## 13221                               ring   1
## 13222                                ceo   1
## 13223                             boring   1
## 13224                             design   1
## 13225                         activities   1
## 13226                               hike   1
## 13227                           training   1
## 13228                            version   1
## 13229                           workouts   1
## 13230                                btw   1
## 13231                       combinations   1
## 13232                               1483   1
## 13233                               1760   1
## 13234                               nice   1
## 13235                          wholesale   1
## 13236                                366   1
## 13237                              steal   1
## 13238                                aka   1
## 13239                            revenue   1
## 13240                             sheesh   1
## 13241                                206   1
## 13242                                762   1
## 13243                            surface   1
## 13244                            missing   1
## 13245                             office   1
## 13246                              grows   1
## 13247                             design   1
## 13248                               4.86   1
## 13249                           specific   1
## 13250                           thrilled   1
## 13251                               kobe   1
## 13252                             bomber   1
## 13253                             french   1
## 13254                                mid   1
## 13255                           pullover   1
## 13256                             people   1
## 13257                           choosing   1
## 13258                             lonely   1
## 13259                               1120   1
## 13260                              4.338   1
## 13261                              bring   1
## 13262                            deleted   1
## 13263                           regained   1
## 13264                              happy   1
## 13265                accessorieseveryone   1
## 13266                               dunk   1
## 13267                              dunks   1
## 13268                                imo   1
## 13269                          breakdown   1
## 13270                              catch   1
## 13271                        complimenti   1
## 13272                           distance   1
## 13273                       improvements   1
## 13274                               it’s   1
## 13275                             keeper   1
## 13276                               love   1
## 13277                            mileage   1
## 13278                      notifications   1
## 13279                          reminders   1
## 13280                             target   1
## 13281                           training   1
## 13282                            visible   1
## 13283                           workouts   1
## 13284                               test   1
## 13285                            suffers   1
## 13286                                fan   1
## 13287                            history   1
## 13288                               worn   1
## 13289                        comfortable   1
## 13290                                132   1
## 13291                                  3   1
## 13292                                 op   1
## 13293                              sends   1
## 13294                                190   1
## 13295                                272   1
## 13296                          attention   1
## 13297                             double   1
## 13298                           features   1
## 13299                            service   1
## 13300                         subscriber   1
## 13301                               2166   1
## 13302                               free   1
## 13303                             hahaha   1
## 13304                           programs   1
## 13305                                  û   1
## 13306                            setback   1
## 13307                             courts   1
## 13308                                125   1
## 13309                               1356   1
## 13310                               1405   1
## 13311                               1451   1
## 13312                               1499   1
## 13313                               1553   1
## 13314                                171   1
## 13315                                172   1
## 13316                               1834   1
## 13317                                219   1
## 13318                               2238   1
## 13319                               2342   1
## 13320                                239   1
## 13321                                 38   1
## 13322                              4.134   1
## 13323                              4.163   1
## 13324                              4.220   1
## 13325                              4.259   1
## 13326                              4.265   1
## 13327                                427   1
## 13328                                680   1
## 13329                                  7   1
## 13330                                754   1
## 13331                                780   1
## 13332                                857   1
## 13333                                873   1
## 13334                                957   1
## 13335                              black   1
## 13336                             brudah   1
## 13337                              clean   1
## 13338                             coming   1
## 13339                               didn   1
## 13340                                evo   1
## 13341                               frfr   1
## 13342                               glad   1
## 13343                              gonna   1
## 13344                        immediately   1
## 13345                          including   1
## 13346                              knock   1
## 13347                               love   1
## 13348                               nice   1
## 13349                                ntc   1
## 13350                             online   1
## 13351                           realized   1
## 13352                              reign   1
## 13353                           returned   1
## 13354                              shape   1
## 13355                            soooooo   1
## 13356                            stopped   1
## 13357                              super   1
## 13358                            there’s   1
## 13359                           tomorrow   1
## 13360                               1018   1
## 13361                              4.151   1
## 13362                              4.238   1
## 13363                              4.389   1
## 13364                                768   1
## 13365                    accessorisekids   1
## 13366                             hahaha   1
## 13367                             jordan   1
## 13368                               left   1
## 13369                                nds   1
## 13370                                sat   1
## 13371                           canceled   1
## 13372                               2050   1
## 13373                                 3s   1
## 13374                              dunks   1
## 13375                                412   1
## 13376                                413   1
## 13377                                417   1
## 13378                                 fr   1
## 13379                               2025   1
## 13380                        accelerates   1
## 13381                           consumer   1
## 13382                             demand   1
## 13383                         devastates   1
## 13384                          headwinds   1
## 13385                                hit   1
## 13386                                i’m   1
## 13387                                 kg   1
## 13388                          pressures   1
## 13389                              wound   1
## 13390                               1396   1
## 13391                              kicks   1
## 13392                                anf   1
## 13393                                 id   1
## 13394                                isn   1
## 13395                                set   1
## 13396                                sit   1
## 13397                               sits   1
## 13398                              store   1
## 13399                             bought   1
## 13400                                 10   1
## 13401                            disease   1
## 13402                               fake   1
## 13403                                acá   1
## 13404                          ayudarnos   1
## 13405                           comenzar   1
## 13406                          continuar   1
## 13407                             correr   1
## 13408                          descargar   1
## 13409                              dolor   1
## 13410                                las   1
## 13411                           mantener   1
## 13412                            mejorar   1
## 13413                                 mi   1
## 13414                         monitorear   1
## 13415                                 mí   1
## 13416                                não   1
## 13417                              poder   1
## 13418                               quem   1
## 13419                          registrar   1
## 13420                            running   1
## 13421                             adidas   1
## 13422                             adidas   1
## 13423                                 bu   1
## 13424                             olması   1
## 13425                                una   1
## 13426                              house   1
## 13427                               wear   1
## 13428                           olympics   1
## 13429                                  4   1
## 13430                           arriving   1
## 13431                               it’s   1
## 13432                                msg   1
## 13433                                 en   1
## 13434                       happyrunning   1
## 13435                              estou   1
## 13436                                set   1
## 13437                           business   1
## 13438                          including   1
## 13439                            writing   1
## 13440                             adidas   1
## 13441                           expected   1
## 13442                            sellers   1
## 13443                                 la   1
## 13444                               1966   1
## 13445                               2092   1
## 13446                               text   1
## 13447                       verification   1
## 13448                                378   1
## 13449                        combination   1
## 13450                            feature   1
## 13451                           function   1
## 13452                        reconfigure   1
## 13453                                 12   1
## 13454                                  2   1
## 13455                               2002   1
## 13456                                  4   1
## 13457                             400kms   1
## 13458                             couple   1
## 13459                           interval   1
## 13460                             routes   1
## 13461                                rrp   1
## 13462                                run   1
## 13463                            running   1
## 13464                              senna   1
## 13465                              tense   1
## 13466                              4.299   1
## 13467                            leather   1
## 13468                         accurately   1
## 13469                              visit   1
## 13470                                503   1
## 13471                             malaga   1
## 13472                             swoosh   1
## 13473                            running   1
## 13474                            doesn’t   1
## 13475                              flash   1
## 13476                           function   1
## 13477                             glitch   1
## 13478                                run   1
## 13479                              super   1
## 13480                      automatically   1
## 13481                               time   1
## 13482                                run   1
## 13483                        uncommanded   1
## 13484                         constantly   1
## 13485                                run   1
## 13486                               bike   1
## 13487                               3.99   1
## 13488                                400   1
## 13489                           athletes   1
## 13490                          attention   1
## 13491                                cut   1
## 13492                              dates   1
## 13493                               edit   1
## 13494                             homage   1
## 13495                           millions   1
## 13496                            premium   1
## 13497                           shipping   1
## 13498                               tier   1
## 13499                            version   1
## 13500                                100   1
## 13501                                 20   1
## 13502                                 80   1
## 13503                          attention   1
## 13504                               it’s   1
## 13505                              money   1
## 13506                             retail   1
## 13507                            methods   1
## 13508                            balance   1
## 13509                              ready   1
## 13510                                  9   1
## 13511                        requirement   1
## 13512                               1755   1
## 13513                               1756   1
## 13514                              beige   1
## 13515                              plate   1
## 13516                                602   1
## 13517                                621   1
## 13518                               1717   1
## 13519                               1718   1
## 13520                               info   1
## 13521                                app   1
## 13522                             rondon   1
## 13523                            stained   1
## 13524                             ripped   1
## 13525                                358   1
## 13526                                 41   1
## 13527                                 37   1
## 13528                                  5   1
## 13529                            easyons   1
## 13530                           premiums   1
## 13531                              trail   1
## 13532                         occasional   1
## 13533                               tons   1
## 13534                              brand   1
## 13535                               line   1
## 13536                                 eu   1
## 13537                                des   1
## 13538                            release   1
## 13539                                  1   1
## 13540                                  2   1
## 13541                                  4   1
## 13542                           basement   1
## 13543                               foam   1
## 13544                              foams   1
## 13545                                 gt   1
## 13546                          signature   1
## 13547                                fue   1
## 13548                                342   1
## 13549                                439   1
## 13550                                buy   1
## 13551                             buying   1
## 13552                             caught   1
## 13553                          dismissed   1
## 13554                                don   1
## 13555                               dont   1
## 13556                          literally   1
## 13557                                lol   1
## 13558                            loosing   1
## 13559                               love   1
## 13560                           maintain   1
## 13561                         overhyping   1
## 13562                                owe   1
## 13563                               post   1
## 13564                             prefer   1
## 13565                          recognize   1
## 13566                           shifting   1
## 13567                           shouldnt   1
## 13568                            wishing   1
## 13569                               wont   1
## 13570                             wouldn   1
## 13571                              https   1
## 13572                               real   1
## 13573                               1185   1
## 13574                         absolutely   1
## 13575                              color   1
## 13576                        description   1
## 13577                           employee   1
## 13578                            genuine   1
## 13579                               hike   1
## 13580                        opportunity   1
## 13581                            quality   1
## 13582                          rendition   1
## 13583                                run   1
## 13584                               shoe   1
## 13585                             simple   1
## 13586                            sneaker   1
## 13587                                top   1
## 13588                               true   1
## 13589                              built   1
## 13590                            covered   1
## 13591                            crafted   1
## 13592                         functional   1
## 13593                             mapped   1
## 13594                              match   1
## 13595                                2nd   1
## 13596                               it’s   1
## 13597                                  2   1
## 13598                              based   1
## 13599                         basketball   1
## 13600                          brilliant   1
## 13601                         innovation   1
## 13602                               i’ll   1
## 13603                           leggings   1
## 13604                           oriented   1
## 13605                             people   1
## 13606                            reduced   1
## 13607                              shoes   1
## 13608                           wellness   1
## 13609                              4.357   1
## 13610                                app   1
## 13611                         basketball   1
## 13612                                i’m   1
## 13613                                 12   1
## 13614                                set   1
## 13615                             screen   1
## 13616                             iphone   1
## 13617                          controlar   1
## 13618                                 de   1
## 13619                               walk   1
## 13620                              ellis   1
## 13621                             errors   1
## 13622                               1622   1
## 13623                               1672   1
## 13624                               2288   1
## 13625                               2324   1
## 13626                              4.222   1
## 13627                                lol   1
## 13628                            selling   1
## 13629                           vendetta   1
## 13630                               2252   1
## 13631                             choice   1
## 13632                           colorway   1
## 13633                          dashboard   1
## 13634                               data   1
## 13635                      determination   1
## 13636                             health   1
## 13637                               lord   1
## 13638                              music   1
## 13639                            opinion   1
## 13640                            planner   1
## 13641                            records   1
## 13642                              touch   1
## 13643                           training   1
## 13644                              stays   1
## 13645                              lacks   1
## 13646                              based   1
## 13647                           personal   1
## 13648                               plan   1
## 13649                                841   1
## 13650                              found   1
## 13651                             pulled   1
## 13652                               stay   1
## 13653                            they’re   1
## 13654                             104lbs   1
## 13655                              store   1
## 13656                                app   1
## 13657                             broken   1
## 13658                               free   1
## 13659                               huge   1
## 13660                             plenty   1
## 13661                            walking   1
## 13662                         phenomenal   1
## 13663                             knight   1
## 13664                             emails   1
## 13665                               nike   1
## 13666                            arizona   1
## 13667                             fleece   1
## 13668                                140   1
## 13669                                180   1
## 13670                               2293   1
## 13671                             adjust   1
## 13672                              can’t   1
## 13673                            crushes   1
## 13674                            deleted   1
## 13675                           deleting   1
## 13676                            doesn’t   1
## 13677                              isn’t   1
## 13678                               i’ve   1
## 13679                           language   1
## 13680                       reinstalling   1
## 13681                            resting   1
## 13682                             screen   1
## 13683                           settings   1
## 13684                             upside   1
## 13685                             what’s   1
## 13686                                361   1
## 13687                                422   1
## 13688                              blues   1
## 13689                                i’m   1
## 13690                            support   1
## 13691                           activity   1
## 13692                           distance   1
## 13693                             health   1
## 13694                          therapist   1
## 13695                          exhausted   1
## 13696                               1624   1
## 13697                                  4   1
## 13698                              shoes   1
## 13699                              short   1
## 13700                                578   1
## 13701                            finding   1
## 13702                                168   1
## 13703                                439   1
## 13704                             adidas   1
## 13705                         basketball   1
## 13706                           nowadays   1
## 13707                               2198   1
## 13708                                996   1
## 13709                        reliability   1
## 13710                            popular   1
## 13711                               2328   1
## 13712                              don’t   1
## 13713                                 ua   1
## 13714                                 iu   1
## 13715                               nike   1
## 13716                           patta_nl   1
## 13717                               hiit   1
## 13718                            program   1
## 13719                           strength   1
## 13720                               yoga   1
## 13721                              green   1
## 13722                                 hp   1
## 13723                               pong   1
## 13724                                851   1
## 13725                                863   1
## 13726                               foam   1
## 13727                             joints   1
## 13728                                lol   1
## 13729                               toes   1
## 13730                              4.143   1
## 13731                                  5   1
## 13732                                air   1
## 13733                                hat   1
## 13734                                mix   1
## 13735                               2027   1
## 13736                                fox   1
## 13737                                air   1
## 13738                              black   1
## 13739                              style   1
## 13740                                sad   1
## 13741                        adjustments   1
## 13742                              based   1
## 13743                              costs   1
## 13744                           disabled   1
## 13745                        disappeared   1
## 13746                           function   1
## 13747                               half   1
## 13748                               hits   1
## 13749                              ideas   1
## 13750                               join   1
## 13751                              nears   1
## 13752                      notifications   1
## 13753                         recommends   1
## 13754                               runs   1
## 13755                          suggested   1
## 13756                              cites   1
## 13757                           december   1
## 13758                              ousts   1
## 13759                            returns   1
## 13760                              steps   1
## 13761                             return   1
## 13762                               calf   1
## 13763                           schedule   1
## 13764                            journal   1
## 13765                             adidas   1
## 13766                             geared   1
## 13767                                map   1
## 13768                           fascitis   1
## 13769                               digs   1
## 13770                              makes   1
## 13771                               sole   1
## 13772                             adidas   1
## 13773                         compatible   1
## 13774                               blue   1
## 13775                         basketball   1
## 13776                               icon   1
## 13777                            quietly   1
## 13778                            wearing   1
## 13779                               logo   1
## 13780                               dirt   1
## 13781                                  5   1
## 13782                                 53   1
## 13783                           football   1
## 13784                              music   1
## 13785                               safe   1
## 13786                             soccer   1
## 13787                              music   1
## 13788                             sports   1
## 13789                                fix   1
## 13790                             tennis   1
## 13791                                 im   1
## 13792                                lol   1
## 13793                            cheaper   1
## 13794                          effusions   1
## 13795                               fake   1
## 13796                          frequency   1
## 13797                                buy   1
## 13798                                fix   1
## 13799                            suggest   1
## 13800                                 23   1
## 13801                                735   1
## 13802                                boi   1
## 13803                           bullshit   1
## 13804                               fake   1
## 13805                                  5   1
## 13806                                dry   1
## 13807                              start   1
## 13808                               wave   1
## 13809                                  9   1
## 13810                            cumplir   1
## 13811                             pieces   1
## 13812                            medical   1
## 13813                              shoes   1
## 13814                           finishes   1
## 13815                               pros   1
## 13816                          underfoot   1
## 13817                                esp   1
## 13818                                app   1
## 13819                               card   1
## 13820                               imho   1
## 13821                                app   1
## 13822                              apple   1
## 13823                                 hr   1
## 13824                            station   1
## 13825                          organized   1
## 13826                        uninstalled   1
## 13827                            hoodies   1
## 13828                               mesh   1
## 13829                                por   1
## 13830                              fecha   1
## 13831                         tournament   1
## 13832                                 de   1
## 13833                                 de   1
## 13834                               data   1
## 13835                             design   1
## 13836                         performing   1
## 13837                             review   1
## 13838                           trainers   1
## 13839                               2088   1
## 13840                         functional   1
## 13841                               adds   1
## 13842                               1348   1
## 13843                             bubble   1
## 13844                             fields   1
## 13845                             adidas   1
## 13846                             belief   1
## 13847                               cool   1
## 13848                                ive   1
## 13849                              lines   1
## 13850                               paid   1
## 13851                              shoes   1
## 13852                                isn   1
## 13853                           anúncios   1
## 13854                              cento   1
## 13855                              crear   1
## 13856                            defecto   1
## 13857                                dos   1
## 13858                               esta   1
## 13859                                 mi   1
## 13860                               nada   1
## 13861                             adidas   1
## 13862                             oregon   1
## 13863                               nike   1
## 13864                              iii's   1
## 13865                               tips   1
## 13866                                 10   1
## 13867                                161   1
## 13868                                 97   1
## 13869                           absolute   1
## 13870                            anytime   1
## 13871                       appreciative   1
## 13872                         beneficios   1
## 13873                           betinaaa   1
## 13874                              bravo   1
## 13875                         convenient   1
## 13876                               core   1
## 13877                              crash   1
## 13878                           download   1
## 13879                                 el   1
## 13880                      encouragement   1
## 13881                             energy   1
## 13882                           enjoying   1
## 13883                          exceeding   1
## 13884                        exceptional   1
## 13885                         experience   1
## 13886                          extremely   1
## 13887                           faithful   1
## 13888                               food   1
## 13889                             future   1
## 13890                              get’s   1
## 13891                             ginger   1
## 13892                             greate   1
## 13893                                gym   1
## 13894                            happily   1
## 13895                             health   1
## 13896                             honest   1
## 13897                           honestly   1
## 13898                               hope   1
## 13899                               huge   1
## 13900                         incredibly   1
## 13901                           involved   1
## 13902                                joe   1
## 13903                                 kg   1
## 13904                              kinda   1
## 13905                                les   1
## 13906                              loove   1
## 13907                               lots   1
## 13908                              loved   1
## 13909                             loving   1
## 13910                            morning   1
## 13911                              niche   1
## 13912                              noice   1
## 13913                       professional   1
## 13914                         resolution   1
## 13915                             review   1
## 13916                              solid   1
## 13917                           soothing   1
## 13918                             sports   1
## 13919                              super   1
## 13920                                top   1
## 13921                           training   1
## 13922                              upped   1
## 13923                             what’s   1
## 13924                             widget   1
## 13925                            workout   1
## 13926                           workouts   1
## 13927                                yay   1
## 13928                               yaya   1
## 13929                               yoga   1
## 13930                                 zk   1
## 13931                              dying   1
## 13932                               1157   1
## 13933                                402   1
## 13934                              event   1
## 13935                            history   1
## 13936                                lol   1
## 13937                             photos   1
## 13938                           randomly   1
## 13939                               sale   1
## 13940                             stroke   1
## 13941                               nice   1
## 13942                               shin   1
## 13943                            picture   1
## 13944                               hiit   1
## 13945                                i’m   1
## 13946                                181   1
## 13947                                100   1
## 13948                                 34   1
## 13949                                 39   1
## 13950                                 41   1
## 13951                                498   1
## 13952                                 71   1
## 13953                             record   1
## 13954                               2263   1
## 13955                                app   1
## 13956                              theft   1
## 13957                                  7   1
## 13958                           weighted   1
## 13959                          continuer   1
## 13960                           recevoir   1
## 13961                             inside   1
## 13962                            running   1
## 13963                           footwear   1
## 13964                          exercises   1
## 13965                               tool   1
## 13966                          polishing   1
## 13967                              style   1
## 13968                              gonna   1
## 13969                               1770   1
## 13970                             advise   1
## 13971                          identical   1
## 13972                                  4   1
## 13973                             fields   1
## 13974                               nice   1
## 13975                                god   1
## 13976                               lost   1
## 13977                        competition   1
## 13978                                dri   1
## 13979                              loads   1
## 13980                               post   1
## 13981                              buena   1
## 13982                                gps   1
## 13983                          motivates   1
## 13984                           workouts   1
## 13985                            feature   1
## 13986                               time   1
## 13987                               btig   1
## 13988                               2020   1
## 13989                                  4   1
## 13990                               born   1
## 13991                             indoor   1
## 13992                               nike   1
## 13993                            spezial   1
## 13994                             strava   1
## 13995                               love   1
## 13996                             simple   1
## 13997                             spikes   1
## 13998                            running   1
## 13999                           specific   1
## 14000                             ladies   1
## 14001                             routes   1
## 14002                         maximalist   1
## 14003                               1807   1
## 14004                               4.49   1
## 14005                                 93   1
## 14006                               apps   1
## 14007                            content   1
## 14008                            dropped   1
## 14009                                evo   1
## 14010                           features   1
## 14011                        heavyweight   1
## 14012                          materials   1
## 14013                         membership   1
## 14014                               plan   1
## 14015                            program   1
## 14016                            service   1
## 14017                         subscriber   1
## 14018                      subscriptions   1
## 14019                            version   1
## 14020                              women   1
## 14021                           routines   1
## 14022                               nike   1
## 14023                           mentally   1
## 14024                              medal   1
## 14025                           continue   1
## 14026                        marketwatch   1
## 14027                                ter   1
## 14028                         futuristic   1
## 14029                            anymore   1
## 14030                               2240   1
## 14031                           accurate   1
## 14032                         affordable   1
## 14033                            awesome   1
## 14034                               beat   1
## 14035                             benign   1
## 14036                              cheap   1
## 14037                              comfi   1
## 14038                              crazy   1
## 14039                               dang   1
## 14040                             decent   1
## 14041                               dope   1
## 14042                               fake   1
## 14043                              goodd   1
## 14044                                 im   1
## 14045                          resistant   1
## 14046                           shocking   1
## 14047                               shoe   1
## 14048                             snappy   1
## 14049                               snug   1
## 14050                               spot   1
## 14051                             stable   1
## 14052                           standard   1
## 14053                           straight   1
## 14054                               weak   1
## 14055                              whack   1
## 14056                             wildly   1
## 14057                               care   1
## 14058                         experience   1
## 14059                             format   1
## 14060                           purchase   1
## 14061                               runs   1
## 14062                         training’s   1
## 14063                                app   1
## 14064                          customize   1
## 14065                               left   1
## 14066                               1026   1
## 14067                               1127   1
## 14068                               1363   1
## 14069                                146   1
## 14070                                148   1
## 14071                               1505   1
## 14072                                240   1
## 14073                                369   1
## 14074                                373   1
## 14075                                383   1
## 14076                             adidas   1
## 14077                               cool   1
## 14078                               drop   1
## 14079                              drops   1
## 14080                              match   1
## 14081                             online   1
## 14082                             pretty   1
## 14083                            selling   1
## 14084                             sizing   1
## 14085                               sold   1
## 14086                         reasonable   1
## 14087                               1398   1
## 14088                                553   1
## 14089                             theyre   1
## 14090                              4.199   1
## 14091                               feel   1
## 14092                               2056   1
## 14093                              black   1
## 14094                            lifting   1
## 14095                               care   1
## 14096                            purpose   1
## 14097                                app   1
## 14098                                 x2   1
## 14099                           x2strung   1
## 14100                                 x3   1
## 14101                                322   1
## 14102                           multiple   1
## 14103                             pueden   1
## 14104                              trail   1
## 14105                                 de   1
## 14106                                air   1
## 14107                               shoe   1
## 14108                           sneakers   1
## 14109                                fit   1
## 14110                             months   1
## 14111                             routes   1
## 14112                               runs   1
## 14113                            started   1
## 14114                           versions   1
## 14115                            comfort   1
## 14116                            healthy   1
## 14117                               rely   1
## 14118                              build   1
## 14119                               easy   1
## 14120                             models   1
## 14121                            vintage   1
## 14122                                  2   1
## 14123                                 3s   1
## 14124                               evos   1
## 14125                             forced   1
## 14126                        lightweight   1
## 14127                            matches   1
## 14128                           nowadays   1
## 14129                            remains   1
## 14130                            runners   1
## 14131                           consumer   1
## 14132                                315   1
## 14133                                con   1
## 14134                             cuando   1
## 14135                                con   1
## 14136                              tengo   1
## 14137                              4.356   1
## 14138                           tactical   1
## 14139                           products   1
## 14140                               shoe   1
## 14141                                  1   1
## 14142                         aesthetics   1
## 14143                         b08cs48ryj   1
## 14144                             images   1
## 14145                          licensing   1
## 14146                               line   1
## 14147                          longevity   1
## 14148                               page   1
## 14149                               pics   1
## 14150                            surplus   1
## 14151                              teams   1
## 14152                            testing   1
## 14153                               wild   1
## 14154                          impecable   1
## 14155                               shoe   1
## 14156                                260   1
## 14157                               i’ve   1
## 14158                               sell   1
## 14159                              shown   1
## 14160                               tend   1
## 14161                        continuasse   1
## 14162                                 da   1
## 14163                                 se   1
## 14164                         developers   1
## 14165                        firefighter   1
## 14166                          runtastic   1
## 14167                               it’s   1
## 14168                         membership   1
## 14169                                pic   1
## 14170                           settings   1
## 14171                            trouble   1
## 14172                             raised   1
## 14173                             effect   1
## 14174                       phenomenally   1
## 14175                                121   1
## 14176                           approved   1
## 14177                           compared   1
## 14178                         disappears   1
## 14179                            feature   1
## 14180                             format   1
## 14181                               huge   1
## 14182                                i’m   1
## 14183                           movement   1
## 14184                           programs   1
## 14185                               quit   1
## 14186                         unreliable   1
## 14187                        específicos   1
## 14188                     d’entraînement   1
## 14189                                  2   1
## 14190                                215   1
## 14191                                  4   1
## 14192                                419   1
## 14193                                e.g   1
## 14194                               free   1
## 14195                               it’s   1
## 14196                                i’m   1
## 14197                               kg’s   1
## 14198                               love   1
## 14199                               meet   1
## 14200                               nike   1
## 14201                              offer   1
## 14202                              shout   1
## 14203                                103   1
## 14204                               easy   1
## 14205                                god   1
## 14206                                gps   1
## 14207                              graph   1
## 14208                               hate   1
## 14209                               lack   1
## 14210                             lastly   1
## 14211                             mapped   1
## 14212                              margo   1
## 14213                             photos   1
## 14214                              solid   1
## 14215                               stay   1
## 14216                              timer   1
## 14217                            tracker   1
## 14218                           tracking   1
## 14219                           training   1
## 14220                               user   1
## 14221                               hope   1
## 14222                         activities   1
## 14223                             harder   1
## 14224                              worse   1
## 14225                             series   1
## 14226                               700m   1
## 14227                                911   1
## 14228                                 10   1
## 14229                             adidas   1
## 14230                        competition   1
## 14231                                 ah   1
## 14232                             carbon   1
## 14233                               ipad   1
## 14234                              waste   1
## 14235                            diluted   1
## 14236                         identified   1
## 14237                           measured   1
## 14238                            tracked   1
## 14239                          wonderful   1
## 14240                                  7   1
## 14241                                766   1
## 14242                                i’d   1
## 14243                             called   1
## 14244                              wrong   1
## 14245                                495   1
## 14246                          fantastic   1
## 14247                            reviews   1
## 14248                        challenging   1
## 14249                            midsole   1
## 14250                          structure   1
## 14251                             access   1
## 14252                            insight   1
## 14253                           tracking   1
## 14254                             street   1
## 14255                                  1   1
## 14256                                351   1
## 14257                          lifestyle   1
## 14258                               1108   1
## 14259                                148   1
## 14260                                imo   1
## 14261                         participar   1
## 14262                                ver   1
## 14263                          recuperar   1
## 14264                                 de   1
## 14265                              extra   1
## 14266                               it’s   1
## 14267                               mate   1
## 14268                               plug   1
## 14269                              licks   1
## 14270                               tabs   1
## 14271                   hoodiehoodiekids   1
## 14272                               shoe   1
## 14273                           genetics   1
## 14274                                 mb   1
## 14275                              proof   1
## 14276                               love   1
## 14277                                305   1
## 14278                                394   1
## 14279                            women's   1
## 14280                          excelente   1
## 14281                             pepper   1
## 14282                             adidas   1
## 14283                           discount   1
## 14284                               2298   1
## 14285                             bleach   1
## 14286                            comfort   1
## 14287                           strength   1
## 14288                           designed   1
## 14289                                829   1
## 14290                                856   1
## 14291                             adidas   1
## 14292                                ain   1
## 14293                                amp   1
## 14294                           colorway   1
## 14295                             colour   1
## 14296                             looked   1
## 14297                               pair   1
## 14298                          shoelaces   1
## 14299                             sunset   1
## 14300                            voodoos   1
## 14301                         personally   1
## 14302                             giving   1
## 14303                          switching   1
## 14304                           sabotage   1
## 14305                                  3   1
## 14306                         boundaries   1
## 14307                             harder   1
## 14308                               1642   1
## 14309                            started   1
## 14310                               time   1
## 14311                             fy2026   1
## 14312                               loss   1
## 14313                           earnings   1
## 14314                             fy2026   1
## 14315                             offset   1
## 14316                            revenue   1
## 14317                               2021   1
## 14318                              china   1
## 14319                            helping   1
## 14320                           distance   1
## 14321                               team   1
## 14322                              qb4ll   1
## 14323                               1160   1
## 14324                               1161   1
## 14325                           involves   1
## 14326                             tennis   1
## 14327                               1235   1
## 14328                                703   1
## 14329                             adjust   1
## 14330                                app   1
## 14331                             aspect   1
## 14332                             defect   1
## 14333                              fakes   1
## 14334                               feel   1
## 14335                               hoop   1
## 14336                                imo   1
## 14337                            leather   1
## 14338                           leggings   1
## 14339                                lol   1
## 14340                               nike   1
## 14341                    personalization   1
## 14342                            product   1
## 14343                            reminds   1
## 14344                               shoe   1
## 14345                              socks   1
## 14346                            started   1
## 14347                             stinks   1
## 14348                           trainers   1
## 14349                              video   1
## 14350                               wise   1
## 14351                            absurda   1
## 14352                                due   1
## 14353                               time   1
## 14354                               2020   1
## 14355                            century   1
## 14356                             marked   1
## 14357                               loss   1
## 14358                            conhece   1
## 14359                               está   1
## 14360                              saber   1
## 14361                           terminar   1
## 14362                             apenas   1
## 14363                              steps   1
## 14364                                 4s   1
## 14365                               1904   1
## 14366                                597   1
## 14367                                723   1
## 14368                            copping   1
## 14369                               i’ve   1
## 14370                             lmaooo   1
## 14371                               2393   1
## 14372                               1968   1
## 14373                               4.35   1
## 14374                             what’s   1
## 14375                                ran   1
## 14376                               fait   1
## 14377                                 10   1
## 14378                                106   1
## 14379                             bounce   1
## 14380                               buck   1
## 14381                             drying   1
## 14382                               walk   1
## 14383                            workout   1
## 14384                               1208   1
## 14385                               2155   1
## 14386                             filter   1
## 14387                               it’s   1
## 14388                             losing   1
## 14389                           produced   1
## 14390                           realized   1
## 14391                               slow   1
## 14392                          reversing   1
## 14393                                app   1
## 14394                         constantly   1
## 14395                            account   1
## 14396                                 el   1
## 14397                              can’t   1
## 14398                              enter   1
## 14399                             vapour   1
## 14400                                392   1
## 14401                                5.0   1
## 14402                               date   1
## 14403                               shoe   1
## 14404                              spent   1
## 14405                            started   1
## 14406                               2412   1
## 14407                                top   1
## 14408                               1655   1
## 14409                               4.51   1
## 14410                              shoes   1
## 14411                               maxx   1
## 14412                                  1   1
## 14413                                 v2   1
## 14414                               1494   1
## 14415                              4.194   1
## 14416                           bullshit   1
## 14417                               sept   1
## 14418                              super   1
## 14419                               4.54   1
## 14420                                app   1
## 14421                               gear   1
## 14422                               days   1
## 14423                               nike   1
## 14424                             prices   1
## 14425                              watch   1
## 14426                            lateral   1
## 14427                           machines   1
## 14428                                 50   1
## 14429                            mubarak   1
## 14430                             1800km   1
## 14431                                  2   1
## 14432                                  3   1
## 14433                                 3k   1
## 14434                                5.7   1
## 14435                            closely   1
## 14436                            comfort   1
## 14437                          extremely   1
## 14438                         manchester   1
## 14439                                run   1
## 14440                               time   1
## 14441                         activities   1
## 14442                           workouts   1
## 14443                                  2   1
## 14444                             pauses   1
## 14445                            pausing   1
## 14446                             popped   1
## 14447                              stand   1
## 14448                                exp   1
## 14449                             review   1
## 14450                           beginner   1
## 14451                              songs   1
## 14452                           terminal   1
## 14453                           degraded   1
## 14454                              innov   1
## 14455                         exceptions   1
## 14456                               1557   1
## 14457                               2241   1
## 14458                              write   1
## 14459                               1789   1
## 14460                              strap   1
## 14461                             wasn’t   1
## 14462                            amazing   1
## 14463                              based   1
## 14464                              pants   1
## 14465                              check   1
## 14466                                 38   1
## 14467                            adiclub   1
## 14468                              goals   1
## 14469                            support   1
## 14470                               51.2   1
## 14471                           infinity   1
## 14472                                sfb   1
## 14473                               0.95   1
## 14474                           comments   1
## 14475                               it’s   1
## 14476                           navigate   1
## 14477                             update   1
## 14478                           positive   1
## 14479                               spec   1
## 14480                                lol   1
## 14481                               2186   1
## 14482                               2191   1
## 14483                               2213   1
## 14484                                230   1
## 14485                               2400   1
## 14486                                325   1
## 14487                             adidas   1
## 14488                        alternative   1
## 14489                            bofadem   1
## 14490                           colorway   1
## 14491                          complaint   1
## 14492                               dior   1
## 14493                             estate   1
## 14494                             finish   1
## 14495                                gym   1
## 14496                               heat   1
## 14497                           identity   1
## 14498                             incase   1
## 14499                             kicker   1
## 14500                             legacy   1
## 14501                             madrid   1
## 14502                                max   1
## 14503                                mil   1
## 14504                         motivation   1
## 14505                               nice   1
## 14506                               nike   1
## 14507                              pants   1
## 14508                      professionals   1
## 14509                              quick   1
## 14510                              route   1
## 14511                              sense   1
## 14512                            service   1
## 14513                               shit   1
## 14514                               shoe   1
## 14515                       sneakerheads   1
## 14516                              stuff   1
## 14517                                tho   1
## 14518                              treat   1
## 14519                           zunnigas   1
## 14520                               nike   1
## 14521                              yeezy   1
## 14522                               2199   1
## 14523                              folks   1
## 14524                               it’d   1
## 14525                               nike   1
## 14526                               camo   1
## 14527                               flap   1
## 14528                               2242   1
## 14529                                221   1
## 14530                               2251   1
## 14531                                228   1
## 14532                               2289   1
## 14533                                243   1
## 14534                                924   1
## 14535                                95s   1
## 14536                                963   1
## 14537                       motivational   1
## 14538                        potentially   1
## 14539                               1582   1
## 14540                              price   1
## 14541                              4.104   1
## 14542                               nike   1
## 14543                               cost   1
## 14544                                 v4   1
## 14545                                lol   1
## 14546                              perry   1
## 14547                           strongly   1
## 14548                              brand   1
## 14549                            adiclub   1
## 14550                      encouragement   1
## 14551                                  3   1
## 14552                             plenty   1
## 14553                                  8   1
## 14554                              calls   1
## 14555                            literal   1
## 14556                                otp   1
## 14557                                2.5   1
## 14558                              error   1
## 14559                                ios   1
## 14560                            lawsuit   1
## 14561                             months   1
## 14562                               news   1
## 14563                              racer   1
## 14564                               real   1
## 14565                              shoes   1
## 14566                              video   1
## 14567                            causing   1
## 14568                            changed   1
## 14569                            decided   1
## 14570                         downloaded   1
## 14571                              found   1
## 14572                               it’s   1
## 14573                               i’ve   1
## 14574                               nice   1
## 14575                          purchased   1
## 14576                             recent   1
## 14577                            running   1
## 14578                               sold   1
## 14579                            started   1
## 14580                            stories   1
## 14581                            swiping   1
## 14582                                vf1   1
## 14583                                app   1
## 14584                                 le   1
## 14585                                100   1
## 14586                               love   1
## 14587                              adios   1
## 14588                                162   1
## 14589                                374   1
## 14590                                421   1
## 14591                              comfy   1
## 14592                          exercises   1
## 14593                       expectations   1
## 14594                           flawless   1
## 14595                             giving   1
## 14596                             hoodie   1
## 14597                               i’ve   1
## 14598                           mapmyrun   1
## 14599                            mission   1
## 14600                             pepper   1
## 14601                                pop   1
## 14602                             review   1
## 14603                              shoes   1
## 14604                             sizing   1
## 14605                       subscription   1
## 14606                              4.311   1
## 14607                                106   1
## 14608                               life   1
## 14609                           distance   1
## 14610                         streetwear   1
## 14611                                wow   1
## 14612                             annual   1
## 14613                               it’s   1
## 14614                             routes   1
## 14615                             adidas   1
## 14616                                las   1
## 14617                                net   1
## 14618                               nike   1
## 14619                           guidance   1
## 14620                             option   1
## 14621                                run   1
## 14622                           sessions   1
## 14623                           timeline   1
## 14624                           accounts   1
## 14625                               1173   1
## 14626                            buttons   1
## 14627                                 de   1
## 14628                                 mi   1
## 14629                                mis   1
## 14630                                238   1
## 14631                                855   1
## 14632                         background   1
## 14633                              black   1
## 14634                              color   1
## 14635                               eyes   1
## 14636                                fox   1
## 14637                               lace   1
## 14638                           octobers   1
## 14639                             runner   1
## 14640                              sport   1
## 14641                              suede   1
## 14642                                tag   1
## 14643                                443   1
## 14644                               1415   1
## 14645                               1620   1
## 14646                               2147   1
## 14647                                594   1
## 14648                                638   1
## 14649                           comments   1
## 14650                         explaining   1
## 14651                            sneaker   1
## 14652                             coming   1
## 14653                            version   1
## 14654                           sections   1
## 14655                            cleared   1
## 14656                             buying   1
## 14657                           distance   1
## 14658                          usability   1
## 14659                               1561   1
## 14660                               dude   1
## 14661                             joints   1
## 14662                               sale   1
## 14663      ppx_yo_dt_b_search_asin_title   1
## 14664                              adios   1
## 14665                                i’m   1
## 14666                               para   1
## 14667                             pieces   1
## 14668                               flip   1
## 14669                          regularly   1
## 14670                         foundation   1
## 14671                               mind   1
## 14672                            control   1
## 14673                             miller   1
## 14674                            include   1
## 14675                                  6   1
## 14676                               park   1
## 14677                                  3   1
## 14678                                app   1
## 14679                              can’t   1
## 14680                             logros   1
## 14681                                416   1
## 14682                               dice   1
## 14683                               af1s   1
## 14684                               bred   1
## 14685                               dude   1
## 14686                              dudes   1
## 14687                           everyday   1
## 14688                            fitness   1
## 14689                               fits   1
## 14690                                gym   1
## 14691                                joe   1
## 14692                            joggers   1
## 14693                              pants   1
## 14694                           rotation   1
## 14695                              samba   1
## 14696                            updates   1
## 14697                              price   1
## 14698                            there’s   1
## 14699                                  3   1
## 14700                                 5s   1
## 14701                               shoe   1
## 14702                               bred   1
## 14703                                toe   1
## 14704                                app   1
## 14705                             logged   1
## 14706                                ntc   1
## 14707                            logging   1
## 14708                              don’t   1
## 14709                                689   1
## 14710                                hoy   1
## 14711                        accessories   1
## 14712                           december   1
## 14713                               june   1
## 14714                        marketwatch   1
## 14715                            october   1
## 14716                          september   1
## 14717                              4.227   1
## 14718                                app   1
## 14719                                buy   1
## 14720                            causing   1
## 14721                             coming   1
## 14722                              dates   1
## 14723                                day   1
## 14724                         eventually   1
## 14725                            tension   1
## 14726                               damn   1
## 14727                              hijab   1
## 14728                              worse   1
## 14729                                10k   1
## 14730                              4.160   1
## 14731                              4.167   1
## 14732                                862   1
## 14733                               kith   1
## 14734                                ngl   1
## 14735                                tbh   1
## 14736                          wondering   1
## 14737                              drive   1
## 14738                               love   1
## 14739                               data   1
## 14740                               love   1
## 14741                             record   1
## 14742                            removed   1
## 14743                           traction   1
## 14744                              cater   1
## 14745                         restarting   1
## 14746                               fora   1
## 14747                            mindful   1
## 14748                              loyal   1
## 14749                         unresolved   1
## 14750                             buying   1
## 14751                             loving   1
## 14752                            rocking   1
## 14753                                428   1
## 14754                               1180   1
## 14755                             sought   1
## 14756                                233   1
## 14757                            classes   1
## 14758                             insole   1
## 14759                              voice   1
## 14760                               2037   1
## 14761                               2140   1
## 14762                                534   1
## 14763                                684   1
## 14764                                key   1
## 14765                            workout   1
## 14766                              teams   1
## 14767                               1193   1
## 14768                           sneakers   1
## 14769                             review   1
## 14770                           attempts   1
## 14771                             logins   1
## 14772                                tho   1
## 14773                       motivational   1
## 14774                              posts   1
## 14775                                474   1
## 14776                              laces   1
## 14777                         impossible   1
## 14778                         individual   1
## 14779                               john   1
## 14780                         confidence   1
## 14781                            letting   1
## 14782                           athletes   1
## 14783                            halfway   1
## 14784                            semanal   1
## 14785                                 38   1
## 14786                                 70   1
## 14787                             fourth   1
## 14788                          inventory   1
## 14789                              miles   1
## 14790                                 q1   1
## 14791                              lungs   1
## 14792                            drawing   1
## 14793                               type   1
## 14794                             brazil   1
## 14795                               1195   1
## 14796                           retailer   1
## 14797                            closing   1
## 14798                                ios   1
## 14799                            payment   1
## 14800                           previous   1
## 14801                              email   1
## 14802                              makes   1
## 14803                           bringing   1
## 14804                              email   1
## 14805                               paid   1
## 14806                              watch   1
## 14807                               1196   1
## 14808                                524   1
## 14809                                538   1
## 14810                               4.17   1
## 14811                                bro   1
## 14812                         laboratory   1
## 14813                             people   1
## 14814                              doesn   1
## 14815                                isn   1
## 14816                                lol   1
## 14817                             market   1
## 14818                               wise   1
## 14819                              sites   1
## 14820                           grabbing   1
## 14821                              email   1
## 14822                           training   1
## 14823                               shoe   1
## 14824                             winter   1
## 14825                         agradecida   1
## 14826                          caminando   1
## 14827                                237   1
## 14828                              fedex   1
## 14829                            assured   1
## 14830                               stop   1
## 14831                           clearing   1
## 14832                              clean   1
## 14833                              march   1
## 14834                                pop   1
## 14835                               1674   1
## 14836                             moving   1
## 14837                            savings   1
## 14838                               i’ve   1
## 14839                           datasets   1
## 14840                           delivers   1
## 14841                               i’ve   1
## 14842                              kayak   1
## 14843                           training   1
## 14844                            wrestle   1
## 14845                               1391   1
## 14846                               1839   1
## 14847                                186   1
## 14848                               4.94   1
## 14849                                805   1
## 14850                               cnbc   1
## 14851                            finally   1
## 14852                               goat   1
## 14853                          locations   1
## 14854                           partners   1
## 14855                               shoe   1
## 14856                                167   1
## 14857                               apps   1
## 14858                           recovers   1
## 14859                              todos   1
## 14860                               1245   1
## 14861                             buying   1
## 14862                             semana   1
## 14863                               past   1
## 14864                               1687   1
## 14865                              4.144   1
## 14866                               aj28   1
## 14867                                dad   1
## 14868                               game   1
## 14869                             jordan   1
## 14870                            jordans   1
## 14871                           sneakers   1
## 14872                               vibe   1
## 14873                              vibes   1
## 14874                               1523   1
## 14875                               love   1
## 14876                                810   1
## 14877                               nike   1
## 14878                               1174   1
## 14879                               2032   1
## 14880                             photos   1
## 14881                             august   1
## 14882                               june   1
## 14883                          september   1
## 14884                               2069   1
## 14885                            decline   1
## 14886                           declines   1
## 14887                               flat   1
## 14888                          forecasts   1
## 14889                                hit   1
## 14890                               hits   1
## 14891                            hitting   1
## 14892                               hoka   1
## 14893                             losses   1
## 14894                            reaches   1
## 14895                              rises   1
## 14896                           shifting   1
## 14897                      stabilization   1
## 14898                            jumpman   1
## 14899                              black   1
## 14900                             jacket   1
## 14901                                dtc   1
## 14902                                259   1
## 14903                               4.33   1
## 14904                               4.71   1
## 14905                                  8   1
## 14906                                901   1
## 14907                         absolutely   1
## 14908                            awesome   1
## 14909                                btw   1
## 14910                             classy   1
## 14911                             decent   1
## 14912                            doesn’t   1
## 14913                         excellence   1
## 14914                              gonna   1
## 14915                               it’s   1
## 14916                                i’d   1
## 14917                                 li   1
## 14918                             lining   1
## 14919                               mike   1
## 14920                            moments   1
## 14921                            perfect   1
## 14922                          reporting   1
## 14923                            running   1
## 14924                            suggest   1
## 14925                                vid   1
## 14926                               2026   1
## 14927                              tells   1
## 14928                                 bc   1
## 14929                                 ua   1
## 14930                              4.353   1
## 14931                              4.376   1
## 14932                                ben   1
## 14933                             hentet   1
## 14934                             online   1
## 14935                            viewing   1
## 14936                            charles   1
## 14937                            journey   1
## 14938                            loyalty   1
## 14939                             mizuno   1
## 14940                             sambas   1
## 14941                               2071   1
## 14942                              elite   1
## 14943                              4.218   1
## 14944                             farmer   1
## 14945                              green   1
## 14946                           handball   1
## 14947                            version   1
## 14948                                 es   1
## 14949                                 17   1
## 14950                               home   1
## 14951                               love   1
## 14952                             online   1
## 14953                              solid   1
## 14954                            mileage   1
## 14955                            leather   1
## 14956                              thick   1
## 14957                            widgets   1
## 14958                              watch   1
## 14959                       futebolnorio   1
## 14960                                219   1
## 14961                            fucking   1
## 14962                             people   1
## 14963                          stitching   1
## 14964                               9min   1
## 14965                              track   1
## 14966                                 10   1
## 14967                           business   1
## 14968                                  2   1
## 14969                              súper   1
## 14970                                fly   1
## 14971                                 86   1
## 14972                               nike   1
## 14973                                753   1
## 14974                           inclined   1
## 14975                               1854   1
## 14976                               2151   1
## 14977                               2168   1
## 14978                           flyknits   1
## 14979                    sneakermarketro   1
## 14980                            cycling   1
## 14981                               runs   1
## 14982                              trail   1
## 14983                           trainers   1
## 14984                                357   1
## 14985                         completely   1
## 14986                               he’s   1
## 14987                              voice   1
## 14988                                def   1
## 14989                                  6   1
## 14990                               pair   1
## 14991                              shoes   1
## 14992                               mine   1
## 14993                             adidas   1
## 14994                            curry's   1
## 14995                                 em   1
## 14996                              fakes   1
## 14997                              horse   1
## 14998                              retro   1
## 14999                               pass   1
## 15000                              model   1
## 15001                                 ua   1
## 15002                               seam   1
## 15003                             ankles   1
## 15004                            skating   1
## 15005                                 mi   1
## 15006                           burgundy   1
## 15007                         burgundy's   1
## 15008                     usasupersoccer   1
## 15009                            grabbed   1
## 15010                              loose   1
## 15011                           climbing   1
## 15012                             climbs   1
## 15013                            section   1
## 15014                               gold   1
## 15015                               runs   1
## 15016                              gabes   1
## 15017                               rack   1
## 15018                            counter   1
## 15019                               1682   1
## 15020                                 19   1
## 15021                            adizero   1
## 15022                                lol   1
## 15023                           calluses   1
## 15024                            anymore   1
## 15025                         basketball   1
## 15026                          distances   1
## 15027                              lower   1
## 15028                            running   1
## 15029                             sooner   1
## 15030                            nikelab   1
## 15031                           displays   1
## 15032                              heart   1
## 15033                           included   1
## 15034                          providing   1
## 15035                           tracking   1
## 15036                            helpful   1
## 15037                                i’m   1
## 15038                       neighborhood   1
## 15039                              super   1
## 15040                              fresh   1
## 15041                              start   1
## 15042                                tho   1
## 15043                            sitting   1
## 15044                                150   1
## 15045                          depending   1
## 15046                           everyday   1
## 15047                               crew   1
## 15048                               blue   1
## 15049                              union   1
## 15050                                922   1
## 15051                                don   1
## 15052                            comfort   1
## 15053                              gonna   1
## 15054                               4.32   1
## 15055                               band   1
## 15056                           destroys   1
## 15057                             inside   1
## 15058                                gif   1
## 15059                            textile   1
## 15060                                eli   1
## 15061                            aspects   1
## 15062                               1095   1
## 15063                            perfect   1
## 15064                                  2   1
## 15065                                213   1
## 15066                                352   1
## 15067                               4.41   1
## 15068                                530   1
## 15069                           accurate   1
## 15070                           activity   1
## 15071                              based   1
## 15072                                ben   1
## 15073                             biking   1
## 15074                              bring   1
## 15075                            checked   1
## 15076                              clubs   1
## 15077                         completely   1
## 15078                               cool   1
## 15079                          correctly   1
## 15080                              costs   1
## 15081                               crew   1
## 15082                             didn’t   1
## 15083                               easy   1
## 15084                             faster   1
## 15085                            feature   1
## 15086                            forrest   1
## 15087                          frequency   1
## 15088                             gender   1
## 15089                               goal   1
## 15090                                gps   1
## 15091                              helps   1
## 15092                               hike   1
## 15093                                hot   1
## 15094                          incorrect   1
## 15095                               it’s   1
## 15096                                i’m   1
## 15097                            logging   1
## 15098                              loose   1
## 15099                               love   1
## 15100                             method   1
## 15101                               mode   1
## 15102                    notwithstanding   1
## 15103                       occasionally   1
## 15104                            options   1
## 15105                           outdoors   1
## 15106                      oversensitive   1
## 15107                               paid   1
## 15108                            partner   1
## 15109                            perfect   1
## 15110                         production   1
## 15111                          providing   1
## 15112                            release   1
## 15113                           repeat's   1
## 15114                               ride   1
## 15115                               road   1
## 15116                              round   1
## 15117                        routes:this   1
## 15118                            running   1
## 15119                             smooth   1
## 15120                              speed   1
## 15121                          sprinting   1
## 15122                             strong   1
## 15123                            summary   1
## 15124                                ten   1
## 15125                               time   1
## 15126                            tracked   1
## 15127                           training   1
## 15128                               tree   1
## 15129                             vomero   1
## 15130                             whilst   1
## 15131                                app   1
## 15132                                348   1
## 15133                           features   1
## 15134                                map   1
## 15135                             pepper   1
## 15136                          reviewing   1
## 15137                             walker   1
## 15138                                577   1
## 15139                                don   1
## 15140                                i.e   1
## 15141                               imho   1
## 15142                               it’s   1
## 15143                               i’ve   1
## 15144                               love   1
## 15145                             market   1
## 15146                             peeled   1
## 15147                            running   1
## 15148                               wear   1
## 15149                                 10   1
## 15150                             100kms   1
## 15151                                  5   1
## 15152                         activities   1
## 15153                             adidas   1
## 15154                                 ai   1
## 15155                                 ap   1
## 15156                        application   1
## 15157                           beginner   1
## 15158                              buddy   1
## 15159                           category   1
## 15160                             center   1
## 15161                            cycling   1
## 15162                              c’est   1
## 15163                               data   1
## 15164                           descobri   1
## 15165                            errands   1
## 15166                          excelente   1
## 15167                             faster   1
## 15168                            friends   1
## 15169                                fun   1
## 15170                              goals   1
## 15171                               hard   1
## 15172                               hats   1
## 15173                             hiking   1
## 15174                            indoors   1
## 15175                         infinitely   1
## 15176                               it’s   1
## 15177                                 je   1
## 15178                            journey   1
## 15179                                 la   1
## 15180                               live   1
## 15181                                lol   1
## 15182                                map   1
## 15183                            maximum   1
## 15184                            moments   1
## 15185                                 nb   1
## 15186                               nike   1
## 15187                              nikes   1
## 15188                            partner   1
## 15189                            program   1
## 15190                           provided   1
## 15191                          recording   1
## 15192                              route   1
## 15193                             routes   1
## 15194                             sauron   1
## 15195                             screen   1
## 15196                             skills   1
## 15197                              socks   1
## 15198                              space   1
## 15199                            statues   1
## 15200                         stretching   1
## 15201                            there’s   1
## 15202                                thx   1
## 15203                              times   1
## 15204                            tracker   1
## 15205                           tracking   1
## 15206                             tracks   1
## 15207                             trails   1
## 15208                               vans   1
## 15209                                835   1
## 15210                         accurately   1
## 15211                                app   1
## 15212                                atm   1
## 15213                              count   1
## 15214                            counted   1
## 15215                              crazy   1
## 15216                              cross   1
## 15217                               fast   1
## 15218                            futebol   1
## 15219                          greatness   1
## 15220                              happy   1
## 15221                              helps   1
## 15222                                i’m   1
## 15223                               i’ve   1
## 15224                               love   1
## 15225                              makes   1
## 15226                              pause   1
## 15227                            sabrina   1
## 15228                               true   1
## 15229                             update   1
## 15230                           wouldn’t   1
## 15231                                yup   1
## 15232                               zoom   1
## 15233                         exatamente   1
## 15234                          dashboard   1
## 15235                               days   1
## 15236                               it’s   1
## 15237                           original   1
## 15238                            results   1
## 15239                              sells   1
## 15240                               team   1
## 15241                           training   1
## 15242                               user   1
## 15243                              users   1
## 15244                                gps   1
## 15245                        confortable   1
## 15246                                run   1
## 15247                               adds   1
## 15248                                son   1
## 15249                                586   1
## 15250                           flaherty   1
## 15251                                 de   1
## 15252                                red   1
## 15253                                 gt   1
## 15254                               2022   1
## 15255                            amazing   1
## 15256                       specifically   1
## 15257                                 51   1
## 15258                              can’t   1
## 15259                                564   1
## 15260                              urban   1
## 15261                           features   1
## 15262                              shoes   1
## 15263                                toe   1
## 15264                               2347   1
## 15265                               2350   1
## 15266                               2355   1
## 15267                              black   1
## 15268                              color   1
## 15269                            thieves   1
## 15270                                878   1
## 15271                                def   1
## 15272                               it’s   1
## 15273                              price   1
## 15274                                 ty   1
## 15275                               1815   1
## 15276                               cnbc   1
## 15277                            decline   1
## 15278                               drop   1
## 15279                               fall   1
## 15280                          financial   1
## 15281                           guidance   1
## 15282                             jumped   1
## 15283                             plunge   1
## 15284                            surpass   1
## 15285                          seashores   1
## 15286                               aero   1
## 15287                              range   1
## 15288                              folks   1
## 15289                          excelente   1
## 15290                             adidas   1
## 15291                            classic   1
## 15292                      deconstructed   1
## 15293                                ogs   1
## 15294                            spezial   1
## 15295                               view   1
## 15296                           gazelle4   1
## 15297                                  2   1
## 15298                           fabulous   1
## 15299                             sambas   1
## 15300                         juan.bello   1
## 15301                            there’s   1
## 15302                          turquoise   1
## 15303                               1689   1
## 15304                              shits   1
## 15305                               1309   1
## 15306                             succès   1
## 15307                        santoscharm   1
## 15308                               nike   1
## 15309                                 7s   1
## 15310                           huarache   1
## 15311                               1955   1
## 15312                            forever   1
## 15313                              image   1
## 15314                        perspective   1
## 15315                              lined   1
## 15316                           purchase   1
## 15317                           recently   1
## 15318                             market   1
## 15319                                  9   1
## 15320                              night   1
## 15321                          confirmed   1
## 15322                                  5   1
## 15323                            battery   1
## 15324                              happy   1
## 15325                             hiking   1
## 15326                           pictures   1
## 15327                              won’t   1
## 15328                             adidas   1
## 15329                              grace   1
## 15330                              money   1
## 15331                                run   1
## 15332                                 ua   1
## 15333                           targeted   1
## 15334                            setting   1
## 15335                               cool   1
## 15336                                737   1
## 15337                               1508   1
## 15338                                 95   1
## 15339                                95s   1
## 15340                            comfort   1
## 15341                               dunk   1
## 15342                               line   1
## 15343                            version   1
## 15344                                top   1
## 15345                              4.125   1
## 15346                                100   1
## 15347                               2133   1
## 15348                              dunks   1
## 15349                              elite   1
## 15350                               chav   1
## 15351                             yeeyee   1
## 15352                               nike   1
## 15353                               wall   1
## 15354                          overlooks   1
## 15355                                 32   1
## 15356                           workouts   1
## 15357                               golf   1
## 15358                              4.275   1
## 15359                                  7   1
## 15360                                 bc   1
## 15361                               camp   1
## 15362                              crazy   1
## 15363                               days   1
## 15364                               shoe   1
## 15365                               vibe   1
## 15366                           approach   1
## 15367                                 12   1
## 15368                                 14   1
## 15369                                 16   1
## 15370                                195   1
## 15371                                198   1
## 15372                                202   1
## 15373                                203   1
## 15374                                207   1
## 15375                                211   1
## 15376                                212   1
## 15377                                213   1
## 15378                                216   1
## 15379                                220   1
## 15380                                222   1
## 15381                                224   1
## 15382                                227   1
## 15383                                228   1
## 15384                                232   1
## 15385                                238   1
## 15386                                253   1
## 15387                              25310   1
## 15388                                267   1
## 15389                                281   1
## 15390                               2989   1
## 15391                                300   1
## 15392                                317   1
## 15393                                318   1
## 15394                                357   1
## 15395                                359   1
## 15396                               4160   1
## 15397                                465   1
## 15398                                515   1
## 15399                                518   1
## 15400                               6791   1
## 15401                               6972   1
## 15402                               7049   1
## 15403                               7051   1
## 15404                               7932   1
## 15405                               8105   1
## 15406                               8178   1
## 15407                               8187   1
## 15408                                141   1
## 15409                                849   1
## 15410                             jordan   1
## 15411                            pippins   1
## 15412                          scheffler   1
## 15413                                app   1
## 15414                            begging   1
## 15415                          completed   1
## 15416                              crops   1
## 15417                          deducting   1
## 15418                              found   1
## 15419                          mirroring   1
## 15420                               mode   1
## 15421                             option   1
## 15422                            running   1
## 15423                               size   1
## 15424                           tracking   1
## 15425                             unable   1
## 15426                              video   1
## 15427                               view   1
## 15428                             widget   1
## 15429                              wheel   1
## 15430                              miles   1
## 15431                                fyi   1
## 15432                                lol   1
## 15433                               zers   1
## 15434                          comparten   1
## 15435                            conecta   1
## 15436                            conocen   1
## 15437                            detiene   1
## 15438                           empareja   1
## 15439                             membro   1
## 15440                              puede   1
## 15441                             tornou   1
## 15442                            version   1
## 15443                               cuál   1
## 15444                               road   1
## 15445                                 su   1
## 15446                                  4   1
## 15447                        integration   1
## 15448                        wotherspoon   1
## 15449                                bar   1
## 15450                             engine   1
## 15451                           function   1
## 15452                               1969   1
## 15453                                  2   1
## 15454                            winning   1
## 15455                           athletes   1
## 15456                             runner   1
## 15457                             biking   1
## 15458                            workout   1
## 15459                            charges   1
## 15460                             filing   1
## 15461                               nike   1
## 15462                                 de   1
## 15463                            pouches   1
## 15464                               love   1
## 15465                            doesn’t   1
## 15466                          redirects   1
## 15467                              won’t   1
## 15468                                  3   1
## 15469                               mine   1
## 15470                             camera   1
## 15471                            samples   1
## 15472                               data   1
## 15473                               pace   1
## 15474                                 es   1
## 15475                             semana   1
## 15476                                run   1
## 15477                           activity   1
## 15478                            restore   1
## 15479                               shoe   1
## 15480                             adidas   1
## 15481                              start   1
## 15482                            workout   1
## 15483                             broken   1
## 15484                                 62   1
## 15485                            beliefs   1
## 15486                                 em   1
## 15487                               nike   1
## 15488                           products   1
## 15489                              roshe   1
## 15490                              ultra   1
## 15491                          polyester   1
## 15492                       myfitnesspal   1
## 15493                             reebok   1
## 15494                                  1   1
## 15495                                 de   1
## 15496                              desde   1
## 15497                               para   1
## 15498                            lástima   1
## 15499                                pro   1
## 15500                               wide   1
## 15501                               8,10   1
## 15502                                  5   1
## 15503                                 10   1
## 15504                             emails   1
## 15505                        invitations   1
## 15506                               live   1
## 15507                                282   1
## 15508                              bolso   1
## 15509                               1331   1
## 15510                               lmao   1
## 15511                       reinstalling   1
## 15512                               wear   1
## 15513                               data   1
## 15514                              libre   1
## 15515                         activities   1
## 15516                               cars   1
## 15517                      notifications   1
## 15518                            section   1
## 15519                           controls   1
## 15520                                  1   1
## 15521                                  2   1
## 15522                                  3   1
## 15523                                  4   1
## 15524                                  6   1
## 15525                                  9   1
## 15526                        importunada   1
## 15527                               nike   1
## 15528                                  6   1
## 15529                                  7   1
## 15530                                fit   1
## 15531                          supernova   1
## 15532                                edr   1
## 15533                             nicely   1
## 15534                            stopped   1
## 15535                            awesome   1
## 15536                            focused   1
## 15537                               it’s   1
## 15538                               team   1
## 15539                             wasn’t   1
## 15540                               nike   1
## 15541                               it’s   1
## 15542                                110   1
## 15543                               it’s   1
## 15544                               2023   1
## 15545                                968   1
## 15546                             custom   1
## 15547                            default   1
## 15548                               i’ll   1
## 15549                           manually   1
## 15550                          reminders   1
## 15551                              daily   1
## 15552                       expectations   1
## 15553                              goals   1
## 15554                             health   1
## 15555                                i’m   1
## 15556                              lists   1
## 15557                        preferences   1
## 15558                            profile   1
## 15559                                sec   1
## 15560                               2299   1
## 15561                              4.364   1
## 15562                              build   1
## 15563                              edema   1
## 15564                               it’s   1
## 15565                         underrated   1
## 15566                               ties   1
## 15567                          mannequin   1
## 15568                                942   1
## 15569                               1975   1
## 15570                             carbon   1
## 15571                               line   1
## 15572                               1765   1
## 15573                            there’s   1
## 15574                                001   1
## 15575                               001s   1
## 15576                             adidas   1
## 15577                                433   1
## 15578                               1437   1
## 15579                                153   1
## 15580                               1600   1
## 15581                                368   1
## 15582                                 71   1
## 15583                              color   1
## 15584                                fit   1
## 15585                            quality   1
## 15586                               2042   1
## 15587                            buyback   1
## 15588                              falls   1
## 15589                              route   1
## 15590                            workout   1
## 15591                           graphics   1
## 15592                         experience   1
## 15593                               data   1
## 15594                           progress   1
## 15595                              angle   1
## 15596                                kay   1
## 15597                               fine   1
## 15598                                gif   1
## 15599                          mentality   1
## 15600                             amount   1
## 15601                          multitude   1
## 15602                            variety   1
## 15603                               1414   1
## 15604                              space   1
## 15605                                toe   1
## 15606                             adidas   1
## 15607                          practices   1
## 15608                                lol   1
## 15609                               1261   1
## 15610                            splints   1
## 15611                           offering   1
## 15612                                sun   1
## 15613                               i’ve   1
## 15614                           3,000.00   1
## 15615                               1497   1
## 15616                                432   1
## 15617                               2297   1
## 15618                               baby   1
## 15619                                bro   1
## 15620                          chatshirt   1
## 15621                         comparison   1
## 15622                           material   1
## 15623                             medium   1
## 15624                            similar   1
## 15625                                642   1
## 15626                              feels   1
## 15627                              plain   1
## 15628                                 ua   1
## 15629                               love   1
## 15630                               1315   1
## 15631                               1378   1
## 15632                               1431   1
## 15633                               4.15   1
## 15634                                672   1
## 15635                           compared   1
## 15636                               cool   1
## 15637                              crazy   1
## 15638                           directly   1
## 15639                                lol   1
## 15640                               nike   1
## 15641                                 qc   1
## 15642                           question   1
## 15643                            ripping   1
## 15644                              samba   1
## 15645                               shoe   1
## 15646                                tbh   1
## 15647                                tho   1
## 15648                               yeah   1
## 15649                               2057   1
## 15650                                327   1
## 15651                               nuff   1
## 15652                         absorption   1
## 15653                               1020   1
## 15654                               1123   1
## 15655                               1129   1
## 15656                               1136   1
## 15657                               1440   1
## 15658                               1453   1
## 15659                               1934   1
## 15660                                 21   1
## 15661                               2310   1
## 15662                               2336   1
## 15663                               2421   1
## 15664                              4.200   1
## 15665                              4.294   1
## 15666                              4.303   1
## 15667                              4.358   1
## 15668                              4.363   1
## 15669                              4.366   1
## 15670                                4.4   1
## 15671                                418   1
## 15672                                567   1
## 15673                                978   1
## 15674                         absolutely   1
## 15675                            cabinet   1
## 15676                         collection   1
## 15677                          community   1
## 15678                            company   1
## 15679                          cristiano   1
## 15680                          decreaser   1
## 15681                         decreasers   1
## 15682                             design   1
## 15683                                due   1
## 15684                             effect   1
## 15685                               feel   1
## 15686                              feels   1
## 15687                              funny   1
## 15688                               game   1
## 15689                               garb   1
## 15690                              hands   1
## 15691                                hey   1
## 15692                              holds   1
## 15693                            ideally   1
## 15694                             inside   1
## 15695                           inspired   1
## 15696                                i’d   1
## 15697                             jordan   1
## 15698                             junkie   1
## 15699                              laces   1
## 15700                             leader   1
## 15701                               love   1
## 15702                              makes   1
## 15703                            mileage   1
## 15704                           mileages   1
## 15705                              model   1
## 15706                           multiple   1
## 15707                               nice   1
## 15708                               nike   1
## 15709                              oddly   1
## 15710                             online   1
## 15711                             palace   1
## 15712                          performed   1
## 15713                             photos   1
## 15714 pleeeeeeeeeeeeeeeeeeeeeeeeeeeeease   1
## 15715                              price   1
## 15716                           proceeds   1
## 15717                             purely   1
## 15718                              sales   1
## 15719                             salute   1
## 15720                          selection   1
## 15721                             seller   1
## 15722                             simple   1
## 15723                         simplicity   1
## 15724                             simply   1
## 15725                               size   1
## 15726                           slippery   1
## 15727                             slopes   1
## 15728                              soley   1
## 15729                             stands   1
## 15730                           suitable   1
## 15731                                tbh   1
## 15732                            tracker   1
## 15733                           tracking   1
## 15734                            trackng   1
## 15735                          treadmill   1
## 15736                              trees   1
## 15737                           velociti   1
## 15738                               wide   1
## 15739                                won   1
## 15740                               yeah   1
## 15741                                 星   1
## 15742                               tips   1
## 15743                                lol   1
## 15744                               1097   1
## 15745                               1132   1
## 15746                               1154   1
## 15747                                 12   1
## 15748                               1427   1
## 15749                               1441   1
## 15750                               1591   1
## 15751               16adimltrbstmblkwrnn   1
## 15752                               1803   1
## 15753                               1891   1
## 15754                               1967   1
## 15755                               1992   1
## 15756                               2054   1
## 15757                               2082   1
## 15758                               2157   1
## 15759                               2159   1
## 15760                               2171   1
## 15761                               2201   1
## 15762                               2216   1
## 15763                                364   1
## 15764                                388   1
## 15765                              4.115   1
## 15766                              4.255   1
## 15767                              4.328   1
## 15768                              4.347   1
## 15769                              4.393   1
## 15770                               4.43   1
## 15771                                532   1
## 15772                                604   1
## 15773                                674   1
## 15774                                943   1
## 15775                                945   1
## 15776                                955   1
## 15777                            anymore   1
## 15778                             arrive   1
## 15779                                blk   1
## 15780                              boxes   1
## 15781                             brands   1
## 15782                                btw   1
## 15783                           casually   1
## 15784                    congratulations   1
## 15785                               cost   1
## 15786                                cut   1
## 15787                          depending   1
## 15788                        determining   1
## 15789                              don’t   1
## 15790                              enjoy   1
## 15791                              foams   1
## 15792                          freshfoam   1
## 15793                               glad   1
## 15794                              grass   1
## 15795                               hats   1
## 15796                              https   1
## 15797                           included   1
## 15798                               jake   1
## 15799                               lots   1
## 15800                             market   1
## 15801                                ofc   1
## 15802                             people   1
## 15803                            perfect   1
## 15804                            podiums   1
## 15805                           recently   1
## 15806                               shit   1
## 15807                              steel   1
## 15808                              style   1
## 15809                            stylish   1
## 15810                                tho   1
## 15811                                til   1
## 15812                                toe   1
## 15813                                wtf   1
## 15814                           excelent   1
## 15815                                app   1
## 15816                               drop   1
## 15817                               mind   1
## 15818                               1045   1
## 15819                                app   1
## 15820                              4.385   1
## 15821                             amount   1
## 15822                              black   1
## 15823                           distance   1
## 15824                             female   1
## 15825                              lived   1
## 15826                             people   1
## 15827                           recently   1
## 15828                           routines   1
## 15829                                run   1
## 15830                                ten   1
## 15831                               time   1
## 15832                          variation   1
## 15833                              video   1
## 15834                              class   1
## 15835                           advanced   1
## 15836                              built   1
## 15837                          colourway   1
## 15838                                tho   1
## 15839                                572   1
## 15840                            limited   1
## 15841                             messes   1
## 15842                            version   1
## 15843                             bought   1
## 15844                                day   1
## 15845                              strap   1
## 15846                             glutes   1
## 15847                              helps   1
## 15848                           directly   1
## 15849                                 r4   1
## 15850                              badly   1
## 15851                             carbon   1
## 15852                            they’ll   1
## 15853                               1237   1
## 15854                            quality   1
## 15855                               rhem   1
## 15856                                 ur   1
## 15857                                196   1
## 15858                               2161   1
## 15859                                ass   1
## 15860                                bro   1
## 15861                           colorway   1
## 15862                              kicks   1
## 15863                               shoe   1
## 15864                                847   1
## 15865                           disfruto   1
## 15866                              pause   1
## 15867                                fit   1
## 15868                               easy   1
## 15869                               slow   1
## 15870                               1946   1
## 15871                         difference   1
## 15872                            cheaper   1
## 15873                              drain   1
## 15874                            squeeze   1
## 15875                        partnership   1
## 15876                            changed   1
## 15877                            release   1
## 15878                               2160   1
## 15879                              4.206   1
## 15880                                956   1
## 15881                            reminds   1
## 15882                             lining   1
## 15883                           metallic   1
## 15884                               4.40   1
## 15885                             brands   1
## 15886                            comment   1
## 15887                               deal   1
## 15888                            purpose   1
## 15889                              share   1
## 15890                         technology   1
## 15891                         arithmetic   1
## 15892                               easy   1
## 15893                          efficient   1
## 15894                        informative   1
## 15895                               love   1
## 15896                                low   1
## 15897                              lower   1
## 15898                                mom   1
## 15899                               nike   1
## 15900                            perfect   1
## 15901                              super   1
## 15902                                tap   1
## 15903                              tasks   1
## 15904                            workout   1
## 15905                          excelente   1
## 15906                              4.370   1
## 15907                            product   1
## 15908                               dont   1
## 15909                            falling   1
## 15910                           manually   1
## 15911                               read   1
## 15912                               send   1
## 15913                              takes   1
## 15914                             vanish   1
## 15915                               hope   1
## 15916                             stella   1
## 15917                               1686   1
## 15918                          bandwagon   1
## 15919                                day   1
## 15920                            exercis   1
## 15921                           handedly   1
## 15922                             option   1
## 15923                               pair   1
## 15924                                ply   1
## 15925                                run   1
## 15926                               size   1
## 15927                                tap   1
## 15928                               hand   1
## 15929                               feel   1
## 15930                             adidas   1
## 15931                            anymore   1
## 15932                               boot   1
## 15933                         explaining   1
## 15934                                941   1
## 15935                               1525   1
## 15936                                gap   1
## 15937                               1058   1
## 15938                               1068   1
## 15939                               1110   1
## 15940                               1111   1
## 15941                               12.5   1
## 15942                                12s   1
## 15943                               13.5   1
## 15944                                13s   1
## 15945                                190   1
## 15946                               1997   1
## 15947                              4.137   1
## 15948                              4.176   1
## 15949                              4.185   1
## 15950                              4.201   1
## 15951                              4.221   1
## 15952                              4.297   1
## 15953                               4.87   1
## 15954                               44.5   1
## 15955                                 47   1
## 15956                                576   1
## 15957                                  8   1
## 15958                                804   1
## 15959                                993   1
## 15960                             bigger   1
## 15961                              color   1
## 15962                                fit   1
## 15963                        lightweight   1
## 15964                             listed   1
## 15965                                lol   1
## 15966                              lower   1
## 15967                              lunch   1
## 15968                          perfectly   1
## 15969                          preempted   1
## 15970                              quick   1
## 15971                               shoe   1
## 15972                              short   1
## 15973                          superstar   1
## 15974                               thou   1
## 15975                               type   1
## 15976                                uk9   1
## 15977                            women's   1
## 15978                               yeah   1
## 15979                             breaks   1
## 15980                               feet   1
## 15981                                794   1
## 15982                               sold   1
## 15983                               uk19   1
## 15984                                 11   1
## 15985                              4.113   1
## 15986                             advice   1
## 15987                        information   1
## 15988                               nike   1
## 15989                                tip   1
## 15990                            trashed   1
## 15991                             wasn’t   1
## 15992                              whats   1
## 15993                           division   1
## 15994                                 em   1
## 15995                             skiing   1
## 15996                          aeroburst   1
## 15997                                kim   1
## 15998                              pants   1
## 15999                               wear   1
## 16000                               love   1
## 16001                              level   1
## 16002                                 14   1
## 16003                              level   1
## 16004                        partnership   1
## 16005                             spring   1
## 16006                                cut   1
## 16007                              pants   1
## 16008                              ahead   1
## 16009                            today’s   1
## 16010                                leg   1
## 16011                           received   1
## 16012                        trustworthy   1
## 16013                                721   1
## 16014                              count   1
## 16015                             tokyos   1
## 16016                                  2   1
## 16017                               4.46   1
## 16018                                 72   1
## 16019                          beginners   1
## 16020                              exept   1
## 16021                                 sl   1
## 16022                                sl2   1
## 16023                             takumi   1
## 16024                                ben   1
## 16025                             bought   1
## 16026                              feels   1
## 16027                              12evo   1
## 16028                                evo   1
## 16029                            classic   1
## 16030                           beauties   1
## 16031                              shirt   1
## 16032                                 ua   1
## 16033                              socks   1
## 16034                                  1   1
## 16035                                  2   1
## 16036                              music   1
## 16037                                679   1
## 16038                               aren   1
## 16039                            uptempo   1
## 16040                         preference   1
## 16041                        challenging   1
## 16042                              tight   1
## 16043                             flared   1
## 16044                               feet   1
## 16045                                8.5   1
## 16046                              crocs   1
## 16047                                917   1
## 16048                               mega   1
## 16049                               easy   1
## 16050                           internet   1
## 16051                               pace   1
## 16052                           recovery   1
## 16053                                run   1
## 16054                              voice   1
## 16055                              paces   1
## 16056                             coming   1
## 16057                              gains   1
## 16058                            stopped   1
## 16059                    sen10ultraboost   1
## 16060                              touch   1
## 16061                            watches   1
## 16062                                 42   1
## 16063                                mfs   1
## 16064                                508   1
## 16065                                 gp   1
## 16066                            gazelle   1
## 16067                               grey   1
## 16068                                app   1
## 16069                           concrete   1
## 16070                          deceptive   1
## 16071                              start   1
## 16072                              ideas   1
## 16073                                796   1
## 16074                               skin   1
## 16075                               lead   1
## 16076                               1056   1
## 16077                               1498   1
## 16078                               1861   1
## 16079                              4.117   1
## 16080                              4.260   1
## 16081                              4.352   1
## 16082                                 95   1
## 16083                              alert   1
## 16084                              buyer   1
## 16085                              check   1
## 16086                         collecting   1
## 16087                          community   1
## 16088                              heads   1
## 16089                                lol   1
## 16090                             market   1
## 16091                              model   1
## 16092                              nerds   1
## 16093                            release   1
## 16094                           releases   1
## 16095                              space   1
## 16096                           tracking   1
## 16097                              world   1
## 16098                               nike   1
## 16099                                jon   1
## 16100                           official   1
## 16101                               1028   1
## 16102                               2391   1
## 16103                                409   1
## 16104                                836   1
## 16105                    complexsneakers   1
## 16106                                gif   1
## 16107                              marty   1
## 16108                             sucked   1
## 16109                              tells   1
## 16110                              store   1
## 16111                                app   1
## 16112                               drop   1
## 16113                                 ea   1
## 16114                          exclusive   1
## 16115                         footlocker   1
## 16116                              wrong   1
## 16117                               1739   1
## 16118                             narrow   1
## 16119                             cleats   1
## 16120                             jersey   1
## 16121                           national   1
## 16122                             player   1
## 16123                           practice   1
## 16124                           features   1
## 16125                               feed   1
## 16126                            network   1
## 16127                               1269   1
## 16128                               1272   1
## 16129                            frowned   1
## 16130                                ive   1
## 16131                           material   1
## 16132                        exfoliating   1
## 16133                               1241   1
## 16134                               1244   1
## 16135                               1297   1
## 16136                               1314   1
## 16137                               1729   1
## 16138                                  5   1
## 16139                                  6   1
## 16140                                901   1
## 16141                             boston   1
## 16142                        deteriorate   1
## 16143                           directly   1
## 16144                                don   1
## 16145                          extremely   1
## 16146                           friction   1
## 16147                               lots   1
## 16148                            running   1
## 16149                            shouldn   1
## 16150                           straight   1
## 16151                                314   1
## 16152                                725   1
## 16153                             inside   1
## 16154                               knit   1
## 16155                               warm   1
## 16156                             fabric   1
## 16157                            doesn’t   1
## 16158                             people   1
## 16159                            version   1
## 16160                                566   1
## 16161                             pretty   1
## 16162                              dudes   1
## 16163                               1169   1
## 16164                               mate   1
## 16165                               savy   1
## 16166                         separating   1
## 16167                               wide   1
## 16168                                757   1
## 16169                                don   1
## 16170                             unique   1
## 16171                                  2   1
## 16172                               deal   1
## 16173                          materials   1
## 16174                               pair   1
## 16175                             review   1
## 16176                             rubber   1
## 16177                               shoe   1
## 16178                              shoes   1
## 16179                            workout   1
## 16180                                  á   1
## 16181                                era   1
## 16182                            faltaba   1
## 16183                            mayores   1
## 16184                              paced   1
## 16185                                por   1
## 16186                                364   1
## 16187                              gotta   1
## 16188                              black   1
## 16189                         excelentes   1
## 16190                           spezials   1
## 16191                       toothbrushes   1
## 16192                         activities   1
## 16193                               fire   1
## 16194                                bad   1
## 16195                          expensive   1
## 16196                                bad   1
## 16197                           grateful   1
## 16198                             season   1
## 16199                            muscles   1
## 16200                           workouts   1
## 16201                             health   1
## 16202                                i’d   1
## 16203                            control   1
## 16204                               dumb   1
## 16205                          fantastic   1
## 16206                               it’s   1
## 16207                            awesome   1
## 16208                              super   1
## 16209                              weird   1
## 16210                                ntc   1
## 16211                             option   1
## 16212                             africa   1
## 16213                              korea   1
## 16214                                 41   1
## 16215                               boot   1
## 16216                               it’s   1
## 16217                               left   1
## 16218                               lmao   1
## 16219                               race   1
## 16220                                 82   1
## 16221                            filters   1
## 16222                             folder   1
## 16223                               hiit   1
## 16224                               tire   1
## 16225                                 ua   1
## 16226                             debate   1
## 16227                            analyst   1
## 16228                             adidas   1
## 16229                         breakdowns   1
## 16230                              4.263   1
## 16231                             colors   1
## 16232                            edition   1
## 16233                           editions   1
## 16234                             insole   1
## 16235                            leather   1
## 16236                              offer   1
## 16237                             offers   1
## 16238                               pair   1
## 16239                           starting   1
## 16240                           textiles   1
## 16241                           unboxing   1
## 16242                             brands   1
## 16243                                 57   1
## 16244                           beginner   1
## 16245                           compared   1
## 16246                              event   1
## 16247                           features   1
## 16248                               gear   1
## 16249                              goals   1
## 16250                             person   1
## 16251                           programs   1
## 16252                            purpose   1
## 16253                            quality   1
## 16254                               shoe   1
## 16255                              style   1
## 16256                               tool   1
## 16257                           training   1
## 16258                                104   1
## 16259                           designed   1
## 16260                               paid   1
## 16261                                142   1
## 16262                           distance   1
## 16263                          elevation   1
## 16264                              goals   1
## 16265                            metrics   1
## 16266                             missed   1
## 16267                               pace   1
## 16268                             pocket   1
## 16269                               runs   1
## 16270                           strength   1
## 16271                               time   1
## 16272                                  4   1
## 16273                                 1k   1
## 16274                                300   1
## 16275                           needless   1
## 16276                               time   1
## 16277                                 80   1
## 16278                             surges   1
## 16279                               2062   1
## 16280                              money   1
## 16281                            fastest   1
## 16282                            gazelle   1
## 16283                              samba   1
## 16284                            spezial   1
## 16285                             samba3   1
## 16286                                0.5   1
## 16287                                  5   1
## 16288                                  6   1
## 16289                         collection   1
## 16290                               golf   1
## 16291                             spieth   1
## 16292                               1725   1
## 16293                             adidas   1
## 16294                         comparison   1
## 16295                        comparisons   1
## 16296                               pace   1
## 16297                              paces   1
## 16298                               1960   1
## 16299                                bad   1
## 16300                               team   1
## 16301                               deal   1
## 16302                              súper   1
## 16303                           messages   1
## 16304                                 10   1
## 16305                        disciplines   1
## 16306                                god   1
## 16307                               july   1
## 16308                              royal   1
## 16309                              shoes   1
## 16310                          metrotown   1
## 16311                          including   1
## 16312                          lifestyle   1
## 16313                            options   1
## 16314                           research   1
## 16315                             retail   1
## 16316                               shoe   1
## 16317                           specific   1
## 16318                          structure   1
## 16319                              style   1
## 16320                               wear   1
## 16321                         pid1368010   1
## 16322                               1592   1
## 16323                           clothing   1
## 16324                             puffle   1
## 16325                               tech   1
## 16326                                amp   1
## 16327                                idk   1
## 16328                                 em   1
## 16329                         protectant   1
## 16330                              mines   1
## 16331                                 26   1
## 16332                             summer   1
## 16333                               1511   1
## 16334                               hard   1
## 16335                           colorway   1
## 16336                        repeatspurz   1
## 16337                               feet   1
## 16338                              proof   1
## 16339                          deadlifts   1
## 16340                             lunges   1
## 16341                                101   1
## 16342                              4.327   1
## 16343                                 af   1
## 16344                              clean   1
## 16345                               sign   1
## 16346                                907   1
## 16347                               1593   1
## 16348                               grip   1
## 16349                            options   1
## 16350                           flexible   1
## 16351                            network   1
## 16352                            version   1
## 16353                            charged   1
## 16354                                map   1
## 16355                         propublica   1
## 16356                            reading   1
## 16357                             nike's   1
## 16358                            remover   1
## 16359                               burn   1
## 16360                            machine   1
## 16361                           programs   1
## 16362                             smiths   1
## 16363                            smith’s   1
## 16364                             adidas   1
## 16365                            anymore   1
## 16366                            browser   1
## 16367                              dunks   1
## 16368                                 og   1
## 16369                                run   1
## 16370                               calf   1
## 16371                              lifts   1
## 16372                            walking   1
## 16373                            feature   1
## 16374                               mugs   1
## 16375                                406   1
## 16376                           favorite   1
## 16377                            garbage   1
## 16378                              power   1
## 16379                            product   1
## 16380                               wars   1
## 16381                              white   1
## 16382                                  1   1
## 16383                                167   1
## 16384                                 48   1
## 16385                          effective   1
## 16386                             jersey   1
## 16387                                157   1
## 16388                               2118   1
## 16389                             acting   1
## 16390                                app   1
## 16391                             button   1
## 16392                            buttons   1
## 16393                           charging   1
## 16394                            chewing   1
## 16395                               date   1
## 16396                            falling   1
## 16397                             giving   1
## 16398                                ive   1
## 16399                            leaning   1
## 16400                            mocking   1
## 16401                              money   1
## 16402                               page   1
## 16403                            podcast   1
## 16404                          protroing   1
## 16405                           touching   1
## 16406                           tracking   1
## 16407                            walking   1
## 16408                                128   1
## 16409                             button   1
## 16410                            feeling   1
## 16411                             giving   1
## 16412                          happening   1
## 16413                           multiple   1
## 16414                                ntc   1
## 16415                          squeaking   1
## 16416                           training   1
## 16417                            yelling   1
## 16418                            awesome   1
## 16419                              count   1
## 16420                                due   1
## 16421                             adding   1
## 16422                            dancing   1
## 16423                            spewing   1
## 16424                            designs   1
## 16425                              piece   1
## 16426                               warm   1
## 16427                               1817   1
## 16428                             adidas   1
## 16429                               nmds   1
## 16430                               bike   1
## 16431                            feature   1
## 16432                            forever   1
## 16433                              happy   1
## 16434                           recorded   1
## 16435                             active   1
## 16436                              clean   1
## 16437                            cleaner   1
## 16438                              comfy   1
## 16439                                 ds   1
## 16440                            focused   1
## 16441                           positive   1
## 16442                               sane   1
## 16443                             strong   1
## 16444                              stuck   1
## 16445                               true   1
## 16446                          committed   1
## 16447                               free   1
## 16448                             active   1
## 16449                                tts   1
## 16450                                280   1
## 16451                              solid   1
## 16452                            started   1
## 16453                               1006   1
## 16454                                164   1
## 16455                                 51   1
## 16456                                  á   1
## 16457                                cap   1
## 16458                                hat   1
## 16459                              buena   1
## 16460                          backwards   1
## 16461                              count   1
## 16462                              curry   1
## 16463                              curry   1
## 16464                         abandoning   1
## 16465                             boring   1
## 16466                           calories   1
## 16467                              black   1
## 16468                               nash   1
## 16469                            griffin   1
## 16470                             brokie   1
## 16471                               post   1
## 16472                            weather   1
## 16473                              heavy   1
## 16474                               heel   1
## 16475                            pattern   1
## 16476                                 45   1
## 16477                            branded   1
## 16478                            outline   1
## 16479                               2026   1
## 16480                              4.175   1
## 16481                             adidas   1
## 16482                           buybacks   1
## 16483                          collapses   1
## 16484                              drops   1
## 16485                            insoles   1
## 16486                             market   1
## 16487                              peaks   1
## 16488                            plunges   1
## 16489                             prices   1
## 16490                            rallies   1
## 16491                            tumbles   1
## 16492                               2221   1
## 16493                               goat   1
## 16494                           notified   1
## 16495                                570   1
## 16496                                 4s   1
## 16497                               2079   1
## 16498                                 71   1
## 16499                                 72   1
## 16500                                 89   1
## 16501                                app   1
## 16502                          bothering   1
## 16503                             button   1
## 16504                           crashing   1
## 16505                               hard   1
## 16506                             hating   1
## 16507                               it’s   1
## 16508                         liberalism   1
## 16509                                run   1
## 16510                            running   1
## 16511                            talking   1
## 16512                           thinking   1
## 16513                           tracking   1
## 16514                     verbalizations   1
## 16515                              watch   1
## 16516                            wearing   1
## 16517                             buying   1
## 16518                            logging   1
## 16519                            running   1
## 16520                         supporting   1
## 16521                           tracking   1
## 16522                           training   1
## 16523                           updating   1
## 16524                            wearing   1
## 16525                              quick   1
## 16526                               1632   1
## 16527                              4.172   1
## 16528                                 75   1
## 16529                            anymore   1
## 16530                          associate   1
## 16531                             cheers   1
## 16532                           closures   1
## 16533                               damn   1
## 16534                               page   1
## 16535                           purchase   1
## 16536                         reopenings   1
## 16537                                 sf   1
## 16538                               data   1
## 16539                               2017   1
## 16540                             closed   1
## 16541                                fit   1
## 16542                            running   1
## 16543                              don’t   1
## 16544                            forward   1
## 16545                               heat   1
## 16546                             straps   1
## 16547                            balance   1
## 16548                               1246   1
## 16549                                160   1
## 16550                                342   1
## 16551                              helps   1
## 16552                             pivots   1
## 16553                           bringing   1
## 16554                            cutting   1
## 16555                                hub   1
## 16556                           missteps   1
## 16557                       reorganizing   1
## 16558                             retail   1
## 16559                            amazing   1
## 16560                          excellent   1
## 16561                             review   1
## 16562                               sync   1
## 16563                            upgrade   1
## 16564                                  2   1
## 16565                              start   1
## 16566                         experience   1
## 16567                          intuitive   1
## 16568                            edition   1
## 16569                             energy   1
## 16570                           punishes   1
## 16571                              label   1
## 16572                           advanced   1
## 16573                          endurance   1
## 16574                           exercise   1
## 16575                            journey   1
## 16576                               kg’s   1
## 16577                            workout   1
## 16578                           workouts   1
## 16579                          exercises   1
## 16580                             mental   1
## 16581                             relief   1
## 16582                              woven   1
## 16583                                334   1
## 16584                                i’m   1
## 16585                             nicely   1
## 16586                             fuerza   1
## 16587                           workouts   1
## 16588                      aesthetically   1
## 16589                             jersey   1
## 16590                             harder   1
## 16591                               1256   1
## 16592                              4.310   1
## 16593                             person   1
## 16594                            wearing   1
## 16595                               yall   1
## 16596                           grateful   1
## 16597                                i’m   1
## 16598                          recommend   1
## 16599                               4.56   1
## 16600                           guidance   1
## 16601                         motivation   1
## 16602                           aerobill   1
## 16603                              metal   1
## 16604                           programs   1
## 16605                           sessions   1
## 16606                             swoosh   1
## 16607                              4.245   1
## 16608                                  2   1
## 16609                                btw   1
## 16610                             finish   1
## 16611                            with'em   1
## 16612                                amp   1
## 16613                           athletes   1
## 16614                              loved   1
## 16615                               4.34   1
## 16616                            feature   1
## 16617                                 20   1
## 16618                                297   1
## 16619                                375   1
## 16620                                ben   1
## 16621                                 im   1
## 16622                                i’m   1
## 16623                              lasts   1
## 16624                             adidas   1
## 16625                                 ad   1
## 16626                                app   1
## 16627                             buying   1
## 16628                         convenient   1
## 16629                              plain   1
## 16630                               shit   1
## 16631                           material   1
## 16632                              black   1
## 16633                               gray   1
## 16634                                420   1
## 16635                               2303   1
## 16636                                845   1
## 16637                                air   1
## 16638                         athleisure   1
## 16639                                isn   1
## 16640                                i’m   1
## 16641                          mannequin   1
## 16642                              men's   1
## 16643                               nike   1
## 16644                             orange   1
## 16645                            perfect   1
## 16646                              shoes   1
## 16647                           training   1
## 16648                            wearing   1
## 16649                          similarly   1
## 16650                          abilities   1
## 16651                          breathing   1
## 16652                                i’m   1
## 16653                               meal   1
## 16654                          recommend   1
## 16655                              nivel   1
## 16656                           problema   1
## 16657                                912   1
## 16658                            glitchy   1
## 16659                              mario   1
## 16660                          dedicated   1
## 16661                               logo   1
## 16662                               i’ve   1
## 16663                               apps   1
## 16664                            billing   1
## 16665                          excelente   1
## 16666                               fast   1
## 16667                                fee   1
## 16668                               fees   1
## 16669                          graphical   1
## 16670                              kills   1
## 16671                            paywall   1
## 16672                           required   1
## 16673                                sai   1
## 16674                          saturated   1
## 16675                               i’ve   1
## 16676                             remove   1
## 16677                            updates   1
## 16678                        strengthens   1
## 16679                              brand   1
## 16680                             adidas   1
## 16681                            sneaker   1
## 16682                               walk   1
## 16683                                map   1
## 16684                             easily   1
## 16685                          dégoûtant   1
## 16686                               1792   1
## 16687                           nowadays   1
## 16688                                  4   1
## 16689                               mine   1
## 16690                               size   1
## 16691                               hype   1
## 16692                                map   1
## 16693                            stopped   1
## 16694                            appears   1
## 16695                              stops   1
## 16696                                 18   1
## 16697                               free   1
## 16698                              olive   1
## 16699                               pair   1
## 16700                               mmmm   1
## 16701                        improvement   1
## 16702                      automatically   1
## 16703                             filler   1
## 16704                                  1   1
## 16705                            zoomers   1
## 16706                              prior   1
## 16707                               days   1
## 16708                               shoe   1
## 16709                              socks   1
## 16710                                fat   1
## 16711                              white   1
## 16712                               1845   1
## 16713                                923   1
## 16714                              buena   1
## 16715                             hahaha   1
## 16716                               nike   1
## 16717                                 bs   1
## 16718                                859   1
## 16719                                app   1
## 16720                            awesome   1
## 16721                          beautiful   1
## 16722                              blast   1
## 16723                               boom   1
## 16724                               cool   1
## 16725                            excited   1
## 16726                        frustrating   1
## 16727                         functional   1
## 16728                                jug   1
## 16729                              light   1
## 16730                        lightweight   1
## 16731                               loud   1
## 16732                         motivating   1
## 16733                             narrow   1
## 16734                             pricey   1
## 16735                           reliable   1
## 16736                              rough   1
## 16737                              samba   1
## 16738                             simple   1
## 16739                               slow   1
## 16740                               soft   1
## 16741                            special   1
## 16742                             stoked   1
## 16743                         supportive   1
## 16744                               thin   1
## 16745                           trainers   1
## 16746                          underated   1
## 16747                         underrated   1
## 16748                              weird   1
## 16749                              ótimo   1
## 16750                            comfort   1
## 16751                             videos   1
## 16752                              foams   1
## 16753                           features   1
## 16754                               pack   1
## 16755                                588   1
## 16756                          iteration   1
## 16757                               line   1
## 16758                              prima   1
## 16759                             stride   1
## 16760                              trend   1
## 16761                                  5   1
## 16762                          clamshell   1
## 16763                              shoes   1
## 16764                                xlg   1
## 16765                             campus   1
## 16766                               rule   1
## 16767                                 es   1
## 16768                    recommendations   1
## 16769                           activity   1
## 16770                             amazon   1
## 16771                         constantly   1
## 16772                            doesn’t   1
## 16773                                i’m   1
## 16774                               link   1
## 16775                               lots   1
## 16776                               page   1
## 16777                         phenomenal   1
## 16778                            section   1
## 16779                               team   1
## 16780                              ultra   1
## 16781                            there’s   1
## 16782                             adidas   1
## 16783                             cancer   1
## 16784                          community   1
## 16785                               snug   1
## 16786                              apple   1
## 16787                               1935   1
## 16788                             collab   1
## 16789                               4.23   1
## 16790                                954   1
## 16791                                  4   1
## 16792                                191   1
## 16793                               wall   1
## 16794                             direct   1
## 16795                                 30   1
## 16796                            reuters   1
## 16797                                 q1   1
## 16798                             robert   1
## 16799                           surprise   1
## 16800                              aaron   1
## 16801                        comfortable   1
## 16802                          effective   1
## 16803                              wheel   1
## 16804                              wheel   1
## 16805                               mode   1
## 16806                              teams   1
## 16807                               read   1
## 16808                               meet   1
## 16809                              pairs   1
## 16810                             forces   1
## 16811                         constantly   1
## 16812                               it’s   1
## 16813                               shop   1
## 16814                               1871   1
## 16815                               1872   1
## 16816                             spring   1
## 16817                           insanely   1
## 16818                               feet   1
## 16819                               1013   1
## 16820                               1445   1
## 16821                              happy   1
## 16822                               time   1
## 16823                       swiftfox1301   1
## 16824                                  2   1
## 16825                          exercises   1
## 16826                            payment   1
## 16827                             sports   1
## 16828                      manufacturers   1
## 16829                               1479   1
## 16830                               1795   1
## 16831                              black   1
## 16832                                cap   1
## 16833                               logo   1
## 16834                               sold   1
## 16835                                490   1
## 16836                            include   1
## 16837                         activities   1
## 16838                            anymore   1
## 16839                               nope   1
## 16840                           properly   1
## 16841                              steps   1
## 16842                              smart   1
## 16843                               it’s   1
## 16844                      automatically   1
## 16845                           properly   1
## 16846                           material   1
## 16847                         basketball   1
## 16848                                 13   1
## 16849                                 de   1
## 16850                             querem   1
## 16851                                los   1
## 16852                         aplicación   1
## 16853                              todas   1
## 16854                          dedicated   1
## 16855                              video   1
## 16856                            missing   1
## 16857                           wouldn’t   1
## 16858                            clothes   1
## 16859                                bit   1
## 16860                              4.317   1
## 16861                                 10   1
## 16862                                  2   1
## 16863                                  6   1
## 16864                             awhile   1
## 16865                                ren   1
## 16866                            there’s   1
## 16867                               2408   1
## 16868                           sneakers   1
## 16869                               guys   1
## 16870                                i’d   1
## 16871                               size   1
## 16872                             friend   1
## 16873                                así   1
## 16874                           aquatone   1
## 16875                         operations   1
## 16876                            bottoms   1
## 16877                           nicholas   1
## 16878                            nicolas   1
## 16879                                100   1
## 16880                              goals   1
## 16881                               body   1
## 16882                           programs   1
## 16883                           workouts   1
## 16884                            revenue   1
## 16885                                55m   1
## 16886                          financial   1
## 16887                                lol   1
## 16888                               easy   1
## 16889                               1062   1
## 16890                               1982   1
## 16891                                lol   1
## 16892                            elegant   1
## 16893                          valuation   1
## 16894                               1214   1
## 16895                                 20   1
## 16896                                296   1
## 16897                                398   1
## 16898                               1870   1
## 16899                               1876   1
## 16900                              ayuda   1
## 16901                            finally   1
## 16902                               alex   1
## 16903                              4.355   1
## 16904                                  2   1
## 16905                                457   1
## 16906                             adidas   1
## 16907                           customer   1
## 16908                             didn’t   1
## 16909                              drive   1
## 16910                            jamaica   1
## 16911                                 kd   1
## 16912                               nike   1
## 16913                              shirt   1
## 16914                               shoe   1
## 16915                              usa's   1
## 16916                                win   1
## 16917                           identity   1
## 16918                              video   1
## 16919                     justfreshkicks   1
## 16920                             losing   1
## 16921                             modaes   1
## 16922                              extra   1
## 16923                      revolutionary   1
## 16924                             adidas   1
## 16925                         challenged   1
## 16926                              feels   1
## 16927                               leap   1
## 16928                               note   1
## 16929                              savvy   1
## 16930                           sneakers   1
## 16931                               time   1
## 16932                       advancements   1
## 16933                            details   1
## 16934                             unisex   1
## 16935                               4.25   1
## 16936                             kicked   1
## 16937                             shirts   1
## 16938                              store   1
## 16939                               it’s   1
## 16940                          employees   1
## 16941                              desde   1
## 16942                            records   1
## 16943                           interval   1
## 16944                                run   1
## 16945                           sessions   1
## 16946                           training   1
## 16947                            edition   1
## 16948                              fifty   1
## 16949                              miles   1
## 16950                             minute   1
## 16951                            minutes   1
## 16952                           thousand   1
## 16953                          problemas   1
## 16954                          interesse   1
## 16955                    dressdresswomen   1
## 16956                                hat   1
## 16957                            reuters   1
## 16958                    skirtskirtwomen   1
## 16959                              kanye   1
## 16960                                 um   1
## 16961                             correr   1
## 16962                               2058   1
## 16963                           customer   1
## 16964                              goals   1
## 16965                            success   1
## 16966                            decline   1
## 16967                                 el   1
## 16968                                 la   1
## 16969                           borrando   1
## 16970                             arktos   1
## 16971                             colors   1
## 16972                            running   1
## 16973                               type   1
## 16974                                481   1
## 16975                              ankle   1
## 16976                                app   1
## 16977                         basketball   1
## 16978                             combos   1
## 16979                           decision   1
## 16980                              fakes   1
## 16981                               font   1
## 16982                                 im   1
## 16983                               move   1
## 16984                             update   1
## 16985                            updates   1
## 16986                               told   1
## 16987                           thinking   1
## 16988                               crew   1
## 16989                             coming   1
## 16990                       consistently   1
## 16991                          yesterday   1
## 16992                                 87   1
## 16993                               dose   1
## 16994                            website   1
## 16995                              model   1
## 16996                           sneakers   1
## 16997                           longhorn   1
## 16998                         volleyball   1
## 16999                              she’s   1
## 17000                             bumped   1
## 17001                            entries   1
## 17002                             sizing   1
## 17003                              upper   1
## 17004                             pushed   1
## 17005                               trip   1
## 17006                               it’s   1
## 17007                               nike   1
## 17008                         completely   1
## 17009                            missing   1
## 17010                               nike   1
## 17011                        sponsorship   1
## 17012                             strava   1
## 17013                              exact   1
## 17014                             adidas   1
## 17015                                app   1
## 17016                              4.132   1
## 17017                            endless   1
## 17018                               lots   1
## 17019                             plenty   1
## 17020                              times   1
## 17021                           workouts   1
## 17022                              shoes   1
## 17023                           charging   1
## 17024                            perfect   1
## 17025                              fixed   1
## 17026                          forgotten   1
## 17027                               lost   1
## 17028                               feet   1
## 17029                               gold   1
## 17030                               sole   1
## 17031                            tongues   1
## 17032                               foot   1
## 17033                             insole   1
## 17034                             warmer   1
## 17035                               foam   1
## 17036                               foot   1
## 17037                              socks   1
## 17038                                262   1
## 17039                               4.22   1
## 17040                            nobulls   1
## 17041                                ppl   1
## 17042                               1476   1
## 17043                               1429   1
## 17044                                151   1
## 17045                               1522   1
## 17046                               1541   1
## 17047                               1903   1
## 17048                               2110   1
## 17049                                460   1
## 17050                                582   1
## 17051                                758   1
## 17052                                892   1
## 17053                         burlington   1
## 17054                                hes   1
## 17055                                lol   1
## 17056                                 op   1
## 17057                                  3   1
## 17058                               1413   1
## 17059                              miles   1
## 17060                              count   1
## 17061                                lol   1
## 17062                             stores   1
## 17063                               bike   1
## 17064                                fun   1
## 17065                             people   1
## 17066                            supreme   1
## 17067                         silhouette   1
## 17068                             styles   1
## 17069                            vintage   1
## 17070                               2078   1
## 17071                               club   1
## 17072                              coord   1
## 17073                            cookies   1
## 17074                            fashion   1
## 17075                           remember   1
## 17076                               1489   1
## 17077                            morning   1
## 17078                                top   1
## 17079                          posterior   1
## 17080                               past   1
## 17081                                box   1
## 17082                             pretty   1
## 17083                         excelentes   1
## 17084                              4.219   1
## 17085                                500   1
## 17086                              elite   1
## 17087                                i.e   1
## 17088                               1003   1
## 17089                              4.154   1
## 17090                              4.343   1
## 17091                               4.97   1
## 17092                          community   1
## 17093                               nike   1
## 17094                                 x3   1
## 17095                              makes   1
## 17096                                tok   1
## 17097                                 16   1
## 17098                               1051   1
## 17099                               1302   1
## 17100                               1386   1
## 17101                                145   1
## 17102                               1596   1
## 17103                                178   1
## 17104                                  2   1
## 17105                               2163   1
## 17106                                252   1
## 17107                                275   1
## 17108                                283   1
## 17109                                288   1
## 17110                                294   1
## 17111                              4.135   1
## 17112                              4.210   1
## 17113                              4.212   1
## 17114                              4.285   1
## 17115                                509   1
## 17116                              5mins   1
## 17117                           accuracy   1
## 17118                       additionally   1
## 17119                                ago   1
## 17120                               alot   1
## 17121                                app   1
## 17122                          beautiful   1
## 17123                          breathing   1
## 17124                           catching   1
## 17125                            classic   1
## 17126                                dan   1
## 17127                               ebay   1
## 17128                             energy   1
## 17129                              fails   1
## 17130                           favorite   1
## 17131                              girls   1
## 17132                                gps   1
## 17133                             greate   1
## 17134                           horrible   1
## 17135                        information   1
## 17136                          intervals   1
## 17137                               i’ve   1
## 17138                             listed   1
## 17139                               love   1
## 17140                             messes   1
## 17141                              miles   1
## 17142                             missed   1
## 17143                       motivational   1
## 17144                             owning   1
## 17145                        problematic   1
## 17146                           purchase   1
## 17147                             quirky   1
## 17148                                ran   1
## 17149                           randomly   1
## 17150                          searching   1
## 17151                            sneaker   1
## 17152                           specific   1
## 17153                           swapping   1
## 17154                              table   1
## 17155                              total   1
## 17156                         troll_life   1
## 17157                             wasted   1
## 17158                            wearing   1
## 17159                             what’s   1
## 17160                              won’t   1
## 17161                              youre   1
## 17162                               nike   1
## 17163                              can’t   1
## 17164                           function   1
## 17165                                set   1
## 17166                               1162   1
## 17167                               1289   1
## 17168                                  2   1
## 17169                               2041   1
## 17170                                  5   1
## 17171                                  6   1
## 17172                            awesome   1
## 17173                           december   1
## 17174                          depending   1
## 17175                              enjoy   1
## 17176                               it’s   1
## 17177                                i’m   1
## 17178                              total   1
## 17179                              worst   1
## 17180                              video   1
## 17181                              beeps   1
## 17182                              issue   1
## 17183                           hatfield   1
## 17184                              fonts   1
## 17185                           fraction   1
## 17186                             iphone   1
## 17187                            picture   1
## 17188                               tech   1
## 17189                           45yj9vh7   1
## 17190                               1608   1
## 17191                              4.184   1
## 17192                               love   1
## 17193                               para   1
## 17194                              cover   1
## 17195                               boss   1
## 17196                             breaks   1
## 17197                               love   1
## 17198                                max   1
## 17199                                fit   1
## 17200                                bro   1
## 17201                         disposable   1
## 17202                               walk   1
## 17203                              ankle   1
## 17204                              sizes   1
## 17205                              style   1
## 17206                              dress   1
## 17207                                 en   1
## 17208                                 1s   1
## 17209                                cap   1
## 17210                          completes   1
## 17211                            doesn’t   1
## 17212                            knuckle   1
## 17213                            overlay   1
## 17214                                pro   1
## 17215                             reebok   1
## 17216                              shape   1
## 17217                             spring   1
## 17218                               4.93   1
## 17219                               4.47   1
## 17220                                854   1
## 17221                         completely   1
## 17222                          delivered   1
## 17223                               hurt   1
## 17224                              paper   1
## 17225                              queue   1
## 17226                              pants   1
## 17227                               damn   1
## 17228                           consumer   1
## 17229                             cruise   1
## 17230                               1491   1
## 17231                               love   1
## 17232                                 se   1
## 17233                              grays   1
## 17234                         tonegoldq4   1
## 17235                         multicolor   1
## 17236                            upwards   1
## 17237                               6.12   1
## 17238                                191   1
## 17239                           constant   1
## 17240                               it’s   1
## 17241                                ntc   1
## 17242                              brush   1
## 17243                               lots   1
## 17244                                 10   1
## 17245                               2066   1
## 17246                                  3   1
## 17247                                  4   1
## 17248                             adidas   1
## 17249                                air   1
## 17250                              asics   1
## 17251                             bottom   1
## 17252                              brand   1
## 17253                             brands   1
## 17254                           bringing   1
## 17255                               fave   1
## 17256                             melhor   1
## 17257                               pair   1
## 17258                              pairs   1
## 17259                               pick   1
## 17260                            quality   1
## 17261                                sbs   1
## 17262                                tip   1
## 17263                           trainers   1
## 17264                            amazing   1
## 17265                                 um   1
## 17266                                mid   1
## 17267                               1892   1
## 17268                      elvistorresjr   1
## 17269                               200k   1
## 17270                                 90   1
## 17271                            average   1
## 17272                           bullshit   1
## 17273                            charges   1
## 17274                           comments   1
## 17275                               fail   1
## 17276                               joke   1
## 17277                             kidney   1
## 17278                           knockout   1
## 17279                               pain   1
## 17280                            revenue   1
## 17281                              stats   1
## 17282                                  9   1
## 17283                               fair   1
## 17284                               feel   1
## 17285                               free   1
## 17286                             fugazi   1
## 17287                              loved   1
## 17288                               pick   1
## 17289                          recommend   1
## 17290                       unacceptable   1
## 17291                              worth   1
## 17292                                60l   1
## 17293                     giftedbyadidas   1
## 17294                                  4   1
## 17295                                435   1
## 17296                          comparing   1
## 17297                             killer   1
## 17298                             campus   1
## 17299                                109   1
## 17300                             adidas   1
## 17301                        switzerland   1
## 17302                                 10   1
## 17303                                147   1
## 17304                           accurate   1
## 17305                                amp   1
## 17306                           annoying   1
## 17307                             biking   1
## 17308                              buddy   1
## 17309                              coach   1
## 17310                             cycled   1
## 17311                          horseback   1
## 17312                       improvements   1
## 17313             jacketjacketmenfinally   1
## 17314              jacketjacketwomengood   1
## 17315                             length   1
## 17316                             marker   1
## 17317                            mileage   1
## 17318                             mowing   1
## 17319                           multiple   1
## 17320                               nice   1
## 17321                    pantspantswomen   1
## 17322                             praise   1
## 17323                            process   1
## 17324                           progress   1
## 17325                            running   1
## 17326                             update   1
## 17327                              walks   1
## 17328                            workout   1
## 17329                           workouts   1
## 17330                              added   1
## 17331                                due   1
## 17332                               easy   1
## 17333                             plenty   1
## 17334                           reliable   1
## 17335                          selection   1
## 17336                            ability   1
## 17337                               apps   1
## 17338                       capabilities   1
## 17339                               easy   1
## 17340                           exercise   1
## 17341                            feature   1
## 17342                               goal   1
## 17343                              helps   1
## 17344                           hundreds   1
## 17345                               love   1
## 17346                              makes   1
## 17347                          mechanism   1
## 17348                              miles   1
## 17349                              phone   1
## 17350                            running   1
## 17351                               runs   1
## 17352                           sessions   1
## 17353                             starts   1
## 17354                               tool   1
## 17355                          treadmill   1
## 17356                            walking   1
## 17357                             widget   1
## 17358                              wrong   1
## 17359                           distance   1
## 17360                             listen   1
## 17361                           location   1
## 17362                            mileage   1
## 17363                              moles   1
## 17364                             routes   1
## 17365                               time   1
## 17366                            wearing   1
## 17367                             design   1
## 17368                          violation   1
## 17369                           solution   1
## 17370                             bomber   1
## 17371                            chinese   1
## 17372                      lord_ashdrake   1
## 17373                                  5   1
## 17374                            awesome   1
## 17375                                 ii   1
## 17376                               lost   1
## 17377                            luckily   1
## 17378                            pegasus   1
## 17379                               runs   1
## 17380                               sand   1
## 17381                               shoe   1
## 17382                              shoes   1
## 17383                                app   1
## 17384                               love   1
## 17385                                302   1
## 17386                               hard   1
## 17387                             harder   1
## 17388                          problemas   1
## 17389                           stronger   1
## 17390                            walking   1
## 17391                           warriors   1
## 17392                                339   1
## 17393                               alex   1
## 17394                                bio   1
## 17395                               head   1
## 17396                            leading   1
## 17397                              talks   1
## 17398                           wouldn’t   1
## 17399                              4.124   1
## 17400                                549   1
## 17401                                769   1
## 17402                            amazing   1
## 17403                       breakthrough   1
## 17404                           chitchat   1
## 17405                               feel   1
## 17406                           fernando   1
## 17407                               it’s   1
## 17408                             proper   1
## 17409                            provide   1
## 17410                         whiteboard   1
## 17411                              worse   1
## 17412                                219   1
## 17413                                363   1
## 17414                                 44   1
## 17415                                aid   1
## 17416                            amazing   1
## 17417                            awesome   1
## 17418                              check   1
## 17419                            courses   1
## 17420                              daily   1
## 17421                               data   1
## 17422                       discontinued   1
## 17423                               easy   1
## 17424                               gear   1
## 17425                              goals   1
## 17426                            history   1
## 17427                                hit   1
## 17428                            hitting   1
## 17429                             hoping   1
## 17430                                idk   1
## 17431                           involves   1
## 17432                                i’m   1
## 17433                               i’ve   1
## 17434                               love   1
## 17435                               nike   1
## 17436                          regiments   1
## 17437                             review   1
## 17438                         revolution   1
## 17439                            session   1
## 17440                           starting   1
## 17441                             styles   1
## 17442                               time   1
## 17443                               tips   1
## 17444                              video   1
## 17445                              watch   1
## 17446                              title   1
## 17447                             effect   1
## 17448                                thx   1
## 17449                                 ua   1
## 17450                               hugs   1
## 17451                              house   1
## 17452                      predictstreet   1
## 17453                               1290   1
## 17454                                169   1
## 17455                                app   1
## 17456                                lol   1
## 17457                              throw   1
## 17458                               zoom   1
## 17459                             varias   1
## 17460                               shoe   1
## 17461                                263   1
## 17462                               nike   1
## 17463                           distance   1
## 17464                                run   1
## 17465                           saturday   1
## 17466                       subscription   1
## 17467                            walking   1
## 17468                          whoever's   1
## 17469                            italics   1
## 17470                             riding   1
## 17471                                442   1
## 17472                             rivers   1
## 17473                               logo   1
## 17474                                134   1
## 17475                             period   1
## 17476                            running   1
## 17477                              shout   1
## 17478                                i’d   1
## 17479                             review   1
## 17480                        performance   1
## 17481                                map   1
## 17482                                  6   1
## 17483                             regine   1
## 17484                               2156   1
## 17485                               2167   1
## 17486                              4.189   1
## 17487                               bcus   1
## 17488                            checked   1
## 17489                             whites   1
## 17490                               2248   1
## 17491                                504   1
## 17492                                  2   1
## 17493                              shoot   1
## 17494                                352   1
## 17495                             broski   1
## 17496                         competitor   1
## 17497                                cuz   1
## 17498                               ipad   1
## 17499                                lol   1
## 17500                                 op   1
## 17501                              color   1
## 17502                              vibes   1
## 17503                               pics   1
## 17504                              stock   1
## 17505                             adidas   1
## 17506                                app   1
## 17507                           honestly   1
## 17508                            vintage   1
## 17509                               scam   1
## 17510                              bonne   1
## 17511                                529   1
## 17512                                 bc   1
## 17513                              hurts   1
## 17514                             rutina   1
## 17515                              music   1
## 17516                               doom   1
## 17517                               1745   1
## 17518                                938   1
## 17519                                 30   1
## 17520                                  2   1
## 17521                             adidas   1
## 17522                               line   1
## 17523                               shoe   1
## 17524                               plan   1
## 17525                                825   1
## 17526                          caminatas   1
## 17527                                 su   1
## 17528                             amazon   1
## 17529                                app   1
## 17530                            futnatv   1
## 17531                            version   1
## 17532                               1034   1
## 17533                               1902   1
## 17534                                 ªd   1
## 17535                               1545   1
## 17536                               2418   1
## 17537                              boxer   1
## 17538                                 rs   1
## 17539                             weight   1
## 17540                            chafing   1
## 17541                               dumb   1
## 17542                               size   1
## 17543                            commute   1
## 17544                             cringe   1
## 17545                               cxt1   1
## 17546                         d’androïde   1
## 17547                         operations   1
## 17548                                  1   1
## 17549                                 10   1
## 17550                                 11   1
## 17551                                 12   1
## 17552                                 13   1
## 17553                                 14   1
## 17554                                 15   1
## 17555                                 16   1
## 17556                                 17   1
## 17557                                 18   1
## 17558                                 19   1
## 17559                                  2   1
## 17560                                 20   1
## 17561                                 21   1
## 17562                                 22   1
## 17563                                 23   1
## 17564                                 24   1
## 17565                                 25   1
## 17566                                 26   1
## 17567                                 27   1
## 17568                                 28   1
## 17569                                 29   1
## 17570                                  3   1
## 17571                                 30   1
## 17572                                 31   1
## 17573                                 32   1
## 17574                                 33   1
## 17575                                 34   1
## 17576                                 35   1
## 17577                                 36   1
## 17578                                 37   1
## 17579                                 38   1
## 17580                                 39   1
## 17581                                  4   1
## 17582                                  5   1
## 17583                                  6   1
## 17584                                  7   1
## 17585                                  8   1
## 17586                                  9   1
## 17587                             charts   1
## 17588                             commit   1
## 17589                               eqlz   1
## 17590                          exclusive   1
## 17591                             giving   1
## 17592                           leggings   1
## 17593                              likes   1
## 17594                               mary   1
## 17595                               pair   1
## 17596                            project   1
## 17597                       relationship   1
## 17598                           released   1
## 17599                            rewards   1
## 17600                                run   1
## 17601                             shirts   1
## 17602                              shoes   1
## 17603                          sponsored   1
## 17604                             sports   1
## 17605                         sportsmask   1
## 17606                              store   1
## 17607                            website   1
## 17608                           heatgear   1
## 17609                               1926   1
## 17610                                  5   1
## 17611                        sponsorship   1
## 17612                                227   1
## 17613                              4.208   1
## 17614                              4.298   1
## 17615                                ass   1
## 17616                               i’ve   1
## 17617                               shoe   1
## 17618                                131   1
## 17619                              isn’t   1
## 17620                            request   1
## 17621                             update   1
## 17622                                 ux   1
## 17623                           absolute   1
## 17624                            culture   1
## 17625                              price   1
## 17626                               uk20   1
## 17627                            flights   1
## 17628                            flyknit   1
## 17629                              highs   1
## 17630                              turbo   1
## 17631                                 5x   1
## 17632                            chinese   1
## 17633                              color   1
## 17634                               line   1
## 17635                              match   1
## 17636                                446   1
## 17637                         aplicativo   1
## 17638                              ponto   1
## 17639                            produto   1
## 17640                           brothers   1
## 17641                     aleatoriamente   1
## 17642                               guía   1
## 17643                                muy   1
## 17644                              nueva   1
## 17645                               pena   1
## 17646                               save   1
## 17647                           positive   1
## 17648                                app   1
## 17649                             campus   1
## 17650                             vistas   1
## 17651                               walk   1
## 17652                           uptempos   1
## 17653                             dennis   1
## 17654                               1118   1
## 17655                                902   1
## 17656                          mantality   1
## 17657                         personally   1
## 17658                                 95   1
## 17659                            website   1
## 17660                            hooping   1
## 17661                              vasco   1
## 17662                               pair   1
## 17663                               shoe   1
## 17664                            sneaker   1
## 17665                            chinese   1
## 17666                            english   1
## 17667                          inflation   1
## 17668                       instructions   1
## 17669                            keeping   1
## 17670                                lol   1
## 17671                                406   1
## 17672                               runs   1
## 17673                            women's   1
## 17674                               mine   1
## 17675                              drops   1
## 17676                             nation   1
## 17677                            results   1
## 17678                               1534   1
## 17679                            there’s   1
## 17680                              wrong   1
## 17681                               hard   1
## 17682                                 j4   1
## 17683                             eleven   1
## 17684                               lame   1
## 17685                           stranger   1
## 17686                               sick   1
## 17687                             colors   1
## 17688                             design   1
## 17689                              email   1
## 17690                               nike   1
## 17691                        opportunity   1
## 17692                               aren   1
## 17693                           releases   1
## 17694                             sizing   1
## 17695                              4.243   1
## 17696                            premium   1
## 17697                               love   1
## 17698                               para   1
## 17699                              meses   1
## 17700                             button   1
## 17701                            feature   1
## 17702                           siblings   1
## 17703                                app   1
## 17704                           compared   1
## 17705                              agree   1
## 17706                      imperfections   1
## 17707                              yeezy   1
## 17708                            layoffs   1
## 17709                             you’re   1
## 17710                             adidas   1
## 17711                            flyease   1
## 17712                                win   1
## 17713                            world's   1
## 17714                             emails   1
## 17715                             betrue   1
## 17716                               2406   1
## 17717                               fall   1
## 17718                                fun   1
## 17719                              white   1
## 17720                                116   1
## 17721                                209   1
## 17722                                305   1
## 17723                                  6   1
## 17724                                  8   1
## 17725                                ads   1
## 17726                                app   1
## 17727                             caused   1
## 17728                            changed   1
## 17729                             choice   1
## 17730                            deleted   1
## 17731                             erased   1
## 17732                             failed   1
## 17733                               feed   1
## 17734                               hate   1
## 17735                               hits   1
## 17736                             hoping   1
## 17737                           horrible   1
## 17738                               it’s   1
## 17739                                i’m   1
## 17740                             killed   1
## 17741                               lost   1
## 17742                               love   1
## 17743                            mileage   1
## 17744                            profile   1
## 17745                           reliably   1
## 17746                            removed   1
## 17747                           requires   1
## 17748                            there’s   1
## 17749                             update   1
## 17750                            updated   1
## 17751                               wont   1
## 17752                                i’m   1
## 17753                         redesigned   1
## 17754                          regularly   1
## 17755                             review   1
## 17756                               2024   1
## 17757                           constant   1
## 17758                             fy2026   1
## 17759                               it’s   1
## 17760                          requested   1
## 17761                        temperature   1
## 17762                          challenge   1
## 17763                         challenges   1
## 17764                          distances   1
## 17765                              reign   1
## 17766                             photos   1
## 17767                             slower   1
## 17768                             photos   1
## 17769                               dont   1
## 17770                               1779   1
## 17771                               grip   1
## 17772                              grips   1
## 17773                           material   1
## 17774                            options   1
## 17775                           inspired   1
## 17776                               1357   1
## 17777                                340   1
## 17778                               cool   1
## 17779                                lol   1
## 17780                                app   1
## 17781                                 95   1
## 17782                                low   1
## 17783                                max   1
## 17784                             slides   1
## 17785                                  ý   1
## 17786                               2131   1
## 17787                                288   1
## 17788                              bring   1
## 17789                            pippens   1
## 17790                           downtown   1
## 17791                               1640   1
## 17792                           exercise   1
## 17793                              goofy   1
## 17794                              mouth   1
## 17795                                set   1
## 17796                              socks   1
## 17797                            culture   1
## 17798                       environments   1
## 17799                               2026   1
## 17800                              games   1
## 17801                               nike   1
## 17802                               esta   1
## 17803                               love   1
## 17804                              desde   1
## 17805                                 rn   1
## 17806                          interface   1
## 17807                                pls   1
## 17808                                  3   1
## 17809                                app   1
## 17810                             decent   1
## 17811                         downloaded   1
## 17812                        immediately   1
## 17813                             junked   1
## 17814                           mapmyrun   1
## 17815                       subscription   1
## 17816                               1150   1
## 17817                                  2   1
## 17818                              can’t   1
## 17819                          customize   1
## 17820                               ease   1
## 17821                        experiences   1
## 17822                               guys   1
## 17823                         interfaces   1
## 17824                                luv   1
## 17825                            selects   1
## 17826                           workouts   1
## 17827                               2002   1
## 17828                           directly   1
## 17829                            engaged   1
## 17830                            jerseys   1
## 17831                              todos   1
## 17832                               2023   1
## 17833                            messing   1
## 17834                            outfits   1
## 17835                                pre   1
## 17836                            pushing   1
## 17837                               size   1
## 17838                             sports   1
## 17839                                amp   1
## 17840                                 la   1
## 17841                      subscriptions   1
## 17842                         impossible   1
## 17843                               team   1
## 17844                kullanıyorum.nedeni   1
## 17845                           otoöatik   1
## 17846                                esl   1
## 17847                               mais   1
## 17848                           marathon   1
## 17849                               fine   1
## 17850                               love   1
## 17851                               sans   1
## 17852                               data   1
## 17853                            feature   1
## 17854                          allowance   1
## 17855                               4.73   1
## 17856                          caldrones   1
## 17857                               i’ve   1
## 17858                              range   1
## 17859                                sk8   1
## 17860                                 2s   1
## 17861                               pink   1
## 17862                           gigantic   1
## 17863                              veces   1
## 17864                           workouts   1
## 17865                           athletic   1
## 17866                              can’t   1
## 17867                               cool   1
## 17868                              maize   1
## 17869                            fanbase   1
## 17870                              shirt   1
## 17871                            library   1
## 17872                            options   1
## 17873                         duraklatma   1
## 17874                             fucked   1
## 17875                              loved   1
## 17876                             picked   1
## 17877                          purchased   1
## 17878                               read   1
## 17879                                 en   1
## 17880                                  4   1
## 17881                              suede   1
## 17882                        assinaturas   1
## 17883                              means   1
## 17884                                las   1
## 17885                                los   1
## 17886                                mis   1
## 17887                           workouts   1
## 17888                               loud   1
## 17889                                 en   1
## 17890                                717   1
## 17891                                692   1
## 17892                               1767   1
## 17893                              beach   1
## 17894                             choice   1
## 17895                               shoe   1
## 17896                               2039   1
## 17897                                 13   1
## 17898                               13.1   1
## 17899                                160   1
## 17900                                 1s   1
## 17901                                  2   1
## 17902                              4.174   1
## 17903                                  7   1
## 17904                            changed   1
## 17905                            doesn’t   1
## 17906                            forever   1
## 17907                          installed   1
## 17908                                i’d   1
## 17909                           terrible   1
## 17910                             update   1
## 17911                               1085   1
## 17912                              4.126   1
## 17913                           creating   1
## 17914                             that’s   1
## 17915                           mapmyrun   1
## 17916                            springy   1
## 17917                       disappointed   1
## 17918                                528   1
## 17919                              hands   1
## 17920                             vision   1
## 17921                               1094   1
## 17922                               i’ve   1
## 17923                               2087   1
## 17924                                lol   1
## 17925                         colourways   1
## 17926                              versa   1
## 17927                                dog   1
## 17928                                pit   1
## 17929                            instant   1
## 17930                               mate   1
## 17931                              4.120   1
## 17932                               4.78   1
## 17933                                  5   1
## 17934                                 ad   1
## 17935                              based   1
## 17936                              buddy   1
## 17937                              class   1
## 17938                           couldn’t   1
## 17939                            doesn’t   1
## 17940                                fit   1
## 17941                             guides   1
## 17942                                i’m   1
## 17943                               jake   1
## 17944                          literally   1
## 17945                               mate   1
## 17946                            quality   1
## 17947                       specifically   1
## 17948                             trails   1
## 17949                           training   1
## 17950                             window   1
## 17951                               4.77   1
## 17952                                bro   1
## 17953                          excellent   1
## 17954                          extremely   1
## 17955                               pics   1
## 17956                          replacing   1
## 17957                            variety   1
## 17958                               yoga   1
## 17959                      automatically   1
## 17960                                san   1
## 17961                            factory   1
## 17962                           detailed   1
## 17963                            doesn’t   1
## 17964                             finder   1
## 17965                             option   1
## 17966                                  5   1
## 17967                               nike   1
## 17968                           workouts   1
## 17969                              curry   1
## 17970                             adidas   1
## 17971                                air   1
## 17972                             jacket   1
## 17973                              jncos   1
## 17974                               nike   1
## 17975                              panda   1
## 17976                          baltimore   1
## 17977                          judicious   1
## 17978                            através   1
## 17979                           adoption   1
## 17980                              fedex   1
## 17981                               lost   1
## 17982                              saved   1
## 17983                             trends   1
## 17984                              wdywt   1
## 17985                              model   1
## 17986                             scroll   1
## 17987                          preciosas   1
## 17988                          appealing   1
## 17989                           altitude   1
## 17990                               1303   1
## 17991                               1306   1
## 17992                           barefoot   1
## 17993                              motus   1
## 17994                              shoes   1
## 17995                              court   1
## 17996                            ciutacu   1
## 17997                          exclusive   1
## 17998                               pair   1
## 17999                              ganha   1
## 18000                               memo   1
## 18001                      notifications   1
## 18002                            overlay   1
## 18003                            reports   1
## 18004                              split   1
## 18005                             starts   1
## 18006                         technology   1
## 18007                                 bg   1
## 18008                              guide   1
## 18009                    texasvolleyball   1
## 18010                                 99   1
## 18011                           controls   1
## 18012                          territory   1
## 18013                                  5   1
## 18014                          platforms   1
## 18015                               2005   1
## 18016                                lol   1
## 18017                                 md   1
## 18018                               slim   1
## 18019                               1126   1
## 18020                               2123   1
## 18021                              4.138   1
## 18022                               damn   1
## 18023                          fantastic   1
## 18024                        potentially   1
## 18025                                  6   1
## 18026                             months   1
## 18027                              kicks   1
## 18028                              samba   1
## 18029                                 10   1
## 18030                                  4   1
## 18031                               easy   1
## 18032                              hikes   1
## 18033                              light   1
## 18034                           mapmyrun   1
## 18035                              puppy   1
## 18036                              route   1
## 18037                                sjc   1
## 18038                              solid   1
## 18039                             tracks   1
## 18040                                1.5   1
## 18041                          beautiful   1
## 18042                              miles   1
## 18043                              alpha   1
## 18044                               1709   1
## 18045                                 31   1
## 18046                                  5   1
## 18047                         activities   1
## 18048                             adidas   1
## 18049                              adios   1
## 18050                                app   1
## 18051                           campaign   1
## 18052                            cycling   1
## 18053                         definition   1
## 18054                       disappointed   1
## 18055                              don’t   1
## 18056                          excellent   1
## 18057                               nike   1
## 18058                             ratios   1
## 18059                               time   1
## 18060                          treadmill   1
## 18061                                  á   1
## 18062                         accurately   1
## 18063                                add   1
## 18064                                gr8   1
## 18065                              hikes   1
## 18066                               lost   1
## 18067                               love   1
## 18068                            running   1
## 18069                             yippee   1
## 18070                                 43   1
## 18071                           nowadays   1
## 18072                             prices   1
## 18073                              shoes   1
## 18074                              check   1
## 18075                                cop   1
## 18076                               hear   1
## 18077                              share   1
## 18078                             update   1
## 18079                         superblast   1
## 18080                              water   1
## 18081                            chicago   1
## 18082                              china   1
## 18083                           material   1
## 18084                                224   1
## 18085                             collab   1
## 18086                          elidgable   1
## 18087                             aswell   1
## 18088                             fleece   1
## 18089                           hundreds   1
## 18090                                748   1
## 18091                               1265   1
## 18092                       disappointed   1
## 18093                                gps   1
## 18094                            helpful   1
## 18095                             overly   1
## 18096                            running   1
## 18097                           terrible   1
## 18098                           tracking   1
## 18099                                461   1
## 18100                              money   1
## 18101                               time   1
## 18102                               time   1
## 18103                                 11   1
## 18104                                  3   1
## 18105                                323   1
## 18106                                  8   1
## 18107                            battery   1
## 18108                              can’t   1
## 18109                         compatible   1
## 18110                       complication   1
## 18111                         connection   1
## 18112                           director   1
## 18113                           friendly   1
## 18114                         instructor   1
## 18115                        integration   1
## 18116                               i’ve   1
## 18117                       notification   1
## 18118                                 os   1
## 18119                               poor   1
## 18120                             queria   1
## 18121                        reinstalled   1
## 18122                            reviews   1
## 18123                                 se   1
## 18124                              shuts   1
## 18125                           software   1
## 18126                              ultra   1
## 18127                             update   1
## 18128                               walk   1
## 18129                            walking   1
## 18130                              whoop   1
## 18131                           workouts   1
## 18132                                wow   1
## 18133                            youtube   1
## 18134                            michael   1
## 18135                                341   1
## 18136                             series   1
## 18137                           symptoms   1
## 18138                              bluey   1
## 18139                                app   1
## 18140                                amp   1
## 18141                             bottle   1
## 18142                             breaks   1
## 18143                           couldn’t   1
## 18144                            fitness   1
## 18145                             inside   1
## 18146                              proof   1
## 18147                          repellent   1
## 18148                             aspect   1
## 18149                            options   1
## 18150                              spray   1
## 18151                               1865   1
## 18152                               1372   1
## 18153                        danwavering   1
## 18154                               1087   1
## 18155                              waldo   1
## 18156                      phoeniixrose_   1
## 18157                          surprised   1
## 18158                              sales   1
## 18159                          wholesale   1
## 18160                               pace   1
## 18161                                 10   1
## 18162                                 13   1
## 18163                               1364   1
## 18164                               1721   1
## 18165                               2427   1
## 18166                              4.291   1
## 18167                              4.360   1
## 18168                                751   1
## 18169                                8.5   1
## 18170                                9.5   1
## 18171                               alll   1
## 18172                           alphafly   1
## 18173                             appeal   1
## 18174                            boycott   1
## 18175                             brooks   1
## 18176                           compared   1
## 18177                            customs   1
## 18178                               easy   1
## 18179                           football   1
## 18180                               gold   1
## 18181                            matters   1
## 18182                              men's   1
## 18183                            metcons   1
## 18184                               mine   1
## 18185                           multiple   1
## 18186                                 nb   1
## 18187                               neon   1
## 18188                            quickly   1
## 18189                               runs   1
## 18190                             scrubs   1
## 18191                               shai   1
## 18192                               sl's   1
## 18193                           steelers   1
## 18194                         stretching   1
## 18195                              super   1
## 18196                              thick   1
## 18197                            toddler   1
## 18198                           vapormax   1
## 18199                              white   1
## 18200                                imo   1
## 18201                               1267   1
## 18202                                 em   1
## 18203                               1719   1
## 18204                               2362   1
## 18205                                961   1
## 18206                             adidas   1
## 18207                            beaters   1
## 18208                           casually   1
## 18209                              chavs   1
## 18210                                 em   1
## 18211                                gym   1
## 18212                           majority   1
## 18213                              men's   1
## 18214                             soccer   1
## 18215                           steelers   1
## 18216                              terra   1
## 18217                            thicker   1
## 18218                               thin   1
## 18219                                  3   1
## 18220                               2237   1
## 18221                                320   1
## 18222                              black   1
## 18223                               nike   1
## 18224                               size   1
## 18225                         conditions   1
## 18226                                hot   1
## 18227                           patterns   1
## 18228                            tonight   1
## 18229                                yay   1
## 18230                                app   1
## 18231                               view   1
## 18232                               1488   1
## 18233                                986   1
## 18234                             adidas   1
## 18235                          generated   1
## 18236                              won’t   1
## 18237                          announced   1
## 18238                                798   1
## 18239                                bit   1
## 18240                                  1   1
## 18241                               1774   1
## 18242                                 41   1
## 18243                                451   1
## 18244                            boiling   1
## 18245                            fitness   1
## 18246                                i’m   1
## 18247                           likewise   1
## 18248                           programs   1
## 18249                            running   1
## 18250                             streak   1
## 18251                              table   1
## 18252                             update   1
## 18253                               1528   1
## 18254                                imo   1
## 18255                           activity   1
## 18256                               goal   1
## 18257                            mileage   1
## 18258                            monthly   1
## 18259                            reports   1
## 18260                            revenue   1
## 18261                         statistics   1
## 18262                                477   1
## 18263                       imtermediate   1
## 18264                                i’m   1
## 18265                               i’ve   1
## 18266                              month   1
## 18267                           straight   1
## 18268                              223.1   1
## 18269                          absorbent   1
## 18270                              goals   1
## 18271                               loss   1
## 18272                            quickly   1
## 18273                           specific   1
## 18274                          treatment   1
## 18275                             squats   1
## 18276                         functional   1
## 18277                               hiit   1
## 18278                               1422   1
## 18279                              4.158   1
## 18280                                 af   1
## 18281                         deviations   1
## 18282                               font   1
## 18283                           question   1
## 18284                               ramp   1
## 18285                              shoes   1
## 18286                               spot   1
## 18287                              super   1
## 18288                              video   1
## 18289                              wasnt   1
## 18290                                172   1
## 18291                                  8   1
## 18292                                app   1
## 18293                            content   1
## 18294                             health   1
## 18295                          impresses   1
## 18296                                yay   1
## 18297                              basic   1
## 18298                           recorded   1
## 18299                            updated   1
## 18300                               1875   1
## 18301                              makes   1
## 18302                           surfaces   1
## 18303                            recalls   1
## 18304                              gotta   1
## 18305                          developer   1
## 18306                              bikes   1
## 18307                              voice   1
## 18308                               1324   1
## 18309                             201264   1
## 18310                               2363   1
## 18311                               2374   1
## 18312                                292   1
## 18313                            2fwhite   1
## 18314                                823   1
## 18315                                 90   1
## 18316                                929   1
## 18317                                af1   1
## 18318                                air   1
## 18319                                amp   1
## 18320                             bright   1
## 18321                             cement   1
## 18322                          chocolate   1
## 18323                             colour   1
## 18324                               damn   1
## 18325                              denim   1
## 18326                          depending   1
## 18327                                dns   1
## 18328                                fly   1
## 18329                           flyknits   1
## 18330                               gums   1
## 18331                             jordan   1
## 18332                             lacing   1
## 18333                             ladies   1
## 18334                              light   1
## 18335                               lows   1
## 18336                             orange   1
## 18337                               oreo   1
## 18338                                red   1
## 18339                             screen   1
## 18340                               shoe   1
## 18341                            sneaker   1
## 18342                           sneakers   1
## 18343                          stitching   1
## 18344                           trainers   1
## 18345                                ups   1
## 18346                              white   1
## 18347                               demo   1
## 18348                          exercises   1
## 18349                             format   1
## 18350                            formats   1
## 18351                            initial   1
## 18352                            workout   1
## 18353                               nice   1
## 18354                        complaining   1
## 18355                             brands   1
## 18356                           business   1
## 18357                            futebol   1
## 18358                            revenue   1
## 18359                              4.254   1
## 18360                              whoop   1
## 18361                                 10   1
## 18362                               1222   1
## 18363                             adidas   1
## 18364                              4.371   1
## 18365                                107   1
## 18366                                 2e   1
## 18367                                iam   1
## 18368                                lol   1
## 18369                             margin   1
## 18370                            neutral   1
## 18371                            release   1
## 18372                             straps   1
## 18373                           trainers   1
## 18374                          varieties   1
## 18375                           compared   1
## 18376                               foot   1
## 18377                                leg   1
## 18378                            release   1
## 18379                                  3   1
## 18380                                278   1
## 18381                             urgent   1
## 18382                           compares   1
## 18383                               feet   1
## 18384                               foot   1
## 18385                             couldn   1
## 18386                           wardrobe   1
## 18387                              watch   1
## 18388                         connection   1
## 18389                           networks   1
## 18390                               nice   1
## 18391                               nike   1
## 18392                              times   1
## 18393                               nike   1
## 18394                              balls   1
## 18395                                321   1
## 18396                                801   1
## 18397                          discounts   1
## 18398                               gold   1
## 18399                              speed   1
## 18400                             adidas   1
## 18401                                379   1
## 18402                              track   1
## 18403                         absolutely   1
## 18404                               boot   1
## 18405                             campus   1
## 18406                             months   1
## 18407                           material   1
## 18408                          earphones   1
## 18409                             they’d   1
## 18410                                535   1
## 18411                              sizes   1
## 18412                            sneaker   1
## 18413                              shoes   1
## 18414                            sneaker   1
## 18415                            wearing   1
## 18416                           colorway   1
## 18417                             jordan   1
## 18418                              loose   1
## 18419                              nikes   1
## 18420                              reign   1
## 18421                              sales   1
## 18422                         accessible   1
## 18423                              helps   1
## 18424                               it’s   1
## 18425                           programs   1
## 18426                           resource   1
## 18427                             review   1
## 18428                               shoe   1
## 18429                               walk   1
## 18430                              bring   1
## 18431                               site   1
## 18432                               fall   1
## 18433                               load   1
## 18434                              count   1
## 18435                           discover   1
## 18436                           download   1
## 18437                                ope   1
## 18438                           purchase   1
## 18439                             regret   1
## 18440                               send   1
## 18441                               ship   1
## 18442                              start   1
## 18443                              track   1
## 18444                            beaches   1
## 18445                              socks   1
## 18446                                bud   1
## 18447                                lol   1
## 18448                               mine   1
## 18449                              mines   1
## 18450                               laid   1
## 18451                               nike   1
## 18452                            selling   1
## 18453                                466   1
## 18454                                279   1
## 18455                                  3   1
## 18456                                390   1
## 18457                                398   1
## 18458                           activity   1
## 18459                           beginner   1
## 18460                            blocked   1
## 18461                             button   1
## 18462                            classes   1
## 18463                            clothes   1
## 18464                               club   1
## 18465                           consists   1
## 18466                            content   1
## 18467                           customer   1
## 18468                               data   1
## 18469                                day   1
## 18470                               days   1
## 18471                                 ed   1
## 18472                             energy   1
## 18473                           ensuring   1
## 18474                           everyday   1
## 18475                              focus   1
## 18476                            forcing   1
## 18477                            formats   1
## 18478                             giving   1
## 18479                              goals   1
## 18480                              helps   1
## 18481                              ideas   1
## 18482                        information   1
## 18483                             iphone   1
## 18484                               i’ve   1
## 18485                               life   1
## 18486                               list   1
## 18487                           location   1
## 18488                               love   1
## 18489                                mid   1
## 18490                              notes   1
## 18491                           overview   1
## 18492                          overviews   1
## 18493                             paused   1
## 18494                        performance   1
## 18495                         performing   1
## 18496                         personally   1
## 18497                              plans   1
## 18498                           previews   1
## 18499                           recorded   1
## 18500                          reviewing   1
## 18501                            running   1
## 18502                         selections   1
## 18503                           sessions   1
## 18504                               sort   1
## 18505                             starts   1
## 18506                              stats   1
## 18507                              style   1
## 18508                          summaries   1
## 18509                           synching   1
## 18510                               tool   1
## 18511                                top   1
## 18512                             window   1
## 18513                                202   1
## 18514                                222   1
## 18515                                230   1
## 18516                                289   1
## 18517                                292   1
## 18518                                360   1
## 18519                                399   1
## 18520                                407   1
## 18521                                451   1
## 18522                                  6   1
## 18523                                623   1
## 18524                                 96   1
## 18525                              added   1
## 18526                            amazing   1
## 18527                              bring   1
## 18528                             change   1
## 18529                               data   1
## 18530                            defeats   1
## 18531                           designed   1
## 18532                          developed   1
## 18533                         difficulty   1
## 18534                        disappeared   1
## 18535                                due   1
## 18536                          excellent   1
## 18537                              exist   1
## 18538                             finish   1
## 18539                               hard   1
## 18540                               hate   1
## 18541                             highly   1
## 18542                                hit   1
## 18543                                i’d   1
## 18544                                i’m   1
## 18545                            lengths   1
## 18546                               list   1
## 18547                           manually   1
## 18548                          motivates   1
## 18549                                 nc   1
## 18550                                ntc   1
## 18551                          nutrition   1
## 18552                          performed   1
## 18553                            pilates   1
## 18554                           playlist   1
## 18555                           provided   1
## 18556                          routinely   1
## 18557                            section   1
## 18558                            setting   1
## 18559                              solid   1
## 18560                           spanning   1
## 18561                           strength   1
## 18562                           suitable   1
## 18563                           tailored   1
## 18564                           thankful   1
## 18565                           trainers   1
## 18566                                 ui   1
## 18567                            updates   1
## 18568                             upload   1
## 18569                              won’t   1
## 18570                     discrimination   1
## 18571                               1793   1
## 18572                          athletics   1
## 18573                               it’s   1
## 18574                            reuters   1
## 18575                               2165   1
## 18576                               2188   1
## 18577                              4.322   1
## 18578                                876   1
## 18579                             adidas   1
## 18580                              crept   1
## 18581                             faster   1
## 18582                               fits   1
## 18583                          instantly   1
## 18584                               mine   1
## 18585                               nike   1
## 18586                               shoe   1
## 18587                               1194   1
## 18588                                ads   1
## 18589                          materials   1
## 18590                              title   1
## 18591                               1788   1
## 18592                            company   1
## 18593                           delivery   1
## 18594                               it’s   1
## 18595                               pain   1
## 18596                               pair   1
## 18597                         performing   1
## 18598                             review   1
## 18599                                120   1
## 18600                                190   1
## 18601                          exploring   1
## 18602                               haha   1
## 18603                             retail   1
## 18604                             saving   1
## 18605                            wearing   1
## 18606                            gezelle   1
## 18607                               sync   1
## 18608                             shorts   1
## 18609                               1678   1
## 18610                                371   1
## 18611                               4.28   1
## 18612                             uppers   1
## 18613                              color   1
## 18614                              combo   1
## 18615                               legs   1
## 18616                                app   1
## 18617                              notes   1
## 18618                             letter   1
## 18619                               fall   1
## 18620                               1409   1
## 18621                               2187   1
## 18622                                  3   1
## 18623                                652   1
## 18624                                 74   1
## 18625                              birth   1
## 18626                             choice   1
## 18627                               data   1
## 18628                          defective   1
## 18629                               feet   1
## 18630                               foot   1
## 18631                               item   1
## 18632                               i’ve   1
## 18633                               mate   1
## 18634                               pair   1
## 18635                               size   1
## 18636                               spot   1
## 18637                               time   1
## 18638                           tracking   1
## 18639                             coming   1
## 18640                         winterized   1
## 18641                               1442   1
## 18642                             adidas   1
## 18643                             adidas   1
## 18644                                 en   1
## 18645                              watch   1
## 18646                               1907   1
## 18647                                 x3   1
## 18648                               1321   1
## 18649                             cotton   1
## 18650                              samba   1
## 18651                               core   1
## 18652                            women's   1
## 18653                              miles   1
## 18654                                 xx   1
## 18655                                lil   1
## 18656                              super   1
## 18657                               live   1
## 18658                                 20   1
## 18659                                238   1
## 18660                              boots   1
## 18661                               feel   1
## 18662                               haha   1
## 18663                              phone   1
## 18664                               solo   1
## 18665                            finance   1
## 18666                                lol   1
## 18667                                mfs   1
## 18668                           remember   1
## 18669                                bbq   1
## 18670                                133   1
## 18671                               it’s   1
## 18672                                242   1
## 18673                              kanye   1
## 18674                              split   1
## 18675                               hate   1
## 18676                                241   1
## 18677                                540   1
## 18678                             pretty   1
## 18679                               1502   1
## 18680                                264   1
## 18681                                266   1
## 18682                        appreciated   1
## 18683                                bro   1
## 18684                           congrats   1
## 18685                               dare   1
## 18686                               dude   1
## 18687                              dunks   1
## 18688                                fam   1
## 18689                               fuck   1
## 18690                              legit   1
## 18691                               love   1
## 18692                                mlk   1
## 18693                               nike   1
## 18694                             pretty   1
## 18695                              shoes   1
## 18696                             takumi   1
## 18697                            wearing   1
## 18698                              model   1
## 18699                               pair   1
## 18700                            release   1
## 18701                               star   1
## 18702                               goal   1
## 18703                          intervals   1
## 18704                          treadmill   1
## 18705                             skiyee   1
## 18706                              boost   1
## 18707                             cousin   1
## 18708                            fallout   1
## 18709                          inventory   1
## 18710                          knockoffs   1
## 18711                       manufacturer   1
## 18712                           products   1
## 18713                              stock   1
## 18714                           tensions   1
## 18715                                 v2   1
## 18716                             adidas   1
## 18717                                i’m   1
## 18718                                95s   1
## 18719                             orange   1
## 18720                              socks   1
## 18721                               1690   1
## 18722                               1694   1
## 18723                                915   1
## 18724                          literally   1
## 18725                               1011   1
## 18726                               1546   1
## 18727                                omg   1
## 18728                               2000   1
## 18729                                226   1
## 18730                                409   1
## 18731                            hugging   1
## 18732                               i’ve   1
## 18733                                lad   1
## 18734                        practicamos   1
## 18735                                app   1
## 18736                            classes   1
## 18737                         collective   1
## 18738                          exercises   1
## 18739                              flows   1
## 18740                               maps   1
## 18741                              music   1
## 18742                           practice   1
## 18743                           routines   1
## 18744                           sessions   1
## 18745                               warm   1
## 18746                             violet   1
## 18747                                384   1
## 18748                              linda   1
## 18749                                gym   1
## 18750                              lying   1
## 18751                            wearing   1
## 18752                              pages   1
## 18753                               love   1
## 18754                           changing   1
## 18755                          finishing   1
## 18756                           thinking   1
## 18757                               lost   1
## 18758                             pissed   1
## 18759                            started   1
## 18760                                ago   1
## 18761                               bcuz   1
## 18762                            channel   1
## 18763                                 gi   1
## 18764                             joints   1
## 18765                            garbage   1
## 18766                               wear   1
## 18767                                nah   1
## 18768                            removed   1
## 18769                              talks   1
## 18770                             raffle   1
## 18771                               page   1
## 18772                             pretty   1
## 18773                               4.68   1
## 18774                             qinwen   1
## 18775                                  1   1
## 18776                         collection   1
## 18777                            cropped   1
## 18778                             hoodie   1
## 18779                            pockets   1
## 18780                              track   1
## 18781                             harika   1
## 18782                          downsized   1
## 18783                               zion   1
## 18784                            cadence   1
## 18785                            failure   1
## 18786                          runtastic   1
## 18787                                bag   1
## 18788                              based   1
## 18789                                jet   1
## 18790                              rival   1
## 18791                            turbine   1
## 18792                               unit   1
## 18793                                vis   1
## 18794                                  6   1
## 18795                            quality   1
## 18796                               dont   1
## 18797                               4000   1
## 18798                               1886   1
## 18799                               þlet   1
## 18800                               1882   1
## 18801                               1884   1
## 18802                                ios   1
## 18803                                mon   1
## 18804                                  à   1
## 18805                               1005   1
## 18806                               1007   1
## 18807                               1016   1
## 18808                               1023   1
## 18809                               1029   1
## 18810                               1514   1
## 18811                               1983   1
## 18812                                965   1
## 18813                               1998   1
## 18814                               2010   1
## 18815                                air   1
## 18816                               pull   1
## 18817                                132   1
## 18818                          excelente   1
## 18819                         impossível   1
## 18820                          utilizado   1
## 18821                                app   1
## 18822                                  ü   1
## 18823                            parasız   1
## 18824                         aplicación   1
## 18825                            gracias   1
## 18826                               1230   1
## 18827                               1387   1
## 18828                               1452   1
## 18829                               1697   1
## 18830                               1723   1
## 18831                               1848   1
## 18832                               1852   1
## 18833                               2215   1
## 18834                                964   1
## 18835                               2134   1
## 18836                               2302   1
## 18837                               2420   1
## 18838                                783   1
## 18839                              sound   1
## 18840                               1189   1
## 18841                               1503   1
## 18842                               1518   1
## 18843                               1531   1
## 18844                               1650   1
## 18845                                188   1
## 18846                               1893   1
## 18847                               1989   1
## 18848                               2127   1
## 18849                                281   1
## 18850                               herd   1
## 18851                               1940   1
## 18852                               2124   1
## 18853                           palomino   1
## 18854                         деградація   1
## 18855                                327   1
## 18856                              вашей   1
## 18857                         геолокации   1
## 18858                             списке   1
## 18859                              хуйне   1
## 18860                 зарегестрироваться   1
## 18861                         приложения   1
## 18862                 зарегистрироваться   1
## 18863                         soulmauler   1
## 18864                                 не   1
## 18865                             отстой   1
## 18866                                  в   1
## 18867                             майлом   1
## 18868                                 на   1
## 18869                              никак   1
## 18870                       перепробовал   1
## 18871                       залогиниться   1
## 18872                              найти   1
## 18873                               мейл   1
## 18874                             страну   1
## 18875                           возможно   1
## 18876                               дает   1
## 18877                           приходит   1
## 18878                              хочет   1
## 18879                             россии   1
## 18880                                 не   1
## 18881                                  в   1
## 18882                             страну   1
## 18883                                467   1
## 18884                                  3   1
## 18885                                 но   1
## 18886                                код   1
## 18887                                код   1
## 18888                                  с   1
## 18889                             адреса   1
## 18890                                 не   1
## 18891                                418   1
## 18892                       регистрацией   1
## 18893                               нету   1
## 18894                                  в   1
## 18895                               хочу   1
## 18896                          присылать   1
## 18897                           отметить   1
## 18898                                378   1
## 18899                              نتمنى   1
## 18900                              الصوت   1
## 18901                                 في   1
## 18902                            العربية   1
## 18903                            running   1
## 18904                            التطبيق   1
## 18905                             باللغة   1
## 18906                              ممتاز   1
## 18907                              ومحفز   1
## 18908                               يكون   1
## 18909                                جدا   1
## 18910                                فيه   1
## 18911                               行政   1
## 18912                               无法   1
## 18913                             日本一   1
## 18914                             doesnt   1
## 18915                                 介   1
## 18916                               使用   1
## 18917                               親切   1
## 18918                                 善   1
## 18919                        zen14111969   1
## 18920                               書士   1
## 18921                                 な   1

2.8 Step 8: Quadrogram

nike_quadrogram <- nike_df %>%
  unnest_tokens(quadrogram, text, token = "ngrams", n = 4) %>%
  separate(quadrogram, c("word1", "word2", "word3", "word4"), sep = " ") %>%
  filter(!word1 %in% stop_words$word) %>%
  filter(!word2 %in% stop_words$word) %>%
  filter(!word3 %in% stop_words$word) %>%
  filter(!word4 %in% stop_words$word)

nike_quadrogram %>%
  count(word1, word2, word3, word4, sort = TRUE)
##                     word1                        word2
## 1             underarmour                        score
## 2             underarmour                        score
## 3            sneakerheads                        score
## 4                      11                           12
## 5                    2024                           11
## 6                      02                           10
## 7                      11                           13
## 8                      11                           15
## 9                      11                           23
## 10        adidasoriginals                        score
## 11                     01                           06
## 12                     11                           16
## 13                     12                           04
## 14                     12                           27
## 15                   2024                           11
## 16                   2024                           11
## 17                   2024                           11
## 18           sneakerheads                        score
## 19            underarmour                        score
## 20            underarmour                        score
## 21                     01                           18
## 22                     01                           19
## 23                     01                           21
## 24                     01                           21
## 25                     01                           31
## 26                     02                           01
## 27                     02                           19
## 28                     02                           21
## 29                     02                           24
## 30                     02                           26
## 31                     03                           05
## 32                     03                           11
## 33                     05                           08
## 34                     05                           19
## 35                     08                            5
## 36                     10                           09
## 37                     10                           10
## 38                     11                           08
## 39                     11                           11
## 40                     11                           19
## 41                     11                           27
## 42                     11                            5
## 43                     12                           08
## 44                     12                           15
## 45                     12                            5
## 46                     16                            5
## 47                   2023                           10
## 48                   2024                           11
## 49                   2024                           11
## 50                   2024                           11
## 51                   2024                           12
## 52                   2025                           01
## 53                   2025                           01
## 54                   2025                           02
## 55                   2025                           02
## 56                   2025                           02
## 57                   2025                           05
## 58                     24                            5
## 59                   nike                          air
## 60                   nike                     training
## 61                  score                            5
## 62                  score                            8
## 63                     01                           02
## 64                     01                           04
## 65                     01                           14
## 66                     01                           17
## 67                     01                           20
## 68                     01                           20
## 69                     01                           24
## 70                     01                           24
## 71                     01                           27
## 72                     02                           07
## 73                     02                           08
## 74                     02                           09
## 75                     02                           11
## 76                     02                           12
## 77                     02                           13
## 78                     03                           01
## 79                     03                           02
## 80                     03                           09
## 81                     03                           28
## 82                     04                           06
## 83                     04                           10
## 84                     05                           17
## 85                     06                           10
## 86                     06                           17
## 87                     06                           21
## 88                     06                           25
## 89                     06                            5
## 90                     09                            1
## 91                     09                           28
## 92                     09                           29
## 93                      1                     negative
## 94                     10                           06
## 95                     10                           07
## 96                     10                           09
## 97                     10                           20
## 98                     10                           21
## 99                     10                           22
## 100                    10                           30
## 101                    11                           10
## 102                    11                           17
## 103                    11                           20
## 104                    11                           24
## 105                    11                           29
## 106                    11                            5
## 107                    12                           03
## 108                    12                           09
## 109                    12                           11
## 110                    12                           12
## 111                    12                           13
## 112                    12                           18
## 113                    12                           24
## 114                    12                           26
## 115                    12                           28
## 116                    12                           29
## 117                    12                           31
## 118                    13                            5
## 119                    13                            5
## 120                     2                     negative
## 121                  2023                           10
## 122                  2023                           12
## 123                  2024                           01
## 124                  2024                           05
## 125                  2024                           11
## 126                  2024                           11
## 127                  2024                           11
## 128                  2024                           12
## 129                  2024                           12
## 130                  2024                           12
## 131                  2024                           12
## 132                  2024                           12
## 133                  2025                           01
## 134                  2025                           01
## 135                  2025                           01
## 136                  2025                           01
## 137                  2025                           01
## 138                  2025                           02
## 139                  2025                           02
## 140                  2025                           03
## 141                  2025                           04
## 142                  2025                           05
## 143                  2025                           06
## 144                  2025                           06
## 145                  2025                           06
## 146                  2025                           09
## 147                  2025                           09
## 148                  2025                           10
## 149                  2025                           11
## 150                  2025                           12
## 151                  2025                           12
## 152                  2026                           01
## 153                  2026                           01
## 154                  2026                           02
## 155                  2026                           02
## 156                  2026                           02
## 157                  2026                           03
## 158                  2026                           03
## 159                    27                            5
## 160                     5                     positive
## 161                     5                     positive
## 162                     5                     positive
## 163                     5                     positive
## 164                     5                     positive
## 165                     5                     positive
## 166                     5                     positive
## 167                     5                     positive
## 168                     5                     positive
## 169                    70                          90m
## 170                adidas                        adios
## 171                   air                        force
## 172                   app                        store
## 173                 armor                      tribase
## 174                  born                    primitive
## 175                   buy                       adidas
## 176                  cnbc                         june
## 177                    da                        todos
## 178              detalles                           de
## 179                    es                          una
## 180                   fit                          adv
## 181               journal                     november
## 182                  june                            3
## 183                  life                     changing
## 184                   los                     detalles
## 185                 megan                         thee
## 186                 men’s                     heatgear
## 187                modern                       retail
## 188                  neon                         nike
## 189                  nike                          ceo
## 190              original                      charged
## 191              positive                      amazing
## 192              positive                     favorite
## 193              positive                         nike
## 194               quarter                         2021
## 195                reddit                         data
## 196               reviews                        total
## 197                 score                            9
## 198                 store                      reviews
## 199                street                      journal
## 200                    te                           da
## 201                 todos                          los
## 202                   tri                         base
## 203                    ua                      charged
## 204           underarmour                        score
## 205           underarmour                        score
## 206                  wall                       street
## 207                     0                           ob
## 208                  0.72                        miles
## 209                  0.95                        miles
## 210                  00am                          250
## 211                    01                           01
## 212                    01                           03
## 213                    01                           04
## 214                    01                           05
## 215                    01                           05
## 216                    01                           06
## 217                    01                           06
## 218                    01                           07
## 219                    01                           07
## 220                    01                           07
## 221                    01                           08
## 222                    01                           09
## 223                    01                           09
## 224                    01                            1
## 225                    01                           10
## 226                    01                           10
## 227                    01                           11
## 228                    01                           11
## 229                    01                           12
## 230                    01                           13
## 231                    01                           14
## 232                    01                           14
## 233                    01                           15
## 234                    01                           16
## 235                    01                           16
## 236                    01                           19
## 237                    01                           21
## 238                    01                           22
## 239                    01                           23
## 240                    01                           23
## 241                    01                           23
## 242                    01                           25
## 243                    01                           26
## 244                    01                           26
## 245                    01                           26
## 246                    01                           27
## 247                    01                           28
## 248                    01                           28
## 249                    01                           28
## 250                    01                           29
## 251                    01                           29
## 252                    01                           31
## 253                    01                            4
## 254                    01                            5
## 255                    01                            5
## 256                    01                            5
## 257                    01                            5
## 258                    01                            5
## 259                    01                            5
## 260                    02                           01
## 261                    02                           02
## 262                    02                           04
## 263                    02                           05
## 264                    02                           05
## 265                    02                           06
## 266                    02                           07
## 267                    02                           07
## 268                    02                            1
## 269                    02                            1
## 270                    02                           13
## 271                    02                           16
## 272                    02                           17
## 273                    02                           19
## 274                    02                            2
## 275                    02                           20
## 276                    02                           21
## 277                    02                           23
## 278                    02                           23
## 279                    02                           23
## 280                    02                           23
## 281                    02                           25
## 282                    02                           26
## 283                    02                           26
## 284                    02                           27
## 285                    02                           27
## 286                    02                           28
## 287                    02                            5
## 288                    02                            5
## 289                    02                            5
## 290                    02                            5
## 291                    02                            5
## 292                    02                            5
## 293                    03                           03
## 294                    03                           03
## 295                    03                           04
## 296                    03                           04
## 297                    03                           05
## 298                    03                           05
## 299                    03                           06
## 300                    03                           06
## 301                    03                           07
## 302                    03                           09
## 303                    03                           11
## 304                    03                           12
## 305                    03                           13
## 306                    03                           14
## 307                    03                           14
## 308                    03                           14
## 309                    03                           15
## 310                    03                           16
## 311                    03                           16
## 312                    03                           16
## 313                    03                           18
## 314                    03                           21
## 315                    03                           21
## 316                    03                           21
## 317                    03                           24
## 318                    03                           30
## 319                    03                            4
## 320                    03                            4
## 321                    03                            5
## 322                    04                           03
## 323                    04                           04
## 324                    04                           05
## 325                    04                           05
## 326                    04                           08
## 327                    04                           08
## 328                    04                           09
## 329                    04                            1
## 330                    04                            1
## 331                    04                           11
## 332                    04                           12
## 333                    04                           14
## 334                    04                           16
## 335                    04                           19
## 336                    04                           21
## 337                    04                           21
## 338                    04                           23
## 339                    04                           28
## 340                    04                           28
## 341                    04                           29
## 342                    04                           29
## 343                    04                            3
## 344                    04                            5
## 345                    04                            5
## 346                    04                            5
## 347                    04                            5
## 348                    04                            5
## 349                    05                           03
## 350                    05                           03
## 351                    05                           07
## 352                    05                           09
## 353                    05                            1
## 354                    05                            1
## 355                    05                            1
## 356                    05                            1
## 357                    05                           10
## 358                    05                           10
## 359                    05                           17
## 360                    05                            2
## 361                    05                           20
## 362                    05                           21
## 363                    05                           21
## 364                    05                           22
## 365                    05                           27
## 366                    05                           28
## 367                    05                            3
## 368                    05                           31
## 369                    05                            4
## 370                    05                            5
## 371                    05                            5
## 372                    05                            5
## 373                    05                            5
## 374                    06                           02
## 375                    06                           05
## 376                    06                           06
## 377                    06                           07
## 378                    06                           09
## 379                    06                           10
## 380                    06                           11
## 381                    06                           12
## 382                    06                           13
## 383                    06                           15
## 384                    06                           17
## 385                    06                           19
## 386                    06                           19
## 387                    06                            2
## 388                    06                           20
## 389                    06                           22
## 390                    06                           23
## 391                    06                           24
## 392                    06                           24
## 393                    06                           25
## 394                    06                           25
## 395                    06                           26
## 396                    06                           29
## 397                    06                           29
## 398                    06                            3
## 399                    06                           30
## 400                    06                           30
## 401                    06                            4
## 402                    06                            5
## 403                    06                            5
## 404                    06                            5
## 405                    06                            5
## 406                    07                           02
## 407                    07                           09
## 408                    07                            1
## 409                    07                            1
## 410                    07                            1
## 411                    07                            1
## 412                    07                            1
## 413                    07                           14
## 414                    07                           16
## 415                    07                           18
## 416                    07                           20
## 417                    07                           21
## 418                    07                           21
## 419                    07                           23
## 420                    07                           24
## 421                    07                           25
## 422                    07                           27
## 423                    07                            3
## 424                    07                            3
## 425                    07                           31
## 426                    07                            4
## 427                    07                            5
## 428                    07                            5
## 429                    07                            5
## 430                    07                            5
## 431                    07                            5
## 432                    07                       easyon
## 433                    08                           01
## 434                    08                           02
## 435                    08                           04
## 436                    08                           05
## 437                    08                           07
## 438                    08                           08
## 439                    08                           08
## 440                    08                            1
## 441                    08                           10
## 442                    08                           11
## 443                    08                           12
## 444                    08                           12
## 445                    08                           12
## 446                    08                           14
## 447                    08                           15
## 448                    08                           16
## 449                    08                           18
## 450                    08                           21
## 451                    08                           25
## 452                    08                           27
## 453                    08                           28
## 454                    08                           29
## 455                    08                           31
## 456                    08                            4
## 457                    08                            4
## 458                    08                            5
## 459                    08                            5
## 460                    08                            5
## 461                    08                            5
## 462                    08                            5
## 463                    09                           04
## 464                    09                           05
## 465                    09                           06
## 466                    09                           07
## 467                    09                           08
## 468                    09                            1
## 469                    09                            1
## 470                    09                            1
## 471                    09                            1
## 472                    09                           11
## 473                    09                           12
## 474                    09                           13
## 475                    09                           15
## 476                    09                           15
## 477                    09                           18
## 478                    09                            2
## 479                    09                           22
## 480                    09                           23
## 481                    09                           24
## 482                    09                           24
## 483                    09                           27
## 484                    09                           28
## 485                    09                           29
## 486                    09                            3
## 487                    09                            3
## 488                    09                           30
## 489                    09                            5
## 490                    09                            5
## 491                     1                           07
## 492                     1                            2
## 493                     1                         2026
## 494                     1                            3
## 495                     1                            3
## 496                     1                            6
## 497                     1                          am1
## 498                     1                          bad
## 499                     1                        black
## 500                     1                        brand
## 501                     1                          ceo
## 502                     1                     downtown
## 503                     1                         edit
## 504                     1                      elliott
## 505                     1                     handball
## 506                     1                         hour
## 507                     1                          low
## 508                     1                         mile
## 509                     1                     negative
## 510                     1                     negative
## 511                     1                     negative
## 512                     1                     negative
## 513                     1                     negative
## 514                     1                     negative
## 515                     1                     negative
## 516                     1                     negative
## 517                     1                     negative
## 518                     1                     negative
## 519                     1                     negative
## 520                     1                     negative
## 521                     1                     negative
## 522                     1                     negative
## 523                     1                     negative
## 524                     1                     negative
## 525                     1                     negative
## 526                     1                     negative
## 527                     1                     negative
## 528                     1                     negative
## 529                     1                     negative
## 530                     1                     negative
## 531                     1                     negative
## 532                     1                     negative
## 533                     1                     negative
## 534                     1                     negative
## 535                     1                     negative
## 536                     1                     negative
## 537                     1                     negative
## 538                     1                     negative
## 539                     1                     negative
## 540                     1                     negative
## 541                     1                     negative
## 542                     1                         nike
## 543                     1                         nike
## 544                     1                         nike
## 545                     1                         nike
## 546                     1                         nike
## 547                     1                          ntc
## 548                     1                          ply
## 549                     1                          red
## 550                     1                         star
## 551                     1                         star
## 552                     1                          zna
## 553                 1,000                         mile
## 554                 1,600                          job
## 555                 1.33b                        north
## 556                  1.3b                          ceo
## 557                  1.3b                      revenue
## 558                  1.5b                          ceo
## 559                  1.5b                        north
## 560                   1.8                         mile
## 561                    10                         00am
## 562                    10                           01
## 563                    10                           02
## 564                    10                           04
## 565                    10                           05
## 566                    10                           05
## 567                    10                           05
## 568                    10                           06
## 569                    10                           07
## 570                    10                           08
## 571                    10                           08
## 572                    10                            1
## 573                    10                            1
## 574                    10                            1
## 575                    10                           10
## 576                    10                           10
## 577                    10                           10
## 578                    10                           10
## 579                    10                           10
## 580                    10                          104
## 581                    10                         1049
## 582                    10                           11
## 583                    10                           12
## 584                    10                           13
## 585                    10                           16
## 586                    10                           16
## 587                    10                           18
## 588                    10                           18
## 589                    10                           19
## 590                    10                            2
## 591                    10                           20
## 592                    10                         2026
## 593                    10                           24
## 594                    10                           25
## 595                    10                           27
## 596                    10                           28
## 597                    10                           29
## 598                    10                           30
## 599                    10                           30
## 600                    10                           30
## 601                    10                            4
## 602                    10                            4
## 603                    10                            5
## 604                    10                            5
## 605                    10                            5
## 606                    10                            5
## 607                    10                            5
## 608                    10                       adidas
## 609                    10                          app
## 610                    10                         boys
## 611                    10                          day
## 612                    10                         emea
## 613                    10                           en
## 614                    10                         free
## 615                    10                       medium
## 616                    10                       millas
## 617                    10                          min
## 618                    10                      minutes
## 619                    10                        pairs
## 620                   100                         2025
## 621                   100                     accurate
## 622                   100                       dollar
## 623                   100                        legit
## 624                   100                      percent
## 625                   100                        todas
## 626                  1000                     canadian
## 627                  100m                         200m
## 628                  100m                       adidas
## 629                  100m                         dash
## 630                   101                         2025
## 631                  1010                           80
## 632                  1012                        sweet
## 633                  1016                         nike
## 634                   102                         2025
## 635                  1022                        steal
## 636                   103                         2025
## 637                  1036                         haha
## 638                   104                         2025
## 639                  1049                         dang
## 640                   105                         2025
## 641                  1059                          ayy
## 642                   106                         2025
## 643                  1065                          ayy
## 644                   107                         2025
## 645                  1073                         real
## 646                  1076                         true
## 647                   108                         2025
## 648                  1088                         hmmm
## 649                   109                         2025
## 650                  1094                        space
## 651                  10ks                      adizero
## 652                    11                           02
## 653                    11                           02
## 654                    11                           03
## 655                    11                           03
## 656                    11                           04
## 657                    11                           04
## 658                    11                           05
## 659                    11                           05
## 660                    11                           06
## 661                    11                           06
## 662                    11                           07
## 663                    11                           07
## 664                    11                           09
## 665                    11                            1
## 666                    11                            1
## 667                    11                            1
## 668                    11                           10
## 669                    11                           11
## 670                    11                           11
## 671                    11                           12
## 672                    11                           13
## 673                    11                           13
## 674                    11                           14
## 675                    11                         1741
## 676                    11                           18
## 677                    11                           19
## 678                    11                           20
## 679                    11                           20
## 680                    11                         2026
## 681                    11                           21
## 682                    11                           22
## 683                    11                           22
## 684                    11                           25
## 685                    11                           26
## 686                    11                            3
## 687                    11                           30
## 688                    11                            5
## 689                    11                            5
## 690                    11                            5
## 691                    11                            5
## 692                    11                       medium
## 693                    11                         mens
## 694                   110                         2025
## 695                  1104                         2001
## 696                   111                         2025
## 697                   112                         2025
## 698                   112                        pants
## 699                   113                         2025
## 700                   114                         2025
## 701                  1140                         love
## 702                   115                         1361
## 703                   115                         2025
## 704                   115                            5
## 705                   116                         2025
## 706                   116                            5
## 707                  1163                        nikes
## 708                   117                         2025
## 709                   118                         2025
## 710                   119                         2025
## 711                    12                           01
## 712                    12                           01
## 713                    12                           02
## 714                    12                           06
## 715                    12                           06
## 716                    12                           06
## 717                    12                           07
## 718                    12                           09
## 719                    12                           09
## 720                    12                            1
## 721                    12                            1
## 722                    12                           13
## 723                    12                           13
## 724                    12                           14
## 725                    12                           15
## 726                    12                       1850km
## 727                    12                            2
## 728                    12                           20
## 729                    12                         2026
## 730                    12                           21
## 731                    12                           22
## 732                    12                           23
## 733                    12                           23
## 734                    12                           28
## 735                    12                           29
## 736                    12                            3
## 737                    12                            3
## 738                    12                           30
## 739                    12                            4
## 740                    12                          405
## 741                    12                            5
## 742                    12                            5
## 743                    12                            5
## 744                    12                            5
## 745                    12                            5
## 746                    12                            5
## 747                    12                            5
## 748                    12                         amid
## 749                    12                          evo
## 750                    12                        men's
## 751                    12                       minute
## 752                    12                       months
## 753                    12                          ply
## 754                 12.4b                          net
## 755                   120                         1812
## 756                   120                         2025
## 757                   121                         2025
## 758                   122                         2025
## 759                  1220                          lol
## 760                  1223                       lmfaoo
## 761                  1227                      consign
## 762                   123                         2025
## 763                   123                      roadman
## 764                  1238                        cheap
## 765                   124                         2025
## 766                   125                         2025
## 767                   126                         2025
## 768                  1261                         nike
## 769                   127                         2025
## 770                  1271                         nike
## 771                   128                         2025
## 772                  1284                         temu
## 773                   129                         2025
## 774                  1290                          buy
## 775                 12evo                     sltakumi
## 776                    13                            1
## 777                    13                           14
## 778                    13                            2
## 779                    13                         2026
## 780                    13                            5
## 781                    13                            5
## 782                    13                            5
## 783                    13                            5
## 784                    13                       medium
## 785                   130                         2025
## 786                   130                          uhh
## 787                  1302                     vitiligo
## 788                   131                         2025
## 789                  1317                       rebock
## 790                   132                         2025
## 791                  1327                            1
## 792                   133                         2025
## 793                   134                         2025
## 794                  1342                          air
## 795                   135                         2025
## 796                   136                         2025
## 797                  1361                     honestly
## 798                   137                         2025
## 799                  1377                          fly
## 800                   138                         2025
## 801                  1382                          nah
## 802                   139                         2025
## 803                  1391                          gif
## 804                    14                            1
## 805                    14                            1
## 806                    14                            1
## 807                    14                            2
## 808                    14                         2026
## 809                    14                          253
## 810                    14                            3
## 811                    14                            3
## 812                    14                            4
## 813                    14                        4.103
## 814                    14                            5
## 815                    14                          day
## 816                    14                          van
## 817                   140                         2025
## 818                   141                         2025
## 819                   142                         2025
## 820                   143                         2025
## 821                  1439                       killer
## 822                   144                         2025
## 823                   144                        bouta
## 824                  1443                         1444
## 825                   145                         2025
## 826                  1456                      awesome
## 827                   146                         2025
## 828                  1469                            ª
## 829                   147                         2025
## 830                  1474                           ja
## 831                   148                         2025
## 832                   149                         2025
## 833                   149                      jealous
## 834                  1493                       raffle
## 835                    15                           00
## 836                    15                            1
## 837                    15                         2026
## 838                    15                            4
## 839                    15                            5
## 840                    15                            5
## 841                    15                            5
## 842                    15                            5
## 843                    15                            5
## 844                    15                            5
## 845                    15                            5
## 846                    15                            5
## 847                    15                       degree
## 848                    15                       minute
## 849                   150                         2025
## 850                   150                     leggings
## 851                   150                      secured
## 852                  1500                         nice
## 853                  1501                        hells
## 854                  1507                          air
## 855                   151                         2025
## 856                   152                         2025
## 857                   153                         2025
## 858                  1538                         1539
## 859                  1539                         nike
## 860                   154                         2025
## 861                  1543                         1544
## 862                  1544                       twinnn
## 863                  1545                       yessir
## 864                  1549                         dope
## 865                   155                         2025
## 866                  1550                     military
## 867                  1555                         size
## 868                  1556                        crocs
## 869                  1557                        field
## 870                  1558                      soldier
## 871                   156                         2025
## 872                   157                         2025
## 873                  1575                         1576
## 874                  1576                         1577
## 875                   158                         2025
## 876                  1586                           gt
## 877                   159                         2025
## 878                  1592                          gif
## 879                    16                            1
## 880                    16                            2
## 881                    16                         2026
## 882                    16                            3
## 883                    16                            3
## 884                    16                            5
## 885                    16                            5
## 886                    16                       antall
## 887                    16                        total
## 888                   160                         2025
## 889                   160                        angle
## 890                   161                         2025
## 891                  1617                      typical
## 892                   162                         2025
## 893                  1620                       mental
## 894                   163                         2025
## 895                   164                         2025
## 896                   165                         2025
## 897                   166                         2025
## 898                  1668                         love
## 899                   167                         2025
## 900                  1675                         nice
## 901                  1676                         1677
## 902                  1677                         wear
## 903                   168                         2025
## 904                  1684                         hell
## 905                  1688                        barry
## 906                  1689                          yep
## 907                   169                         2025
## 908                   169                       dookie
## 909                  1692                        barry
## 910                  1693                          yep
## 911                  1697                       vomero
## 912  16adimltrbstmblkwrnn         16adimltrbstmblkwrnn
## 913  16adimltrbstmblkwrnn                        color
## 914                    17                         2026
## 915                    17                            3
## 916                    17                            4
## 917                    17                            4
## 918                    17                            5
## 919                    17                            5
## 920                   170                         2025
## 921                   171                         2025
## 922                   172                         2025
## 923                  1725                     matching
## 924                   173                         2025
## 925                   174                         2025
## 926                  1741                        super
## 927                   175                         2025
## 928                  1750                         lmao
## 929                  1756                        sweet
## 930                   176                         2025
## 931                   177                         2025
## 932                  1770                          1st
## 933                  1774                        slide
## 934                   178                         2025
## 935                   179                         2025
## 936                    18                            1
## 937                    18                            1
## 938                    18                            1
## 939                    18                            1
## 940                    18                            1
## 941                    18                         2026
## 942                    18                            5
## 943                    18                      billion
## 944                    18                       vomero
## 945                   180                         2025
## 946                   180                          deg
## 947                  1807                          air
## 948                  1809                          air
## 949                   181                         2025
## 950                   182                         2025
## 951                   183                         2025
## 952                   184                         2025
## 953                   185                         2025
## 954                  1856                        throw
## 955                   186                         2025
## 956                  1864                       wattba
## 957                   187                         2025
## 958                  1876                         1877
## 959                  1877                         1878
## 960                  1878                         heat
## 961                   188                         2025
## 962                  1880                         fire
## 963                   189                         2025
## 964                  1890                        shoes
## 965                  1891                          acg
## 966                    19                            1
## 967                    19                         2026
## 968                    19                            3
## 969                    19                            5
## 970                    19                            5
## 971                    19                            5
## 972                    19                            5
## 973                    19                            5
## 974                    19                         days
## 975                    19                       forces
## 976                   190                         2025
## 977                   190                        price
## 978                   190                       retail
## 979                  1903                         nike
## 980                  1904                         1905
## 981                  1905                         1906
## 982                  1906                        tight
## 983                   191                         2025
## 984                  1913                         nike
## 985                   192                         2025
## 986                  1921                         zoom
## 987                  1926                        penny
## 988                  1927                         1928
## 989                   193                         2025
## 990                  1938                        penny
## 991                   194                         2025
## 992                  1941                      missing
## 993                  1948                     terrible
## 994                  1949                   dayummmmmm
## 995                   195                         2025
## 996                  1950                          muy
## 997                  1959                      sploosh
## 998                   196                         2025
## 999                   197                         2025
## 1000                  198                         2025
## 1001                  199                         2025
## 1002                 1993                        smart
## 1003                 1996                         nice
## 1004                   1s                            1
## 1005                   1s                          403
## 1006                  1st                         time
## 1007                  1st                      yeezy's
## 1008                    2                            1
## 1009                    2                            2
## 1010                    2                         2026
## 1011                    2                          air
## 1012                    2                   crustacean
## 1013                    2                       dollar
## 1014                    2                           el
## 1015                    2                          gif
## 1016                    2                          kms
## 1017                    2                     negative
## 1018                    2                     negative
## 1019                    2                     negative
## 1020                    2                     negative
## 1021                    2                     negative
## 1022                    2                     negative
## 1023                    2                     negative
## 1024                    2                     negative
## 1025                    2                     negative
## 1026                    2                         nike
## 1027                    2                         nike
## 1028                    2                         nike
## 1029                    2                         nike
## 1030                    2                         nike
## 1031                    2                        pairs
## 1032                    2                      sliders
## 1033                    2                        stars
## 1034                    2                       thongs
## 1035                    2                        weeks
## 1036                   20                            1
## 1037                   20                            1
## 1038                   20                            1
## 1039                   20                         2026
## 1040                   20                            3
## 1041                   20                            3
## 1042                   20                            4
## 1043                   20                            5
## 1044                   20                            5
## 1045                   20                            5
## 1046                   20                            5
## 1047                   20                            5
## 1048                   20                            5
## 1049                   20                          min
## 1050                20.09                         mile
## 1051                  200                         2025
## 1052                 2001                         nike
## 1053                 2001                         pair
## 1054                 2003                       corney
## 1055                 2004                           15
## 1056                 2005                        charm
## 1057                 200m                         dash
## 1058                  201                         2025
## 1059                 2010                          145
## 1060                 2011                       cuando
## 1061               201264                        nosto
## 1062                 2013                     totaling
## 1063                 2014                 personalized
## 1064                 2015                         nike
## 1065                 2017                        y'all
## 1066                  202                         2025
## 1067                  202                      angelus
## 1068                 2020                         2026
## 1069                 2020                        4.130
## 1070                 2020                         am95
## 1071                 2020                      revenue
## 1072                 2021                      results
## 1073                 2023                           10
## 1074                 2023                           10
## 1075                 2023                           10
## 1076                 2023                           10
## 1077                 2023                           10
## 1078                 2023                           10
## 1079                 2023                           10
## 1080                 2023                           10
## 1081                 2023                           10
## 1082                 2023                           10
## 1083                 2023                           10
## 1084                 2023                           10
## 1085                 2023                           10
## 1086                 2023                           10
## 1087                 2023                           10
## 1088                 2023                           10
## 1089                 2023                           10
## 1090                 2023                           10
## 1091                 2023                           10
## 1092                 2023                           11
## 1093                 2023                           11
## 1094                 2023                           11
## 1095                 2023                           11
## 1096                 2023                           11
## 1097                 2023                           11
## 1098                 2023                           11
## 1099                 2023                           11
## 1100                 2023                           11
## 1101                 2023                           11
## 1102                 2023                           11
## 1103                 2023                           12
## 1104                 2023                           12
## 1105                 2023                           12
## 1106                 2023                           12
## 1107                 2023                           12
## 1108                 2023                           12
## 1109                 2023                           12
## 1110                 2023                      revenue
## 1111                 2024                           01
## 1112                 2024                           01
## 1113                 2024                           01
## 1114                 2024                           01
## 1115                 2024                           01
## 1116                 2024                           01
## 1117                 2024                           01
## 1118                 2024                           01
## 1119                 2024                           02
## 1120                 2024                           02
## 1121                 2024                           02
## 1122                 2024                           02
## 1123                 2024                           02
## 1124                 2024                           02
## 1125                 2024                           02
## 1126                 2024                           02
## 1127                 2024                           03
## 1128                 2024                           03
## 1129                 2024                           03
## 1130                 2024                           03
## 1131                 2024                           03
## 1132                 2024                           03
## 1133                 2024                           03
## 1134                 2024                           03
## 1135                 2024                           03
## 1136                 2024                           04
## 1137                 2024                           04
## 1138                 2024                           04
## 1139                 2024                           04
## 1140                 2024                           04
## 1141                 2024                           05
## 1142                 2024                           05
## 1143                 2024                           05
## 1144                 2024                           05
## 1145                 2024                           05
## 1146                 2024                           06
## 1147                 2024                           06
## 1148                 2024                           06
## 1149                 2024                           06
## 1150                 2024                           06
## 1151                 2024                           06
## 1152                 2024                           06
## 1153                 2024                           06
## 1154                 2024                           06
## 1155                 2024                           07
## 1156                 2024                           07
## 1157                 2024                           07
## 1158                 2024                           08
## 1159                 2024                           08
## 1160                 2024                           08
## 1161                 2024                           08
## 1162                 2024                           08
## 1163                 2024                           09
## 1164                 2024                           09
## 1165                 2024                           09
## 1166                 2024                           09
## 1167                 2024                           10
## 1168                 2024                           10
## 1169                 2024                           10
## 1170                 2024                           10
## 1171                 2024                           10
## 1172                 2024                           10
## 1173                 2024                           10
## 1174                 2024                           10
## 1175                 2024                           10
## 1176                 2024                           10
## 1177                 2024                           10
## 1178                 2024                           10
## 1179                 2024                           10
## 1180                 2024                           11
## 1181                 2024                           11
## 1182                 2024                           11
## 1183                 2024                           11
## 1184                 2024                           11
## 1185                 2024                           11
## 1186                 2024                           11
## 1187                 2024                           11
## 1188                 2024                           11
## 1189                 2024                           11
## 1190                 2024                           11
## 1191                 2024                           11
## 1192                 2024                           11
## 1193                 2024                           11
## 1194                 2024                           12
## 1195                 2024                           12
## 1196                 2024                           12
## 1197                 2024                           12
## 1198                 2024                           12
## 1199                 2024                           12
## 1200                 2024                           12
## 1201                 2024                           12
## 1202                 2024                           12
## 1203                 2024                           12
## 1204                 2024                           12
## 1205                 2024                           12
## 1206                 2024                           12
## 1207                 2024                           12
## 1208                 2024                           12
## 1209                 2024                           12
## 1210                 2024                           12
## 1211                 2024                           12
## 1212                 2024                           12
## 1213                 2024                        games
## 1214                 2024                          nov
## 1215                 2024                 preparations
## 1216                 2025                           01
## 1217                 2025                           01
## 1218                 2025                           01
## 1219                 2025                           01
## 1220                 2025                           01
## 1221                 2025                           01
## 1222                 2025                           01
## 1223                 2025                           01
## 1224                 2025                           01
## 1225                 2025                           01
## 1226                 2025                           01
## 1227                 2025                           01
## 1228                 2025                           01
## 1229                 2025                           01
## 1230                 2025                           01
## 1231                 2025                           01
## 1232                 2025                           01
## 1233                 2025                           01
## 1234                 2025                           01
## 1235                 2025                           01
## 1236                 2025                           01
## 1237                 2025                           01
## 1238                 2025                           01
## 1239                 2025                           01
## 1240                 2025                           01
## 1241                 2025                           02
## 1242                 2025                           02
## 1243                 2025                           02
## 1244                 2025                           02
## 1245                 2025                           02
## 1246                 2025                           02
## 1247                 2025                           02
## 1248                 2025                           02
## 1249                 2025                           02
## 1250                 2025                           02
## 1251                 2025                           02
## 1252                 2025                           02
## 1253                 2025                           02
## 1254                 2025                           02
## 1255                 2025                           02
## 1256                 2025                           03
## 1257                 2025                           03
## 1258                 2025                           03
## 1259                 2025                           03
## 1260                 2025                           03
## 1261                 2025                           03
## 1262                 2025                           03
## 1263                 2025                           03
## 1264                 2025                           03
## 1265                 2025                           03
## 1266                 2025                           03
## 1267                 2025                           03
## 1268                 2025                           03
## 1269                 2025                           03
## 1270                 2025                           03
## 1271                 2025                           03
## 1272                 2025                           03
## 1273                 2025                           04
## 1274                 2025                           04
## 1275                 2025                           04
## 1276                 2025                           04
## 1277                 2025                           04
## 1278                 2025                           04
## 1279                 2025                           04
## 1280                 2025                           04
## 1281                 2025                           04
## 1282                 2025                           04
## 1283                 2025                           04
## 1284                 2025                           04
## 1285                 2025                           04
## 1286                 2025                           04
## 1287                 2025                           04
## 1288                 2025                           04
## 1289                 2025                           05
## 1290                 2025                           05
## 1291                 2025                           05
## 1292                 2025                           05
## 1293                 2025                           05
## 1294                 2025                           05
## 1295                 2025                           05
## 1296                 2025                           05
## 1297                 2025                           05
## 1298                 2025                           05
## 1299                 2025                           06
## 1300                 2025                           06
## 1301                 2025                           06
## 1302                 2025                           06
## 1303                 2025                           06
## 1304                 2025                           06
## 1305                 2025                           06
## 1306                 2025                           06
## 1307                 2025                           06
## 1308                 2025                           06
## 1309                 2025                           06
## 1310                 2025                           06
## 1311                 2025                           06
## 1312                 2025                           06
## 1313                 2025                           06
## 1314                 2025                           06
## 1315                 2025                           06
## 1316                 2025                           06
## 1317                 2025                           07
## 1318                 2025                           07
## 1319                 2025                           07
## 1320                 2025                           07
## 1321                 2025                           07
## 1322                 2025                           07
## 1323                 2025                           07
## 1324                 2025                           07
## 1325                 2025                           07
## 1326                 2025                           07
## 1327                 2025                           08
## 1328                 2025                           08
## 1329                 2025                           08
## 1330                 2025                           08
## 1331                 2025                           08
## 1332                 2025                           08
## 1333                 2025                           08
## 1334                 2025                           08
## 1335                 2025                           08
## 1336                 2025                           08
## 1337                 2025                           08
## 1338                 2025                           08
## 1339                 2025                           08
## 1340                 2025                           08
## 1341                 2025                           08
## 1342                 2025                           08
## 1343                 2025                           08
## 1344                 2025                           09
## 1345                 2025                           09
## 1346                 2025                           09
## 1347                 2025                           09
## 1348                 2025                           09
## 1349                 2025                           09
## 1350                 2025                           09
## 1351                 2025                           09
## 1352                 2025                           09
## 1353                 2025                           09
## 1354                 2025                           09
## 1355                 2025                           09
## 1356                 2025                           09
## 1357                 2025                           09
## 1358                 2025                           09
## 1359                 2025                           10
## 1360                 2025                           10
## 1361                 2025                           10
## 1362                 2025                           10
## 1363                 2025                           10
## 1364                 2025                           10
## 1365                 2025                           10
## 1366                 2025                           10
## 1367                 2025                           10
## 1368                 2025                           10
## 1369                 2025                           11
## 1370                 2025                           11
## 1371                 2025                           11
## 1372                 2025                           11
## 1373                 2025                           11
## 1374                 2025                           11
## 1375                 2025                           11
## 1376                 2025                           11
## 1377                 2025                           11
## 1378                 2025                           11
## 1379                 2025                           11
## 1380                 2025                           11
## 1381                 2025                           11
## 1382                 2025                           11
## 1383                 2025                           11
## 1384                 2025                           11
## 1385                 2025                           12
## 1386                 2025                           12
## 1387                 2025                           12
## 1388                 2025                           12
## 1389                 2025                           12
## 1390                 2025                           12
## 1391                 2025                           12
## 1392                 2025                           12
## 1393                 2025                           12
## 1394                 2025                           12
## 1395                 2025                           12
## 1396                 2025                           12
## 1397                 2025                restructuring
## 1398                 2026                           01
## 1399                 2026                           01
## 1400                 2026                           01
## 1401                 2026                           01
## 1402                 2026                           01
## 1403                 2026                           01
## 1404                 2026                           01
## 1405                 2026                           01
## 1406                 2026                           01
## 1407                 2026                           01
## 1408                 2026                           01
## 1409                 2026                           01
## 1410                 2026                           01
## 1411                 2026                           01
## 1412                 2026                           01
## 1413                 2026                           01
## 1414                 2026                           01
## 1415                 2026                           01
## 1416                 2026                           01
## 1417                 2026                           01
## 1418                 2026                           01
## 1419                 2026                           01
## 1420                 2026                           01
## 1421                 2026                           02
## 1422                 2026                           02
## 1423                 2026                           02
## 1424                 2026                           02
## 1425                 2026                           02
## 1426                 2026                           02
## 1427                 2026                           02
## 1428                 2026                           02
## 1429                 2026                           02
## 1430                 2026                           02
## 1431                 2026                           02
## 1432                 2026                           02
## 1433                 2026                           02
## 1434                 2026                           02
## 1435                 2026                           03
## 1436                 2026                           03
## 1437                 2026                           03
## 1438                 2026                           03
## 1439                 2026                           03
## 1440                 2026                           03
## 1441                 2026                           03
## 1442                 2026                           03
## 1443                 2026                            1
## 1444                 2026                         1397
## 1445                 2026                     compiled
## 1446                 2026                      release
## 1447                 2026                        world
## 1448                 2026                        world
## 1449                  203                         2025
## 1450                  204                         2025
## 1451                  205                         2025
## 1452                 2053                       nike's
## 1453                  206                         2025
## 1454                  207                         2025
## 1455                  208                         2025
## 1456                  209                         2025
## 1457                   21                            1
## 1458                   21                            1
## 1459                   21                            1
## 1460                   21                            1
## 1461                   21                            2
## 1462                   21                         2026
## 1463                   21                            3
## 1464                   21                            3
## 1465                   21                            4
## 1466                   21                            5
## 1467                   21                            5
## 1468                   21                            5
## 1469                   21                            5
## 1470                   21                            5
## 1471                   21                            7
## 1472                21.4b                      records
## 1473                  210                         2025
## 1474                  211                         2025
## 1475                  211                          air
## 1476                 2116                        white
## 1477                  212                         2025
## 1478                 2127                         2128
## 1479                 2128                          omg
## 1480                  213                         2025
## 1481                 2135                 flightposite
## 1482                 2138                 flightposite
## 1483                  214                         2025
## 1484                  214                       fugazi
## 1485                  215                         2025
## 1486                  216                         2025
## 1487                  217                         2025
## 1488                 2173                         fair
## 1489                  218                         2025
## 1490                  219                         2025
## 1491                 21st                           gl
## 1492                   22                            1
## 1493                   22                            1
## 1494                   22                            2
## 1495                   22                         2026
## 1496                   22                            3
## 1497                   22                            4
## 1498                   22                            5
## 1499                  220                         2025
## 1500                  220                         cool
## 1501                  220                      dollars
## 1502                 2200                         nice
## 1503                 2209                        skate
## 1504                  221                         2025
## 1505                 2218                         flea
## 1506                  222                         2025
## 1507                  223                         2025
## 1508                 2239                       pretty
## 1509                  224                         2025
## 1510                 2240                      rareair
## 1511                  225                         2025
## 1512                  226                         2025
## 1513                  227                         2025
## 1514                 2274                          gif
## 1515                  228                         2025
## 1516                  229                         2025
## 1517                 2298                         dope
## 1518                   23                            1
## 1519                   23                         2026
## 1520                   23                            3
## 1521                   23                            4
## 1522                   23                            4
## 1523                   23                            4
## 1524                   23                            5
## 1525                   23                            5
## 1526                   23                            5
## 1527                   23                            5
## 1528                   23                       minute
## 1529                  230                         2025
## 1530                  230                          bro
## 1531                  230                       pretty
## 1532                 2301                       jacked
## 1533                  231                         2025
## 1534                  231                         trap
## 1535                 2310                      correct
## 1536                 2313                      awesome
## 1537                  232                         2025
## 1538                  232                       cousin
## 1539                 2321                          gif
## 1540                  233                         2025
## 1541                  234                         2025
## 1542                 2340                        cream
## 1543                 2342                        black
## 1544                 2345                        black
## 1545                  235                         2025
## 1546                 2351                        cream
## 1547                 2356                        black
## 1548                 2357                         chef
## 1549                 2358                        black
## 1550                 2359                        black
## 1551                  236                         2025
## 1552                  236                          gif
## 1553                 2360                        black
## 1554                 2364                        black
## 1555                 2366                        black
## 1556                 2367                        black
## 1557                  237                         2025
## 1558                  237                         hell
## 1559                  238                         2025
## 1560                 2389                          gif
## 1561                  239                         2025
## 1562                  239                         heat
## 1563                   24                            1
## 1564                   24                            1
## 1565                   24                         2026
## 1566                   24                           25
## 1567                   24                            3
## 1568                   24                            5
## 1569                   24                            5
## 1570                   24                            5
## 1571                   24                            5
## 1572                  240                         2025
## 1573                  240                          duh
## 1574                  241                         2025
## 1575                  241                          gif
## 1576                  242                         2025
## 1577                  243                         2025
## 1578                 2434                        posts
## 1579                  244                         2025
## 1580                  245                         2025
## 1581                  246                         2025
## 1582                  247                         2025
## 1583                  248                         2025
## 1584                  249                         2025
## 1585                   25                         2026
## 1586                   25                            3
## 1587                   25                            3
## 1588                   25                            3
## 1589                   25                            4
## 1590                   25                            4
## 1591                   25                            5
## 1592                   25                        elite
## 1593                  250                         2025
## 1594                  251                         2025
## 1595                  252                         2025
## 1596                  253                         2025
## 1597                25310                        viral
## 1598                  254                         2025
## 1599                  255                         2025
## 1600                  256                         2025
## 1601                  257                         2025
## 1602                  258                         2025
## 1603                  259                         2025
## 1604                  259                          lei
## 1605                   26                            1
## 1606                   26                         2026
## 1607                   26                            4
## 1608                   26                            5
## 1609                   26                            5
## 1610                   26                   collection
## 1611                  260                         2025
## 1612                  261                         2025
## 1613                  262                         2025
## 1614                  263                         2025
## 1615                  263                         hell
## 1616                  264                         2025
## 1617                  265                         2025
## 1618                  265                         heck
## 1619                  266                         2025
## 1620                  267                         2025
## 1621                  268                         2025
## 1622                  268                           im
## 1623                  269                         2025
## 1624                 26th                           10
## 1625                   27                            1
## 1626                   27                            1
## 1627                   27                         2026
## 1628                   27                            3
## 1629                   27                            3
## 1630                   27                            5
## 1631                   27                            5
## 1632                   27                            5
## 1633                   27                            5
## 1634                  270                         2025
## 1635                  271                         2025
## 1636                  272                         2025
## 1637                  273                         2025
## 1638                  274                         2025
## 1639                  275                         2025
## 1640                  276                         2025
## 1641                  277                         2025
## 1642                  278                         2025
## 1643                  279                         2025
## 1644                   28                            2
## 1645                   28                            2
## 1646                   28                         2025
## 1647                   28                         2026
## 1648                   28                            3
## 1649                   28                            3
## 1650                   28                            4
## 1651                   28                            5
## 1652                  280                         2025
## 1653                  281                         2025
## 1654                  282                         2025
## 1655                  283                         2025
## 1656                  284                         2025
## 1657                  284                          285
## 1658                  285                         2025
## 1659                  285                         fire
## 1660                  286                         2025
## 1661                  286                          287
## 1662                  287                         2025
## 1663                  287                         love
## 1664                  288                         2025
## 1665                  289                         2025
## 1666                 28th                        chris
## 1667                   29                            1
## 1668                   29                            1
## 1669                   29                            1
## 1670                   29                         2026
## 1671                   29                            4
## 1672                   29                            5
## 1673                   29                            5
## 1674                   29                            5
## 1675                   29                            5
## 1676                   29                            5
## 1677                  290                         2025
## 1678                  291                         2025
## 1679                  292                         2025
## 1680                  293                         2025
## 1681                  294                         2025
## 1682                  295                         2024
## 1683                  295                           gt
## 1684                  296                         2024
## 1685                  297                         2024
## 1686                  298                         2024
## 1687                  299                         2024
## 1688               2fgrey                          amp
## 1689              2fwhite                      2fwhite
## 1690              2fwhite                        https
## 1691                    3                         1621
## 1692                    3                         2026
## 1693                    3                            4
## 1694                    3                            6
## 1695                    3                          air
## 1696                    3                          amp
## 1697                    3                    bloodbath
## 1698                    3                         fake
## 1699                    3                         mile
## 1700                    3                        miles
## 1701                    3                      neutral
## 1702                    3                      neutral
## 1703                    3                      neutral
## 1704                    3                      neutral
## 1705                    3                      neutral
## 1706                    3                      neutral
## 1707                    3                      neutral
## 1708                    3                      neutral
## 1709                    3                      neutral
## 1710                    3                      neutral
## 1711                    3                         nike
## 1712                    3                         nike
## 1713                    3                         nike
## 1714                    3                         nike
## 1715                    3                         nike
## 1716                    3                         nike
## 1717                    3                        north
## 1718                    3                        pairs
## 1719                    3                        pairs
## 1720                    3                          ply
## 1721                    3                         stop
## 1722                    3                       разных
## 1723                3,4,5                          amp
## 1724                  3,6                          839
## 1725                 3.8b                     purchase
## 1726                   30                         2026
## 1727                   30                            3
## 1728                   30                            3
## 1729                   30                            3
## 1730                   30                            5
## 1731                   30                            5
## 1732                   30                            5
## 1733                   30                            5
## 1734                   30                       minute
## 1735                  300                         2024
## 1736                 3000                     flawless
## 1737                  301                         2024
## 1738                  302                         2024
## 1739                  303                         2024
## 1740                  304                         2024
## 1741                  305                         2024
## 1742                  305                           gt
## 1743                  306                         2024
## 1744                  307                         2024
## 1745                  308                         2024
## 1746                  309                         2024
## 1747                   31                            2
## 1748                   31                            2
## 1749                   31                         2026
## 1750                   31                            4
## 1751                   31                            5
## 1752                   31                        miles
## 1753                  310                         2024
## 1754                  311                         2024
## 1755                  312                         2024
## 1756                  313                         2024
## 1757                  314                         2024
## 1758                  315                         2024
## 1759                  316                         2024
## 1760                  317                         2024
## 1761                  318                         2024
## 1762                  319                         2024
## 1763                   32                         2026
## 1764                   32                      degrees
## 1765                  320                         2024
## 1766                  321                         2024
## 1767                  322                         2024
## 1768                  323                         2024
## 1769                  324                         2024
## 1770                  325                         2024
## 1771                  325                          326
## 1772                  326                         2024
## 1773                  327                         2024
## 1774                  328                         2024
## 1775                  329                         2024
## 1776                   33                           19
## 1777                   33                         2026
## 1778                  330                         2024
## 1779                  331                         2024
## 1780                  332                         2024
## 1781                  333                         2024
## 1782                  334                         2024
## 1783                  335                         2024
## 1784                  336                         2024
## 1785                  337                         2024
## 1786                  338                         2024
## 1787                  339                         2024
## 1788                  339                       jordan
## 1789                   34                         2026
## 1790                  340                         2024
## 1791                  341                         2024
## 1792                  341                         nice
## 1793                  342                         2024
## 1794                  343                         2024
## 1795                  344                         2024
## 1796                  345                         2024
## 1797                  346                         2024
## 1798                  347                         2024
## 1799                  348                         2024
## 1800                  349                         2024
## 1801                   35                         2026
## 1802                   35                        bjorn
## 1803                  350                         2024
## 1804                  350                          nah
## 1805                  351                         2024
## 1806                  352                         2024
## 1807                  352                       single
## 1808                  353                         2024
## 1809                  353                            ã
## 1810                  354                         2024
## 1811                  354                     michelle
## 1812                  355                         2024
## 1813                  356                         2024
## 1814                  357                         2024
## 1815                  358                         2024
## 1816                  359                         2024
## 1817                  35l          accessorieseveryone
## 1818                   36                         2026
## 1819                   36                         rare
## 1820                  360                         2024
## 1821                  360                         mike
## 1822                  360                     wellness
## 1823                  361                         2024
## 1824                  361                      degrees
## 1825                  361                      degrees
## 1826                  362                         2024
## 1827                  363                         2024
## 1828                  364                         2024
## 1829                  364                         lmao
## 1830                  365                         2024
## 1831                  366                         2024
## 1832                  366                       aurora
## 1833                  367                         2024
## 1834                  368                         2024
## 1835                  369                         2024
## 1836                   37                         2026
## 1837                  370                         2024
## 1838                  370                          wow
## 1839                  371                         2024
## 1840                  372                         2024
## 1841                  373                         2024
## 1842                  373                          gif
## 1843                  374                         2024
## 1844                  375                         2024
## 1845               375lbs                     elevated
## 1846                  376                         2024
## 1847                  376                       future
## 1848                  377                         2024
## 1849                  378                         2024
## 1850                  379                         2024
## 1851                  379                       howwww
## 1852                   38                         2026
## 1853                  380                         2024
## 1854                  380                         howw
## 1855                  381                         2024
## 1856                  382                         2024
## 1857                  383                         2024
## 1858                  383                         nice
## 1859                  384                         2024
## 1860                  385                         2024
## 1861                  386                         2024
## 1862                  387                         2024
## 1863                  388                         2024
## 1864                  389                         2024
## 1865                   39                         2026
## 1866                  390                         2024
## 1867                  390                         link
## 1868                  391                         2024
## 1869                  391                          gif
## 1870                  392                         2024
## 1871                  393                         2024
## 1872                  394                         2024
## 1873                  395                         2024
## 1874                  396                         2024
## 1875                  396                       booker
## 1876                  397                         2024
## 1877                  398                         2024
## 1878                  399                         2024
## 1879                   3d                      printed
## 1880                   3d                      printed
## 1881                   3d                      printed
## 1882                   3d                      printed
## 1883                   3s                         2135
## 1884                    4                         2026
## 1885                    4                         4.65
## 1886                    4                          449
## 1887                    4                            5
## 1888                    4                            5
## 1889                    4                           5x
## 1890                    4                       adidas
## 1891                    4                        adios
## 1892                    4                       boston
## 1893                    4                       fruity
## 1894                    4                       months
## 1895                    4                         nike
## 1896                    4                         nike
## 1897                    4                         nike
## 1898                    4                     positive
## 1899                    4                     positive
## 1900                    4                     positive
## 1901                    4                     positive
## 1902                    4                     positive
## 1903                    4                     positive
## 1904                    4                     positive
## 1905                    4                     positive
## 1906                    4                     positive
## 1907                    4                     positive
## 1908                    4                     positive
## 1909                    4                     positive
## 1910                    4                      rareair
## 1911                    4                           sb
## 1912                    4                         seat
## 1913                    4                    superstar
## 1914                    4                        weeks
## 1915                    4                     workouts
## 1916                4.115                          115
## 1917                 4.12                           12
## 1918                4.123                          123
## 1919                4.130                          130
## 1920                4.150                          150
## 1921                4.155                          155
## 1922                4.211                          211
## 1923                4.213                          213
## 1924                 4.22                           22
## 1925                4.223                          223
## 1926                4.230                          230
## 1927                4.239                          239
## 1928                4.262                          262
## 1929                4.270                          270
## 1930                4.295                          295
## 1931                4.305                          305
## 1932                4.331                          331
## 1933                4.351                          351
## 1934                4.352                          352
## 1935                4.353                          353
## 1936                4.376                          376
## 1937                4.383                          383
## 1938                4.399                          399
## 1939                 4.41                           41
## 1940                 4.45                           45
## 1941                 4.46                           46
## 1942                 4.51                           51
## 1943                 4.58                           58
## 1944                 4.65                           65
## 1945                 4.66                           66
## 1946                 4.70                           70
## 1947                 4.74                           74
## 1948                 4.93                           93
## 1949                   40                         2026
## 1950                   40                          370
## 1951                   40                        bucks
## 1952                  400                         2024
## 1953                 4000                           4d
## 1954                  401                         2024
## 1955                  402                         2024
## 1956                  402                       custom
## 1957                  403                         2024
## 1958                  403                          404
## 1959                  404                         2024
## 1960                  405                         2024
## 1961                  406                         2024
## 1962                  406                        books
## 1963                  407                         2024
## 1964                  407                         nike
## 1965                  408                         2024
## 1966                  409                         2024
## 1967                   41                         2026
## 1968                   41                          ran
## 1969                   41                         smdh
## 1970                  410                         2024
## 1971                  411                         2024
## 1972                  411                         nice
## 1973                  412                         2024
## 1974                  413                         2024
## 1975                  413                         hype
## 1976                  414                         2024
## 1977                  415                         2024
## 1978                  416                         2024
## 1979                  417                         2024
## 1980                  418                         2024
## 1981                  419                         2024
## 1982                   42                         2026
## 1983                  420                         2024
## 1984                  420                           ew
## 1985                  421                         2024
## 1986                  422                         2024
## 1987                  423                         2024
## 1988                  424                         2024
## 1989                  425                         2024
## 1990                  426                         2024
## 1991                  427                         2024
## 1992                  428                         2024
## 1993                  429                         2024
## 1994                   43                         2026
## 1995                  430                         2024
## 1996                  431                         2024
## 1997                  432                         2024
## 1998                  433                         2024
## 1999                  434                         2024
## 2000                  435                         2024
## 2001                  436                         2024
## 2002                  437                         2024
## 2003                  438                         2024
## 2004                  439                         2024
## 2005                   44                         2026
## 2006                  440                         2024
## 2007                  441                         2024
## 2008                  442                         2024
## 2009                  442                     familiar
## 2010                  443                         2024
## 2011                  444                         2024
## 2012                  445                         2024
## 2013                  446                         2024
## 2014                  447                         2023
## 2015                  448                         2023
## 2016                  449                         2023
## 2017                   45                         2026
## 2018                   45                           eu
## 2019                  450                         2023
## 2020                  451                         2023
## 2021                  452                         2023
## 2022                  453                         2023
## 2023                  454                         2023
## 2024                  455                         2023
## 2025                  456                         2023
## 2026                  457                         2023
## 2027                  458                         2023
## 2028                  459                         2023
## 2029             45yj9vh7                    абсолютна
## 2030                   46                         2026
## 2031                   46                        miles
## 2032                   46                         wear
## 2033                  460                         2023
## 2034                  461                         2023
## 2035                  462                         2023
## 2036                  463                         2023
## 2037                  464                         2023
## 2038                  465                         2023
## 2039                  466                         2023
## 2040                  467                         2023
## 2041                  468                         2023
## 2042                  469                         2023
## 2043                  469                          gif
## 2044                   47                         2026
## 2045                  470                         2023
## 2046                  471                         2023
## 2047                  472                         2023
## 2048                  473                         2023
## 2049                  474                         2023
## 2050                  475                         2023
## 2051                  476                         2023
## 2052                  477                         2023
## 2053                  478                         2023
## 2054                  479                         2023
## 2055                   48                         2026
## 2056                   48                         flip
## 2057                  480                         2023
## 2058                  481                         2023
## 2059                  481                     sleeping
## 2060                  482                         2023
## 2061                  483                         2023
## 2062                  483                          gif
## 2063                  484                         2023
## 2064                  484                          485
## 2065                  485                         2023
## 2066                  485                          486
## 2067                  486                         2023
## 2068                  486                         hoes
## 2069                  487                         2023
## 2070                  488                         2023
## 2071                  489                         2023
## 2072                   49                         2026
## 2073                   49                         ekin
## 2074                  490                            1
## 2075                  490                         2023
## 2076                   4d                        space
## 2077                  4th                  perforation
## 2078                    5                           10
## 2079                    5                           10
## 2080                    5                         1327
## 2081                    5                           15
## 2082                    5                         1919
## 2083                    5                         2026
## 2084                    5                            8
## 2085                    5                     adjusted
## 2086                    5                          air
## 2087                    5                        apple
## 2088                    5                       casual
## 2089                    5                    estrellas
## 2090                    5                          gtx
## 2091                    5                          low
## 2092                    5                          low
## 2093                    5                          low
## 2094                    5                          min
## 2095                    5                      mohamed
## 2096                    5                         nike
## 2097                    5                         nike
## 2098                    5                         nike
## 2099                    5                         phil
## 2100                    5                     positive
## 2101                    5                     positive
## 2102                    5                     positive
## 2103                    5                     positive
## 2104                    5                     positive
## 2105                    5                     positive
## 2106                    5                     positive
## 2107                    5                     positive
## 2108                    5                     positive
## 2109                    5                     positive
## 2110                    5                     positive
## 2111                    5                     positive
## 2112                    5                     positive
## 2113                    5                     positive
## 2114                    5                     positive
## 2115                    5                     positive
## 2116                    5                     positive
## 2117                    5                     positive
## 2118                    5                     positive
## 2119                    5                     positive
## 2120                    5                     positive
## 2121                    5                     positive
## 2122                    5                     positive
## 2123                    5                     positive
## 2124                    5                     positive
## 2125                    5                     positive
## 2126                    5                     positive
## 2127                    5                     positive
## 2128                    5                     positive
## 2129                    5                     positive
## 2130                    5                     positive
## 2131                    5                     positive
## 2132                    5                     positive
## 2133                    5                     positive
## 2134                    5                     positive
## 2135                    5                     positive
## 2136                    5                     positive
## 2137                    5                     positive
## 2138                    5                     positive
## 2139                    5                     positive
## 2140                    5                     positive
## 2141                    5                     positive
## 2142                    5                     positive
## 2143                    5                     positive
## 2144                    5                     positive
## 2145                    5                     positive
## 2146                    5                     positive
## 2147                    5                     positive
## 2148                    5                     positive
## 2149                    5                     positive
## 2150                    5                     positive
## 2151                    5                     positive
## 2152                    5                     positive
## 2153                    5                     positive
## 2154                    5                     positive
## 2155                    5                     positive
## 2156                    5                     positive
## 2157                    5                     positive
## 2158                    5                     positive
## 2159                    5                     positive
## 2160                    5                     positive
## 2161                    5                     positive
## 2162                    5                     positive
## 2163                    5                        stars
## 2164                    5                        stars
## 2165                    5                         yoga
## 2166                   50                         2026
## 2167                   50                       sadida
## 2168                  500                        pairs
## 2169                   51                         2026
## 2170                   51                       bought
## 2171                  510                     griselda
## 2172                   52                         2026
## 2173                  526                         heck
## 2174                  527                          gif
## 2175                   53                         2026
## 2176                   54                         2026
## 2177                  542                          gif
## 2178                  543                          gif
## 2179                   55                         2026
## 2180                   55                        kinda
## 2181                  555                          air
## 2182                  558                        lucky
## 2183                  559                          560
## 2184                   56                         2026
## 2185                  560                         hell
## 2186                  565                    massively
## 2187                   57                         2026
## 2188                  572                          gif
## 2189                  576                         nike
## 2190                  579                         hell
## 2191                   58                         1558
## 2192                   58                         2025
## 2193                   58                     official
## 2194                   58                     workouts
## 2195                  585                          gif
## 2196                  587                     medieval
## 2197                  58m                       adidas
## 2198                   59                         2025
## 2199                   5k                         game
## 2200                  5ks                         half
## 2201                   5x                         week
## 2202                    6                         2026
## 2203                    6                          816
## 2204                    6                       golden
## 2205                    6                          low
## 2206                    6                          low
## 2207                    6                          low
## 2208                    6                         mile
## 2209                    6                       months
## 2210                    6                       months
## 2211                    6                       months
## 2212                    6                       months
## 2213                    6                         nike
## 2214                    6                         nike
## 2215                    6                         nike
## 2216                    6                         nike
## 2217                    6                         week
## 2218                   60                         2025
## 2219                  600                         cmon
## 2220                   61                         2025
## 2221                   62                         2025
## 2222                   62                      deleted
## 2223                  620                        solid
## 2224                   63                         2025
## 2225                  635                       guilty
## 2226                  636                        dunks
## 2227                   64                         2025
## 2228                  646                       narrow
## 2229                  648                      totally
## 2230                   65                         2025
## 2231                   66                         2025
## 2232                   66                      serrano
## 2233                   67                         2025
## 2234                  671                          bet
## 2235                  674                         stfu
## 2236                  678                        crocs
## 2237                   68                         2025
## 2238                  682                            2
## 2239                  686                          tnx
## 2240                   69                         2025
## 2241                    7                         2026
## 2242                    7                          day
## 2243                    7                           km
## 2244                    7                          low
## 2245                    7                          low
## 2246                    7                          low
## 2247                    7                          low
## 2248                    7                          low
## 2249                    7                          low
## 2250                    7                         nike
## 2251                    7                         nike
## 2252                    7                    sapphires
## 2253                    7                            û
## 2254                    7                            ý
## 2255                   70                         2025
## 2256                   70                      minutos
## 2257                   70                          top
## 2258                 700m                         loss
## 2259                  703                            3
## 2260                 7049                        viral
## 2261                  707                         lmao
## 2262                  708                    cardboard
## 2263                   71                            1
## 2264                   71                         2025
## 2265                  712                           ai
## 2266                   72                         2025
## 2267                   73                         2025
## 2268                  733                            1
## 2269                   74                         2025
## 2270                  743                     platinum
## 2271                   75                         2025
## 2272                   75                         fake
## 2273                  752                            2
## 2274                  755                        ultra
## 2275                   76                         2025
## 2276                   77                         2025
## 2277                  770                          air
## 2278                  773                            1
## 2279                   78                         2025
## 2280                   79                         2025
## 2281                   79                          usd
## 2282                 790m                    quarterly
## 2283                  794                         size
## 2284                    8                            2
## 2285                    8                         2026
## 2286                    8                          low
## 2287                    8                          low
## 2288                    8                         nike
## 2289                    8                         nike
## 2290                   80                         2025
## 2291                   80                       pounds
## 2292                   81                         2025
## 2293                  811                        green
## 2294                  815                            3
## 2295                  817                        green
## 2296                  818                        mowab
## 2297                   82                         2025
## 2298                  822                        white
## 2299                  824                       cortez
## 2300                   83                         2025
## 2301                  838                          3,6
## 2302                   84                         2025
## 2303                  843                         gump
## 2304                  849                          gif
## 2305                   85                         2025
## 2306                   85                         cuts
## 2307                  850                         pink
## 2308                  851                        3,4,5
## 2309                   86                         2025
## 2310                   86                           og
## 2311                  862                         pink
## 2312                   87                         2025
## 2313                   88                         2025
## 2314                   88                         mine
## 2315                  884                          gif
## 2316                  889                          gif
## 2317                   89                         2025
## 2318                  897                          gif
## 2319                  8am                     thursday
## 2320                    9                         2026
## 2321                    9                          evo
## 2322                    9                    excellent
## 2323                    9                          low
## 2324                    9                          low
## 2325                    9                          low
## 2326                    9                         nike
## 2327                    9                         nike
## 2328                  9.7                      billion
## 2329                   90                         2025
## 2330                  904                        space
## 2331                  906                          gif
## 2332                  90s                         4.24
## 2333                  90s                          air
## 2334                  90s                         mass
## 2335                   91                         2025
## 2336                   91                      squeeky
## 2337                  910                       prolly
## 2338                  911                          gif
## 2339                   92                         2025
## 2340                  921                          gif
## 2341                  927                      vintage
## 2342                   93                         2025
## 2343                  935                          936
## 2344                  936                        clean
## 2345                   94                         2025
## 2346                   95                         2025
## 2347                   95                          air
## 2348                   95                         dual
## 2349                   95                        retro
## 2350                   95                      uptempo
## 2351                  958                          gif
## 2352                   96                         2025
## 2353                  964                        solid
## 2354                   97                         2025
## 2355                  975                     realtree
## 2356                   98                         2025
## 2357                  987                        mossy
## 2358                   99                         2025
## 2359                  990                          naw
## 2360                   a1                            ª
## 2361            abandoned                        house
## 2362             absolute                         love
## 2363           absolutely                      amazing
## 2364           absolutely                       badass
## 2365           absolutely                         free
## 2366           absolutely                     gorgeous
## 2367           absolutely                       insane
## 2368              absurda                           de
## 2369             abundant                         joke
## 2370                acabo                           de
## 2371          accelerates                      digital
## 2372         acceleration                     strategy
## 2373        accessibility                         line
## 2374               accord                     sneakers
## 2375              account                           26
## 2376              account                          411
## 2377              account                  unavailable
## 2378          accountable                          app
## 2379             accounts                     multiple
## 2380             accuracy                      doesn’t
## 2381             accurate                          app
## 2382             accurate                         feet
## 2383             accurate                         mile
## 2384             accurate                      running
## 2385              accéder                            à
## 2386                  acg                          air
## 2387                  acg                     colorway
## 2388                  acg                   lunarterra
## 2389                  acg                        torre
## 2390                 acgs                          824
## 2391         achievements                          119
## 2392                  acl                          amp
## 2393           acompañado                         solo
## 2394               active                       highly
## 2395            actividad                       física
## 2396           activities                          346
## 2397           activities                         data
## 2398             activity                    correctly
## 2399             activity                     customer
## 2400             activity                       finish
## 2401               actual                         calm
## 2402               actual                   difference
## 2403               actual                         size
## 2404                  acá                           es
## 2405                   ad                          age
## 2406                   ad                          mid
## 2407                  add                   additional
## 2408                  add                         dark
## 2409                  add                         dark
## 2410                  add                      spotify
## 2411                added                          468
## 2412                added                     workouts
## 2413              addidas                           11
## 2414               adding                       adidas
## 2415            addressed                          276
## 2416               además                        tiene
## 2417              adiclub                      running
## 2418               adidas                        adios
## 2419               adidas                      adizero
## 2420               adidas                          app
## 2421               adidas                          app
## 2422               adidas                          app
## 2423               adidas                        asics
## 2424               adidas                       attire
## 2425               adidas                          ceo
## 2426               adidas                          ceo
## 2427               adidas                          ceo
## 2428               adidas                          ceo
## 2429               adidas                        china
## 2430               adidas                         city
## 2431               adidas                        drive
## 2432               adidas                          eqt
## 2433               adidas                           es
## 2434               adidas                      factory
## 2435               adidas                        forum
## 2436               adidas                     handball
## 2437               adidas                    increíble
## 2438               adidas                       jordan
## 2439               adidas                           la
## 2440               adidas                      leather
## 2441               adidas                         logo
## 2442               adidas                         mens
## 2443               adidas                          nmd
## 2444               adidas                          nmd
## 2445               adidas                    originals
## 2446               adidas                           os
## 2447               adidas                         para
## 2448               adidas                        posts
## 2449               adidas                           q3
## 2450               adidas                   rapidmoves
## 2451               adidas                       reddit
## 2452               adidas                      running
## 2453               adidas                      running
## 2454               adidas                        samba
## 2455               adidas                        samba
## 2456               adidas                        shoes
## 2457               adidas                           sl
## 2458               adidas                          top
## 2459               adidas                     training
## 2460               adidas                      trefoil
## 2461               adidas                         très
## 2462               adidas                        ultra
## 2463               adidas                uygulamasında
## 2464               adidas                      vintage
## 2465               adidas                      website
## 2466               adidas                 windbreakers
## 2467               adidas                           ye
## 2468               adidas                           zx
## 2469             adidas's                         site
## 2470      adidasoriginals                        score
## 2471      adidasoriginals                        score
## 2472      adidasoriginals                        score
## 2473                adios                            9
## 2474                adios                            9
## 2475                adios                      addidas
## 2476                adios                          pro
## 2477                adios                          pro
## 2478                adios                          pro
## 2479                adios                         pro4
## 2480              adizero                     ayakkabı
## 2481             adjusted                    operating
## 2482             adoption                          382
## 2483           adrenaline                      running
## 2484                  ads                       highly
## 2485                  ads                     jordan's
## 2486                  ads                      nonstop
## 2487                  adv                         club
## 2488                  adv                         club
## 2489              advance                          408
## 2490             advanced                      primary
## 2491             advanced                      workout
## 2492             advanced                      workout
## 2493            advantage                       walked
## 2494           advertised                          156
## 2495               advice                          187
## 2496                 aero                        glide
## 2497             aerobill                          cap
## 2498                   af                         2004
## 2499                   af                          727
## 2500                   af                           88
## 2501                  af1                         1475
## 2502                  age                           52
## 2503                  age                       august
## 2504                  age                      fitness
## 2505                  ago                         1012
## 2506                  ago                          420
## 2507                  ago                      amazing
## 2508                  ago                      version
## 2509                agree                            ª
## 2510                ahoes                         2366
## 2511                 aint                          220
## 2512                 aint                        loyal
## 2513                  air                        force
## 2514                  air                       gordan
## 2515                  air                          jet
## 2516                  air                       jordan
## 2517                  air                       jordan
## 2518                  air                          max
## 2519                  air                          max
## 2520                  air                          max
## 2521                  air                          max
## 2522                  air                          max
## 2523                  air                          max
## 2524                  air                          max
## 2525                  air                          max
## 2526                  air                          max
## 2527                  air                          max
## 2528                  air                          max
## 2529                  air                          max
## 2530                  air                          max
## 2531                  air                          max
## 2532                  air                          max
## 2533                  air                          max
## 2534                  air                          max
## 2535                  air                       pippen
## 2536                  air                        sport
## 2537                  air                         tech
## 2538                  air                         unit
## 2539                  air                         zoom
## 2540                  air                         zoom
## 2541                  air                         zoom
## 2542              airpods                          pro
## 2543                  aj1                         book
## 2544                  aka                          pre
## 2545                   al                          100
## 2546                   al                       querer
## 2547                alert               sneakeralerthd
## 2548         alimentación                        hasta
## 2549                alpha                      project
## 2550             alphafly                            2
## 2551            alphaflys                         4.48
## 2552              alright                  comfortable
## 2553         alternatives                         1036
## 2554             altitude                     distance
## 2555                  am1                           86
## 2556              amazing                          177
## 2557              amazing                           62
## 2558              amazing                       cardio
## 2559              amazing                       highly
## 2560              amazing                         it’s
## 2561              amazing                      program
## 2562              amazing                       review
## 2563              amazing                        super
## 2564               amazon                        snike
## 2565                 amen                     mapmyrun
## 2566              america                     declines
## 2567              america                     declines
## 2568              america                        falls
## 2569             american                   basketball
## 2570             american                    podiatric
## 2571                amigo                      awesome
## 2572                 amor                         quem
## 2573                  amp                            6
## 2574                  amp                            6
## 2575                  amp                        color
## 2576                  amp                        field
## 2577                  amp                          psc
## 2578                  amp                         sand
## 2579                  amp                        style
## 2580                  amp                       upvote
## 2581                  amp                        white
## 2582              analyst                     concerns
## 2583            analytics                         goal
## 2584              android                      devices
## 2585                angle                          280
## 2586                ankle                        socks
## 2587            announces                        1,600
## 2588            announces                           70
## 2589            announces                          ceo
## 2590            announces                       phased
## 2591             annoying                          100
## 2592             annoying                     repeated
## 2593               antall                          490
## 2594              antonio                       garcía
## 2595              anymore                          196
## 2596              anymore                          250
## 2597              anymore                          376
## 2598              anymore                          380
## 2599              anymore                          422
## 2600              anymore                          490
## 2601              anymore                       bummed
## 2602              anymore                         nice
## 2603             anúncios               principalmente
## 2604         aplicaciones                           de
## 2605           aplicación                          app
## 2606           aplicación                        buena
## 2607           aplicación                           de
## 2608           aplicación                           es
## 2609           aplicación                           es
## 2610           aplicación                           es
## 2611           aplicación                          muy
## 2612           aplicación                          más
## 2613           aplicación                         pero
## 2614           aplicación                          por
## 2615           aplicación                         tuvo
## 2616           aplicativo                        cheio
## 2617           aplicativo                      pratico
## 2618           aplicativo                            é
## 2619                apoyo                           en
## 2620                  app                          112
## 2621                  app                          130
## 2622                  app                          171
## 2623                  app                          175
## 2624                  app                          180
## 2625                  app                           21
## 2626                  app                          235
## 2627                  app                          240
## 2628                  app                          242
## 2629                  app                          248
## 2630                  app                          257
## 2631                  app                          260
## 2632                  app                          262
## 2633                  app                          272
## 2634                  app                          287
## 2635                  app                           30
## 2636                  app                          356
## 2637                  app                          369
## 2638                  app                          427
## 2639                  app                          433
## 2640                  app                           51
## 2641                  app                           54
## 2642                  app                           73
## 2643                  app                        acabo
## 2644                  app                      anymore
## 2645                  app                      anymore
## 2646                  app                      anymore
## 2647                  app                       avoids
## 2648                  app                      awesome
## 2649                  app                      awesome
## 2650                  app                          bad
## 2651                  app                     calories
## 2652                  app                        can’t
## 2653                  app                        can’t
## 2654                  app                        can’t
## 2655                  app                        check
## 2656                  app                      choices
## 2657                  app                        crash
## 2658                  app                      crashed
## 2659                  app                      crashes
## 2660                  app                      crashes
## 2661                  app                      crashes
## 2662                  app                      crashes
## 2663                  app                           de
## 2664                  app                           de
## 2665                  app                           de
## 2666                  app                         dear
## 2667                  app                    declining
## 2668                  app                       design
## 2669                  app                 disappointed
## 2670                  app                      doesn’t
## 2671                  app                      doesn’t
## 2672                  app                    excelente
## 2673                  app                    excellent
## 2674                  app                      fitness
## 2675                  app                         fore
## 2676                  app                          fun
## 2677                  app                     glitches
## 2678                  app                       highly
## 2679                  app                        isn’t
## 2680                  app                         it’s
## 2681                  app                          i’m
## 2682                  app                         i’ve
## 2683                  app                           kg
## 2684                  app                           la
## 2685                  app                           la
## 2686                  app                    literally
## 2687                  app                          oct
## 2688                  app                       offers
## 2689                  app                         para
## 2690                  app                         para
## 2691                  app                      perfect
## 2692                  app                  performance
## 2693                  app                     requires
## 2694                  app                         sets
## 2695                  app                        start
## 2696                  app                       starts
## 2697                  app                        store
## 2698                  app                        store
## 2699                  app                    supported
## 2700                  app                        takes
## 2701                  app                           te
## 2702                  app                        theme
## 2703                  app                         user
## 2704                  app                         wont
## 2705                  app                        won’t
## 2706                  app                        won’t
## 2707           apparently                         nike
## 2708                apple                      fitness
## 2709                apple                      fitness
## 2710                apple                      fitness
## 2711                apple                      fitness
## 2712                apple                          gps
## 2713                apple                           tv
## 2714                apple                        watch
## 2715                apple                        watch
## 2716                apple                        watch
## 2717                apple                        watch
## 2718                apple                        watch
## 2719                apple                        watch
## 2720                apple                        watch
## 2721                apple                        watch
## 2722                apple                      watch’s
## 2723          application                         اهتم
## 2724          appreciated                       kareem
## 2725             approach                incorporating
## 2726                 apps                          137
## 2727                 apps                          146
## 2728                 apps                          252
## 2729                 apps                       easily
## 2730                 apps                    including
## 2731                 apps                    including
## 2732             appstore                          483
## 2733                app’s                  inclusivity
## 2734                apres                        avoir
## 2735             archivos                           de
## 2736               aren’t                     swearing
## 2737                armor                          app
## 2738                armor                     infinite
## 2739                armor                        shoes
## 2740               armour                     adjusted
## 2741               armour                    announces
## 2742               armour                    announces
## 2743               armour                    announces
## 2744               armour                          app
## 2745               armour                        books
## 2746               armour                     campaign
## 2747               armour                          ceo
## 2748               armour                          ceo
## 2749               armour                       fiscal
## 2750               armour                         flow
## 2751               armour                         heat
## 2752               armour                        hires
## 2753               armour                   introduces
## 2754               armour                     launches
## 2755               armour                        loses
## 2756               armour                       motion
## 2757               armour                          net
## 2758               armour                       oakley
## 2759               armour                         pays
## 2760               armour                  performance
## 2761               armour                        posts
## 2762               armour                           q2
## 2763               armour                           q3
## 2764               armour                           q3
## 2765               armour                           q3
## 2766               armour                       reddit
## 2767               armour                      reports
## 2768               armour                      reports
## 2769               armour                restructuring
## 2770               armour                       retail
## 2771               armour                        sells
## 2772               armour                        shoes
## 2773               armour                       sports
## 2774               armour                        stock
## 2775               armour                        stock
## 2776               armour                      stretch
## 2777               armour                         team
## 2778               armour                         type
## 2779               armour                           ua
## 2780               armour                      updates
## 2781               armour                        warns
## 2782               armour                        warns
## 2783               armour                      youtube
## 2784            artículos                          con
## 2785                  asf                         1688
## 2786                  asf                          icl
## 2787              asinine                          565
## 2788   asjkibidvgfmxphcdq                    downsized
## 2789              asphalt                       gravel
## 2790          assinaturas                          mas
## 2791          association                          day
## 2792              assumed                      memphis
## 2793              assumes                         role
## 2794          assumptions                        curry
## 2795          astonishing                          377
## 2796              athlete                       hookem
## 2797              athlete                     trainers
## 2798             athletes                        lucas
## 2799          athleticism                          333
## 2800              através                          das
## 2801              attendu                      pendant
## 2802            attention                         1227
## 2803                audio                         pace
## 2804               august                            5
## 2805               august                            6
## 2806               august                            7
## 2807               august                            8
## 2808            australia                            2
## 2809            automatic                            1
## 2810        automatically                      assumed
## 2811               autumn                       forest
## 2812         availability                       strava
## 2813               avance                           de
## 2814              avances                   comparando
## 2815              average                        level
## 2816              average                         pace
## 2817                avoid                   connection
## 2818                avoid                        total
## 2819               avoids                       double
## 2820                avoir                          mis
## 2821              awesome                          199
## 2822              awesome                          312
## 2823              awesome                          5.0
## 2824              awesome                          app
## 2825              awesome                          app
## 2826              awesome                          app
## 2827              awesome                          app
## 2828              awesome                     detailed
## 2829              awesome                         free
## 2830              awesome                        shoes
## 2831              awesome                         team
## 2832              awesome                         user
## 2833                awful                        apple
## 2834             ayakkabı                      giyorum
## 2835                ayuda                         para
## 2836                  ayy                         heck
## 2837                  ayy                      letsgoo
## 2838                 azul                       maximo
## 2839                 baby                      toddler
## 2840            baconator                  vapourwaver
## 2841                  bad                        batch
## 2842                  bad                        bunny
## 2843                  bad                     honestly
## 2844                  bad                           rn
## 2845                  bad                 subscription
## 2846               badass                          686
## 2847               badass                  firefighter
## 2848                badly                          682
## 2849                  bag                          35l
## 2850              baklava                        1890s
## 2851              balance                         gain
## 2852              balance                        shoes
## 2853                 ball                    knowledge
## 2854                 ball                        shoes
## 2855                 bank                          366
## 2856               banned                        shoes
## 2857                 bape                         tech
## 2858                  bar                        dirty
## 2859             barefoot                         1750
## 2860                 barj               arjaybicomskee
## 2861                barry                      sanders
## 2862                 base                         amid
## 2863             baseball                          cap
## 2864                based                          air
## 2865                based                        teams
## 2866                basic                     features
## 2867                basic                      fitness
## 2868                basic                   functional
## 2869                basic                         nike
## 2870            basically                        makes
## 2871                basis                         nike
## 2872           basketball                       jersey
## 2873           basketball                        shoes
## 2874           basketball                      student
## 2875                batch                            2
## 2876              battery                        drain
## 2877                  bay                       fandom
## 2878             başlatma                           ve
## 2879             başlatma                     özelliği
## 2880                   bc                          i’m
## 2881                beast                    superstar
## 2882            beautiful                          day
## 2883            beautiful                         girl
## 2884                  bee                          336
## 2885             beginner                      conmigo
## 2886             beginner                     friendly
## 2887               begins                      quietly
## 2888                beige                         pair
## 2889              bending                          373
## 2890           beneficios                           al
## 2891           beneficios                           de
## 2892                  bet                           ya
## 2893               betina                   gozooooooo
## 2894             betina’s                     strength
## 2895                 bien                          con
## 2896                 bien                     diseñada
## 2897                 bien                           la
## 2898                 bien                           mi
## 2899               bigger                         size
## 2900              biggest                       sports
## 2901              billion                        share
## 2902              billion                     sparking
## 2903                  bio                          387
## 2904                  bit                       boring
## 2905                  bit                disappointing
## 2906                  bit                     extended
## 2907                  bit                      intense
## 2908                  bit                        stark
## 2909                  bit                        tight
## 2910                bjorn                       gulden
## 2911                black                          126
## 2912                black                          149
## 2913                black                           1s
## 2914                black                         2343
## 2915                black                         2346
## 2916                black                         2357
## 2917                black                         2359
## 2918                black                         2360
## 2919                black                         2367
## 2920                black                       2fgrey
## 2921                black                          amp
## 2922                black                        boost
## 2923                black                        laces
## 2924                black                        laces
## 2925                black                      neutral
## 2926                black                         pair
## 2927                black                      pegasus
## 2928                black                       screen
## 2929                black                   sweatshirt
## 2930                black                          toe
## 2931                black                        white
## 2932                blame                         nike
## 2933                blame                      quality
## 2934                blank                          269
## 2935                blank                         page
## 2936                blank                        white
## 2937                blank                        white
## 2938               bleach                          lol
## 2939               bleach                        water
## 2940                bless                         nike
## 2941                blind                       buying
## 2942                  blk                        shoes
## 2943            bloodbath                         nike
## 2944            bloomberg                         june
## 2945             bludgeon                    technical
## 2946                 blue                         1778
## 2947                 blue                            4
## 2948                 blue                       ribbon
## 2949                 blue                       rstill
## 2950                 blue                        suede
## 2951                blues                         1785
## 2952                board                          sec
## 2953               bodily                       fluids
## 2954                 body                       cardio
## 2955                 body                     changing
## 2956                 body                     workouts
## 2957                bogus                         4.39
## 2958                 bold                  factsorstfu
## 2959                bones                           56
## 2960                bonne                  application
## 2961               booker                           1s
## 2962           bookmarked                         vids
## 2963                books                          407
## 2964                books                         431m
## 2965                boost                           4d
## 2966                boost                          pro
## 2967                boost                      running
## 2968               boring                dipmasterflex
## 2969               boston                           12
## 2970               boston                           12
## 2971                 bots                          lol
## 2972               bought                            2
## 2973               bought                         blue
## 2974               bought                         crew
## 2975               bought                         nike
## 2976               bought                        sucks
## 2977                 bout                           79
## 2978              boycott                      combine
## 2979                 boys                        gonna
## 2980                brain                           94
## 2981                brand                         4.31
## 2982                brand                       lineup
## 2983              branded                       aglets
## 2984               brands                         1284
## 2985               brands                       podium
## 2986               brands                          sl2
## 2987               brazil                       theses
## 2988            brazilian                     national
## 2989              breaker                          423
## 2990               breaks                      amazing
## 2991                 bred                          85s
## 2992                 bret                      farve's
## 2993               bright                         blue
## 2994               bright                      crimson
## 2995               bright                       spruce
## 2996                  bro                          231
## 2997                  bro                          683
## 2998                  bro                          818
## 2999                  bro                          889
## 3000                  bro                         nice
## 3001               broken                          395
## 3002               broken                         link
## 3003               broken                        links
## 3004               broken                        won’t
## 3005               brooks                   adrenaline
## 3006               browne                        named
## 3007             browsing                       online
## 3008                   bs                          4.2
## 3009                  btw                          hey
## 3010                   bu                    özelliğin
## 3011               bubble                        4.213
## 3012               bubble                          95s
## 3013               bubble                         pink
## 3014               bubble                     releases
## 3015               bubble                      version
## 3016               bubble                         wrap
## 3017              bubbles                    represent
## 3018                 buck                         1158
## 3019                bucks                         game
## 3020                 buen                     programa
## 3021                buena                   aplicación
## 3022                buena                   aplicación
## 3023                buena                          app
## 3024                buena                          app
## 3025                buena                        forma
## 3026                 bugs                          396
## 3027                 bugs                       adidas
## 3028                 bugs                          app
## 3029                bulky                       hiking
## 3030                bulls                       target
## 3031               bummed                          478
## 3032                bunny                       campus
## 3033                 burn                        marks
## 3034               burned                    excelente
## 3035             business                     february
## 3036             business                      insider
## 3037             business                         stay
## 3038             business                     strategy
## 3039                 busy                     schedule
## 3040              buttons                       people
## 3041                  buy                         1736
## 3042                  buy                         2316
## 3043                  buy                          304
## 3044                  buy                          579
## 3045                  buy                        fresh
## 3046                  buy                         nice
## 3047                  buy                       normal
## 3048                  buy                     onitsuka
## 3049               buying                         fake
## 3050                  bye                          bye
## 3051                  bye                         nike
## 3052                 cada                          día
## 3053                 cake                          lol
## 3054            calculate                     distance
## 3055            caldrones                         1556
## 3056                 calf                       raises
## 3057                 call                        bogus
## 3058               called                         1913
## 3059               called                        smoke
## 3060                 calm                        shoes
## 3061             calories                       burned
## 3062             calories                          ect
## 3063               cambié                           de
## 3064               cambió                          por
## 3065               camera                       angles
## 3066               camera                         film
## 3067            caminamos                           10
## 3068            caminando                          una
## 3069               campus                         sean
## 3070                canal                       street
## 3071               cancer                  association
## 3072                candy                       orange
## 3073                can’t                         join
## 3074                can’t                         join
## 3075                can’t                        login
## 3076                can’t                     manually
## 3077                can’t                      perform
## 3078                can’t                         quit
## 3079                can’t                        reach
## 3080                can’t                     register
## 3081                can’t                         stay
## 3082                  cap                         1549
## 3083                  cap                    tracksuit
## 3084           capitalism                        texas
## 3085                 card                          lol
## 3086               cardio                          muy
## 3087               cardio                     strength
## 3088                 care                       caveat
## 3089                 care                     medicine
## 3090                cared                         1088
## 3091               cargos                         2301
## 3092                 cash                     deferred
## 3093               casual                         wear
## 3094               casual                         wear
## 3095           categories                        goals
## 3096               caveat                       emptor
## 3097                   ce                        n’est
## 3098                cedes                       ground
## 3099             cellular                         data
## 3100             cellular                      watches
## 3101                cento                 doisporcento
## 3102                  ceo                        bjorn
## 3103                  ceo                        calls
## 3104                  ceo                      donahoe
## 3105                  ceo                        frisk
## 3106                  ceo                         john
## 3107                  ceo                         john
## 3108                  ceo                       patrik
## 3109                  ceo                        plank
## 3110                  ceo                        plank
## 3111                  ceo                    replacing
## 3112                  ceo                      signals
## 3113                  ceo                   transition
## 3114                  ces                         2019
## 3115                chain                         wear
## 3116            challenge                          345
## 3117            challenge                         para
## 3118           challenges                   aplicación
## 3119           challenges                 disappointed
## 3120          challenging                          182
## 3121          challenging                     workouts
## 3122            chambered                          air
## 3123               chance                        4.164
## 3124           changement                           de
## 3125              changer                         4.58
## 3126              changer                          ntc
## 3127             changing                          325
## 3128             changing                      fitness
## 3129             channels                       modern
## 3130              charged                       cotton
## 3131              charged                       cotton
## 3132              charged                        surge
## 3133                charm                       santos
## 3134                chats                        shirt
## 3135              chausse                           en
## 3136            chaussure                          qui
## 3137                cheap                   disposable
## 3138                cheap                    gluestick
## 3139                cheap                         http
## 3140                cheap                     material
## 3141                check                         200m
## 3142                check                         2218
## 3143                check                        check
## 3144                check                         half
## 3145                check                     marathon
## 3146                check                        tempo
## 3147              checked                         2292
## 3148              checked                     unwanted
## 3149               checks                         1144
## 3150               cheers                      patrick
## 3151                 chef                         2358
## 3152                cheio                           de
## 3153           cherrywood                athletevanity
## 3154                chest                        heart
## 3155               chevys                       arrive
## 3156              chicago                         lows
## 3157              chicago                        vibes
## 3158             chicagos                         blue
## 3159             chilaw52                          não
## 3160               chilly                      workout
## 3161                china                         1223
## 3162                china                          281
## 3163                china                       online
## 3164                china                      revenue
## 3165                china                        sales
## 3166              chinese                    interface
## 3167              choices                          118
## 3168              choices                          385
## 3169                chris                        chats
## 3170               church                        choir
## 3171               claims                        pedro
## 3172               classy                       review
## 3173                clean                         2178
## 3174                clean                          937
## 3175                clean                          asf
## 3176                clean                    interface
## 3177             clearing                       stored
## 3178            clockwise                          obv
## 3179               closes                       adidas
## 3180              closest                 alternatives
## 3181             closures                       adidas
## 3182             closures                    worldwide
## 3183              clothes                         2024
## 3184                 club                          261
## 3185                 club                          app
## 3186                 club                          app
## 3187                 club                         it’s
## 3188                 club                          ntc
## 3189                 club                   structured
## 3190                 club                   structured
## 3191                 club                   structured
## 3192                 cmon                         nike
## 3193                 cnbc                    september
## 3194                coach                         lead
## 3195              coaches                          124
## 3196              coaches                          357
## 3197             coaching                           81
## 3198                 code                          397
## 3199                 code                           de
## 3200                 cold                      weather
## 3201                colin                       browne
## 3202              collect                           sb
## 3203            collected                         2026
## 3204           collecting                        sweat
## 3205           collection                          471
## 3206           collection                        https
## 3207           collection                           jd
## 3208           collection                         zion
## 3209                color                         2139
## 3210                color                        black
## 3211                color                        waves
## 3212                color                        white
## 3213               colors                         2173
## 3214             colorway                         1550
## 3215             colorway                          817
## 3216             comeback                        bulls
## 3217             comenzar                        hacer
## 3218               comets                        4.230
## 3219                comfi                     tbhonest
## 3220              comfort                         4.27
## 3221              comfort                          amp
## 3222          comfortable                        4.162
## 3223          comfortable                        4.262
## 3224          comfortable                          fit
## 3225          comfortable                         love
## 3226          comfortable                       modern
## 3227          comfortable                      perfect
## 3228          comfortable                        short
## 3229                comfy                          542
## 3230                comfy                           ho
## 3231                comfy                      thunder
## 3232               coming                          101
## 3233               coming                          125
## 3234            commented                         2384
## 3235             comments                         2434
## 3236             comments                    collected
## 3237             commerce                       adidas
## 3238           commission                         eeoc
## 3239            community                        4.375
## 3240            companies                         1243
## 3241          comparaison                         1249
## 3242             compared                      insoles
## 3243             compares                         4.29
## 3244            comparten                     consejos
## 3245           compatible                          gps
## 3246          competitive                      element
## 3247             compiled                        march
## 3248          complaining                          168
## 3249             completa                           es
## 3250             completa                      permite
## 3251             complete                 registration
## 3252           completely                         free
## 3253           completely                          mis
## 3254           completely                   unanswered
## 3255           completely                      useless
## 3256              complex                     sneakers
## 3257           complicate                       simple
## 3258         complimented                          nrc
## 3259        comprehensive                    analytics
## 3260        comprehensive                      fitness
## 3261          compression                          441
## 3262          compression                       shirts
## 3263          compression                         tops
## 3264               compte                        apres
## 3265                  con                         este
## 3266                  con                        temas
## 3267                  con                         unas
## 3268              condado                       puerta
## 3269            condition                          884
## 3270           configurar                           mi
## 3271            confirmed                         4.45
## 3272             congrats                          527
## 3273              conhece                          não
## 3274           connection                       issues
## 3275           connection                         i’ve
## 3276             consejos                    artículos
## 3277         consistently                      there’s
## 3278             constant                        issue
## 3279           constantly                         ahem
## 3280           constantly                       drains
## 3281         construction                     original
## 3282             consumer                       direct
## 3283             consumer                      revenue
## 3284             consumer                     spending
## 3285            consumers                        yahoo
## 3286              contact                     customer
## 3287              content                    refreshed
## 3288             contrast                        white
## 3289          contributed                          bee
## 3290              control                           de
## 3291            controlar                           el
## 3292             controls                   inaccurate
## 3293        controversial                          ads
## 3294                  coo                        colin
## 3295                 cool                         blue
## 3296                 cool                       camera
## 3297                 cool                          lol
## 3298                 cool                      mapping
## 3299                 cool                         tone
## 3300                 cool                       unique
## 3301                coord                       adidas
## 3302                  cop                         1976
## 3303                  cop                          fam
## 3304                  cop                       theory
## 3305               copped                         mine
## 3306                 core                        black
## 3307               corney                           af
## 3308          coronavirus                    lockdowns
## 3309              correct                         2311
## 3310              correct                         data
## 3311            correctly                          442
## 3312              correos                 electrónicos
## 3313               correr                           10
## 3314               correr                    excelente
## 3315               cortez                       purple
## 3316                 cost                          160
## 3317                 cost                         base
## 3318                 cost                      cutting
## 3319               cotton                       shirts
## 3320               cotton                       stance
## 3321                count                     amiright
## 3322                count                         it’s
## 3323              counter                    clockwise
## 3324     counterintuitive                     controls
## 3325               couple                         days
## 3326               couple                      women's
## 3327               coupon                         1010
## 3328              coureur                        c’est
## 3329                covid                           19
## 3330                covid                           19
## 3331                covid                           19
## 3332                covid                      strains
## 3333                 crap                         1402
## 3334                 crap                         2008
## 3335                crash                          234
## 3336              crashed                          app
## 3337              crashes                            2
## 3338             crashing                          455
## 3339                crazy                      loyalty
## 3340                cream                         2352
## 3341                cream                         2372
## 3342                crear                         esta
## 3343               crease                         1106
## 3344  creatingwithdaniela                          328
## 3345                 crew                         neck
## 3346                 crew                        socks
## 3347              crimson                     location
## 3348                cross                          fit
## 3349                cross                        train
## 3350                cross                     training
## 3351                crown                         2313
## 3352           crustacean                         feet
## 3353                 crvg                   serenocrvg
## 3354              crónico                           de
## 3355            cualquier                    actividad
## 3356               cuando                         solo
## 3357               cuando                           ya
## 3358               cuenta                          los
## 3359             currency                      neutral
## 3360              current                       modern
## 3361              current                  performance
## 3362              current                         race
## 3363              current                      running
## 3364                curry                            4
## 3365                curry                            7
## 3366                curry                            8
## 3367           cushioning                         foam
## 3368              cushlon                        setup
## 3369               custom                          aj1
## 3370               custom                       booker
## 3371             customer                      service
## 3372             customer                      service
## 3373             customer                      support
## 3374         customizable                        heart
## 3375                  cut                            4
## 3376                 cute                          914
## 3377                 cuts                       moving
## 3378                 cuts               sustainability
## 3379              cutting                         plan
## 3380              cutting                    wholesale
## 3381                 cuál                          sea
## 3382              cycling                      support
## 3383                   d1                        track
## 3384                   da                       adidas
## 3385                  dad                         shoe
## 3386                  dad                        wears
## 3387                daily                   activities
## 3388                daily                   categories
## 3389                daily                        wears
## 3390                daily                      workout
## 3391               damage                            ã
## 3392                 dang                         breh
## 3393                 dark                          app
## 3394                 dark                        grass
## 3395                 dark                         mode
## 3396                 dash                        check
## 3397                 dash                        check
## 3398                 data                       adidas
## 3399                 data                 availability
## 3400                 data                    cleansing
## 3401                 data                       export
## 3402                 data                     manually
## 3403                 data                        total
## 3404                 data                        total
## 3405                 date                          343
## 3406                 date                            6
## 3407                 date                            8
## 3408            daughters                       soccer
## 3409                  day                            1
## 3410                  day                           10
## 3411                  day                          241
## 3412                  day                          286
## 3413                  day                          296
## 3414                  day                          337
## 3415                  day                          438
## 3416                  day                          473
## 3417                  day                           78
## 3418                  day                         gift
## 3419                  day                      sneaker
## 3420                  day                         wall
## 3421                  day                         wear
## 3422                 days                          ago
## 3423                 days                          ago
## 3424                 days                       nike’s
## 3425           dayummmmmm                         1950
## 3426                   de                           13
## 3427                   de                       adidas
## 3428                   de                       adidas
## 3429                   de                       adidas
## 3430                   de                  assinaturas
## 3431                   de                         bugs
## 3432                   de                      corrida
## 3433                   de                    cualquier
## 3434                   de                   diferentes
## 3435                   de                entrenamiento
## 3436                   de                      espalda
## 3437                   de                         esta
## 3438                   de                   exercícios
## 3439                   de                       fintes
## 3440                   de                         gran
## 3441                   de                       marcar
## 3442                   de                   nacimiento
## 3443                   de                      navegar
## 3444                   de                      partida
## 3445                   de                   relajación
## 3446                   de                       romper
## 3447                   de                     terminar
## 3448                   de                           tu
## 3449                   de                           tu
## 3450                   de                    téléphone
## 3451                   de                         unos
## 3452                   de                   validation
## 3453                 dead                       versus
## 3454                 deal                          268
## 3455                 deal                      breaker
## 3456               decade                disappointing
## 3457               decade                         it’s
## 3458             december                           31
## 3459             december                            9
## 3460               decent                       person
## 3461              decline                            4
## 3462             declines                           12
## 3463             declines                            5
## 3464               deeply                         cuts
## 3465               deeply                     invested
## 3466            defective                       shirts
## 3467             deferred                          tax
## 3468               degree                      weather
## 3469              degrees                         anta
## 3470                 deja                   configurar
## 3471                 deja                           de
## 3472                 deja                       editar
## 3473                 deja                     editarla
## 3474                 deja                        poner
## 3475              deleted                           63
## 3476             delivery                           11
## 3477             delivery                         lost
## 3478             delivery                        worst
## 3479           delusional                     thinking
## 3480                denim                          96s
## 3481                denim                       jacket
## 3482                denim                        jeans
## 3483          deportistas                          sea
## 3484            depressed                   overworked
## 3485           depression                       retail
## 3486               depuis                          mon
## 3487                  des                       heures
## 3488             desastre                           la
## 3489                desde                         2011
## 3490                desde                 alimentación
## 3491                desde                    movilidad
## 3492               design                         nice
## 3493             designer                         1562
## 3494        desilusionado                          con
## 3495             destress                          417
## 3496              destroy                        yeezy
## 3497               detail                        voice
## 3498              detiene                           la
## 3499          development                        niche
## 3500              devices                       google
## 3501                  dia                            é
## 3502               didn’t                            1
## 3503               didn’t                      compute
## 3504               didn’t                        count
## 3505                  die                         hard
## 3506           difference                           48
## 3507           difference                           55
## 3508           difference                       people
## 3509           difficulty                           90
## 3510              digital                        sales
## 3511                 dios                          les
## 3512        dipmasterflex                realdipmaster
## 3513               direct                 acceleration
## 3514               direct                        sales
## 3515            directeur                      running
## 3516                 dirt                          455
## 3517          disappeared                        can’t
## 3518           disappears                         it’s
## 3519         disappointed                          443
## 3520         disappointed                        wrong
## 3521        disappointing                          fun
## 3522        disappointing                       puerto
## 3523        disappointing                        yorba
## 3524             discount                       coupon
## 3525       discrimination                       claims
## 3526             diseñada                            5
## 3527             disfruto                        mucho
## 3528            displayed                          361
## 3529             displays                     distance
## 3530             displays                       social
## 3531           disposable                        sonic
## 3532           disposable                        world
## 3533             distance                     calories
## 3534             distance                       casual
## 3535             distance                   challenges
## 3536             distance                        isn’t
## 3537             distance                         it’s
## 3538             distance                         lags
## 3539             distance                  measurement
## 3540             distance                      morning
## 3541             distance                         time
## 3542            distances                          ran
## 3543                ditto                    directeur
## 3544                 dive                            2
## 3545                 dive                            5
## 3546                 dive                    september
## 3547               doable                          329
## 3548              doesn’t                         load
## 3549              doesn’t                         save
## 3550                  dog                          doo
## 3551                  dog                         shit
## 3552                  dog                         shit
## 3553                  dog                        walks
## 3554                 dois                          por
## 3555         doisporcento                     football
## 3556               dollar                        shoes
## 3557                dolor                      crónico
## 3558              donahoe                       admits
## 3559              donahoe                        tells
## 3560                donde                           se
## 3561                don’t                     bludgeon
## 3562                  doo                         lmao
## 3563                 dope                         2122
## 3564                 dope                          214
## 3565                 dope                          284
## 3566                 dope                     colorway
## 3567                dopey                          pic
## 3568                  dor                         bout
## 3569            downsized                          484
## 3570                   dr                   disrespect
## 3571               drains                        apple
## 3572              drawing                     straight
## 3573                dress                         shoe
## 3574                  dri                          fit
## 3575                  dri                          fit
## 3576                  dri                          fit
## 3577                  dri                          fit
## 3578               drives                   motivation
## 3579                drops                           35
## 3580                drops                      workout
## 3581               dryfit                        socks
## 3582                  dsw                       modern
## 3583                  dtc                     strategy
## 3584                 dtlr                      restock
## 3585                 dual                    chambered
## 3586                dudes                         1559
## 3587               duffel                          bag
## 3588                  duh                          yea
## 3589               duller                     finisher
## 3590                 dumb                         hard
## 3591                 dumb                        https
## 3592                 dunk                          low
## 3593                 dunk                          low
## 3594                dunks                          imo
## 3595                dunks                        worth
## 3596              durable                          i’m
## 3597           duraklatma                     özelliği
## 3598                  dwc                     advanced
## 3599            dégoûtant                          154
## 3600                  día                          más
## 3601                 días                      gracias
## 3602                 días                           mi
## 3603       d’entraînement                       depuis
## 3604                   ea                        4.153
## 3605                 earl                        fando
## 3606            earlfando                         nike
## 3607            earphones                          ces
## 3608              easiest                         life
## 3609              easiest                      mileage
## 3610               easyon                      women's
## 3611                  ect                       cheers
## 3612                   ed                     junttila
## 3613                 edge                          sky
## 3614                 edit                     function
## 3615               editar                       fechas
## 3616             editarla                           al
## 3617                 eeoc                     subpoena
## 3618                 ekin                           50
## 3619                   el                          app
## 3620                   el                       avance
## 3621                   el                      condado
## 3622                   el                           la
## 3623                   el                        mejor
## 3624                   el                        ritmo
## 3625              elastic                         1271
## 3626               elated                       modern
## 3627             electric                         blue
## 3628         electrónicos                       cambié
## 3629              element                       drives
## 3630             elephant                          204
## 3631               eleven                       eleven
## 3632               eleven                       eleven
## 3633                elite                      athlete
## 3634                elite                         ball
## 3635                elite                        kinda
## 3636              elliott                         hill
## 3637              elliott                         hill
## 3638                elvis                       torres
## 3639        elvistorresjr                         nike
## 3640                   em                         2226
## 3641                   em                          539
## 3642                   em                          dia
## 3643                   em                        heavy
## 3644                   em                         live
## 3645                email                          285
## 3646                email                          306
## 3647                email                           40
## 3648                email                        entry
## 3649          embroidered                       adidas
## 3650             empareja                         bien
## 3651            employees                       elated
## 3652           employment                  opportunity
## 3653                   en                           70
## 3654                   en                       adidas
## 3655                   en                         este
## 3656                   en                       madrid
## 3657                   en                           mi
## 3658                   en                    recuperar
## 3659                   en                          uno
## 3660              encanta                         esta
## 3661              encanta                           la
## 3662              encantó                           te
## 3663            endurance                          201
## 3664            endurance                      agility
## 3665              england                     national
## 3666              english                     changing
## 3667            enjoyable                        worst
## 3668               enjoys                       adidas
## 3669               enjoys                     teaching
## 3670             entering                      invalid
## 3671               entire                        alpha
## 3672                entre                           el
## 3673        entrenamiento                           es
## 3674       entrenamientos                           61
## 3675                  eqt                      support
## 3676                equal                   employment
## 3677            equipment                          236
## 3678           equivalent                        men's
## 3679                  era                      micoach
## 3680                  era                          muy
## 3681                error                      parsing
## 3682                   es                        buena
## 3683                   es                    excelente
## 3684                   es                   formidable
## 3685                   es                           la
## 3686                   es                         mala
## 3687                   es                           mi
## 3688                   es                          muy
## 3689                   es                  simplemente
## 3690                   es                          una
## 3691              espalda                          284
## 3692          específicos                         para
## 3693             espíritu                           mi
## 3694           essentials                    statement
## 3695                 esta                   aplicación
## 3696                 esta                   aplicación
## 3697                 esta                   aplicación
## 3698                 esta                   aplicación
## 3699                 esta                          app
## 3700                 esta                         isla
## 3701                estar                        llena
## 3702                 este                          app
## 3703                 este                     problema
## 3704                estou                       amando
## 3705                estoy                       usando
## 3706            estrellas                         buen
## 3707                 esté                           es
## 3708                  eva                        foams
## 3709             everyday                         it’s
## 3710             everyday                    mapmyhike
## 3711             everyday                        socks
## 3712                  evo                            2
## 3713                  evo                           sl
## 3714                  evo                           sl
## 3715                  evo                           sl
## 3716                exact                     calories
## 3717                exact                        issue
## 3718                exact                        miles
## 3719               exacto                      siempre
## 3720           exatamente                         para
## 3721                excee                        intro
## 3722            excelente                   aplicación
## 3723            excelente                   aplicativo
## 3724            excelente                          app
## 3725            excelente                          día
## 3726            excelente                           es
## 3727            excelente                   iniciativa
## 3728            excelente                          los
## 3729            excelente                   motivadora
## 3730            excelente                         para
## 3731            excelente                         ruta
## 3732           excelentes                     gráficas
## 3733            excellent                          143
## 3734            excellent                          app
## 3735            excellent                      fitness
## 3736            excellent                      fitness
## 3737            excellent                          job
## 3738            excellent                        taste
## 3739          exceptional                  performance
## 3740            exclusive                            3
## 3741            exclusive                            5
## 3742              excuses                          392
## 3743             exercise                    excelente
## 3744             exercise                      running
## 3745            exercises                           66
## 3746           exercícios                        tonar
## 3747          exfoliating                         1238
## 3748                exist                         2085
## 3749              existir                          331
## 3750         expectations                    bloomberg
## 3751             expected                         1.3b
## 3752            expensive                          lol
## 3753            expensive                         nike
## 3754            expensive                       y'know
## 3755           experience                           67
## 3756               expert                          led
## 3757               export                        issue
## 3758             extended                         2230
## 3759                extra                       sweaty
## 3760       extraordinaria                         para
## 3761        extraordinary                      coaches
## 3762            extremely                     annoying
## 3763            extremely                         busy
## 3764            extremely                      helpful
## 3765            extremely                      helpful
## 3766                 eyes                      checked
## 3767                 eyes                         lord
## 3768              eyesore                         deal
## 3769              factory                     closures
## 3770              factory                       outlet
## 3771          factsorstfu                  jameshoang7
## 3772                faire                         pour
## 3773               fairly                        comfy
## 3774                 fait                           le
## 3775                fakat                         nike
## 3776                 fake                           76
## 3777                 fake                         nike
## 3778                 fake                         shit
## 3779                fakes                         1949
## 3780                 fall                      sneaker
## 3781              fallout                     projects
## 3782                falls                           10
## 3783                false                     scarcity
## 3784                  fam                            ª
## 3785             familiar                     abundant
## 3786              fanbase                  ntvascainos
## 3787                fando                    earlfando
## 3788               fandom                         1864
## 3789            fantastic                        super
## 3790               farmer                  henrytheath
## 3791            fashioned                     workouts
## 3792               faster                        light
## 3793             father's                          day
## 3794            favorable                           ua
## 3795             favorite                     activity
## 3796             favorite                          app
## 3797             favorite                          app
## 3798             favorite                      coaches
## 3799             favorite                         nike
## 3800             favorite                      running
## 3801             favorite                      sneaker
## 3802             favorite                      spezial
## 3803             favorite                        story
## 3804             favorite                      teacher
## 3805             favorite                     training
## 3806             favorite                      workout
## 3807            favourite                       sambas
## 3808              feature                   accurately
## 3809              feature                     terrible
## 3810              feature                      totally
## 3811             features                          map
## 3812             features                          mmr
## 3813             features                        pause
## 3814             february                            2
## 3815                fecha                           de
## 3816              federal                     agency’s
## 3817                fedex                       driver
## 3818                 feed                     progress
## 3819                 feel                          air
## 3820                 feel                    fantastic
## 3821                 feel                       pretty
## 3822                feels                         dead
## 3823                feels                         fine
## 3824                feels                        super
## 3825                 fees                           80
## 3826                 feet                         1170
## 3827                 feet                         1447
## 3828                 feet                         1579
## 3829                 feet                         2024
## 3830                 feet                            3
## 3831                 feet                        4.168
## 3832                 feet                      forward
## 3833             felicito                          por
## 3834               fellow                      regular
## 3835                 fiel                    compañero
## 3836                field                        green
## 3837                filas                          173
## 3838               filing                         june
## 3839                 fill                           ya
## 3840              finally                      arrived
## 3841              finance                            8
## 3842            financial                        times
## 3843            financial                        times
## 3844            financial                        times
## 3845               finder                     features
## 3846                 fine                          255
## 3847                 fine                        4.179
## 3848                 fine                          amo
## 3849                fines                           bo
## 3850               fintes                           la
## 3851                 fire                         1510
## 3852                 fire                         1881
## 3853                 fire                         2116
## 3854                 fire                          286
## 3855                 fire                          bro
## 3856                 fire                         shoe
## 3857               fiscal                         2025
## 3858                  fit                        4.331
## 3859                  fit                         4.92
## 3860                  fit                    beautiful
## 3861                  fit                         club
## 3862                  fit                    increíble
## 3863                  fit                    perfectly
## 3864                  fit                       planks
## 3865                  fit                      pleated
## 3866                  fit                         true
## 3867               fitbit                       charge
## 3868               fitbit                  integration
## 3869              fitness                          159
## 3870              fitness                      amazing
## 3871              fitness                          app
## 3872              fitness                    companion
## 3873              fitness                       health
## 3874              fitness                       highly
## 3875              fitness                      journey
## 3876              fitness                      journey
## 3877              fitness                        level
## 3878              fitness                  performance
## 3879              fitness                     progress
## 3880              fitness                     solution
## 3881                  fix                          402
## 3882                  fix                           83
## 3883                  fix                     accurate
## 3884                  fix                       coming
## 3885                fixed                          207
## 3886                fixed                          251
## 3887                fixed                           37
## 3888                 flat                           40
## 3889                 flat                          top
## 3890                 flat                       whites
## 3891                 flea                       market
## 3892               flight                       posite
## 3893         flightposite                            3
## 3894                 flip                        flops
## 3895                 flip                           ya
## 3896                flops                         4.36
## 3897                 flow                      running
## 3898                fluff                          267
## 3899                  fly                            4
## 3900                  fly                            6
## 3901                  fly                         knit
## 3902                  fly                         shit
## 3903                  fly                           ua
## 3904              flyease                accessibility
## 3905              flyknit                          air
## 3906                 foam                   restocking
## 3907                 foam                        stack
## 3908                 foam                     trainers
## 3909                foams                         1942
## 3910                focus                           69
## 3911               follow                           50
## 3912                 fomo                           im
## 3913                 food                         lion
## 3914                 food                          log
## 3915                 fool                      january
## 3916                 foot                        4.123
## 3917                 foot                      forward
## 3918                 foot                         gang
## 3919                 foot                       locker
## 3920             football                     campaign
## 3921                force                            1
## 3922                force                            1
## 3923                force                           1s
## 3924                force                           58
## 3925               forces                        store
## 3926                 fore                      runners
## 3927               forest                         gump
## 3928               forest                        gumps
## 3929              forever                        4.150
## 3930              forever                          481
## 3931              forever                       grails
## 3932               forgot                         1474
## 3933               forgot                     password
## 3934                forma                           de
## 3935           formidable                         dios
## 3936             fornecer                           um
## 3937              forward                         it’s
## 3938              forward                     standard
## 3939         for‘activity                       paused
## 3940                found                     multiple
## 3941                  fox                     business
## 3942                 free                           19
## 3943                 free                          244
## 3944                 free                          291
## 3945                 free                          350
## 3946                 free                           36
## 3947                 free                          394
## 3948                 free                          447
## 3949                 free                           59
## 3950                 free                           65
## 3951                 free                comprehensive
## 3952                 free                    effective
## 3953                 free                       expert
## 3954                 free                      fitness
## 3955                 free                       highly
## 3956                 free                       highly
## 3957                 free                    marketing
## 3958                 free                           rn
## 3959                 free                      workout
## 3960                 free                      workout
## 3961                 free                      workout
## 3962               french                        terry
## 3963                fresh                          air
## 3964                fresh                        white
## 3965             friendly                           10
## 3966             friendly                          403
## 3967             friendly                        daily
## 3968              friends                           15
## 3969                frisk                      assumes
## 3970               fruity                      pebbles
## 3971          frustrating                          434
## 3972          frustrating                          476
## 3973          frustrating                    excellent
## 3974                 fuck                           28
## 3975               fucked                         1163
## 3976              fucking                      asinine
## 3977              fucking                        heart
## 3978              fucking                        loved
## 3979              fucking                     research
## 3980                  fue                           en
## 3981        fufybccdkoy1w                          411
## 3982                  fun                     accurate
## 3983                  fun                      saludos
## 3984           functional                    exercises
## 3985           functional                      fitness
## 3986                 fund                    strategic
## 3987           fundraiser                   supporting
## 3988              futebol                           na
## 3989               future                      classic
## 3990               future                     training
## 3991   fxnrobm8q0rkomr5nf                          850
## 3992               fy2026                      revenue
## 3993                 fy23                           q1
## 3994                 fy26                           q2
## 3995                fácil                           de
## 3996               física                       además
## 3997                 gain                       ground
## 3998                gains                    stephanie
## 3999           galloway’s                         walk
## 4000                 game                      changer
## 4001                 game                      changer
## 4002                 game                        fines
## 4003                games                           ad
## 4004                games                    unveiling
## 4005              garbage                          339
## 4006              garbage                        mitus
## 4007                garbo                          317
## 4008               garmin                   forerunner
## 4009               garmin                        polar
## 4010              garnett                           3s
## 4011               gender                        based
## 4012           generation                            2
## 4013             genetics                   basketball
## 4014            genuinely                  challenging
## 4015              georgia                        yeezy
## 4016              gerekir                          los
## 4017                giant                      midsole
## 4018                  gif                        giphy
## 4019                  gif                        giphy
## 4020                  gif                        giphy
## 4021                  gif                        giphy
## 4022                  gif                        giphy
## 4023                  gif                        giphy
## 4024                  gif                        giphy
## 4025                  gif                        giphy
## 4026                  gif                        giphy
## 4027                  gif                        giphy
## 4028                  gif                        giphy
## 4029                  gif                        giphy
## 4030                  gif                        giphy
## 4031                  gif                        giphy
## 4032                  gif                        giphy
## 4033                  gif                        giphy
## 4034                  gif                        giphy
## 4035                  gif                        giphy
## 4036                  gif                        giphy
## 4037                  gif                        giphy
## 4038                  gif                        giphy
## 4039                  gif                        giphy
## 4040                  gif                        giphy
## 4041                  gif                        giphy
## 4042                  gif                        giphy
## 4043                  gif                        giphy
## 4044                  gif                        giphy
## 4045                  gif                        giphy
## 4046                  gif                        giphy
## 4047                 gift                          526
## 4048                 gift                         list
## 4049              gimmick                         4.10
## 4050                giphy                4lrkcwli2mkoc
## 4051                giphy           7ow9uiyfetrxdsobyn
## 4052                giphy           asjkibidvgfmxphcdq
## 4053                giphy                fufybccdkoy1w
## 4054                giphy           fxnrobm8q0rkomr5nf
## 4055                giphy           keq3dg4poe37dnatvm
## 4056                giphy            l1kuhbcqxoojyr0m4
## 4057                giphy           zn5xfujbtbpnrdzncm
## 4058                 girl                          lol
## 4059                 girl                        shoes
## 4060               giving                    incorrect
## 4061               giving                          max
## 4062              giyorum                        fakat
## 4063                glide                            3
## 4064               global                       august
## 4065               global                       market
## 4066               global                       stores
## 4067           globaldata                     business
## 4068            gluestick                         nike
## 4069                 goal                     distance
## 4070                 goal                     progress
## 4071                goals                          179
## 4072                goals                          401
## 4073                 goat                         shoe
## 4074                  god                     almighty
## 4075                  god                        bless
## 4076                 gold                        black
## 4077                 gold                        chain
## 4078                 gold                        rings
## 4079               golden                      harvest
## 4080                 golf                         shoe
## 4081                 golf                        zheng
## 4082                gonna                          cop
## 4083                gonna                         wear
## 4084               google                       fitbit
## 4085               google                         lens
## 4086               google                           tv
## 4087               gordan                          354
## 4088                 gore                          tex
## 4089             gorgeous                          755
## 4090           gozooooooo                           31
## 4091                   gp                            2
## 4092                   gp                            2
## 4093                   gp                      product
## 4094                  gps                      feature
## 4095                  gps                  requirement
## 4096              gracias                          por
## 4097               grails                         1858
## 4098                 gran                        apoyo
## 4099                 gran                        ayuda
## 4100                 gran                        ayuda
## 4101                grant                  permissions
## 4102            graphical                         pace
## 4103                grass                     saturday
## 4104              gratuit                           du
## 4105               gravel                        trail
## 4106                gravy                         boat
## 4107                 gray                         2345
## 4108                 gray                       pretty
## 4109                 gray                   sweatshirt
## 4110            greatness                    greatness
## 4111            greatness                          lcp
## 4112                green                          bay
## 4113                green                          bro
## 4114                green                        force
## 4115                green                         pair
## 4116                green                       sporty
## 4117                 grey                        black
## 4118              griffin                        shoes
## 4119             griselda                        album
## 4120               ground                    financial
## 4121               ground                   globaldata
## 4122             gráficas                         para
## 4123                   gt                          cut
## 4124                   gt                       jordan
## 4125                   gt                      started
## 4126              guardar                     archivos
## 4127             guardian                            5
## 4128           guatemalan                         rice
## 4129               guilty                          636
## 4130                  gum                       bottom
## 4131                gusta                           la
## 4132              gustaba                        mucho
## 4133                gustó                           la
## 4134               gutted                         2175
## 4135                  guy                          585
## 4136                  gym                           10
## 4137                  gym                       people
## 4138                  gym                        shoes
## 4139               habits                       doable
## 4140                 hace                       sentir
## 4141                hacer                    ejercicio
## 4142                 haha                            û
## 4143                 half                     marathon
## 4144                 hand                         1493
## 4145                 hand                  embroidered
## 4146             handball                      spezial
## 4147             handball                     spezial2
## 4148               happen                   propublica
## 4149                happy                       saving
## 4150                 hard                         1507
## 4151                 hard                          510
## 4152                 hard                           71
## 4153                 hard                          822
## 4154                 hard                          asf
## 4155                 hard                         easy
## 4156                 hard                     surfaces
## 4157                 hard                            á
## 4158               harder                          648
## 4159               harder                     advanced
## 4160             hardware                   delivering
## 4161               harika                           18
## 4162              harvest                          air
## 4163                hasta                         tips
## 4164                 hate                      premium
## 4165                 hate                      running
## 4166                 hate                       speech
## 4167            headlines                         2020
## 4168            headlines                     compiled
## 4169            headwinds                       adidas
## 4170            headwinds                          sec
## 4171               health                          166
## 4172               health                      fitness
## 4173               health                    insurance
## 4174              healthy                           11
## 4175              healthy                       habits
## 4176                heart                         rate
## 4177                heart                         rate
## 4178                heart                         rate
## 4179                heart                         rate
## 4180                heart                         sing
## 4181                 heat                         gear
## 4182             heatgear                  compression
## 4183             heatgear                        loose
## 4184                heavy                         hard
## 4185                heavy                       sturdy
## 4186                 heck                         yeah
## 4187                 heel                        4.399
## 4188                 hell                         2115
## 4189                 hell                          nah
## 4190                 hell                         yeah
## 4191                hella                         ugly
## 4192               helped                         nike
## 4193              helpful                      reporte
## 4194                  hem                pantspantsmen
## 4195               hentet                         2026
## 4196         herramientas               extraordinaria
## 4197               heures                         pour
## 4198               highly                      limited
## 4199               highly                    recommend
## 4200               highly                    recommend
## 4201               highly                    recommend
## 4202               highly                    recommend
## 4203               highly                    recommend
## 4204               highly                    recommend
## 4205               highly                  recommended
## 4206               highly                  recommended
## 4207               highly                        rec’d
## 4208              highway                         rest
## 4209                 hiit                         yoga
## 4210               hiking                        boots
## 4211               hiking                       routes
## 4212                 hill                       retail
## 4213            hindering                        viral
## 4214                  hip                          hop
## 4215               hippie                         vibe
## 4216              history                          lol
## 4217                  hit                         100m
## 4218                  hit                          931
## 4219                  hit                      pilates
## 4220                   ho                        ahead
## 4221                 hoes                         aint
## 4222                 hoje                           em
## 4223                 hoka                        esque
## 4224               holder                     workoits
## 4225             holder’s                     workouts
## 4226                 home                          194
## 4227                 home                       screen
## 4228                 home                      workout
## 4229                 home                     workouts
## 4230                 home                     workouts
## 4231                homie                          979
## 4232                honda                       accord
## 4233               hoodie                          gif
## 4234               hooked                          129
## 4235               hookem                     teamnike
## 4236                 hoop                         shoe
## 4237                  hop                        dance
## 4238             horrible                          144
## 4239             horrible                         1568
## 4240             horrific                       boston
## 4241                horse                          ass
## 4242                  hot                        humid
## 4243                hottt                          494
## 4244                 hour                           23
## 4245                house                          228
## 4246                house                          232
## 4247                house                          lol
## 4248                house                     training
## 4249                 hovr                       summit
## 4250                 howw                          381
## 4251               howwww                          380
## 4252                  hoy                    caminamos
## 4253                 http              www.aceoffs.com
## 4254                https fieldtesting.underarmour.com
## 4255                https             smile.amazon.com
## 4256                https                  tinyurl.com
## 4257                https           www.flightclub.com
## 4258             huarache                     inspired
## 4259                  hub                            1
## 4260             hubiesen                    programas
## 4261             hundreds                          770
## 4262          hydrodipped                   ultraboost
## 4263                 hype                         1377
## 4264                 hype                       review
## 4265           hypebeasts                      claimed
## 4266                  i.e                       mexico
## 4267                  iam                          100
## 4268                  iba                     comenzar
## 4269                   id                    questions
## 4270        ideologically                    motivated
## 4271                 idle                     location
## 4272                   ig                         2407
## 4273                iii's                        4.270
## 4274                  ill                     informed
## 4275                   im                     retiring
## 4276          immediately                        react
## 4277                  imo                         1469
## 4278                  imo                         1822
## 4279            impactful                     workouts
## 4280          importunada                          por
## 4281           impossível                           só
## 4282            impressed                          186
## 4283              improve                          run
## 4284         imtermediate                         half
## 4285           inaccurate                     distance
## 4286                 inch                   noticeable
## 4287              include                      confirm
## 4288              include                       safety
## 4289            including                        sport
## 4290          inclusivity                       shines
## 4291        inconvenience                          210
## 4292         inconvenient                          290
## 4293            incorrect                       highly
## 4294            incorrect                     tracking
## 4295           incredible                          app
## 4296           incredible                     resource
## 4297           incredible                      variety
## 4298           incredibly                comprehensive
## 4299           incredibly                  streamlined
## 4300            increíble                          muy
## 4301            increíble                       stupid
## 4302             infinite                           72
## 4303                 info                   superstars
## 4304          information                       highly
## 4305          informative                 instructions
## 4306           iniciativa                         para
## 4307           innovation                         4.30
## 4308           innovation                   relentless
## 4309             insanely                         nice
## 4310               inside                         shoe
## 4311              insider                         july
## 4312              insoles                    hexagonal
## 4313             inspired                 construction
## 4314         instructions                          384
## 4315           instructor                    voiceover
## 4316          instructors                           55
## 4317            insurance                    companies
## 4318          integration                          164
## 4319     inteligibilidade                        muito
## 4320             intended                     outlined
## 4321              intense                          lol
## 4322          interaction                          591
## 4323            interesse                          nas
## 4324            interface                          388
## 4325            interface                  disappeared
## 4326            interface                         nice
## 4327        international                        gains
## 4328                intro                        level
## 4329           introduces                           ua
## 4330             invested                      running
## 4331             investor                          day
## 4332             investor                    relations
## 4333             investor                    relations
## 4334             investor                    relations
## 4335             investor                    relations
## 4336             investor                    relations
## 4337                  ios                      anymore
## 4338                  ios                        apple
## 4339                  ios                     versions
## 4340                 ipad                          163
## 4341                 ipad                          353
## 4342                 ipad                          446
## 4343                 ipad                           63
## 4344                 ipad                          app
## 4345                 ipad                      version
## 4346                 ipad                      version
## 4347               iphone                          448
## 4348               iphone                          app
## 4349                  ise                       adidas
## 4350                 isla                          iba
## 4351                isn’t                     properly
## 4352                issue                            2
## 4353                issue                          444
## 4354                issue                          484
## 4355               issues                          463
## 4356               issues                      wearing
## 4357                italy                         tech
## 4358                 it’s                          100
## 4359                 it’s                   absolutely
## 4360                 it’s                     annoying
## 4361                 it’s                      awesome
## 4362                 it’s                   capitalism
## 4363                 it’s                   completely
## 4364                 it’s                         free
## 4365                 it’s                         free
## 4366                 it’s                         free
## 4367                 it’s                       giving
## 4368                 it’s                     happened
## 4369                 it’s                 inconvenient
## 4370                 it’s                    literally
## 4371                 it’s                      primary
## 4372                 it’s                     terrible
## 4373                 it’s                      totally
## 4374                 iván                       méndez
## 4375               iwatch                     longtime
## 4376                  i’m                           15
## 4377                  i’m                            4
## 4378                  i’m                     entering
## 4379                  i’m                      excited
## 4380                  i’m                       hooked
## 4381                  i’m                      running
## 4382                  i’m                      walking
## 4383                 i’ve                      cleared
## 4384                 i’ve                        found
## 4385                 i’ve                      started
## 4386                   ja                          af1
## 4387               jacked                            ª
## 4388           jacqueline                        wayne
## 4389            jacquemus                         nike
## 4390          jameshoang7                      garbage
## 4391              january                            2
## 4392              january                   fundraiser
## 4393                jason                     williams
## 4394                   jd                           ea
## 4395              jealous                          263
## 4396              jealous                         fill
## 4397               jersey                         2209
## 4398               jersey                        4.300
## 4399                  jet                      flights
## 4400                   jk                         nick
## 4401                  job                          158
## 4402                  joe                       holder
## 4403                  joe                       holder
## 4404                  joe                     holder’s
## 4405               jogger                      awesome
## 4406                 jogs                            4
## 4407                 john                      donahoe
## 4408                 john                      donahoe
## 4409                 join                     customer
## 4410                 join                          i’m
## 4411                 joke                         yoke
## 4412               jordan                         1927
## 4413               jordan                            4
## 4414               jordan                            4
## 4415               jordan                            4
## 4416               jordan                            6
## 4417               jordan                        brand
## 4418               jordan                   essentials
## 4419               jordan                      history
## 4420               jordan                      product
## 4421             jordan's                       banned
## 4422                jorge                         iván
## 4423              journal                          app
## 4424              journal                         july
## 4425              journey                           89
## 4426              journey                     expertly
## 4427           juan.bello                          nos
## 4428            judgement                          lol
## 4429                  jug                          128
## 4430                 july                            4
## 4431                 july                            4
## 4432                 july                            5
## 4433                 july                            6
## 4434                 july                            6
## 4435                 june                            2
## 4436                 june                            2
## 4437                 june                            2
## 4438                 june                         26th
## 4439                 june                            3
## 4440                 june                            4
## 4441             junttila                          453
## 4442                 j’ai                      attendu
## 4443                kanye                         west
## 4444               karina                       wiciak
## 4445                   kd                           18
## 4446             kentucky                       denims
## 4447   keq3dg4poe37dnatvm                          543
## 4448                kevin                        plank
## 4449                  key                      feature
## 4450                  key                       sports
## 4451                 kg’s                    kickstart
## 4452                kicks                    nicekicks
## 4453                kicks                     nowadays
## 4454            kickstart                     betina’s
## 4455       kicksundercost               kicksundercost
## 4456       kicksundercost                       nike's
## 4457                  kid                         shoe
## 4458                 kids                          379
## 4459                 kids                         nike
## 4460                 kids                         nike
## 4461                 kids                    oversized
## 4462               killer                         1337
## 4463                kinda                         cool
## 4464                kinds                       forgot
## 4465                   km                          run
## 4466                 knee                      bending
## 4467                 knit                       racers
## 4468            knowledge                          bro
## 4469                 kobe                            4
## 4470                 kobe                            6
## 4471                 kobe                           ad
## 4472                 kobe                       jersey
## 4473                 kolu                   uygulaması
## 4474  kullanıyorum.nedeni                          ise
## 4475                kyrie                          low
## 4476    l1kuhbcqxoojyr0m4                          237
## 4477                   la                   aplicación
## 4478                   la                   aplicación
## 4479                   la                   aplicación
## 4480                   la                          app
## 4481                   la                          app
## 4482                   la                       cambió
## 4483                   la                    chaussure
## 4484                   la                        estoy
## 4485                   la                        mejor
## 4486                   la                        mejor
## 4487                   la                   motivación
## 4488                   la                   recomiendo
## 4489                   la                      sección
## 4490                   la                       semana
## 4491                   la                       semana
## 4492                   la                      terminé
## 4493                   la                          uso
## 4494                   la                       verdad
## 4495              label's                  provocative
## 4496                laces                            1
## 4497                laces                         2377
## 4498                laces                      comfort
## 4499                lacks                       sports
## 4500               ladies                          183
## 4501                 lady                         1459
## 4502            landscape                         mode
## 4503                  lap                        times
## 4504              largest                      olympic
## 4505                  las                  deportistas
## 4506                  las                 estadísticas
## 4507                  las                      mejores
## 4508                  las                      rutinas
## 4509                 late                         4.12
## 4510                 late                     evenings
## 4511             launches                           18
## 4512             launches                           70
## 4513             launches                     consumer
## 4514                 lazy                        https
## 4515                  lcp                         half
## 4516                   le                         code
## 4517                   le                      coureur
## 4518                   le                      running
## 4519           leadership                       change
## 4520           leadership                        kevin
## 4521                 leap                        feels
## 4522              leather                       adidas
## 4523              leather                       jacket
## 4524              leather                        seude
## 4525                leave                          120
## 4526               lebron                            4
## 4527               lebron                       helped
## 4528                  led                        light
## 4529                  led                     workouts
## 4530                legit                           af
## 4531                legit                       checks
## 4532                legit                          top
## 4533                 legs                         feel
## 4534               length                            5
## 4535                  les                      amazing
## 4536                  les                      bendiga
## 4537                level                          174
## 4538                level                  athleticism
## 4539                level                          dad
## 4540               levels                          149
## 4541                   li                         ning
## 4542                   li                         ning
## 4543                libre                   acompañado
## 4544                 life                          301
## 4545                 life                          318
## 4546                 life                          477
## 4547                 life                     changing
## 4548                 life                          god
## 4549            lifestyle                      sneaker
## 4550              lifting                     programs
## 4551              lifting                      purpose
## 4552              lifting                       squats
## 4553                light                        cross
## 4554                light                         grey
## 4555                light                       jogger
## 4556                light                       weight
## 4557          lightweight                       combat
## 4558                likes                        rebel
## 4559              limited                         live
## 4560              limited                      sneaker
## 4561              limited                      sneaker
## 4562                linda                     regional
## 4563                 line                         nike
## 4564                lined                       hoodie
## 4565                liner                      insoles
## 4566               lineup                       videos
## 4567                 link                          391
## 4568                 link                        happy
## 4569                 link                        https
## 4570                links                        don’t
## 4571           linnartz's                     consumer
## 4572           linnartz's                   leadership
## 4573                 lion                          344
## 4574                 list                            4
## 4575                 list                   galloway’s
## 4576               listed                   activities
## 4577               listed                  comfortable
## 4578              literal                      bitcoin
## 4579            literally                    perfectly
## 4580                 live                        elvis
## 4581                 live                     trainers
## 4582                   ll                         drop
## 4583               llegan                          los
## 4584                llena                           de
## 4585               llevar                           el
## 4586                llevo                         bien
## 4587                 lmao                          708
## 4588               lmaooo                       nogafb
## 4589                lmfao                           41
## 4590               lmfaoo                         1224
## 4591                 load                          445
## 4592                 load                           88
## 4593                 load                      anymore
## 4594                 load                        won’t
## 4595                local                      factory
## 4596              located                          668
## 4597             location                         1630
## 4598             location                       simple
## 4599             lockdown                    excelente
## 4600            lockdowns                       adidas
## 4601               locked                     compared
## 4602               locker                          dor
## 4603                  log                      perfect
## 4604                login                        can’t
## 4605               lograr                 seguimientos
## 4606               logros                   conectarse
## 4607                  lol                         1076
## 4608                  lol                         1221
## 4609                  lol                         1273
## 4610                  lol                         1436
## 4611                  lol                         1617
## 4612                  lol                         1783
## 4613                  lol                         1850
## 4614                  lol                          303
## 4615                  lol                          584
## 4616                  lol                          635
## 4617                  lol                          773
## 4618                  lol                           83
## 4619                  lol                          906
## 4620                  lol                          gif
## 4621                  lol                         nice
## 4622                  lol                       vomero
## 4623             longhorn                   basketball
## 4624             longtime                     favorite
## 4625                loose                         feet
## 4626                loose                          fit
## 4627                loose                          fit
## 4628                 lord                  trafdidrake
## 4629        lord_ashdrake                         lmao
## 4630                  los                    challenge
## 4631                  los                      correos
## 4632                  los                         días
## 4633                  los                         días
## 4634                  los               entrenamientos
## 4635                  los                     felicito
## 4636                  los                      primium
## 4637                loses                         ucla
## 4638                 loss                         cnbc
## 4639               losses                          hit
## 4640                 lost                           58
## 4641                 lost                    countless
## 4642                  lot                          195
## 4643                  lot                         4.83
## 4644                 love                           10
## 4645                 love                       betina
## 4646                 love                         it’s
## 4647                 love                          joe
## 4648                 love                         mine
## 4649                 love                         mine
## 4650                 love                         nike
## 4651                 love                         ua’s
## 4652                 love                     uptempos
## 4653                 love                     watching
## 4654                  low                            5
## 4655                  low                       adidas
## 4656                  low                       adidas
## 4657                  low                       adidas
## 4658                  low                       adidas
## 4659                  low                       adidas
## 4660                  low                        curry
## 4661                  low                         flat
## 4662                  low                        kevin
## 4663                  low                         nike
## 4664                  low                       spieth
## 4665                  low                      stephen
## 4666                  low                     upcoming
## 4667                  low                         wolf
## 4668                  low                      women's
## 4669                lower                         body
## 4670                lower                         drop
## 4671                 lows                        clown
## 4672                loyal                          469
## 4673              loyalty                         2052
## 4674                   lt                            3
## 4675                lucas                         crvg
## 4676                lucky                          559
## 4677                lucky                          797
## 4678            l’adresse                         mail
## 4679                   ma                        fedex
## 4680              machine                     otomatik
## 4681                macro                    headwinds
## 4682                  mad                      squeaky
## 4683               madrid                      segunda
## 4684                magic                           cw
## 4685                 mail                         j’ai
## 4686                 main                        issue
## 4687                 mais                          top
## 4688                major                      control
## 4689                major                    headlines
## 4690                major                    headlines
## 4691                major                    retailers
## 4692                makes                            3
## 4693                makes                      largest
## 4694                makes                        music
## 4695                makes                   sportswear
## 4696                 mala                           se
## 4697               malaga                        apple
## 4698             managing                         data
## 4699            mandatory                        4.169
## 4700             manually                            3
## 4701             manually                        added
## 4702             manually                        enter
## 4703                  map                          run
## 4704                  map                      wrapped
## 4705             marathon                        check
## 4706             marathon                     training
## 4707             marathon                     training
## 4708             marathon                     training
## 4709            marathons                          5ks
## 4710            marathons                       pretty
## 4711                march                         2026
## 4712                march                         28th
## 4713           marinating                         1856
## 4714               market                           ro
## 4715            marketing                           bs
## 4716            marketing                     fernando
## 4717            marketing                      gimmick
## 4718          marketwatch                            3
## 4719          marketwatch                       august
## 4720                  mas                         hoje
## 4721                 mass                     produced
## 4722                match                       stains
## 4723              matches                         1862
## 4724             matching                        skirt
## 4725               matchy                      toddler
## 4726                 mate                         4.70
## 4727             material                         1276
## 4728             material                      rubbing
## 4729                  max                            1
## 4730                  max                          270
## 4731                  max                           95
## 4732                  max                      content
## 4733                  max                        crocs
## 4734                  max                           dn
## 4735                  max                        excee
## 4736                  max                  fantaposite
## 4737                  max                       greedy
## 4738                  max                      jordans
## 4739                  max                      uptempo
## 4740           maximalist                   cushioning
## 4741               maximo                           mi
## 4742              mayores                           de
## 4743                   mb                           04
## 4744                   md                          dwc
## 4745                 meal                         plan
## 4746              measure                     distance
## 4747          measurement                          meh
## 4748             measures                     distance
## 4749              medical                    condition
## 4750             medicine                          psc
## 4751                medir                         para
## 4752               medium                        curry
## 4753               medium                         hovr
## 4754                mejor                          app
## 4755                mejor                entrenamiento
## 4756                mejor                       opción
## 4757                mejor                      terapia
## 4758              mejorar                         cada
## 4759              mejorar                     nuestras
## 4760              mejores                 aplicaciones
## 4761               melhor                          app
## 4762               membro                          vip
## 4763              memphis                         2003
## 4764                men's                           10
## 4765                men's                       fleece
## 4766                men's                       washed
## 4767                men's                   windrunner
## 4768                 mens                          396
## 4769                 mens                        ultra
## 4770                men’s                         size
## 4771                meses                         para
## 4772              message                         free
## 4773                metal                     hardware
## 4774                metal                         logo
## 4775               metcon                            6
## 4776               mexico                           66
## 4777                   mg                     original
## 4778                   mi                        amigo
## 4779                   mi                        apple
## 4780                   mi                        mejor
## 4781                   mi                        mejor
## 4782                   mi                      opinion
## 4783                   mi                   referencia
## 4784                   mi                       rutina
## 4785              micoach                           de
## 4786                  mid                         rise
## 4787                  mid                          top
## 4788                 mike                          air
## 4789                  mil                         grau
## 4790                 mile                         till
## 4791                 mile                         time
## 4792                 mile                        walks
## 4793                miles                           67
## 4794                miles                      drawing
## 4795                miles                         edit
## 4796                miles                          ran
## 4797             military                         blue
## 4798               millas                        entre
## 4799              million                        bucks
## 4800            milwaukee                       macron
## 4801                  min                         mile
## 4802                  min                     mobility
## 4803                  min                     workouts
## 4804                 mind                         soul
## 4805                 mine                          8am
## 4806                 mine                       crispy
## 4807                 mine                       retail
## 4808                 mine                    should've
## 4809            minimized                 interruption
## 4810               minute                     strength
## 4811              minutos                           es
## 4812                  mis                    l’adresse
## 4813              missing                        penny
## 4814                mitus               thatmitusbloke
## 4815                  mmr                          app
## 4816             mobility                         yoga
## 4817               modaes                       global
## 4818                 mode                           85
## 4819                model                        legit
## 4820               modern                          af1
## 4821               modern                       retail
## 4822               modest                          gym
## 4823              mohamed                           el
## 4824               moment                          pro
## 4825                 moms                    underwear
## 4826                  mon                   changement
## 4827                  mon                    programme
## 4828              monthly                        goals
## 4829               months                          ago
## 4830               months                          ago
## 4831             moonrock                       yeezys
## 4832              morning                         rise
## 4833               morons                         1626
## 4834                mossy                          oak
## 4835           motivación                         para
## 4836           motivadora                         todo
## 4837            motivated                          117
## 4838            motivated                          231
## 4839            motivated                          355
## 4840            motivated                          482
## 4841            motivated                           57
## 4842            motivated                        makes
## 4843         motivational                          254
## 4844               motley                         fool
## 4845             mounting                        yeezy
## 4846               moving                           91
## 4847               moving                         it’s
## 4848                mowab                          819
## 4849      mr.calvingrindz                      watcher
## 4850                  msg                   downloaded
## 4851                mucho                         este
## 4852                mucho                          los
## 4853                muito                        fácil
## 4854                multi                         week
## 4855             multiple                    exercises
## 4856             multiple                      running
## 4857              mundial                        donde
## 4858                music                           47
## 4859                music                          add
## 4860                music                          app
## 4861                music                      playing
## 4862                music                       source
## 4863                  muy                         bien
## 4864                  muy                         bien
## 4865                  muy                        buena
## 4866                  muy                        buena
## 4867                  muy                        buena
## 4868                  muy                     completa
## 4869                  muy                       exacto
## 4870                  muy                       fresco
## 4871                  muy                         util
## 4872                  muy                         útil
## 4873                  más                     completa
## 4874                  más                        night
## 4875               méndez                        vélez
## 4876           nacimiento                         pone
## 4877                 nada                          muy
## 4878                  nah                          351
## 4879                  nah                          561
## 4880                  nas                  assinaturas
## 4881                 nash                         nike
## 4882               natick                           ma
## 4883        nationalistic                      boycott
## 4884              navegar                     parabéns
## 4885                  naw                          991
## 4886                   nb                           sc
## 4887                 ncaa                           d1
## 4888                 neck        sweatshirthoodiewomen
## 4889             negative                          app
## 4890             negative                          app
## 4891             negative                          app
## 4892             negative                          app
## 4893             negative                       breaks
## 4894             negative                        can’t
## 4895             negative                         data
## 4896             negative                        drops
## 4897             negative                        error
## 4898             negative                impossibilité
## 4899             negative                         ipad
## 4900             negative                        login
## 4901             negative                        music
## 4902             negative                          pos
## 4903             negative                        rapid
## 4904             negative                 recuperación
## 4905             negative                     removing
## 4906             negative                     terrible
## 4907             negative                        video
## 4908             negative                           не
## 4909             negative                     проблемы
## 4910             negative                         中国
## 4911         neighborhood                          app
## 4912                 neon                        4.193
## 4913                 neon                           95
## 4914                 neon                        green
## 4915                  nes                    astronaut
## 4916                  net                       income
## 4917                  net                       income
## 4918              network                   connection
## 4919              neutral                           20
## 4920              neutral                        basis
## 4921              neutral                      colored
## 4922                 news                       adidas
## 4923             newsroom                         july
## 4924             newsroom                         june
## 4925             newsroom                    september
## 4926                 nice                         1140
## 4927                 nice                         1501
## 4928                 nice                         1676
## 4929                 nice                         1758
## 4930                 nice                         4.66
## 4931                 nice                          838
## 4932                 nice                          app
## 4933                 nice                       bright
## 4934                 nice                        color
## 4935                 nice                    colorways
## 4936                 nice                        kicks
## 4937                 nice                       option
## 4938                 nice                        score
## 4939                 nice                         shoe
## 4940                 nice                        shoes
## 4941                 nice                        shoes
## 4942                 nice                        touch
## 4943                nicer                        white
## 4944                niche                        shoes
## 4945              nichols                         miss
## 4946                 nick                      depaula
## 4947                 nick                      nichols
## 4948                night                         it’s
## 4949                night                          run
## 4950                 nike                          144
## 4951                 nike                           17
## 4952                 nike                          181
## 4953                 nike                          188
## 4954                 nike                          197
## 4955                 nike                          246
## 4956                 nike                          264
## 4957                 nike                          274
## 4958                 nike                           29
## 4959                 nike                          295
## 4960                 nike                          298
## 4961                 nike                          299
## 4962                 nike                          330
## 4963                 nike                          341
## 4964                 nike                          344
## 4965                 nike                          452
## 4966                 nike                           74
## 4967                 nike                           84
## 4968                 nike                           99
## 4969                 nike                          acg
## 4970                 nike                          acg
## 4971                 nike                          acg
## 4972                 nike                       adidas
## 4973                 nike                          air
## 4974                 nike                          air
## 4975                 nike                          air
## 4976                 nike                          air
## 4977                 nike                          air
## 4978                 nike                          air
## 4979                 nike                          air
## 4980                 nike                    announces
## 4981                 nike                    announces
## 4982                 nike                    announces
## 4983                 nike                          app
## 4984                 nike                         apps
## 4985                 nike                     athletes
## 4986                 nike                    baconator
## 4987                 nike                      baltoro
## 4988                 nike                       begins
## 4989                 nike                       begins
## 4990                 nike                         blue
## 4991                 nike                        cedes
## 4992                 nike                          ceo
## 4993                 nike                       church
## 4994                 nike                     comeback
## 4995                 nike                    composite
## 4996                 nike                         crew
## 4997                 nike                       deeply
## 4998                 nike                      digital
## 4999                 nike                  downshifter
## 5000                 nike                        dress
## 5001                 nike                          dri
## 5002                 nike                          dri
## 5003                 nike                         dunk
## 5004                 nike                        dunks
## 5005                 nike                         earl
## 5006                 nike                         foam
## 5007                 nike                         free
## 5008                 nike                         free
## 5009                 nike                         free
## 5010                 nike                         fy23
## 5011                 nike                       global
## 5012                 nike                         gore
## 5013                 nike                          guy
## 5014                 nike                    including
## 5015                 nike                    inventory
## 5016                 nike                     investor
## 5017                 nike                     investor
## 5018                 nike                     investor
## 5019                 nike                     investor
## 5020                 nike                     investor
## 5021                 nike                       jordan
## 5022                 nike                           kd
## 5023                 nike                         kolu
## 5024                 nike                     launches
## 5025                 nike                     launches
## 5026                 nike                       legend
## 5027                 nike                        lunar
## 5028                 nike                           lw
## 5029                 nike                        makes
## 5030                 nike                       metcon
## 5031                 nike                       metcon
## 5032                 nike                       metcon
## 5033                 nike                       metxon
## 5034                 nike                     newsroom
## 5035                 nike                     newsroom
## 5036                 nike                     newsroom
## 5037                 nike                         nice
## 5038                 nike                        posts
## 5039                 nike                     products
## 5040                 nike                       racers
## 5041                 nike                        react
## 5042                 nike                       reddit
## 5043                 nike                      reports
## 5044                 nike                      reports
## 5045                 nike                      reports
## 5046                 nike                      reports
## 5047                 nike                      revenue
## 5048                 nike                   reversible
## 5049                 nike                          run
## 5050                 nike                      runners
## 5051                 nike                      running
## 5052                 nike                      running
## 5053                 nike                      running
## 5054                 nike                      running
## 5055                 nike                           sb
## 5056                 nike                         sell
## 5057                 nike                        shirt
## 5058                 nike                        shoes
## 5059                 nike                     shopping
## 5060                 nike                        skims
## 5061                 nike                   sportswear
## 5062                 nike                   sportswear
## 5063                 nike                        stock
## 5064                 nike                        stock
## 5065                 nike                        stock
## 5066                 nike                        store
## 5067                 nike                        storm
## 5068                 nike                        style
## 5069                 nike                        super
## 5070                 nike                         team
## 5071                 nike                        trail
## 5072                 nike                     trainers
## 5073                 nike                     training
## 5074                 nike                     training
## 5075                 nike                     training
## 5076                 nike                     training
## 5077                 nike                     training
## 5078                 nike                     training
## 5079                 nike                     training
## 5080                 nike                     training
## 5081                 nike                    wholesale
## 5082                 nike                      women's
## 5083                 nike                        world
## 5084                nikes                         2321
## 5085               nike’s                     training
## 5086                 ning                         anta
## 5087                nivel                      inicial
## 5088                nivel                      mundial
## 5089                  nmd                           r1
## 5090                  nmd                          xr1
## 5091          nonetheless                         cool
## 5092             nonsense                       promos
## 5093               normal                         nike
## 5094               normal                         size
## 5095                 nort                        recon
## 5096                north                      america
## 5097                north                      america
## 5098                north                      america
## 5099                north                      america
## 5100                  nos                        llena
## 5101                 nose                       shotty
## 5102            nostalgic                      reasons
## 5103                nosto                        nosto
## 5104                nosto                   searchpage
## 5105                notch                       review
## 5106                notes                      section
## 5107                  nov                          226
## 5108             november                            1
## 5109             november                            1
## 5110                  nrc                          218
## 5111                  nrc                          247
## 5112                  ntc                           12
## 5113                  ntc                          220
## 5114                  ntc                          app
## 5115                  ntc                        lacks
## 5116                  ntc                         nike
## 5117                  ntc                         nike
## 5118                  ntc                          por
## 5119          ntvascainos                           em
## 5120               nubuck                         oreo
## 5121             nuestras                      rutinas
## 5122                  não                      esquece
## 5123                  não                          ser
## 5124                  não                        tenho
## 5125                n’est                          pas
## 5126                   ob                            5
## 5127                  obv                        fakes
## 5128           occasional                         jogs
## 5129                  oct                           28
## 5130              october                            1
## 5131              october                            1
## 5132              october                            5
## 5133                  odd                          muy
## 5134             offering                           40
## 5135               offers                comprehensive
## 5136           officially                    announced
## 5137           officially                       closes
## 5138                   og                         2001
## 5139                   og                         neon
## 5140                   og                         nike
## 5141                olive                     chicagos
## 5142              olivier                    rousteing
## 5143               olması                      gerekir
## 5144             olympics                         nike
## 5145             olympics                      scottie
## 5146             olympics                      special
## 5147             olympics                          usa
## 5148                  omg                         2129
## 5149             onitsuka                        tiger
## 5150               online                            4
## 5151               online                      october
## 5152                   op                         1711
## 5153               opción                           68
## 5154              operate                       sábado
## 5155            operating                       income
## 5156              opinion                           35
## 5157              opinion                          muy
## 5158          opportunity                   commission
## 5159               option                          131
## 5160               option                          155
## 5161               option                          485
## 5162              options                          102
## 5163              options                         time
## 5164               orange                         pair
## 5165            oregonian                         july
## 5166            oregonian                      october
## 5167            organized                          142
## 5168             original                       owners
## 5169             original                         pair
## 5170             original                          toe
## 5171             original                  traditional
## 5172           originally                         bret
## 5173                   os                     anúncios
## 5174             otomatik                     başlatma
## 5175             otoöatik                     başlatma
## 5176                ousts                          ceo
## 5177              outdoor                         walk
## 5178              outfits                         nice
## 5179               outlet                          366
## 5180               outlet                        steal
## 5181             outlined                          aka
## 5182           outrageous                       sheesh
## 5183                 outs                          206
## 5184          outstanding                      missing
## 5185            oversized                       french
## 5186            oversized                          mid
## 5187           overworked                       lonely
## 5188                 pace                    breakdown
## 5189                paced                     workouts
## 5190                packs                         worn
## 5191                 page                          132
## 5192                 page                            3
## 5193                 paid                          190
## 5194                 pair                          171
## 5195                 pair                         2342
## 5196                 pair                           38
## 5197                 pair                        clean
## 5198                 pair                  immediately
## 5199                 pair                         nice
## 5200                 pair                        super
## 5201                pairs                          768
## 5202               pandas                          413
## 5203               pandas                           fr
## 5204             pandemic                  accelerates
## 5205             pandemic                     consumer
## 5206             pandemic                       demand
## 5207             pandemic                   devastates
## 5208             pandemic                    headwinds
## 5209             pandemic                    pressures
## 5210                pants                           id
## 5211                pants                          set
## 5212        pantspantsmen                       bought
## 5213                 para                          acá
## 5214                 para                     comenzar
## 5215                 para                        dolor
## 5216                 para                          las
## 5217                 para                     mantener
## 5218                 para                      mejorar
## 5219                 para                           mi
## 5220                 para                   monitorear
## 5221                 para                           mí
## 5222                 para                          não
## 5223                 para                        poder
## 5224                 para                         quem
## 5225                 para                    registrar
## 5226                 para                      running
## 5227                 para                          ver
## 5228                 para                          ver
## 5229             parabéns                       adidas
## 5230               paralı                       adidas
## 5231               paralı                           bu
## 5232              parasız                       olması
## 5233               parece                          una
## 5234                paris                         2024
## 5235                paris                         2024
## 5236                paris                     olympics
## 5237                 park                            4
## 5238              parsing                          msg
## 5239              partida                        estou
## 5240             partners                     business
## 5241             partners                      writing
## 5242          partnership                       adidas
## 5243          partnership                     expected
## 5244                  pas                           la
## 5245             password                     function
## 5246                 past                            2
## 5247                 past                            4
## 5248                 past                     interval
## 5249                 past                        senna
## 5250             pathetic                          503
## 5251              patrick                       malaga
## 5252               patrik                        frisk
## 5253               patrik                        frisk
## 5254               paused                automatically
## 5255                  pay                         wall
## 5256               paying                    attention
## 5257               paying                       resale
## 5258               paypal                        ready
## 5259                peace                         1756
## 5260               peachy                        beige
## 5261              pegasus                           41
## 5262              pegasus                      premium
## 5263              pegasus                        trail
## 5264              pendant                          des
## 5265                penny                            1
## 5266                penny                        foams
## 5267                penny                           gt
## 5268                penny                    signature
## 5269                pensé                          fue
## 5270               people                          342
## 5271               people                          439
## 5272               people                          lol
## 5273               people                      wearing
## 5274               pepper                        https
## 5275               pepper                        spray
## 5276              perfect                          fit
## 5277            perfectly                        built
## 5278              perform                         it’s
## 5279          performance                    brilliant
## 5280          performance                   innovation
## 5281          performance                      running
## 5282             periodic                           12
## 5283              permite                    controlar
## 5284                 pero                           de
## 5285           persistent                       errors
## 5286               person                          lol
## 5287             personal                       health
## 5288             personal                      planner
## 5289             personal                      records
## 5290      personalization                        lacks
## 5291         personalized                     personal
## 5292           phenomenal                       broken
## 5293         phenomenally                   phenomenal
## 5294                 phil                       knight
## 5295              phoenix                       fleece
## 5296                phone                          140
## 5297                phone                       adjust
## 5298                phone                      battery
## 5299             physical                      fitness
## 5300             physical                      fitness
## 5301                  pic                         1624
## 5302                 pick                            4
## 5303                 pick                        shoes
## 5304               pickup                       adidas
## 5305              picture                      popular
## 5306                piece                         nike
## 5307              pilates                         hiit
## 5308              pilates                         yoga
## 5309                 pink                          851
## 5310                 pink                          box
## 5311                 pink                         foam
## 5312                 pink                          lol
## 5313               pippen                            5
## 5314               pivots                          fox
## 5315                 plan                        ideas
## 5316                 plan                        nears
## 5317                 plan                   recommends
## 5318                plank                     december
## 5319                plank                        ousts
## 5320               planks                         calf
## 5321              planner                      journal
## 5322                 play                        music
## 5323           playground                         dirt
## 5324              playing                           53
## 5325             pleeaase                          lol
## 5326                  pls                          buy
## 5327                poder                      cumplir
## 5328            podiatric                      medical
## 5329              pokemon                         card
## 5330                polar                        apple
## 5331             polished                    organized
## 5332             politics                  uninstalled
## 5333                 pone                          por
## 5334                poner                        fecha
## 5335                ponto                           de
## 5336            pontuação                           de
## 5337              popping                       bubble
## 5338                poppy                       fields
## 5339              popular                       belief
## 5340                  por                        cento
## 5341                  por                        crear
## 5342                  por                      defecto
## 5343                  por                         esta
## 5344                  por                      existir
## 5345                  por                           mi
## 5346                  por                         nada
## 5347               posite                        iii's
## 5348             positive                          161
## 5349             positive                            5
## 5350             positive                           97
## 5351             positive                     absolute
## 5352             positive                      amazing
## 5353             positive                      amazing
## 5354             positive                      amazing
## 5355             positive                          app
## 5356             positive                      awesome
## 5357             positive                   beneficios
## 5358             positive                   convenient
## 5359             positive                           el
## 5360             positive                    exceeding
## 5361             positive                    excellent
## 5362             positive                    excellent
## 5363             positive                  exceptional
## 5364             positive                    fantastic
## 5365             positive                     favorite
## 5366             positive                         free
## 5367             positive                         game
## 5368             positive                   incredibly
## 5369             positive                          les
## 5370             positive                         life
## 5371             positive                         love
## 5372             positive                      morning
## 5373             positive                        music
## 5374             positive                          muy
## 5375             positive                          muy
## 5376             positive                         nike
## 5377             positive                          ntc
## 5378             positive                  outstanding
## 5379             positive                      perfect
## 5380             positive                      perfect
## 5381             positive                       review
## 5382             positive                      reviews
## 5383             positive                          top
## 5384             positive                          yay
## 5385             positive                         yoga
## 5386             positive                           zk
## 5387             positive                           не
## 5388             positive                           не
## 5389                 post                          402
## 5390                 post                     pandemic
## 5391                 post                     pandemic
## 5392               posted                         nice
## 5393                posts                           34
## 5394                posts                           39
## 5395                posts                           41
## 5396                posts                           71
## 5397                posts                       record
## 5398            potential                        theft
## 5399                 pour                    continuer
## 5400                 pour                     recevoir
## 5401                power                      running
## 5402             powerful                    exercises
## 5403         powerlifting                        style
## 5404                   pr                         1770
## 5405              pratico                         lost
## 5406            preciosas                        buena
## 5407        predictstreet                         btig
## 5408               prefer                         2020
## 5409               prefer                            4
## 5410               prefer                         nike
## 5411              prefers                       simple
## 5412             pregnant                       ladies
## 5413              premier                   maximalist
## 5414              premium                         1807
## 5415              premium                         apps
## 5416         preparations                         nike
## 5417            president                        alert
## 5418            pressures                  marketwatch
## 5419             pretende                          ter
## 5420               pretty                         2240
## 5421               pretty                        cheap
## 5422               pretty                        comfi
## 5423               pretty                         dope
## 5424               pretty                         fake
## 5425               pretty                           im
## 5426               pretty                         nice
## 5427               pretty                     straight
## 5428             previous                     releases
## 5429                price                         1505
## 5430                price                          240
## 5431                price                          373
## 5432                price                          383
## 5433                price                       adidas
## 5434                price                        match
## 5435                price                          tag
## 5436               priced                   reasonable
## 5437              primary                         care
## 5438               primer                          322
## 5439              primium                       pueden
## 5440               primus                        trail
## 5441       principalmente                           de
## 5442              printed                          air
## 5443              printed                        shoes
## 5444           prioritize                      comfort
## 5445         prioritizing                      healthy
## 5446                  prm                      vintage
## 5447                  pro                            3
## 5448                  pro                            3
## 5449                  pro                            4
## 5450                  pro                            4
## 5451                  pro                            4
## 5452                  pro                           4s
## 5453                  pro                          evo
## 5454             problema                          315
## 5455             problema                          con
## 5456             problema                       cuando
## 5457            problemas                          con
## 5458            problemas                        tengo
## 5459              produce                     tactical
## 5460              product                   b08cs48ryj
## 5461              product                         pics
## 5462              product                      surplus
## 5463              product                         wild
## 5464             products                         sell
## 5465              produto                           da
## 5466        profesionales                           se
## 5467             profound                 phenomenally
## 5468              program                          121
## 5469              program                   disappears
## 5470             programa                   unreliable
## 5471            programas                  específicos
## 5472            programme               d’entraînement
## 5473             programs                            2
## 5474             programs                          215
## 5475             programs                            4
## 5476             programs                          419
## 5477             programs                         kg’s
## 5478             progress                          103
## 5479             progress                     training
## 5480          progression                   activities
## 5481              project                         rock
## 5482             projects                         700m
## 5483               prolly                          911
## 5484               promos                           10
## 5485           pronounced                           ah
## 5486                proof                       carbon
## 5487             properly                     measured
## 5488           propublica                            7
## 5489                  psc                            1
## 5490                  psc                          351
## 5491               pseudo                    lifestyle
## 5492               public                          148
## 5493                puede                   participar
## 5494               pueden                          ver
## 5495                puedo                    recuperar
## 5496               puerto                         rico
## 5497                 puma                     genetics
## 5498                 puma                           mb
## 5499             puncture                        proof
## 5500             purchase                          394
## 5501             purchase                        price
## 5502             purchase                      women's
## 5503            purchased                       pepper
## 5504           purchasing                     discount
## 5505                 pure                         2298
## 5506                 pure                       bleach
## 5507               purple                          amp
## 5508              purpose                       giving
## 5509              pushing                         1642
## 5510                   q1                      revenue
## 5511                   q3                        china
## 5512                   q3                       fy2026
## 5513                   q3                       fy2026
## 5514                   q3                      revenue
## 5515                   q3                      revenue
## 5516                   qa                     distance
## 5517                   qa                         team
## 5518               qinwen                       tennis
## 5519              quality                          703
## 5520              quality                      control
## 5521              quality                         hoop
## 5522              quality              personalization
## 5523           quantidade                      absurda
## 5524            quarterly                         loss
## 5525                 quem                      conhece
## 5526                 quem                         está
## 5527               querem                        saber
## 5528               querer                     terminar
## 5529             question                         1904
## 5530             question                       lmaooo
## 5531            questions                         1968
## 5532                  qui                         fait
## 5533                quick                           10
## 5534                quick                          106
## 5535                quick                         buck
## 5536                quick                         walk
## 5537              quickly                       losing
## 5538                quiet                         slow
## 5539              quietly                    reversing
## 5540               quiten                           el
## 5541                 race                          5.0
## 5542                 race                         date
## 5543               racers                         2412
## 5544               racing                         4.51
## 5545               raffle                        super
## 5546                  ran                          run
## 5547              rareair                         1557
## 5548              rareair                         2241
## 5549               rarely                        write
## 5550                reach                           38
## 5551                reach                      adiclub
## 5552                 read                         0.95
## 5553              reading                     positive
## 5554                 real                          230
## 5555                 real                          325
## 5556                 real                       adidas
## 5557                 real                          max
## 5558                 real                          mil
## 5559                 real                     zunnigas
## 5560            rebalance                         cost
## 5561             received                            3
## 5562            receiving                            8
## 5563            receiving                        calls
## 5564            receiving                      literal
## 5565               recent                        error
## 5566               recent                          ios
## 5567               recent                        video
## 5568             recevoir                           le
## 5569          recommanded                        adios
## 5570            recommend                          162
## 5571            recommend                          374
## 5572            recommend                          421
## 5573            recommend                      mission
## 5574            recommend                       pepper
## 5575          recommended                          106
## 5576          recommended                         life
## 5577              records                          las
## 5578             recovers                         nike
## 5579             recovery                     sessions
## 5580             recovery                     timeline
## 5581           recreating                     accounts
## 5582            recuperar                           mi
## 5583            recuperar                          mis
## 5584                rec’d                          238
## 5585                  red                        laces
## 5586                  red                       runner
## 5587                  red                        sport
## 5588               reddit                         1620
## 5589               reddit                          594
## 5590               reddit                     comments
## 5591               reddit                      sneaker
## 5592               reebok                         nano
## 5593           referencia                         para
## 5594          reflexology                         flip
## 5595             regional                         park
## 5596            registrar                       logros
## 5597         registration                          416
## 5598              regular                     everyday
## 5599              regular                      fitness
## 5600              regular                     rotation
## 5601              regular                         size
## 5602           relajación                          hoy
## 5603            relations                     december
## 5604            relations                         june
## 5605            relations                  marketwatch
## 5606            relations                      october
## 5607            relations                    september
## 5608              release                        4.227
## 5609             releases                          862
## 5610           relentless                        drive
## 5611            reloading                   restarting
## 5612            remembers                          428
## 5613               remove                          233
## 5614              removed                          key
## 5615            repellent                          tho
## 5616           repetitive                 motivational
## 5617           repetitive                        posts
## 5618          replacement                          474
## 5619              reports                           38
## 5620              reports                         fy26
## 5621              reports                         fy26
## 5622              reports                           q1
## 5623             requires                        watch
## 5624             research                          bro
## 5625               resell                       market
## 5626             resolved                    caminando
## 5627             resource                          237
## 5628                 rest                         stop
## 5629           restarting                     clearing
## 5630           restocking                        march
## 5631        restructuring                         plan
## 5632        restructuring                         plan
## 5633               result                         i’ve
## 5634               retail                         1391
## 5635               retail                            3
## 5636               retail                            3
## 5637               retail                         cnbc
## 5638               retail                         dive
## 5639               retail                         dive
## 5640               retail                         dive
## 5641               retail                         dive
## 5642               retail                     partners
## 5643               retail                        price
## 5644            retailers                     recovers
## 5645              retarme                        todos
## 5646                 reto                       semana
## 5647              reuters                       august
## 5648              reuters                         june
## 5649              reuters                    september
## 5650              revenue                        drops
## 5651              revenue                    forecasts
## 5652              revenue                       losses
## 5653              revenue                      reaches
## 5654            reversing                          dtc
## 5655               revert                          259
## 5656               review                            8
## 5657               review                          901
## 5658               review                   absolutely
## 5659               review                          btw
## 5660               review                       classy
## 5661               review                           li
## 5662               review                       lining
## 5663               review                      suggest
## 5664             reviewer                         2026
## 5665              reviews                        4.353
## 5666              reviews                        4.376
## 5667              reviews                          490
## 5668              reviews                       hentet
## 5669           revolution                      charles
## 5670               rewiev                       mizuno
## 5671               ribbon                        elite
## 5672                 rice                       farmer
## 5673                 rico                           es
## 5674                rings                        watch
## 5675                  rip                      fucking
## 5676                 rise                            2
## 5677                 rise                        track
## 5678                ritmo                            2
## 5679                ritmo                        súper
## 5680                rival                          fly
## 5681                   ro              sneakermarketro
## 5682              roadman                     trainers
## 5683                 rock                           em
## 5684              rocking                       adidas
## 5685              rocking                        horse
## 5686                  ron                   burgundy's
## 5687                roomy                        loose
## 5688                 rose                         gold
## 5689                roshe                         runs
## 5690             rotating                      counter
## 5691                round                        lower
## 5692                route                     displays
## 5693               routes                 neighborhood
## 5694               routes                        super
## 5695              routine                        start
## 5696             routines                          150
## 5697               rstill                        gonna
## 5698               rubber                     destroys
## 5699              rubbing                       inside
## 5700                 ruff                          gif
## 5701                 rule                      perfect
## 5702                  run                          352
## 5703                  run                         4.41
## 5704                  run                     activity
## 5705                  run                         cool
## 5706                  run                    correctly
## 5707                  run                     distance
## 5708                  run                      forrest
## 5709                  run                    incorrect
## 5710                  run                         road
## 5711                  run                       smooth
## 5712                  run                      summary
## 5713                  run                         time
## 5714                  run                      tracker
## 5715                  run                     training
## 5716                  run                         walk
## 5717               runner                          348
## 5718               runner                       pepper
## 5719              runners                         wear
## 5720              running                       adidas
## 5721              running                          app
## 5722              running                    companion
## 5723              running                      errands
## 5724              running                          hat
## 5725              running                          hat
## 5726              running                      history
## 5727              running                           je
## 5728              running                           la
## 5729              running                          lol
## 5730              running                       sauron
## 5731              running                        score
## 5732              running                        score
## 5733              running                         shoe
## 5734              running                         shoe
## 5735              running                        shoes
## 5736              running                        shoes
## 5737              running                       skills
## 5738              running                      there’s
## 5739              running                     tracking
## 5740              running                         vans
## 5741              running                      walking
## 5742                 runs                      futebol
## 5743                 runs                    greatness
## 5744                 runs                        happy
## 5745                 runs                      sabrina
## 5746            runstatic                   exatamente
## 5747            runtastic                      results
## 5748                run’s                          gps
## 5749               rutina                           de
## 5750              rutinas                         adds
## 5751              rutinas                          son
## 5752                saber                           de
## 5753                sabre                          red
## 5754                sales                         1815
## 5755                sales                         cnbc
## 5756                sales                    financial
## 5757              salomon                         aero
## 5758              saludos                    excelente
## 5759                samba                deconstructed
## 5760                samba                          ogs
## 5761                samba                      spezial
## 5762                samba                         view
## 5763               samba3                     gazelle4
## 5764                  san                   juan.bello
## 5765              sanders                         1689
## 5766            sandpaper                         1309
## 5767                 sans                       succès
## 5768               santos                  santoscharm
## 5769            sapphires                     huarache
## 5770                  sat                      forever
## 5771                satin                        lined
## 5772             saturday                            9
## 5773             saturday                        night
## 5774               sauron                    confirmed
## 5775                 save                       hiking
## 5776                   sb                      comfort
## 5777                   sb                         dunk
## 5778              scammmm                       yeeyee
## 5779             scathing                         wall
## 5780             schedule                           32
## 5781            scheffler                         golf
## 5782               school                         camp
## 5783               school                         days
## 5784           scientific                     approach
## 5785                score                           10
## 5786                score                           10
## 5787                score                           11
## 5788                score                           13
## 5789                score                        25310
## 5790                score                         4160
## 5791                score                            5
## 5792                score                            6
## 5793                score                            6
## 5794                score                            6
## 5795                score                            6
## 5796                score                            7
## 5797                score                            7
## 5798                score                            7
## 5799                score                            7
## 5800                score                            7
## 5801                score                            7
## 5802                score                            7
## 5803                score                         7049
## 5804                score                         7051
## 5805                score                            8
## 5806                score                            8
## 5807                score                            9
## 5808                score                            9
## 5809             scorpion                          849
## 5810              scottie                      pippins
## 5811              scottie                    scheffler
## 5812               screen                         view
## 5813               screen                       widget
## 5814                  scy                         zers
## 5815                   se                    comparten
## 5816                   se                      detiene
## 5817                   se                     empareja
## 5818                   se                       membro
## 5819                   se                        puede
## 5820                   se                       tornou
## 5821                  sea                         cuál
## 5822                  sea                           su
## 5823                 sean                  wotherspoon
## 5824           searchpage                            2
## 5825                  sec                       filing
## 5826                  sec                         nike
## 5827              section                      doesn’t
## 5828              section                        won’t
## 5829              secured                            3
## 5830         seguimientos                           es
## 5831              segunda                       semana
## 5832             selected                       adidas
## 5833                 sell                           62
## 5834                 sell                     products
## 5835                 sell                        roshe
## 5836                 sell                        ultra
## 5837               semana                            1
## 5838               semana                        desde
## 5839               semana                         para
## 5840                 semi                         wide
## 5841                  sen                           10
## 5842      sen10ultraboost                            5
## 5843              seniors                          282
## 5844               sentir                        libre
## 5845            september                            2
## 5846            september                            3
## 5847            september                            4
## 5848            september                            6
## 5849            september                            9
## 5850                  ser                  importunada
## 5851           serenocrvg                         nike
## 5852              service                      awesome
## 5853             sessions                          110
## 5854              sexless                    mannequin
## 5855              shake’s                       adidas
## 5856                shape                          153
## 5857                shape                          368
## 5858                shape                           71
## 5859                share                      buyback
## 5860                sheep                          gif
## 5861                shell                          toe
## 5862               shikes                         1261
## 5863              shining                          sun
## 5864                shirt                         baby
## 5865                shirt                          bro
## 5866                 shit                         4.15
## 5867                 shit                         cool
## 5868                 shit                     question
## 5869                 shit                         shoe
## 5870                shock                   absorption
## 5871                 shoe                         2310
## 5872                 shoe                        4.200
## 5873                 shoe                          4.4
## 5874                 shoe                    community
## 5875                 shoe                    cristiano
## 5876                 shoe                        feels
## 5877                 shoe                       jordan
## 5878                 shoe                        laces
## 5879                 shoe                          lol
## 5880                 shoe                         nice
## 5881                 shoe                        price
## 5882                 shoe                     reviewer
## 5883                 shoe                      reviews
## 5884                 shoe                     rotation
## 5885                 shoe                   simplicity
## 5886                 shoe                        trees
## 5887                 shoe                     velociti
## 5888                 shoe                         wide
## 5889                 shoe                         yeah
## 5890                 shoe                           星
## 5891                shoes                         1097
## 5892                shoes                         1441
## 5893                shoes         16adimltrbstmblkwrnn
## 5894                shoes                         1891
## 5895                shoes                         2157
## 5896                shoes                          364
## 5897                shoes                          388
## 5898                shoes                        4.115
## 5899                shoes                          674
## 5900                shoes                          blk
## 5901                shoes                        loose
## 5902                shoes                         shit
## 5903             shopping                          app
## 5904                short                     distance
## 5905             shortest                     advanced
## 5906                 shot                          572
## 5907            should've                       bought
## 5908               shrink                        badly
## 5909                 shut                           ur
## 5910                 sick                          ass
## 5911                 sick                         shoe
## 5912              sickest                          847
## 5913              siempre                     disfruto
## 5914               siento                          fit
## 5915              signals                         slow
## 5916              similar                       brands
## 5917              similar                   technology
## 5918               simple                         easy
## 5919               simple                          low
## 5920               simple                        super
## 5921          simplemente                    excelente
## 5922            sincerely                       stella
## 5923               single                        color
## 5924               single                         shoe
## 5925               single                         time
## 5926                 size                           10
## 5927                 size                         10.5
## 5928                 size                           11
## 5929                 size                           11
## 5930                 size                           12
## 5931                 size                           12
## 5932                 size                           12
## 5933                 size                          12s
## 5934                 size                           13
## 5935                 size                           14
## 5936                 size                        4.185
## 5937                 size                        4.221
## 5938                 size                          576
## 5939                 size                        short
## 5940                 size                         type
## 5941                 size                      women's
## 5942                 size                         yeah
## 5943                sizes                          794
## 5944               sizing                          tip
## 5945               skills                           14
## 5946                skims                       spring
## 5947                skips                          leg
## 5948               skiyee                  trustworthy
## 5949                  sku                          721
## 5950                  sky                       tokyos
## 5951                   sl                         4.46
## 5952                   sl                           72
## 5953                   sl                       takumi
## 5954            sl2boston                        12evo
## 5955              sleeper                      classic
## 5956              sleeved                        socks
## 5957                 slow                     recovery
## 5958             sltakumi              sen10ultraboost
## 5959     smile.amazon.com                           gp
## 5960                smoke                         grey
## 5961               smooth                     concrete
## 5962              sneaker                        4.352
## 5963              sneaker                        alert
## 5964              sneaker                      culture
## 5965              sneaker                         game
## 5966              sneaker                       market
## 5967              sneaker                        space
## 5968       sneakeralerthd                         nike
## 5969         sneakerheads                        score
## 5970         sneakerheads                        score
## 5971      sneakermarketro                          jon
## 5972             sneakers                          836
## 5973             sneakers                          gif
## 5974             sneakers                        marty
## 5975             sneakers                        score
## 5976             sneakers                        score
## 5977             sneakers                        score
## 5978             sneakers                        score
## 5979             sneakers                        score
## 5980             sneakers                        score
## 5981             sneakers                        score
## 5982             sneakers                        score
## 5983             sneakers                        score
## 5984                snike                        store
## 5985                snkrs                         drop
## 5986                snkrs                    exclusive
## 5987                snkrs                        wrong
## 5988               soccer                     national
## 5989               social                         feed
## 5990               social                        media
## 5991                 sock                     material
## 5992               sock's                  exfoliating
## 5993                socks                         1297
## 5994                socks                            6
## 5995                socks                    extremely
## 5996                 soft                          314
## 5997             software                      version
## 5998              soldier                        dudes
## 5999                 sole                         drop
## 6000                 solo                          era
## 6001                 solo                      faltaba
## 6002                 solo                      mayores
## 6003                 solo                        paced
## 6004                 solo                          por
## 6005             solution                          364
## 6006                  son                   excelentes
## 6007                  soo                         fire
## 6008                 sooo                    expensive
## 6009                sound                    fantastic
## 6010                sound                         it’s
## 6011               sounds                      awesome
## 6012               source                       option
## 6013                space                           41
## 6014                space                         boot
## 6015                space                       hippie
## 6016                space                       hippie
## 6017                space                       hippie
## 6018                space                       hippie
## 6019                space                      hippies
## 6020                space                         lmao
## 6021                space                         race
## 6022             spanning                         hiit
## 6023                spare                         tire
## 6024             sparking                      analyst
## 6025              special                     olympics
## 6026              special                     olympics
## 6027              special                     olympics
## 6028              special                         pair
## 6029             specific                     beginner
## 6030             specific                       person
## 6031               speech                          142
## 6032                speed                         time
## 6033                spend                          220
## 6034                spend                     needless
## 6035             spending                       surges
## 6036              spezial                      fastest
## 6037              spezial                      gazelle
## 6038              spezial                        samba
## 6039             spezial2                       samba3
## 6040               spieth                         golf
## 6041               spirit                         1725
## 6042                split                       adidas
## 6043          sponsorship                        súper
## 6044                sport                         july
## 6045               sports                    including
## 6046               sports                       retail
## 6047           sportsmask                   pid1368010
## 6048           sportswear                         1592
## 6049           sportswear                        shoes
## 6050           sportswear                         tech
## 6051               sporty                         rich
## 6052              spotify                       option
## 6053                spray                          gel
## 6054                spray                   protectant
## 6055               spring                           26
## 6056               spring                       summer
## 6057               square                         feet
## 6058               squats                    deadlifts
## 6059              squeaky                           af
## 6060                  src                         link
## 6061                  src                         link
## 6062           staggering                       nike's
## 6063               stains                         burn
## 6064             stallion                     programs
## 6065             stallion                     workouts
## 6066                 stan                       smiths
## 6067               stance                       adidas
## 6068             standard                          run
## 6069             standing                         calf
## 6070                 star                          406
## 6071                 star                         wars
## 6072                stars                            1
## 6073                stars                          167
## 6074                stars                           48
## 6075                start                          157
## 6076                start                         2118
## 6077                start                      buttons
## 6078                start                         date
## 6079                start                      podcast
## 6080              started                          128
## 6081             starting                      awesome
## 6082               starts                       adding
## 6083            statement                        piece
## 6084            statement                         warm
## 6085                stats                      feature
## 6086                 stay                  accountable
## 6087                 stay                       active
## 6088                 stay                        clean
## 6089                 stay                       strong
## 6090               steady                        solid
## 6091                steal                           51
## 6092             steelers                          hat
## 6093              stephen                        curry
## 6094        stereotypical                        black
## 6095                steve                         nash
## 6096               stewie                      griffin
## 6097                 stfu                       brokie
## 6098            stitching                      branded
## 6099                 stop                         shop
## 6100                 stop               verbalizations
## 6101              stopped                   supporting
## 6102              stopped                      wearing
## 6103                store                           75
## 6104                store                     closures
## 6105                store                     purchase
## 6106                store                      reviews
## 6107                store                           sf
## 6108               stores                         2017
## 6109                storm                          fit
## 6110                story                      running
## 6111             straight                         line
## 6112              strange                         1246
## 6113              strange                          160
## 6114            strategic                       pivots
## 6115             strategy                      cutting
## 6116             strategy                          hub
## 6117             strategy                       retail
## 6118               strava                       review
## 6119               strava                         sync
## 6120               street                      edition
## 6121               street                      journal
## 6122             strength                     advanced
## 6123             strength                     training
## 6124              stretch                        woven
## 6125            stretches                          334
## 6126               strike                     movement
## 6127               strong                         yall
## 6128           structured                     aerobill
## 6129           structured                        metal
## 6130           structured                       swoosh
## 6131              student                     athletes
## 6132                stuff                          297
## 6133                stuff                        lasts
## 6134               stupid                          app
## 6135               stupid                        plain
## 6136               sturdy                     material
## 6137               stussy                        black
## 6138               stussy                         gray
## 6139             stutters                          420
## 6140                style                          air
## 6141                style                     training
## 6142               styles                    breathing
## 6143               styles                         meal
## 6144                   su                        nivel
## 6145                   su                     problema
## 6146         subscription                        based
## 6147         subscription                    excelente
## 6148         subscription                         fast
## 6149         subscription                         fees
## 6150         subscription                    graphical
## 6151         subsequently                  strengthens
## 6152               succès                    dégoûtant
## 6153                sucks                            4
## 6154                suede                         free
## 6155           sufficient                         mmmm
## 6156               summer                         shoe
## 6157               summer                        socks
## 6158               summit                        white
## 6159                  sun                       hahaha
## 6160                super                        clean
## 6161                super                  comfortable
## 6162                super                        comfy
## 6163                super                  informative
## 6164                super                          jug
## 6165                super                         loud
## 6166                super                    underated
## 6167                super                        weird
## 6168                super                        ótimo
## 6169            supernova                         rise
## 6170            supernova                       series
## 6171            superstar                          xlg
## 6172           superstars                         rule
## 6173               supply                        chain
## 6174              support                        ultra
## 6175             supports                        apple
## 6176               surges                         wall
## 6177              surging                       direct
## 6178              surplus                      reuters
## 6179             swearing                   constantly
## 6180           sweatshirt                        coord
## 6181                sweet                         1013
## 6182                sweet                        happy
## 6183                sweet                         time
## 6184               swoosh                         logo
## 6185                 sync                         nope
## 6186             syracuse                   basketball
## 6187               sábado                           de
## 6188                   só                       querem
## 6189                 sólo                          los
## 6190                súper                   aplicación
## 6191                súper                        todas
## 6192             tactical                      clothes
## 6193                  tag                        4.317
## 6194               takumi                          sen
## 6195               takumi                      there’s
## 6196               target                          100
## 6197              tariffs                    financial
## 6198                taste                         1982
## 6199                taste                          lol
## 6200             tbhonest                         1876
## 6201                 team                            2
## 6202                 team                          457
## 6203                 team                        drive
## 6204                 team                         nike
## 6205                 team                         shoe
## 6206                 team                        usa's
## 6207                teams                       modaes
## 6208                 tech                         leap
## 6209                temas                        desde
## 6210                tempo                          run
## 6211                  ten                       minute
## 6212                tengo                    problemas
## 6213                tenho                    interesse
## 6214               tennis                      reuters
## 6215             tensions                        kanye
## 6216                  ter                           um
## 6217              terapia                       correr
## 6218             terminar                           el
## 6219             terminar                           la
## 6220              terrain                      running
## 6221             terrible                          481
## 6222             terrible                   basketball
## 6223             terrible                        fakes
## 6224             terrible                           im
## 6225                terry                         crew
## 6226            testament                           87
## 6227                texas                     longhorn
## 6228                texas                   volleyball
## 6229       thatmitusbloke                         nike
## 6230               that’s                  sponsorship
## 6231                 thee                     stallion
## 6232                theft                       adidas
## 6233              there’s                        times
## 6234                thick                         gold
## 6235                 thin                         foam
## 6236             thinking                         4.22
## 6237             thinking                          ppl
## 6238                  tho                         1903
## 6239                  tho                          460
## 6240               thread                        count
## 6241                throw                         bike
## 6242             thursday                      morning
## 6243             tibialis                    posterior
## 6244                tiene                   excelentes
## 6245                 tier                        4.219
## 6246                tiger                          i.e
## 6247                tight                        4.154
## 6248                tight                         nike
## 6249                tight                           x3
## 6250                  tik                          tok
## 6251                 time                         1302
## 6252                 time                          145
## 6253                 time                          178
## 6254                 time                          275
## 6255                 time                          283
## 6256                 time                          288
## 6257                 time                          294
## 6258                 time                          app
## 6259                 time                    beautiful
## 6260                 time                          dan
## 6261                 time                     distance
## 6262                 time                     distance
## 6263                 time                     horrible
## 6264                 time                        miles
## 6265                 time                     specific
## 6266                 time                         user
## 6267             timeline                         nike
## 6268                timer                        can’t
## 6269                times                            5
## 6270                times                            6
## 6271                times                     december
## 6272                times                        total
## 6273          tinyurl.com                     45yj9vh7
## 6274                  tip                        4.184
## 6275                 tips                         para
## 6276                title                         love
## 6277                todas                          las
## 6278              today’s                   disposable
## 6279              toddler                        ankle
## 6280              toddler                        sizes
## 6281              toddler                        style
## 6282                 todo                           en
## 6283                todos                          los
## 6284                todos                          los
## 6285                  toe                           1s
## 6286                  toe                          box
## 6287                  toe                          box
## 6288                  toe                          cap
## 6289               toebox                         4.93
## 6290             toenails                         4.47
## 6291                  tok                        pants
## 6292                tonar                           se
## 6293              tonight                         6.12
## 6294                 tool                          191
## 6295                 tool                     constant
## 6296                  top                       melhor
## 6297                  top                        notch
## 6298                  top                         pick
## 6299                  top                      quality
## 6300                  top                         tier
## 6301                  top                         tier
## 6302               tornou                           um
## 6303               torres                elvistorresjr
## 6304                total                     comments
## 6305                total                     distance
## 6306                total                        posts
## 6307                total                        posts
## 6308                total                      reviews
## 6309             totaling                            9
## 6310              totally                        agree
## 6311              totally                         free
## 6312              totally                      useless
## 6313                touch               giftedbyadidas
## 6314                towel                       killer
## 6315                 town                          109
## 6316                track                           10
## 6317                track                          147
## 6318                track                     accurate
## 6319                track                          amp
## 6320                track                       cycled
## 6321                track                    horseback
## 6322                track                        miles
## 6323                track                     multiple
## 6324                track                         nice
## 6325                track              pantspantswomen
## 6326             tracking                     exercise
## 6327             tracking                        miles
## 6328             tracking                    treadmill
## 6329               tracks                        moles
## 6330               tracks                         time
## 6331            trademark                    violation
## 6332          traditional                       bomber
## 6333          traditional                      chinese
## 6334          trafdidrake                lord_ashdrake
## 6335                trail                            5
## 6336                train                          302
## 6337                train                       harder
## 6338                train                    problemas
## 6339                train                     warriors
## 6340              trainer                          339
## 6341              trainer                          bio
## 6342             trainers                          769
## 6343             trainers                     fernando
## 6344             training                          219
## 6345             training                          363
## 6346             training                           44
## 6347             training                      amazing
## 6348             training                          app
## 6349             training                          app
## 6350             training                        check
## 6351             training                         club
## 6352             training                         club
## 6353             training                         club
## 6354             training                         club
## 6355             training                         club
## 6356             training                         club
## 6357             training                          hit
## 6358             training                         plan
## 6359             training                         plan
## 6360             training                         plan
## 6361             training                    regiments
## 6362             training                   revolution
## 6363             training                     starting
## 6364                 trap                        house
## 6365                 trap                predictstreet
## 6366                trash                         1290
## 6367                trash                          169
## 6368                trash                         zoom
## 6369              tratado                       varias
## 6370            traveling                          263
## 6371            traveling                         nike
## 6372               travis                        scott
## 6373                trees                          442
## 6374              trefoil                         logo
## 6375                trial                      running
## 6376            triathlon                  performance
## 6377               triple                      checked
## 6378                trote                            2
## 6379                 true                         size
## 6380                 très                        bonne
## 6381                   tu                       rutina
## 6382              tubular                         doom
## 6383                 tuvo                           su
## 6384                   tv                       amazon
## 6385                 twin                           ªd
## 6386               twinnn                         1545
## 6387                 type                       weight
## 6388              typical                         dumb
## 6389              typical                         size
## 6390                  tyr                         cxt1
## 6391            téléphone                   d’androïde
## 6392                   ua                      charged
## 6393                   ua                         eqlz
## 6394                   ua                    exclusive
## 6395                   ua                      project
## 6396                   ua                      rewards
## 6397                   ua                   sportsmask
## 6398                   ua                      tribase
## 6399                   ua                      tribase
## 6400                   ua                      tribase
## 6401                   ua                      tribase
## 6402                   ua                     velociti
## 6403                 ua’s                     heatgear
## 6404           ubiquitous                         1926
## 6405                  ugh                          227
## 6406                  uhh                          131
## 6407                   ui                       design
## 6408                ultra                        boost
## 6409                ultra                        boost
## 6410                ultra                        boost
## 6411                ultra                        boost
## 6412                ultra                        boost
## 6413                ultra                       boosts
## 6414                ultra                       boosts
## 6415                ultra                       boosts
## 6416                ultra                      flyknit
## 6417                ultra                        turbo
## 6418                   um                   aplicativo
## 6419                   um                        ponto
## 6420                   um                      produto
## 6421                  una                   aplicación
## 6422                  una                   aplicación
## 6423                  una                         gran
## 6424                  una                         gran
## 6425                  una                          muy
## 6426           unanswered                          app
## 6427                 unas                       vistas
## 6428          unavailable                         walk
## 6429           undefeated                           95
## 6430          underarmour                        score
## 6431          underarmour                        score
## 6432          underarmour                        score
## 6433          underarmour                        score
## 6434           understand                          lol
## 6435            underwear                          406
## 6436          uninstalled                       eleven
## 6437               unique                       design
## 6438            unmatched                         love
## 6439                 unos                        meses
## 6440               unsold                        yeezy
## 6441            unveiling                      flyease
## 6442             upcoming                         fall
## 6443             upcycled                        white
## 6444               update                          116
## 6445               update                          209
## 6446               update                          305
## 6447               update                            6
## 6448               update                            8
## 6449               update                     requires
## 6450               update                      updated
## 6451              updates                         2024
## 6452              updates                       fy2026
## 6453                upper                         body
## 6454                  ups                         1357
## 6455                  ups                          lol
## 6456              uptempo                           95
## 6457              uptempo                          max
## 6458              uptempo                       slides
## 6459              uptempo                            ý
## 6460                  usa                         2026
## 6461                  usa                        games
## 6462                usa's                         nike
## 6463                usado                         esta
## 6464               usando                        desde
## 6465                  usd                           rn
## 6466              usefull                          pls
## 6467              useless                       decent
## 6468                 user                            2
## 6469                 user                         ease
## 6470                 user                     friendly
## 6471                 user                     friendly
## 6472                 user                     friendly
## 6473                 user                   interfaces
## 6474                 user                     workouts
## 6475                  uso                        todos
## 6476                 utf8                          amp
## 6477                 util                           la
## 6478           uygulaması          kullanıyorum.nedeni
## 6479        uygulamasında                     otoöatik
## 6480           validation                         sans
## 6481                  van                    caldrones
## 6482               varias                        veces
## 6483               varied                     workouts
## 6484              variety                     athletic
## 6485                vasco                      fanbase
## 6486                   ve                       bought
## 6487                   ve                   duraklatma
## 6488                   ve                         worn
## 6489                veces                           en
## 6490             velociti                          pro
## 6491                  ver                          las
## 6492       verbalizations                     workouts
## 6493               verdad                           en
## 6494            versatile                        beach
## 6495              version                        4.174
## 6496              version                            5
## 6497               versus                      springy
## 6498                 vibe                         1094
## 6499                vibes                          lol
## 6500              vicious                          pit
## 6501                video                            5
## 6502                video                        based
## 6503                video                        class
## 6504                video                      freezes
## 6505                video                       guides
## 6506                video                          i’m
## 6507                video                         mate
## 6508               videos                         4.77
## 6509               videos                    extremely
## 6510               videos                    replacing
## 6511                viejo                          san
## 6512              vietnam                      factory
## 6513                 view                       finder
## 6514               viewed                            5
## 6515              vintage                       adidas
## 6516              vintage                          air
## 6517              vintage                         nike
## 6518            violation                    baltimore
## 6519                  vip                      através
## 6520                viral                     adoption
## 6521               vistas                    preciosas
## 6522             visually                    appealing
## 6523               vitals                     altitude
## 6524                 vlad                      ciutacu
## 6525                voice                      reports
## 6526               vomero                           18
## 6527               vomero                      premium
## 6528                vélez                           md
## 6529              waisted                         slim
## 6530                 wait                  potentially
## 6531               waited                            6
## 6532                 walk                          app
## 6533                 walk                        hikes
## 6534              walking                           31
## 6535              walking                         nike
## 6536              walking                            á
## 6537                walks                        hikes
## 6538                walks                         lost
## 6539                 wall                           43
## 6540                 wall                       street
## 6541                warns                      chicago
## 6542                warns                        china
## 6543             warriors                          224
## 6544                 wars                       collab
## 6545                waste                          461
## 6546                watch                          323
## 6547                watch                            8
## 6548                watch                   compatible
## 6549                watch                      doesn’t
## 6550                watch                     friendly
## 6551                watch                  integration
## 6552                watch                           se
## 6553                watch                          wow
## 6554              watcher                          341
## 6555              watches                     symptoms
## 6556                 wear                           10
## 6557                 wear                       appeal
## 6558                 wear                         gold
## 6559                 wear                         hoka
## 6560                 wear                        men's
## 6561                 wear                         mine
## 6562                 wear                         neon
## 6563                 wear                         nike
## 6564                 wear                        thick
## 6565                 wear                      toddler
## 6566              wearing                          961
## 6567              weather                    resistant
## 6568              weather                      tonight
## 6569                  web                         view
## 6570                  wee                          bit
## 6571                 week                            1
## 6572                 week                         1774
## 6573              weekend                          imo
## 6574               weekly                      mileage
## 6575               weekly                      revenue
## 6576                weeks                 imtermediate
## 6577                weeks                        month
## 6578               weight                    absorbent
## 6579               weight                     training
## 6580               weight                    treatment
## 6581        weightlifting                   functional
## 6582              weights                         hiit
## 6583          welcomesave                          src
## 6584          welcomesave                          src
## 6585             wellness                          172
## 6586             wellness                            8
## 6587             wellness                          app
## 6588                white                       201264
## 6589                white                      2fwhite
## 6590                white                          amp
## 6591                white                       bright
## 6592                white                        denim
## 6593                white                        light
## 6594                white                         nike
## 6595                white                        space
## 6596                white                    stitching
## 6597                white                      thunder
## 6598                white                          ups
## 6599                white                        white
## 6600               whites                         nice
## 6601            wholesale                     partners
## 6602            wholesale                     partners
## 6603            wholesale                      revenue
## 6604                 wide                          107
## 6605                 wide                         feet
## 6606                 wide                         foot
## 6607                 wide                          iam
## 6608                 wide                      release
## 6609           widescreen                            3
## 6610               widget                          278
## 6611                  win                          801
## 6612               window                          379
## 6613           windrunner                        track
## 6614             wireless                    earphones
## 6615                 wolf                         grey
## 6616              women's                          dri
## 6617              women's                          dri
## 6618              women's                    oversized
## 6619              women's                    oversized
## 6620              women's                    oversized
## 6621              women's                        shoes
## 6622            wonderful                          app
## 6623            wonderful                          day
## 6624            wondering                        bring
## 6625                 wont                         load
## 6626                won’t                         load
## 6627                 word                          bud
## 6628                words                          lol
## 6629              workers                         nike
## 6630             workoits                          466
## 6631              workout                          279
## 6632              workout                          390
## 6633              workout                          398
## 6634              workout                          app
## 6635              workout                          app
## 6636              workout                         apps
## 6637              workout                         apps
## 6638              workout                     customer
## 6639              workout                           ed
## 6640              workout                  information
## 6641              workout                       iphone
## 6642              workout                          mid
## 6643              workout                        notes
## 6644              workout                      options
## 6645              workout                         plan
## 6646              workout                     routines
## 6647              workout                       styles
## 6648              workout                       styles
## 6649              workout                         tool
## 6650              workout                       window
## 6651             workouts                          202
## 6652             workouts                          222
## 6653             workouts                          230
## 6654             workouts                          289
## 6655             workouts                          292
## 6656             workouts                          360
## 6657             workouts                          399
## 6658             workouts                          407
## 6659             workouts                          451
## 6660             workouts                            6
## 6661             workouts                           96
## 6662             workouts                    excellent
## 6663             workouts                          hit
## 6664             workouts                         it’s
## 6665             workouts                         it’s
## 6666             workouts                         i’ve
## 6667             workouts                         i’ve
## 6668             workouts                      pilates
## 6669             workouts                      section
## 6670             workouts                     spanning
## 6671             workouts                      updates
## 6672            workplace               discrimination
## 6673                world                          cup
## 6674                world                          cup
## 6675                world                       online
## 6676                world                       online
## 6677            worldwide                      reuters
## 6678                 worn                       faster
## 6679                 worn                         nike
## 6680                worse                        title
## 6681                worst                     delivery
## 6682                worst                   performing
## 6683                worth                          120
## 6684                worth                          190
## 6685                worth                       retail
## 6686                  wow                          371
## 6687                wrong                    defective
## 6688                wrong                         feet
## 6689                wrong                         foot
## 6690                wrong                     tracking
## 6691   www.flightclub.com                       adidas
## 6692                   x3                         1907
## 6693             xinjiang                       cotton
## 6694                  xr1                         core
## 6695                   ya                         feel
## 6696                   ya                         haha
## 6697                   ya                        phone
## 6698                   ya                         solo
## 6699                yahoo                      finance
## 6700                  yay                         it’s
## 6701                   ye                        split
## 6702                 ye's                         hate
## 6703                  yea                          241
## 6704                  yea                       pretty
## 6705                 yeah                     congrats
## 6706                 yeah                          fam
## 6707                 yeah                        legit
## 6708                 yeah                      wearing
## 6709               year's                         star
## 6710               yearly                    intervals
## 6711               yeeyee                       skiyee
## 6712                yeezy                        boost
## 6713                yeezy                   collection
## 6714                yeezy                   collection
## 6715                yeezy                       cousin
## 6716                yeezy                      fallout
## 6717                yeezy                    inventory
## 6718                yeezy                  partnership
## 6719                yeezy                  partnership
## 6720                yeezy                        stock
## 6721                yeezy                     tensions
## 6722                  yep                         1694
## 6723               yessir                         1546
## 6724            yesterday                          409
## 6725                   yo                  practicamos
## 6726                 yoga                     practice
## 6727                 yoga                     strength
## 6728                 yoga                         warm
## 6729                 yoke                       violet
## 6730                yorba                        linda
## 6731                 york                          gym
## 6732              youtube                     comments
## 6733                   yu                           gi
## 6734          zellerfield                       raffle
## 6735                zheng                       qinwen
## 6736                 zion                            1
## 6737                 zion                            2
## 6738                 zion                   collection
## 6739                  zip                      cropped
## 6740                  zip                       hoodie
## 6741                  zip                        track
## 6742                   zk                       harika
## 6743                  zna                         zion
## 6744                 zoom                        based
## 6745                 zoom                          fly
## 6746                 zoom                           gp
## 6747                 zoom                           gp
## 6748                 zoom                          jet
## 6749                 zoom                        rival
## 6750                   zx                         4000
## 6751                    ª                            û
## 6752                    ª                            ý
## 6753                    ª                            þ
## 6754                    ª                            þ
## 6755                   ªd                         1884
## 6756                    à                          mon
## 6757                    á                         1016
## 6758                    ã                         2010
## 6759                    ã                          air
## 6760                    é                    excelente
## 6761                    é                   impossível
## 6762             özelliği                       paralı
## 6763             özelliği                       paralı
## 6764            özelliğin                      parasız
## 6765                 útil                      gracias
## 6766                    û                         1697
## 6767                    û                          964
## 6768                    ý                         2127
## 6769                    þ                            ª
## 6770               адреса                          327
## 6771                    в                        вашей
## 6772                    в                   геолокации
## 6773                    в                       списке
## 6774                вашей                        хуйне
## 6775             возможно           зарегестрироваться
## 6776           геолокации                   приложения
## 6777                 дает           зарегистрироваться
## 6778         залогиниться                           не
## 6779   зарегестрироваться                       отстой
## 6780   зарегистрироваться                            в
## 6781                  код                       майлом
## 6782                  код                           на
## 6783               майлом                        никак
## 6784                 мейл                 перепробовал
## 6785                 могу                 залогиниться
## 6786                 могу                        найти
## 6787                   на                         мейл
## 6788                найти                       страну
## 6789                   не                     возможно
## 6790                   не                         дает
## 6791                   не                         могу
## 6792                   не                         могу
## 6793                   не                     приходит
## 6794                   не                        хочет
## 6795                 нету                       россии
## 6796                никак                           не
## 6797                   но                            в
## 6798             отметить                       страну
## 6799               отстой                          467
## 6800         перепробовал                            3
## 6801           приложения                           но
## 6802            присылать                          код
## 6803             приходит                          код
## 6804             проблемы                            с
## 6805               разных                       адреса
## 6806         регистрацией                           не
## 6807               россии                          418
## 6808                    с                 регистрацией
## 6809               списке                         нету
## 6810               страну                            в
## 6811               страну                         хочу
## 6812                хочет                    присылать
## 6813                 хочу                     отметить
## 6814                хуйне                          378
## 6815              التطبيق                        نتمنى
## 6816                 اهتم                           في
## 6817                   في                      التطبيق
## 6818                  فيه                       باللغة
## 6819                ممتاز                        ممتاز
## 6820                ممتاز                        ومحفز
## 6821                نتمنى                         يكون
## 6822                 يكون                          فيه
## 6823                   な                         行政
## 6824                 中国                         无法
## 6825                   介                       日本一
## 6826                   善                           介
## 6827               日本一                         親切
## 6828                   星                           善
## 6829                 親切                           な
##                             word3                              word4  n
## 1                               7                                low 12
## 2                               8                                low  9
## 3                               5                                low  8
## 4                               5                           positive  6
## 5                              12                                  5  6
## 6                               5                           positive  5
## 7                               5                           positive  5
## 8                               5                           positive  5
## 9                               5                           positive  5
## 10                              5                                low  5
## 11                              5                           positive  4
## 12                              5                           positive  4
## 13                              5                           positive  4
## 14                              5                           positive  4
## 15                             13                                  5  4
## 16                             15                                  5  4
## 17                             23                                  5  4
## 18                              6                                low  4
## 19                             10                             medium  4
## 20                              9                                low  4
## 21                              1                           negative  3
## 22                              5                           positive  3
## 23                              4                           positive  3
## 24                              5                           positive  3
## 25                              5                           positive  3
## 26                              5                           positive  3
## 27                              5                           positive  3
## 28                              5                           positive  3
## 29                              5                           positive  3
## 30                              5                           positive  3
## 31                              5                           positive  3
## 32                              5                           positive  3
## 33                              5                           positive  3
## 34                              5                           positive  3
## 35                       positive                               love  3
## 36                              1                           negative  3
## 37                              1                           negative  3
## 38                              5                           positive  3
## 39                              5                           positive  3
## 40                              5                           positive  3
## 41                              5                           positive  3
## 42                       positive                               love  3
## 43                              5                           positive  3
## 44                              5                           positive  3
## 45                       positive                            perfect  3
## 46                       positive                               love  3
## 47                             09                                  1  3
## 48                             16                                  5  3
## 49                             19                                  5  3
## 50                             27                                  5  3
## 51                             04                                  5  3
## 52                             06                                  5  3
## 53                             21                                  5  3
## 54                             01                                  5  3
## 55                             10                                  5  3
## 56                             21                                  5  3
## 57                             19                                  5  3
## 58                       positive                               love  3
## 59                            max                                 95  3
## 60                           club                                app  3
## 61                            low                             adidas  3
## 62                            low                              bring  3
## 63                              5                           positive  2
## 64                              5                           positive  2
## 65                              1                           negative  2
## 66                              3                            neutral  2
## 67                              1                           negative  2
## 68                              5                           positive  2
## 69                              1                           negative  2
## 70                              5                           positive  2
## 71                              3                            neutral  2
## 72                              5                           positive  2
## 73                              5                           positive  2
## 74                              1                           negative  2
## 75                              5                           positive  2
## 76                              5                           positive  2
## 77                              5                           positive  2
## 78                              5                           positive  2
## 79                              5                           positive  2
## 80                              3                            neutral  2
## 81                              2                           negative  2
## 82                              5                           positive  2
## 83                              5                           positive  2
## 84                              5                           positive  2
## 85                              5                           positive  2
## 86                              4                           positive  2
## 87                              5                           positive  2
## 88                              4                           positive  2
## 89                       positive                               love  2
## 90                       negative                                app  2
## 91                              5                           positive  2
## 92                              4                           positive  2
## 93                            app                              crash  2
## 94                              5                           positive  2
## 95                              1                           negative  2
## 96                              2                           negative  2
## 97                              1                           negative  2
## 98                              1                           negative  2
## 99                              1                           negative  2
## 100                             3                            neutral  2
## 101                             5                           positive  2
## 102                             5                           positive  2
## 103                             5                           positive  2
## 104                             5                           positive  2
## 105                             5                           positive  2
## 106                      positive                                  5  2
## 107                             5                           positive  2
## 108                             1                           negative  2
## 109                             5                           positive  2
## 110                             3                            neutral  2
## 111                             5                           positive  2
## 112                             1                           negative  2
## 113                             5                           positive  2
## 114                             5                           positive  2
## 115                             5                           positive  2
## 116                             5                           positive  2
## 117                             5                           positive  2
## 118                      positive                         absolutely  2
## 119                      positive                            amazing  2
## 120                           app                            crashes  2
## 121                            07                                  1  2
## 122                            08                                  5  2
## 123                            18                                  1  2
## 124                            08                                  5  2
## 125                            08                                  5  2
## 126                            17                                  5  2
## 127                            20                                  5  2
## 128                            03                                  5  2
## 129                            09                                  1  2
## 130                            15                                  5  2
## 131                            24                                  5  2
## 132                            27                                  5  2
## 133                            02                                  5  2
## 134                            14                                  1  2
## 135                            17                                  3  2
## 136                            19                                  5  2
## 137                            20                                  1  2
## 138                            19                                  5  2
## 139                            24                                  5  2
## 140                            28                                  2  2
## 141                            06                                  5  2
## 142                            17                                  5  2
## 143                            10                                  5  2
## 144                            17                                  4  2
## 145                            25                                  4  2
## 146                            28                                  5  2
## 147                            29                                  4  2
## 148                            10                                  1  2
## 149                            29                                  5  2
## 150                            27                                  5  2
## 151                            29                                  5  2
## 152                            21                                  4  2
## 153                            31                                  5  2
## 154                            07                                  5  2
## 155                            09                                  1  2
## 156                            26                                  5  2
## 157                            02                                  5  2
## 158                            05                                  5  2
## 159                      positive                          excellent  2
## 160                       amazing                            workout  2
## 161                       awesome                                app  2
## 162                      favorite                            workout  2
## 163                          game                            changer  2
## 164                          love                                ntc  2
## 165                          nike                           training  2
## 166                   outstanding                                app  2
## 167                       perfect                                app  2
## 168                            не                               могу  2
## 169                 restructuring                               plan  2
## 170                           pro                                  3  2
## 171                             1                                 07  2
## 172                       reviews                              total  2
## 173                         reign                                  6  2
## 174                        savage                                  1  2
## 175                       vintage                              stuff  2
## 176                             2                               nike  2
## 177                           los                           detalles  2
## 178                            tu                               ruta  2
## 179                          gran                              ayuda  2
## 180                          club                         structured  2
## 181                             1                               nike  2
## 182                          nike                           launches  2
## 183                       fitness                          companion  2
## 184                            de                                 tu  2
## 185                      stallion                           workouts  2
## 186                        armour                           leggings  2
## 187                             3                               nike  2
## 188                           air                                max  2
## 189                          john                            donahoe  2
## 190                        cotton                              bring  2
## 191                       workout                                app  2
## 192                       workout                                app  2
## 193                      training                               club  2
## 194                       results                             raises  2
## 195                         total                              posts  2
## 196                       reviews                                490  2
## 197                           low                             adidas  2
## 198                         total                            reviews  2
## 199                      november                                  1  2
## 200                         todos                                los  2
## 201                      detalles                                 de  2
## 202                         reign                                  6  2
## 203                        cotton                             shirts  2
## 204                            11                             medium  2
## 205                            13                             medium  2
## 206                       journal                           november  2
## 207                             5                               1327  1
## 208                       drawing                           straight  1
## 209                          i’ll                            recheck  1
## 210                           amp                                145  1
## 211                             5                           positive  1
## 212                             5                           positive  1
## 213                             3                            neutral  1
## 214                             1                           negative  1
## 215                             5                           positive  1
## 216                             3                            neutral  1
## 217                             4                           positive  1
## 218                             1                           negative  1
## 219                             3                            neutral  1
## 220                             5                           positive  1
## 221                             5                           positive  1
## 222                             1                           negative  1
## 223                             3                            neutral  1
## 224                      negative                           browsing  1
## 225                             3                            neutral  1
## 226                             5                           positive  1
## 227                             1                           negative  1
## 228                             5                           positive  1
## 229                             1                           negative  1
## 230                             5                           positive  1
## 231                             2                           negative  1
## 232                             4                           positive  1
## 233                             4                           positive  1
## 234                             2                           negative  1
## 235                             5                           positive  1
## 236                             4                           positive  1
## 237                             3                            neutral  1
## 238                             2                           negative  1
## 239                             3                            neutral  1
## 240                             4                           positive  1
## 241                             5                           positive  1
## 242                             5                           positive  1
## 243                             1                           negative  1
## 244                             2                           negative  1
## 245                             5                           positive  1
## 246                             5                           positive  1
## 247                             1                           negative  1
## 248                             2                           negative  1
## 249                             5                           positive  1
## 250                             4                           positive  1
## 251                             5                           positive  1
## 252                             2                           negative  1
## 253                      positive                               nike  1
## 254                      positive                                fix  1
## 255                      positive                               love  1
## 256                      positive                               nike  1
## 257                      positive                            perfect  1
## 258                      positive                              super  1
## 259                      positive                                 не  1
## 260                             4                           positive  1
## 261                             1                           negative  1
## 262                             5                           positive  1
## 263                             1                           negative  1
## 264                             5                           positive  1
## 265                             5                           positive  1
## 266                             3                            neutral  1
## 267                             4                           positive  1
## 268                      negative                            biggest  1
## 269                      negative                           проблемы  1
## 270                             1                           negative  1
## 271                             5                           positive  1
## 272                             5                           positive  1
## 273                             3                            neutral  1
## 274                      negative                           terrible  1
## 275                             5                           positive  1
## 276                             2                           negative  1
## 277                             1                           negative  1
## 278                             3                            neutral  1
## 279                             4                           positive  1
## 280                             5                           positive  1
## 281                             1                           negative  1
## 282                             1                           negative  1
## 283                             3                            neutral  1
## 284                             1                           negative  1
## 285                             5                           positive  1
## 286                             5                           positive  1
## 287                      positive                                  4  1
## 288                      positive                            amazing  1
## 289                      positive                               huge  1
## 290                      positive                           involved  1
## 291                      positive                                joe  1
## 292                      positive                            morning  1
## 293                             4                           positive  1
## 294                             5                           positive  1
## 295                             1                           negative  1
## 296                             3                            neutral  1
## 297                             1                           negative  1
## 298                             4                           positive  1
## 299                             1                           negative  1
## 300                             5                           positive  1
## 301                             1                           negative  1
## 302                             4                           positive  1
## 303                             1                           negative  1
## 304                             5                           positive  1
## 305                             1                           negative  1
## 306                             3                            neutral  1
## 307                             4                           positive  1
## 308                             5                           positive  1
## 309                             5                           positive  1
## 310                             1                           negative  1
## 311                        antall                                490  1
## 312                         total                           comments  1
## 313                             5                           positive  1
## 314                             1                           negative  1
## 315                             3                            neutral  1
## 316                             5                           positive  1
## 317                             3                            neutral  1
## 318                             3                            neutral  1
## 319                      positive                             future  1
## 320                      positive                               love  1
## 321                      positive                          fantastic  1
## 322                             5                           positive  1
## 323                             4                           positive  1
## 324                             3                            neutral  1
## 325                             5                           positive  1
## 326                             1                           negative  1
## 327                             4                           positive  1
## 328                             5                           positive  1
## 329                      negative                              video  1
## 330                      negative                              won’t  1
## 331                             1                           negative  1
## 332                             4                           positive  1
## 333                             1                           negative  1
## 334                             5                           positive  1
## 335                             5                           positive  1
## 336                             1                           negative  1
## 337                             5                           positive  1
## 338                             5                           positive  1
## 339                             3                            neutral  1
## 340                             4                           positive  1
## 341                             1                           negative  1
## 342                             5                           positive  1
## 343                       neutral                              can’t  1
## 344                      positive                            awesome  1
## 345                      positive                           betinaaa  1
## 346                      positive                           favorite  1
## 347                      positive                               free  1
## 348                      positive                               love  1
## 349                             1                           negative  1
## 350                             4                           positive  1
## 351                             1                           negative  1
## 352                             1                           negative  1
## 353                      negative                               bugs  1
## 354                      negative                              email  1
## 355                      negative                                i’m  1
## 356                      negative                              won’t  1
## 357                             2                           negative  1
## 358                             5                           positive  1
## 359                             4                           positive  1
## 360                      negative                                app  1
## 361                             5                           positive  1
## 362                             2                           negative  1
## 363                             5                           positive  1
## 364                             5                           positive  1
## 365                             5                           positive  1
## 366                             1                           negative  1
## 367                       neutral                              laggy  1
## 368                             4                           positive  1
## 369                      positive                                yay  1
## 370                      positive                            amazing  1
## 371                      positive                             health  1
## 372                      positive                                ntc  1
## 373                      positive                          wonderful  1
## 374                             5                           positive  1
## 375                             4                           positive  1
## 376                             2                           negative  1
## 377                             5                           positive  1
## 378                             5                           positive  1
## 379                             4                           positive  1
## 380                             5                           positive  1
## 381                             5                           positive  1
## 382                             5                           positive  1
## 383                             5                           positive  1
## 384                             3                            neutral  1
## 385                             3                            neutral  1
## 386                             5                           positive  1
## 387                      negative                              bring  1
## 388                             5                           positive  1
## 389                             1                           negative  1
## 390                             5                           positive  1
## 391                             1                           negative  1
## 392                             5                           positive  1
## 393                             1                           negative  1
## 394                             3                            neutral  1
## 395                             4                           positive  1
## 396                             1                           negative  1
## 397                             5                           positive  1
## 398                       neutral                             boring  1
## 399                             1                           negative  1
## 400                             5                           positive  1
## 401                      positive                              niche  1
## 402                      positive                                 10  1
## 403                      positive                                app  1
## 404                      positive                            awesome  1
## 405                      positive                               hope  1
## 406                             5                           positive  1
## 407                             5                           positive  1
## 408                      negative                                 60  1
## 409                      negative                              can’t  1
## 410                      negative                              drops  1
## 411                      negative                              error  1
## 412                      negative                              music  1
## 413                             5                           positive  1
## 414                             5                           positive  1
## 415                             5                           positive  1
## 416                             5                           positive  1
## 417                             3                            neutral  1
## 418                             5                           positive  1
## 419                             4                           positive  1
## 420                             5                           positive  1
## 421                             3                            neutral  1
## 422                             4                           positive  1
## 423                       neutral                               love  1
## 424                       neutral                             toggle  1
## 425                             2                           negative  1
## 426                      positive                            workout  1
## 427                      positive                           faithful  1
## 428                      positive                           favorite  1
## 429                      positive                            happily  1
## 430                      positive                                ntc  1
## 431                      positive                             sports  1
## 432                       women's                              shoes  1
## 433                             1                           negative  1
## 434                             2                           negative  1
## 435                             3                            neutral  1
## 436                             1                           negative  1
## 437                             1                           negative  1
## 438                             2                           negative  1
## 439                             5                           positive  1
## 440                      negative                         scheduling  1
## 441                             1                           negative  1
## 442                             4                           positive  1
## 443                             1                           negative  1
## 444                             4                           positive  1
## 445                             5                           positive  1
## 446                             1                           negative  1
## 447                             3                            neutral  1
## 448                             3                            neutral  1
## 449                             5                           positive  1
## 450                             5                           positive  1
## 451                             5                           positive  1
## 452                             5                           positive  1
## 453                             4                           positive  1
## 454                             5                           positive  1
## 455                             5                           positive  1
## 456                      positive                           download  1
## 457                      positive                                fix  1
## 458                      positive                            awesome  1
## 459                      positive                               core  1
## 460                      positive                          excellent  1
## 461                      positive                               nike  1
## 462                      positive                                ntc  1
## 463                             2                           negative  1
## 464                             4                           positive  1
## 465                             1                           negative  1
## 466                             5                           positive  1
## 467                             4                           positive  1
## 468                      negative                             doesnt  1
## 469                      negative                            doesn’t  1
## 470                      negative                              rapid  1
## 471                      negative                       recuperación  1
## 472                             5                           positive  1
## 473                             5                           positive  1
## 474                             5                           positive  1
## 475                             3                            neutral  1
## 476                             5                           positive  1
## 477                             5                           positive  1
## 478                      negative                                app  1
## 479                             4                           positive  1
## 480                             4                           positive  1
## 481                             4                           positive  1
## 482                             5                           positive  1
## 483                             1                           negative  1
## 484                             3                            neutral  1
## 485                             5                           positive  1
## 486                       neutral                              bring  1
## 487                       neutral                             unable  1
## 488                             5                           positive  1
## 489                      positive                           soothing  1
## 490                      positive                                 не  1
## 491                        easyon                            women's  1
## 492                          mile                             splits  1
## 493                            03                                 11  1
## 494                         miles                            session  1
## 495                         times                          depending  1
## 496                          gran                           comienzo  1
## 497                            86                                 og  1
## 498                         batch                                  2  1
## 499                         laces                               2377  1
## 500                          2047                             agreed  1
## 501                       signals                               slow  1
## 502                       phoenix                            arizona  1
## 503                      exercise                              based  1
## 504                          hill                            unveils  1
## 505                      spezial2                             samba3  1
## 506                            23                             minute  1
## 507                          wolf                               grey  1
## 508                             3                              miles  1
## 509                            60                           exercise  1
## 510                           app                            doesn’t  1
## 511                           app                              won’t  1
## 512                       biggest                           downfall  1
## 513                        breaks                       consistently  1
## 514                        broken                              links  1
## 515                      browsing                             issues  1
## 516                          bugs                              bunny  1
## 517                         can’t                              login  1
## 518                         can’t                               sign  1
## 519                      couldn’t                               sign  1
## 520                          data                                hog  1
## 521                       doesn’t                               load  1
## 522                         don’t                             update  1
## 523                         drops                            workout  1
## 524                         email                               code  1
## 525                         error                            parsing  1
## 526                    frustrated                               i’ve  1
## 527                 impossibilité                                 de  1
## 528                          ipad                             format  1
## 529                          ipad                            version  1
## 530                          it’s                             broken  1
## 531                         login                               code  1
## 532                         music                                add  1
## 533                           pos                               nike  1
## 534                         rapid                           terminal  1
## 535                  recuperación                                 de  1
## 536                        seated                            workout  1
## 537                         video                            freezes  1
## 538                         won’t                               load  1
## 539                            не                               дает  1
## 540                      проблемы                                  с  1
## 541                          中国                               无法  1
## 542                     announces                              1,600  1
## 543                           ceo                               john  1
## 544                         posts                             record  1
## 545                       reports                          inventory  1
## 546                       revenue                            reaches  1
## 547                         lacks                             sports  1
## 548                          fake                                734  1
## 549                         laces                                  1  1
## 550                       garbage                              makes  1
## 551                        review                          reporting  1
## 552                          zion                                  2  1
## 553                          goal                           complete  1
## 554                          cuts                                  2  1
## 555                       america                              falls  1
## 556                         plank                              cites  1
## 557                           hit                             adidas  1
## 558                         frisk                           declares  1
## 559                       america                           declines  1
## 560                          walk                           mapmyrun  1
## 561                           250                                amp  1
## 562                             5                           positive  1
## 563                             1                           negative  1
## 564                             1                           negative  1
## 565                             1                           negative  1
## 566                             2                           negative  1
## 567                             5                           positive  1
## 568                             1                           negative  1
## 569                             5                           positive  1
## 570                             3                            neutral  1
## 571                             4                           positive  1
## 572                      negative                                app  1
## 573                      negative                               logs  1
## 574                      negative                               sign  1
## 575                           104                               2025  1
## 576                             4                           positive  1
## 577                             5                           positive  1
## 578                           app                            doesn’t  1
## 579                           app                             review  1
## 580                          2025                                 09  1
## 581                          dang                               breh  1
## 582                             5                           positive  1
## 583                             5                           positive  1
## 584                             1                           negative  1
## 585                             1                           negative  1
## 586                             3                            neutral  1
## 587                             4                           positive  1
## 588                             5                           positive  1
## 589                             5                           positive  1
## 590                      negative                              can’t  1
## 591                             5                           positive  1
## 592                            03                                 02  1
## 593                             5                           positive  1
## 594                             3                            neutral  1
## 595                             1                           negative  1
## 596                             1                           negative  1
## 597                             1                           negative  1
## 598                             1                           negative  1
## 599                             2                           negative  1
## 600                             5                           positive  1
## 601                      positive                            amazing  1
## 602                      positive                              loved  1
## 603                      positive                              crash  1
## 604                      positive                               lots  1
## 605                      positive                               love  1
## 606                      positive                               nike  1
## 607                      positive                            program  1
## 608                        boston                                 12  1
## 609                        review                               love  1
## 610                         gonna                                hit  1
## 611                            10                                mph  1
## 612                         grows                                  6  1
## 613                            70                            minutos  1
## 614                         legit                             checks  1
## 615                          hovr                             summit  1
## 616                         entre                                 el  1
## 617                          mile                          intervals  1
## 618                           vey                       disappointed  1
## 619                        hahaha                               2422  1
## 620                            10                                 10  1
## 621                           app                             rating  1
## 622                         shoes                              4.328  1
## 623                           top                            quality  1
## 624                          real                             incase  1
## 625                           las                            rutinas  1
## 626                         4.207                                207  1
## 627                          400m                               800m  1
## 628                       reports                                 70  1
## 629                         check                               200m  1
## 630                            10                                 09  1
## 631                        yessir                               1011  1
## 632                          1013                               hell  1
## 633                       factory                             stores  1
## 634                            10                                 08  1
## 635                             á                               1023  1
## 636                            10                                 01  1
## 637                          yeah                                mlk  1
## 638                            09                                 30  1
## 639                          breh                              girls  1
## 640                            09                                 29  1
## 641                       letsgoo                               1060  1
## 642                            09                                 29  1
## 643                          heck                               yeah  1
## 644                            09                                 29  1
## 645                          shit                                lol  1
## 646                           lol                               1077  1
## 647                            09                                 28  1
## 648                         makes                              sense  1
## 649                            09                                 28  1
## 650                       hippies                               rule  1
## 651                        boston                                 12  1
## 652                             1                           negative  1
## 653                             5                           positive  1
## 654                             4                           positive  1
## 655                             5                           positive  1
## 656                             1                           negative  1
## 657                             5                           positive  1
## 658                             1                           negative  1
## 659                             5                           positive  1
## 660                             1                           negative  1
## 661                             5                           positive  1
## 662                             1                           negative  1
## 663                             5                           positive  1
## 664                             4                           positive  1
## 665                      negative                              can’t  1
## 666                      negative                               ipad  1
## 667                      negative                             seated  1
## 668                             1                           negative  1
## 669                             3                            neutral  1
## 670                             4                           positive  1
## 671                             2                           negative  1
## 672                             1                           negative  1
## 673                             4                           positive  1
## 674                             5                           positive  1
## 675                         super                         underrated  1
## 676                             5                           positive  1
## 677                             1                           negative  1
## 678                             3                            neutral  1
## 679                             4                           positive  1
## 680                            02                                 28  1
## 681                             5                           positive  1
## 682                             3                            neutral  1
## 683                             4                           positive  1
## 684                             1                           negative  1
## 685                            25                               1490  1
## 686                       neutral                              can’t  1
## 687                             5                           positive  1
## 688                      positive                               free  1
## 689                      positive                                 kg  1
## 690                      positive                               nike  1
## 691                      positive                           workouts  1
## 692                         curry                                  8  1
## 693                           396                             booker  1
## 694                            09                                 27  1
## 695                          nike                        hyperflight  1
## 696                            09                                 24  1
## 697                            09                                 23  1
## 698                            id                                113  1
## 699                            09                                 22  1
## 700                            09                                 18  1
## 701                          mine                          should've  1
## 702                      honestly                               fuck  1
## 703                            09                                 15  1
## 704                            10                               boys  1
## 705                            09                                 15  1
## 706                             8                               guys  1
## 707                       quality                            reminds  1
## 708                            09                                 13  1
## 709                            09                                 12  1
## 710                            09                                 11  1
## 711                             1                           negative  1
## 712                             5                           positive  1
## 713                             5                           positive  1
## 714                             1                           negative  1
## 715                             3                            neutral  1
## 716                             4                           positive  1
## 717                             5                           positive  1
## 718                             3                            neutral  1
## 719                             5                           positive  1
## 720                      negative                                app  1
## 721                      negative                            doesn’t  1
## 722                             1                           negative  1
## 723                             2                           negative  1
## 724                             3                            neutral  1
## 725                             1                           negative  1
## 726                         570km                              290km  1
## 727                      negative                            missing  1
## 728                             3                            neutral  1
## 729                            02                                 27  1
## 730                             1                           negative  1
## 731                             2                           negative  1
## 732                             3                            neutral  1
## 733                             5                           positive  1
## 734                             3                            neutral  1
## 735                             3                            neutral  1
## 736                       neutral                         downgraded  1
## 737                       neutral                               love  1
## 738                             5                           positive  1
## 739                      positive                               yoga  1
## 740                          2024                                 06  1
## 741                      positive                            anytime  1
## 742                      positive                                app  1
## 743                      positive                       appreciative  1
## 744                      positive                         beneficios  1
## 745                      positive                              bravo  1
## 746                      positive                              daily  1
## 747                      positive                        outstanding  1
## 748                          weak                          wholesale  1
## 749                            sl                             takumi  1
## 750                           795                                shi  1
## 751                          test                          yesterday  1
## 752                    dethroning                             mizuno  1
## 753                           735                          decreases  1
## 754                        income                              falls  1
## 755                           air                                max  1
## 756                            09                                 07  1
## 757                            09                                 05  1
## 758                            09                                 04  1
## 759                          1221                             whoosh  1
## 760                          1224                             walked  1
## 761                             6                             months  1
## 762                            08                                 31  1
## 763                      trainers                              4.124  1
## 764                         socks                               lots  1
## 765                            08                                 29  1
## 766                            08                                 28  1
## 767                            08                                 25  1
## 768                         socks                                don  1
## 769                            08                                 21  1
## 770                        church                               sock  1
## 771                            08                                 18  1
## 772                       edition                               1285  1
## 773                            08                                 16  1
## 774                       dickies                              socks  1
## 775               sen10ultraboost                                  5  1
## 776                      negative                               read  1
## 777                           253                             cooked  1
## 778                      negative                              bring  1
## 779                            02                                 27  1
## 780                      positive                           absolute  1
## 781                      positive                         convenient  1
## 782                      positive                        exceptional  1
## 783                      positive                               love  1
## 784                         curry                                  8  1
## 785                            08                                 15  1
## 786                           131                                  ä  1
## 787                          1303                                bro  1
## 788                            08                                 14  1
## 789                           lol                               1318  1
## 790                            08                                 12  1
## 791                           bad                              batch  1
## 792                            08                                 12  1
## 793                            08                                 11  1
## 794                         force                                  1  1
## 795                            08                                 10  1
## 796                            08                                 08  1
## 797                          fuck                               nike  1
## 798                            08                                 04  1
## 799                          shit                               1378  1
## 800                            08                                 02  1
## 801                           ifs                               sick  1
## 802                            08                                 01  1
## 803                         giphy                 mnxijdzyiqrglvakxa  1
## 804                      negative                            doesn’t  1
## 805                      negative                          worthless  1
## 806                      negative                               中国  1
## 807                      negative                           removing  1
## 808                            02                                 26  1
## 809                        cooked                                254  1
## 810                       neutral                            running  1
## 811                       neutral                           trainers  1
## 812                      positive                            program  1
## 813                           103                           honestly  1
## 814                      positive                               life  1
## 815                          free                              trial  1
## 816                     caldrones                               1556  1
## 817                            07                                 27  1
## 818                            07                                 25  1
## 819                            07                                 24  1
## 820                            07                                 21  1
## 821                          pair                              knock  1
## 822                            07                                 21  1
## 823                           hit                             costco  1
## 824                         sweet                               1445  1
## 825                            07                                 20  1
## 826                          flic                               1457  1
## 827                            07                                 18  1
## 828                             þ                                  ª  1
## 829                            07                                 14  1
## 830                           af1                               1475  1
## 831                            07                                 09  1
## 832                            07                                 02  1
## 833                          fill                                 ya  1
## 834                          1494                                yea  1
## 835                          mile                               pace  1
## 836                      negative                                app  1
## 837                            02                                 26  1
## 838                      positive                              music  1
## 839                      positive                            awesome  1
## 840                      positive                                 el  1
## 841                      positive                           honestly  1
## 842                      positive                              loove  1
## 843                      positive                             loving  1
## 844                      positive                               nike  1
## 845                      positive                                ntc  1
## 846                      positive                        outstanding  1
## 847                       weather                            tonight  1
## 848                      workouts                           thankful  1
## 849                            06                                 30  1
## 850                           lol                                137  1
## 851                             3                              pairs  1
## 852                          1501                              hells  1
## 853                          yeah                               1502  1
## 854                        jordan                                  4  1
## 855                            06                                 30  1
## 856                            06                                 29  1
## 857                            06                                 29  1
## 858                          nike                                 sb  1
## 859                            sb                               dunk  1
## 860                            06                                 26  1
## 861                        twinnn                               1545  1
## 862                          1545                             yessir  1
## 863                          1546                               1547  1
## 864                      colorway                               1550  1
## 865                            06                                 25  1
## 866                          blue                                  4  1
## 867                            14                                van  1
## 868                       classic                              clogs  1
## 869                         green                              force  1
## 870                         dudes                               1559  1
## 871                            06                                 25  1
## 872                            06                                 24  1
## 873                          1577                               fire  1
## 874                          fire                               1578  1
## 875                            06                                 23  1
## 876                           air                              force  1
## 877                            06                                 21  1
## 878                         giphy                      ss2reqknr8s5g  1
## 879                      negative                             breaks  1
## 880                      negative                              login  1
## 881                            02                                 23  1
## 882                       neutral                              bring  1
## 883                       neutral                              music  1
## 884                      positive                           enjoying  1
## 885                      positive                          excellent  1
## 886                           490                                  1  1
## 887                      comments                               2434  1
## 888                            06                                 20  1
## 889                           280                               2025  1
## 890                            06                                 19  1
## 891                          dumb                              reply  1
## 892                            06                                 19  1
## 893                        health                                isn  1
## 894                            06                                 17  1
## 895                            06                                 17  1
## 896                            06                                 17  1
## 897                            06                                 12  1
## 898                            em                               1669  1
## 899                            06                                 11  1
## 900                          1676                               1677  1
## 901                          wear                              thick  1
## 902                         thick                               gold  1
## 903                            06                                 10  1
## 904                          yeah                                fam  1
## 905                       sanders                               1689  1
## 906                          1690                              tough  1
## 907                            06                                 10  1
## 908                           170                               love  1
## 909                       sanders                              shits  1
## 910                          1694                              barry  1
## 911                       premium                              women  1
## 912                         color                              black  1
## 913                         black                             2fgrey  1
## 914                            02                                 23  1
## 915                       neutral                                 20  1
## 916                      positive                          extremely  1
## 917                      positive                              upped  1
## 918                      positive                               love  1
## 919                      positive                          wonderful  1
## 920                            06                                 10  1
## 921                            06                                 09  1
## 922                            06                                 07  1
## 923                       oktober                               1726  1
## 924                            06                                 02  1
## 925                            05                                 31  1
## 926                    underrated                            sneaker  1
## 927                            05                                 27  1
## 928                      negative                               1751  1
## 929                         happy                           birthday  1
## 930                            05                                 22  1
## 931                            05                                 21  1
## 932                           2nd                              doesn  1
## 933                             1                               1775  1
## 934                            05                                 20  1
## 935                            05                                 19  1
## 936                      negative                              awful  1
## 937                      negative                                pos  1
## 938                      negative                               sign  1
## 939                      negative                             unable  1
## 940                      negative                              won’t  1
## 941                            02                                 20  1
## 942                      positive                             honest  1
## 943                         share                            buyback  1
## 944                       premium                                evo  1
## 945                            05                                 19  1
## 946                      rotation                                 19  1
## 947                           max                                90s  1
## 948                           max                                 90  1
## 949                            05                                 19  1
## 950                            05                                 17  1
## 951                            05                                 17  1
## 952                            05                                 17  1
## 953                            05                                 10  1
## 954                          bike                               1857  1
## 955                            05                                 10  1
## 956                          1865                               fire  1
## 957                            05                                 08  1
## 958                          1878                               heat  1
## 959                          heat                               1879  1
## 960                          1879                                  ª  1
## 961                            05                                 03  1
## 962                          1881                                 ªd  1
## 963                            04                                 29  1
## 964                          1891                                acg  1
## 965                        torres                               1892  1
## 966                      negative                                app  1
## 967                            02                                 19  1
## 968                       neutral                      functionality  1
## 969                      positive                          excellent  1
## 970                      positive                               game  1
## 971                      positive                              get’s  1
## 972                      positive                               life  1
## 973                      positive                               love  1
## 974                           ago                                bro  1
## 975                         store                           closures  1
## 976                            04                                 29  1
## 977                           tag                              4.317  1
## 978                          4.94                                 94  1
## 979                           acg                             torres  1
## 980                          1906                              tight  1
## 981                         tight                                 x3  1
## 982                            x3                               1907  1
## 983                            04                                 28  1
## 984                           acg                              torre  1
## 985                            04                                 28  1
## 986                        flight                                 96  1
## 987                            gt                             jordan  1
## 988                            vi                              hands  1
## 989                            04                                 23  1
## 990                             1                               1939  1
## 991                            04                                 21  1
## 992                         penny                              foams  1
## 993                         fakes                               1949  1
## 994                          1950                                muy  1
## 995                            04                                 21  1
## 996                        fresco                               1951  1
## 997                          1960                               1961  1
## 998                            04                                 19  1
## 999                            04                                 16  1
## 1000                           04                                 14  1
## 1001                           04                                 12  1
## 1002                         move                               1994  1
## 1003                        kicks                          nicekicks  1
## 1004                          red                              laces  1
## 1005                          404                               book  1
## 1006                          294                               2025  1
## 1007                       adidas                                 54  1
## 1008                            2                                yrs  1
## 1009                            2                                tnx  1
## 1010                           03                                 11  1
## 1011                       pippen                                  5  1
## 1012                         feet                                  3  1
## 1013                        yeezy                          knockoffs  1
## 1014                           la                             lluvia  1
## 1015                        giphy                      rl9yqavfj2ula  1
## 1016                  interesante                              paseo  1
## 1017                          app                            stopped  1
## 1018                        can’t                               join  1
## 1019                        can’t                           register  1
## 1020                      doesn’t                               sync  1
## 1021                        login                             issues  1
## 1022                      missing                              items  1
## 1023                     removing                            workout  1
## 1024                     terrible                             update  1
## 1025                 triathlete’s                             review  1
## 1026                       begins                            quietly  1
## 1027                         cuts                             dozens  1
## 1028                      reports                                 38  1
## 1029                        stock                            tumbles  1
## 1030                    wholesale                            revenue  1
## 1031                          768                                 80  1
## 1032                        music                             volume  1
## 1033                            1                                ntc  1
## 1034                            3                             pretty  1
## 1035                        month                                  2  1
## 1036                     negative                             crashy  1
## 1037                     negative                              error  1
## 1038                     negative                               it’s  1
## 1039                           02                                 19  1
## 1040                      neutral                            amazing  1
## 1041                      neutral                                meh  1
## 1042                     positive                              noice  1
## 1043                     positive                                161  1
## 1044                     positive                                 97  1
## 1045                     positive                          exceeding  1
## 1046                     positive                           favorite  1
## 1047                     positive                               free  1
## 1048                     positive                             what’s  1
## 1049                     mobility                               yoga  1
## 1050                         week                           likewise  1
## 1051                           04                                 10  1
## 1052                  hyperflight                               1105  1
## 1053                        shape                            quality  1
## 1054                           af                               2004  1
## 1055                      minutes                               till  1
## 1056                       santos                        santoscharm  1
## 1057                        check                               half  1
## 1058                           04                                 08  1
## 1059                         2011                              lucky  1
## 1060                         solo                                era  1
## 1061                        nosto                         searchpage  1
## 1062                            9                          completed  1
## 1063                     personal                           training  1
## 1064                    including                             jordan  1
## 1065                          lil                               feet  1
## 1066                           04                                 06  1
## 1067                        black                              mixed  1
## 1068                     compiled                              march  1
## 1069                          130                            secured  1
## 1070                           og                               neon  1
## 1071                        drops                                  3  1
## 1072                     delivers                             record  1
## 1073                           05                                  1  1
## 1074                           05                                  2  1
## 1075                           05                                  5  1
## 1076                           06                                  1  1
## 1077                           06                                  5  1
## 1078                           09                                  2  1
## 1079                           10                                  1  1
## 1080                           10                                  4  1
## 1081                           10                                  5  1
## 1082                           11                                  5  1
## 1083                           12                                  5  1
## 1084                           16                                  1  1
## 1085                           16                                  3  1
## 1086                           18                                  4  1
## 1087                           21                                  1  1
## 1088                           24                                  5  1
## 1089                           30                                  1  1
## 1090                           30                                  3  1
## 1091                           30                                  5  1
## 1092                           02                                  1  1
## 1093                           02                                  5  1
## 1094                           04                                  1  1
## 1095                           08                                  5  1
## 1096                           10                                  1  1
## 1097                           11                                  5  1
## 1098                           13                                  1  1
## 1099                           15                                  5  1
## 1100                           22                                  4  1
## 1101                           23                                  5  1
## 1102                           24                                  5  1
## 1103                           06                                  3  1
## 1104                           06                                  4  1
## 1105                           12                                  3  1
## 1106                           13                                  5  1
## 1107                           15                                  1  1
## 1108                           18                                  1  1
## 1109                           26                                  5  1
## 1110                        falls                                4.8  1
## 1111                           04                                  5  1
## 1112                           06                                  4  1
## 1113                           12                                  1  1
## 1114                           22                                  2  1
## 1115                           24                                  1  1
## 1116                           28                                  1  1
## 1117                           29                                  4  1
## 1118                           29                                  5  1
## 1119                           05                                  5  1
## 1120                           10                                  5  1
## 1121                           11                                  5  1
## 1122                           13                                  1  1
## 1123                           13                                  5  1
## 1124                           21                                  2  1
## 1125                           24                                  5  1
## 1126                           26                                  3  1
## 1127                           01                                  5  1
## 1128                           04                                  3  1
## 1129                           05                                  1  1
## 1130                           09                                  3  1
## 1131                           11                                  5  1
## 1132                           14                                  3  1
## 1133                           16                                  1  1
## 1134                           21                                  1  1
## 1135                           21                                  5  1
## 1136                           05                                  3  1
## 1137                           08                                  4  1
## 1138                           09                                  5  1
## 1139                           10                                  5  1
## 1140                           11                                  1  1
## 1141                           03                                  1  1
## 1142                           07                                  1  1
## 1143                           09                                  1  1
## 1144                           21                                  2  1
## 1145                           28                                  1  1
## 1146                           05                                  4  1
## 1147                           06                                  2  1
## 1148                           13                                  5  1
## 1149                           15                                  5  1
## 1150                           21                                  5  1
## 1151                           22                                  1  1
## 1152                           24                                  1  1
## 1153                           25                                  1  1
## 1154                           25                                  3  1
## 1155                           16                                  5  1
## 1156                           23                                  4  1
## 1157                           31                                  2  1
## 1158                           05                                  1  1
## 1159                           07                                  1  1
## 1160                           08                                  5  1
## 1161                           12                                  1  1
## 1162                           27                                  5  1
## 1163                           06                                  1  1
## 1164                           08                                  4  1
## 1165                           24                                  4  1
## 1166                           28                                  3  1
## 1167                           02                                  1  1
## 1168                           04                                  1  1
## 1169                           06                                  5  1
## 1170                           07                                  5  1
## 1171                           08                                  3  1
## 1172                           13                                  1  1
## 1173                           18                                  5  1
## 1174                           20                                  1  1
## 1175                           22                                  1  1
## 1176                           27                                  1  1
## 1177                           28                                  1  1
## 1178                           30                                  2  1
## 1179                           30                                  3  1
## 1180                           07                                  1  1
## 1181                           07                                  5  1
## 1182                           10                                  5  1
## 1183                           11                                  4  1
## 1184                           11                                  5  1
## 1185                           12                                  2  1
## 1186                           13                                  4  1
## 1187                           14                                  5  1
## 1188                           18                                  5  1
## 1189                           19                                  1  1
## 1190                           20                                  3  1
## 1191                           24                                  5  1
## 1192                           25                                  1  1
## 1193                           30                                  5  1
## 1194                           01                                  1  1
## 1195                           01                                  5  1
## 1196                           06                                  1  1
## 1197                           08                                  5  1
## 1198                           09                                  3  1
## 1199                           09                                  5  1
## 1200                           11                                  5  1
## 1201                           13                                  1  1
## 1202                           13                                  2  1
## 1203                           13                                  5  1
## 1204                           18                                  1  1
## 1205                           20                                  3  1
## 1206                           21                                  1  1
## 1207                           22                                  2  1
## 1208                           23                                  5  1
## 1209                           26                                  5  1
## 1210                           28                                  5  1
## 1211                           29                                  3  1
## 1212                           31                                  5  1
## 1213                           ad                                age  1
## 1214                          226                               2025  1
## 1215                         nike                           newsroom  1
## 1216                           01                                  5  1
## 1217                           03                                  5  1
## 1218                           04                                  5  1
## 1219                           05                                  1  1
## 1220                           06                                  3  1
## 1221                           09                                  3  1
## 1222                           10                                  3  1
## 1223                           10                                  5  1
## 1224                           11                                  1  1
## 1225                           14                                  2  1
## 1226                           16                                  2  1
## 1227                           16                                  5  1
## 1228                           19                                  4  1
## 1229                           20                                  5  1
## 1230                           21                                  4  1
## 1231                           23                                  5  1
## 1232                           24                                  1  1
## 1233                           24                                  5  1
## 1234                           25                                  5  1
## 1235                           26                                  2  1
## 1236                           26                                  5  1
## 1237                           27                                  3  1
## 1238                           28                                  5  1
## 1239                           31                                  2  1
## 1240                           31                                  5  1
## 1241                           01                                  4  1
## 1242                           02                                  1  1
## 1243                           05                                  1  1
## 1244                           06                                  5  1
## 1245                           07                                  3  1
## 1246                           08                                  5  1
## 1247                           12                                  5  1
## 1248                           13                                  5  1
## 1249                           16                                  5  1
## 1250                           17                                  5  1
## 1251                           23                                  1  1
## 1252                           23                                  3  1
## 1253                           25                                  1  1
## 1254                           26                                  1  1
## 1255                           26                                  5  1
## 1256                           01                                  5  1
## 1257                           03                                  4  1
## 1258                           03                                  5  1
## 1259                           05                                  4  1
## 1260                           05                                  5  1
## 1261                           06                                  1  1
## 1262                           07                                  1  1
## 1263                           11                                  5  1
## 1264                           12                                  5  1
## 1265                           13                                  1  1
## 1266                           14                                  4  1
## 1267                           14                                  5  1
## 1268                           15                                  5  1
## 1269                           18                                  5  1
## 1270                           21                                  3  1
## 1271                           24                                  3  1
## 1272                           30                                  3  1
## 1273                           03                                  5  1
## 1274                           04                                  4  1
## 1275                           05                                  5  1
## 1276                           08                                  1  1
## 1277                           10                                  5  1
## 1278                           12                                  4  1
## 1279                           14                                  1  1
## 1280                           16                                  5  1
## 1281                           19                                  5  1
## 1282                           21                                  1  1
## 1283                           21                                  5  1
## 1284                           23                                  5  1
## 1285                           28                                  3  1
## 1286                           28                                  4  1
## 1287                           29                                  1  1
## 1288                           29                                  5  1
## 1289                           03                                  4  1
## 1290                           08                                  5  1
## 1291                           10                                  2  1
## 1292                           10                                  5  1
## 1293                           17                                  4  1
## 1294                           20                                  5  1
## 1295                           21                                  5  1
## 1296                           22                                  5  1
## 1297                           27                                  5  1
## 1298                           31                                  4  1
## 1299                           02                                  5  1
## 1300                           07                                  5  1
## 1301                           09                                  5  1
## 1302                           10                                  4  1
## 1303                           11                                  5  1
## 1304                           12                                  5  1
## 1305                           17                                  3  1
## 1306                           19                                  3  1
## 1307                           19                                  5  1
## 1308                           20                                  5  1
## 1309                           21                                  5  1
## 1310                           23                                  5  1
## 1311                           24                                  5  1
## 1312                           26                                  4  1
## 1313                           29                                  1  1
## 1314                           29                                  5  1
## 1315                           30                                  1  1
## 1316                           30                                  5  1
## 1317                           02                                  5  1
## 1318                           09                                  5  1
## 1319                           14                                  5  1
## 1320                           18                                  5  1
## 1321                           20                                  5  1
## 1322                           21                                  3  1
## 1323                           21                                  5  1
## 1324                           24                                  5  1
## 1325                           25                                  3  1
## 1326                           27                                  4  1
## 1327                           01                                  1  1
## 1328                           02                                  2  1
## 1329                           04                                  3  1
## 1330                           08                                  2  1
## 1331                           10                                  1  1
## 1332                           11                                  4  1
## 1333                           12                                  4  1
## 1334                           12                                  5  1
## 1335                           14                                  1  1
## 1336                           15                                  3  1
## 1337                           16                                  3  1
## 1338                           18                                  5  1
## 1339                           21                                  5  1
## 1340                           25                                  5  1
## 1341                           28                                  4  1
## 1342                           29                                  5  1
## 1343                           31                                  5  1
## 1344                           04                                  2  1
## 1345                           05                                  4  1
## 1346                           07                                  5  1
## 1347                           11                                  5  1
## 1348                           12                                  5  1
## 1349                           13                                  5  1
## 1350                           15                                  3  1
## 1351                           15                                  5  1
## 1352                           18                                  5  1
## 1353                           22                                  4  1
## 1354                           23                                  4  1
## 1355                           24                                  5  1
## 1356                           27                                  1  1
## 1357                           29                                  5  1
## 1358                           30                                  5  1
## 1359                           01                                  5  1
## 1360                           08                                  4  1
## 1361                           09                                  2  1
## 1362                           19                                  5  1
## 1363                           20                                  1  1
## 1364                           20                                  5  1
## 1365                           21                                  1  1
## 1366                           22                                  1  1
## 1367                           25                                  3  1
## 1368                           29                                  1  1
## 1369                           03                                  4  1
## 1370                           03                                  5  1
## 1371                           04                                  5  1
## 1372                           05                                  1  1
## 1373                           05                                  5  1
## 1374                           06                                  1  1
## 1375                           06                                  5  1
## 1376                           09                                  4  1
## 1377                           10                                  5  1
## 1378                           11                                  3  1
## 1379                           11                                  5  1
## 1380                           13                                  5  1
## 1381                           16                                  5  1
## 1382                           20                                  4  1
## 1383                           21                                  5  1
## 1384                           22                                  3  1
## 1385                           02                                  5  1
## 1386                           04                                  5  1
## 1387                           07                                  5  1
## 1388                           11                                  5  1
## 1389                           12                                  3  1
## 1390                           14                                  3  1
## 1391                           15                                  5  1
## 1392                           23                                  3  1
## 1393                           28                                  3  1
## 1394                           28                                  5  1
## 1395                           30                                  5  1
## 1396                           31                                  5  1
## 1397                         plan                               hits  1
## 1398                           04                                  3  1
## 1399                           05                                  5  1
## 1400                           06                                  5  1
## 1401                           07                                  1  1
## 1402                           07                                  3  1
## 1403                           07                                  5  1
## 1404                           08                                  5  1
## 1405                           09                                  1  1
## 1406                           11                                  5  1
## 1407                           13                                  5  1
## 1408                           14                                  4  1
## 1409                           15                                  4  1
## 1410                           18                                  1  1
## 1411                           19                                  5  1
## 1412                           20                                  5  1
## 1413                           21                                  3  1
## 1414                           23                                  3  1
## 1415                           23                                  4  1
## 1416                           24                                  5  1
## 1417                           26                                  1  1
## 1418                           27                                  3  1
## 1419                           27                                  5  1
## 1420                           28                                  2  1
## 1421                           04                                  5  1
## 1422                           07                                  4  1
## 1423                           08                                  5  1
## 1424                           10                                  5  1
## 1425                           11                                  5  1
## 1426                           12                                  5  1
## 1427                           19                                  3  1
## 1428                           19                                  5  1
## 1429                           20                                  5  1
## 1430                           23                                  4  1
## 1431                           23                                  5  1
## 1432                           27                                  1  1
## 1433                           27                                  5  1
## 1434                           28                                  5  1
## 1435                           04                                  1  1
## 1436                           06                                  5  1
## 1437                           09                                  3  1
## 1438                           09                                  4  1
## 1439                           11                                  1  1
## 1440                           11                                  5  1
## 1441                           16                             antall  1
## 1442                           16                              total  1
## 1443                         nike                                ceo  1
## 1444                         smfh                                mfs  1
## 1445                        march                               2026  1
## 1446                        4.227                                227  1
## 1447                          cup                               kits  1
## 1448                          cup                              stand  1
## 1449                           04                                 06  1
## 1450                           04                                 05  1
## 1451                           04                                 04  1
## 1452                       iconic                              shoes  1
## 1453                           04                                 03  1
## 1454                           03                                 30  1
## 1455                           03                                 28  1
## 1456                           03                                 28  1
## 1457                     negative                              can’t  1
## 1458                     negative                              don’t  1
## 1459                     negative                                ntc  1
## 1460                     negative                             unable  1
## 1461                     negative                              can’t  1
## 1462                           02                                 12  1
## 1463                      neutral                               love  1
## 1464                      neutral                           workouts  1
## 1465                     positive                             widget  1
## 1466                     positive                            awesome  1
## 1467                     positive                               free  1
## 1468                     positive                               love  1
## 1469                     positive                              solid  1
## 1470                     positive                               yaya  1
## 1471                            ý                               1189  1
## 1472                          net                               loss  1
## 1473                           03                                 24  1
## 1474                           03                                 21  1
## 1475                          max                                 95  1
## 1476                      thunder                            cookies  1
## 1477                           03                                 18  1
## 1478                          omg                               2129  1
## 1479                         2129                       flightposite  1
## 1480                           03                                 15  1
## 1481                            3                                air  1
## 1482                          amp                              clogs  1
## 1483                           03                                 14  1
## 1484                          215                                216  1
## 1485                           03                                 14  1
## 1486                           03                                 13  1
## 1487                           03                                 12  1
## 1488                         nuff                               2174  1
## 1489                           03                                 11  1
## 1490                           03                                 07  1
## 1491                          180                          excellent  1
## 1492                     negative                             broken  1
## 1493                     negative                              login  1
## 1494                     negative                            doesn’t  1
## 1495                           02                                 11  1
## 1496                      neutral                               it’s  1
## 1497                     positive                               love  1
## 1498                     positive                             ginger  1
## 1499                           03                                 06  1
## 1500                          imo                                472  1
## 1501                         2125                                yea  1
## 1502                        shoes                               2201  1
## 1503                           em                               2210  1
## 1504                           03                                 05  1
## 1505                       market                              fakes  1
## 1506                           03                                 05  1
## 1507                           03                                 03  1
## 1508                         2240                            rareair  1
## 1509                           03                                 03  1
## 1510                         2241                            rearair  1
## 1511                           03                                 01  1
## 1512                           02                                 26  1
## 1513                           02                                 26  1
## 1514                        giphy                 cgtqdfzemzlihopw35  1
## 1515                           02                                 25  1
## 1516                           02                                 24  1
## 1517                        setup                               2299  1
## 1518                     negative                            garbage  1
## 1519                           02                                 10  1
## 1520                      neutral                          excellent  1
## 1521                     positive                               it’s  1
## 1522                     positive                              kinda  1
## 1523                     positive                               love  1
## 1524                     positive                               love  1
## 1525                     positive                                top  1
## 1526                     positive                           training  1
## 1527                     positive                                 zk  1
## 1528                         mile                              miles  1
## 1529                           02                                 24  1
## 1530                          231                               trap  1
## 1531                         easy                                cop  1
## 1532                            ª                                  ü  1
## 1533                           02                                 23  1
## 1534                        house                                232  1
## 1535                         2311                              jesus  1
## 1536                        shoes                    congratulations  1
## 1537                           02                                 23  1
## 1538                     touching                                  4  1
## 1539                        giphy                 7ow9uiyfetrxdsobyn  1
## 1540                           02                                 21  1
## 1541                           02                                 21  1
## 1542                         sail                              black  1
## 1543                         2343                              black  1
## 1544                         2346                               sail  1
## 1545                           02                                 21  1
## 1546                         2352                              black  1
## 1547                         2357                               chef  1
## 1548                         2358                              black  1
## 1549                         2359                              black  1
## 1550                         2360                              black  1
## 1551                           02                                 19  1
## 1552                        giphy                  l1kuhbcqxoojyr0m4  1
## 1553                         2361                              black  1
## 1554                         2365                             return  1
## 1555                         2367                              black  1
## 1556                         2368                                red  1
## 1557                           02                                 19  1
## 1558                           ya                                238  1
## 1559                           02                                 17  1
## 1560                        giphy                      mputzqqomykpk  1
## 1561                           02                                 16  1
## 1562                        4.240                                240  1
## 1563                     negative                                app  1
## 1564                     negative                               data  1
## 1565                           02                                 09  1
## 1566                        elite                               ball  1
## 1567                      neutral                           terrible  1
## 1568                     positive                             greate  1
## 1569                     positive                               it’s  1
## 1570                     positive                            perfect  1
## 1571                     positive                             review  1
## 1572                           02                                 13  1
## 1573                          yea                                241  1
## 1574                           02                                 12  1
## 1575                        giphy                      yayv8i5n1ojze  1
## 1576                           02                                 10  1
## 1577                           02                                 10  1
## 1578                          100                                  1  1
## 1579                           02                                 10  1
## 1580                           02                                 08  1
## 1581                           02                                 07  1
## 1582                           02                                 06  1
## 1583                           02                                 05  1
## 1584                           02                                 02  1
## 1585                           02                                 09  1
## 1586                      neutral                                app  1
## 1587                      neutral                          bothering  1
## 1588                      neutral                              messy  1
## 1589                     positive                                  4  1
## 1590                     positive                               food  1
## 1591                     positive                               game  1
## 1592                         ball                          knowledge  1
## 1593                           02                                 01  1
## 1594                           02                                 01  1
## 1595                           02                                 01  1
## 1596                           02                                 01  1
## 1597                        fedex                              stole  1
## 1598                           01                                 31  1
## 1599                           01                                 31  1
## 1600                           01                                 28  1
## 1601                           01                                 27  1
## 1602                           01                                 26  1
## 1603                           01                                 26  1
## 1604                           30                           offering  1
## 1605                     negative                         frustrated  1
## 1606                           02                                 08  1
## 1607                     positive                              music  1
## 1608                     positive                            amazing  1
## 1609                     positive                                gym  1
## 1610                        https                        tinyurl.com  1
## 1611                           01                                 25  1
## 1612                           01                                 24  1
## 1613                           01                                 24  1
## 1614                           01                                 23  1
## 1615                         yeah                                264  1
## 1616                           01                                 21  1
## 1617                           01                                 21  1
## 1618                         yeah                                266  1
## 1619                           01                                 21  1
## 1620                           01                                 21  1
## 1621                           01                                 20  1
## 1622                      jealous                                269  1
## 1623                           01                                 20  1
## 1624                         00am                                250  1
## 1625                     negative                           couldn’t  1
## 1626                     negative                                 не  1
## 1627                           02                                 07  1
## 1628                      neutral                            amazing  1
## 1629                      neutral                               love  1
## 1630                     positive                                  5  1
## 1631                     positive                            amazing  1
## 1632                     positive                               love  1
## 1633                     positive                                muy  1
## 1634                           01                                 20  1
## 1635                           01                                 19  1
## 1636                           01                                 19  1
## 1637                           01                                 19  1
## 1638                           01                                 17  1
## 1639                           01                                 17  1
## 1640                           01                                 16  1
## 1641                           01                                 16  1
## 1642                           01                                 14  1
## 1643                           01                                 14  1
## 1644                     negative                       triathlete’s  1
## 1645                     negative                        unnecessary  1
## 1646                       update                                ads  1
## 1647                           02                                 07  1
## 1648                      neutral                            doesn’t  1
## 1649                      neutral                             issues  1
## 1650                     positive                               love  1
## 1651                     positive                       professional  1
## 1652                           01                                 14  1
## 1653                           01                                 11  1
## 1654                           01                                 10  1
## 1655                           01                                 10  1
## 1656                           01                                 09  1
## 1657                         fire                                286  1
## 1658                           01                                 06  1
## 1659                          286                                287  1
## 1660                           01                                 06  1
## 1661                         love                           uptempos  1
## 1662                           01                                 06  1
## 1663                     uptempos                                288  1
## 1664                           01                                 06  1
## 1665                           01                                 05  1
## 1666                        chats                              shirt  1
## 1667                     negative                                app  1
## 1668                     negative                      impossibilité  1
## 1669                     negative                               ipad  1
## 1670                           02                                 07  1
## 1671                     positive                            amazing  1
## 1672                     positive                            amazing  1
## 1673                     positive                         incredibly  1
## 1674                     positive                                les  1
## 1675                     positive                               love  1
## 1676                     positive                                muy  1
## 1677                           01                                 04  1
## 1678                           01                                 03  1
## 1679                           01                                 02  1
## 1680                           01                                 02  1
## 1681                           01                                 01  1
## 1682                           12                                 31  1
## 1683                          cut                                  4  1
## 1684                           12                                 29  1
## 1685                           12                                 28  1
## 1686                           12                                 27  1
## 1687                           12                                 27  1
## 1688                        color                              white  1
## 1689                        https                 www.flightclub.com  1
## 1690           www.flightclub.com                             adidas  1
## 1691                       mental                             health  1
## 1692                           03                                 09  1
## 1693                        weeks                                477  1
## 1694                       months                                4.7  1
## 1695                         zoom                                 gp  1
## 1696                            6                                816  1
## 1697                         nike                             deeply  1
## 1698                       dhgate                               1328  1
## 1699                        walks                                gr8  1
## 1700                            8                              miles  1
## 1701                           20                                min  1
## 1702                      amazing                            content  1
## 1703                        can’t                               sign  1
## 1704                   downgraded                             rating  1
## 1705                    excellent                                app  1
## 1706                         it’s                               hard  1
## 1707                          meh                               it’s  1
## 1708                      running                                app  1
## 1709                     terrible                            updates  1
## 1710                     workouts                               hard  1
## 1711                      digital                              sales  1
## 1712                    inventory                           overhang  1
## 1713                     launches                                 18  1
## 1714                     launches                           consumer  1
## 1715                      reports                               fy26  1
## 1716                       teases                      revolutionary  1
## 1717                      america                           declines  1
## 1718                        4.151                                151  1
## 1719                        4.238                                238  1
## 1720                          boi                                704  1
## 1721                          run                            options  1
## 1722                       адреса                                327  1
## 1723                            6                                852  1
## 1724                        gumps                                840  1
## 1725                        price                             adidas  1
## 1726                           02                                 04  1
## 1727                      neutral                           hateeeee  1
## 1728                      neutral                            spotify  1
## 1729                      neutral                             videos  1
## 1730                     positive                            amazing  1
## 1731                     positive                              daily  1
## 1732                     positive                          fantastic  1
## 1733                     positive                               nike  1
## 1734                     strength                           training  1
## 1735                           12                                 26  1
## 1736                        miles                               love  1
## 1737                           12                                 24  1
## 1738                           12                                 24  1
## 1739                           12                                 23  1
## 1740                           12                                 22  1
## 1741                           12                                 21  1
## 1742                          cut                                  4  1
## 1743                           12                                 20  1
## 1744                           12                                 18  1
## 1745                           12                                 15  1
## 1746                           12                                 15  1
## 1747                     negative                                app  1
## 1748                     negative                                bad  1
## 1749                           01                                 31  1
## 1750                     positive                               love  1
## 1751                     positive                            amazing  1
## 1752                           31                               days  1
## 1753                           12                                 13  1
## 1754                           12                                 13  1
## 1755                           12                                 13  1
## 1756                           12                                 11  1
## 1757                           12                                 09  1
## 1758                           12                                 09  1
## 1759                           12                                 09  1
## 1760                           12                                 09  1
## 1761                           12                                 08  1
## 1762                           12                                 06  1
## 1763                           01                                 31  1
## 1764                   fahrenheit                               i’ve  1
## 1765                           12                                 04  1
## 1766                           12                                 04  1
## 1767                           12                                 04  1
## 1768                           12                                 03  1
## 1769                           12                                 03  1
## 1770                           12                                 01  1
## 1771                         fire                               rock  1
## 1772                           12                                 01  1
## 1773                           11                                 30  1
## 1774                           11                                 27  1
## 1775                           11                                 27  1
## 1776                         days                                ago  1
## 1777                           01                                 28  1
## 1778                           11                                 27  1
## 1779                           11                                 25  1
## 1780                           11                                 24  1
## 1781                           11                                 23  1
## 1782                           11                                 23  1
## 1783                           11                                 23  1
## 1784                           11                                 23  1
## 1785                           11                                 20  1
## 1786                           11                                 20  1
## 1787                           11                                 20  1
## 1788                   essentials                          statement  1
## 1789                           01                                 27  1
## 1790                           11                                 19  1
## 1791                           11                                 19  1
## 1792                       crotch                               shot  1
## 1793                           11                                 19  1
## 1794                           11                                 19  1
## 1795                           11                                 18  1
## 1796                           11                                 17  1
## 1797                           11                                 17  1
## 1798                           11                                 16  1
## 1799                           11                                 16  1
## 1800                           11                                 16  1
## 1801                           01                                 27  1
## 1802                       gulden                              named  1
## 1803                           11                                 15  1
## 1804                          351                               nike  1
## 1805                           11                                 15  1
## 1806                           11                                 15  1
## 1807                     handedly                           bringing  1
## 1808                           11                                 15  1
## 1809                          air                             gordan  1
## 1810                           11                                 14  1
## 1811                      obama's                                  1  1
## 1812                           11                                 13  1
## 1813                           11                                 13  1
## 1814                           11                                 13  1
## 1815                           11                                 13  1
## 1816                           11                                 13  1
## 1817                    excellent                                bag  1
## 1818                           01                                 26  1
## 1819                          air                                 37  1
## 1820                           11                                 12  1
## 1821                          air                           phordans  1
## 1822                          app                                248  1
## 1823                           11                                 12  1
## 1824                         anta                                 li  1
## 1825                        flame                                4.0  1
## 1826                           11                                 12  1
## 1827                           11                                 12  1
## 1828                           11                                 12  1
## 1829                         holy                               crap  1
## 1830                           11                                 12  1
## 1831                           11                                 12  1
## 1832                           il                                367  1
## 1833                           11                                 11  1
## 1834                           11                                 11  1
## 1835                           11                                 10  1
## 1836                           01                                 24  1
## 1837                           11                                 08  1
## 1838                          371                                ten  1
## 1839                           11                                 08  1
## 1840                           11                                 07  1
## 1841                           11                                 07  1
## 1842                        giphy                 n4fcjylldgpc95d4ku  1
## 1843                           10                                 30  1
## 1844                           10                                 30  1
## 1845                       barbel                               rows  1
## 1846                           10                                 28  1
## 1847                      classic                              4.377  1
## 1848                           10                                 27  1
## 1849                           10                                 22  1
## 1850                           10                                 20  1
## 1851                          380                               howw  1
## 1852                           01                                 23  1
## 1853                           10                                 18  1
## 1854                          381                       niceeeeeeeee  1
## 1855                           10                                 13  1
## 1856                           10                                 08  1
## 1857                           10                                 07  1
## 1858                  informative                              video  1
## 1859                           10                                 06  1
## 1860                           10                                 04  1
## 1861                           10                                 02  1
## 1862                           09                                 28  1
## 1863                           09                                 24  1
## 1864                           09                                 08  1
## 1865                           01                                 23  1
## 1866                           09                                 06  1
## 1867                          391                                gif  1
## 1868                           08                                 27  1
## 1869                        giphy                      r5sxjycu21auk  1
## 1870                           08                                 12  1
## 1871                           08                                 08  1
## 1872                           08                                 07  1
## 1873                           08                                 05  1
## 1874                           07                                 31  1
## 1875                           1s                                397  1
## 1876                           07                                 23  1
## 1877                           07                                 16  1
## 1878                           06                                 25  1
## 1879                          air                                max  1
## 1880                         shoe                                567  1
## 1881                        shoes                               1097  1
## 1882                        shoes                                532  1
## 1883                 flightposite                                  3  1
## 1884                           03                                 09  1
## 1885                           65                            pegasus  1
## 1886                         2023                                 12  1
## 1887                     adjusted                             profit  1
## 1888                     favorite                           workouts  1
## 1889                         week                                  1  1
## 1890                         nike                              coord  1
## 1891                            9                                evo  1
## 1892                           12                                evo  1
## 1893                      pebbles                                621  1
## 1894                   postpartum                                i’m  1
## 1895                          ceo                            donahoe  1
## 1896                        stock                            rallies  1
## 1897                      unveils                            world's  1
## 1898                            4                                  5  1
## 1899                      amazing                            product  1
## 1900                     download                             option  1
## 1901                         food                             didn’t  1
## 1902                       future                        improvement  1
## 1903                        kinda                           annoying  1
## 1904                        music                            haven’t  1
## 1905                        music                               love  1
## 1906                         nike                           training  1
## 1907                      program                             format  1
## 1908                          yay                               it’s  1
## 1909                         yoga                              music  1
## 1910                         1557                              field  1
## 1911                         1508                            awesome  1
## 1912                       biking                              seats  1
## 1913                            5                             campus  1
## 1914                 imtermediate                               half  1
## 1915                         it’s                             giving  1
## 1916                      classic                               shoe  1
## 1917                         yall                           remember  1
## 1918                      roadman                           trainers  1
## 1919                      secured                               mine  1
## 1920                      secured                                  3  1
## 1921                   absolutely                               hate  1
## 1922                          air                                max  1
## 1923                      perfect                          rendition  1
## 1924                         nike                               asmr  1
## 1925                        grail                            sneaker  1
## 1926                       pretty                               easy  1
## 1927                         heat                              4.240  1
## 1928                        white                          chocolate  1
## 1929                         huge                           shoutout  1
## 1930                           gt                                cut  1
## 1931                           gt                                cut  1
## 1932                      amazing                           trainers  1
## 1933                         foot                             doctor  1
## 1934                       single                           handedly  1
## 1935                          doc                            tearing  1
## 1936                       future                            classic  1
## 1937                         nice                        informative  1
## 1938                          rip                                219  1
## 1939                          ran                         manchester  1
## 1940                       pretty                           shocking  1
## 1941                         wear                           alphafly  1
## 1942                       bought                               blue  1
## 1943                      finally                               nike  1
## 1944                      pegasus                                 41  1
## 1945                   invincible                                  3  1
## 1946                          top                              notch  1
## 1947                         nice                             review  1
## 1948                     straight                               heat  1
## 1949                           01                                 21  1
## 1950                         2024                                 11  1
## 1951                           jd                             sports  1
## 1952                           06                                 25  1
## 1953                       adidas                                 28  1
## 1954                           06                                 24  1
## 1955                           06                                 22  1
## 1956                       booker                                 1s  1
## 1957                           06                                 21  1
## 1958                         book                                  1  1
## 1959                           06                                 15  1
## 1960                           06                                 13  1
## 1961                           06                                 06  1
## 1962                          407                               nike  1
## 1963                           06                                 05  1
## 1964                        dunks                           hahahaha  1
## 1965                           05                                 28  1
## 1966                           05                                 21  1
## 1967                           01                                 21  1
## 1968                   manchester                           marathon  1
## 1969                           42                                 43  1
## 1970                           05                                 09  1
## 1971                           05                                 08  1
## 1972                         pair                               glad  1
## 1973                           05                                 08  1
## 1974                           05                                 07  1
## 1975                       beasts                               jump  1
## 1976                           05                                 03  1
## 1977                           04                                 11  1
## 1978                           04                                 10  1
## 1979                           04                                 09  1
## 1980                           04                                 08  1
## 1981                           04                                 05  1
## 1982                           01                                 21  1
## 1983                           03                                 21  1
## 1984                          421                               dude  1
## 1985                           03                                 21  1
## 1986                           03                                 16  1
## 1987                           03                                 14  1
## 1988                           03                                 11  1
## 1989                           03                                 09  1
## 1990                           03                                 05  1
## 1991                           03                                 04  1
## 1992                           03                                 01  1
## 1993                           02                                 26  1
## 1994                           01                                 20  1
## 1995                           02                                 24  1
## 1996                           02                                 21  1
## 1997                           02                                 13  1
## 1998                           02                                 13  1
## 1999                           02                                 11  1
## 2000                           02                                 10  1
## 2001                           02                                 05  1
## 2002                           01                                 29  1
## 2003                           01                                 29  1
## 2004                           01                                 28  1
## 2005                           01                                 19  1
## 2006                           01                                 24  1
## 2007                           01                                 22  1
## 2008                           01                                 18  1
## 2009                     abundant                               joke  1
## 2010                           01                                 18  1
## 2011                           01                                 12  1
## 2012                           01                                 06  1
## 2013                           01                                 04  1
## 2014                           12                                 26  1
## 2015                           12                                 18  1
## 2016                           12                                 15  1
## 2017                           01                                 18  1
## 2018                       sizing                                 11  1
## 2019                           12                                 13  1
## 2020                           12                                 12  1
## 2021                           12                                 08  1
## 2022                           12                                 08  1
## 2023                           12                                 06  1
## 2024                           12                                 06  1
## 2025                           11                                 24  1
## 2026                           11                                 23  1
## 2027                           11                                 22  1
## 2028                           11                                 15  1
## 2029                   деградація                         soulmauler  1
## 2030                           01                                 15  1
## 2031                           67                           calories  1
## 2032                     alphafly                                  3  1
## 2033                           11                                 13  1
## 2034                           11                                 11  1
## 2035                           11                                 10  1
## 2036                           11                                 08  1
## 2037                           11                                 04  1
## 2038                           11                                 02  1
## 2039                           11                                 02  1
## 2040                           10                                 30  1
## 2041                           10                                 30  1
## 2042                           10                                 30  1
## 2043                        giphy                 zn5xfujbtbpnrdzncm  1
## 2044                           01                                 14  1
## 2045                           10                                 24  1
## 2046                           10                                 21  1
## 2047                           10                                 18  1
## 2048                           10                                 16  1
## 2049                           10                                 16  1
## 2050                           10                                 12  1
## 2051                           10                                 11  1
## 2052                           10                                 10  1
## 2053                           10                                 10  1
## 2054                           10                                 10  1
## 2055                           01                                 13  1
## 2056                           ya                              phone  1
## 2057                           10                                 09  1
## 2058                           10                                 09  1
## 2059                     beauties                                482  1
## 2060                           10                                 09  1
## 2061                           10                                 09  1
## 2062                        giphy                 asjkibidvgfmxphcdq  1
## 2063                           10                                 07  1
## 2064                          486                               hoes  1
## 2065                           10                                 07  1
## 2066                         hoes                                 eh  1
## 2067                           10                                 06  1
## 2068                           eh                                487  1
## 2069                           10                                 06  1
## 2070                           10                                 05  1
## 2071                           10                                 05  1
## 2072                           01                                 11  1
## 2073                           50                             sadida  1
## 2074                         2026                                 03  1
## 2075                           10                                 05  1
## 2076                         race                                5.0  1
## 2077                          2nd                                ply  1
## 2078                         boys                              gonna  1
## 2079                         mins                         stretching  1
## 2080                            1                                bad  1
## 2081                       minute                           workouts  1
## 2082                            2                               1920  1
## 2083                           03                                 06  1
## 2084                         guys                              gonna  1
## 2085                       profit                             raised  1
## 2086                          max                        fantaposite  1
## 2087                        watch                         compatible  1
## 2088                      wearpro                                  3  1
## 2089                         buen                           programa  1
## 2090                          103                              haven  1
## 2091                       adidas                                eqt  1
## 2092                       adidas                                nmd  1
## 2093                       adidas                          originals  1
## 2094                     workouts                         difficulty  1
## 2095                           el                              erian  1
## 2096                       begins                      restructuring  1
## 2097                        signs                        partnership  1
## 2098                        stock                              peaks  1
## 2099                       knight                             writes  1
## 2100                          161                               2025  1
## 2101                            5                               star  1
## 2102                           97                               2025  1
## 2103                     absolute                               love  1
## 2104                   absolutely                               love  1
## 2105                      amazing                            amazing  1
## 2106                      amazing                                app  1
## 2107                      amazing                            fitness  1
## 2108                      amazing                            program  1
## 2109                      amazing                           recourse  1
## 2110                      amazing                           workouts  1
## 2111                          app                              stuck  1
## 2112                      awesome                            workout  1
## 2113                      awesome                           workouts  1
## 2114                   beneficios                                 al  1
## 2115                        bravo                            changed  1
## 2116                   convenient                            endless  1
## 2117                         core                                  2  1
## 2118                        crash                             issues  1
## 2119                        daily                               i’ve  1
## 2120                        daily                            routine  1
## 2121                           el                              mejor  1
## 2122                    exceeding                       expectations  1
## 2123                    excellent                            fitness  1
## 2124                    excellent                               free  1
## 2125                  exceptional                        performance  1
## 2126                     faithful                           follower  1
## 2127                    fantastic                                app  1
## 2128                    fantastic                           sessions  1
## 2129                     favorite                            teacher  1
## 2130                          fix                            display  1
## 2131                         free                           workouts  1
## 2132                       ginger                            jillian  1
## 2133                       greate                             that’s  1
## 2134                          gym                            classes  1
## 2135                      happily                          surprised  1
## 2136                       health                          stability  1
## 2137                       honest                           feedback  1
## 2138                         huge                            variety  1
## 2139                   incredibly                            helpful  1
## 2140                          joe                             holder  1
## 2141                          les                            amazing  1
## 2142                         life                            changer  1
## 2143                         life                           changing  1
## 2144                         love                           training  1
## 2145                      morning                               rise  1
## 2146                          muy                             exacto  1
## 2147                          muy                               útil  1
## 2148                         nike                                app  1
## 2149                          ntc                                app  1
## 2150                          ntc                               nike  1
## 2151                          ntc                             simply  1
## 2152                      perfect                         absolutely  1
## 2153                 professional                        firefighter  1
## 2154                      program                                i’m  1
## 2155                       review                            awesome  1
## 2156                       sports                          structure  1
## 2157                        super                         functional  1
## 2158                          top                                  5  1
## 2159                    wonderful                              helps  1
## 2160                    wonderful                           programs  1
## 2161                     workouts                               love  1
## 2162                           zk                             harika  1
## 2163                          167                               2025  1
## 2164                           48                               2026  1
## 2165                      workout                            classes  1
## 2166                           01                                 09  1
## 2167                           51                               sell  1
## 2168                        4.389                                389  1
## 2169                           01                                 08  1
## 2170                         blue                            pegasus  1
## 2171                        album                              cover  1
## 2172                           01                                 07  1
## 2173                         yeah                           congrats  1
## 2174                        giphy                 vgfcceue0mlzou7y49  1
## 2175                           01                                 07  1
## 2176                           01                                 07  1
## 2177                        giphy                 keq3dg4poe37dnatvm  1
## 2178                        giphy                      yvbc4hdspb7z2  1
## 2179                           01                                 06  1
## 2180                         hard                                 56  1
## 2181                          max                               1000  1
## 2182                          559                                560  1
## 2183                         hell                                nah  1
## 2184                           01                                 05  1
## 2185                          nah                                561  1
## 2186                      reduced                             buying  1
## 2187                           01                                 04  1
## 2188                        giphy                      4lrkcwli2mkoc  1
## 2189                         foam                            runners  1
## 2190                          nah                                580  1
## 2191                      soldier                              dudes  1
## 2192                           12                                 31  1
## 2193                         nike                              doesn  1
## 2194                          623                            minutes  1
## 2195                        giphy                 rvxnufxxubfyjhw6lo  1
## 2196                         shoe                             design  1
## 2197                     replaces                         impossible  1
## 2198                           12                                 30  1
## 2199                        fines                                 bo  1
## 2200                    marathons                           obstacle  1
## 2201                            1                                  3  1
## 2202                           03                                 05  1
## 2203                       forest                              gumps  1
## 2204                      harvest                                air  1
## 2205                        kanye                              talks  1
## 2206                      stephen                              curry  1
## 2207                     upcoming                               fall  1
## 2208                          run                              loose  1
## 2209                         1299                               mine  1
## 2210                          4.7                                  7  1
## 2211                          ago                            version  1
## 2212                      finally                              found  1
## 2213                    announces                          thousands  1
## 2214                     athletes                                win  1
## 2215                          ceo                               john  1
## 2216                         fy23                                 q1  1
## 2217                      fitness                               plan  1
## 2218                           12                                 29  1
## 2219                         nike                                657  1
## 2220                           12                                 29  1
## 2221                           12                                 28  1
## 2222                           63                           terrible  1
## 2223                         pair                               love  1
## 2224                           12                                 28  1
## 2225                          636                              dunks  1
## 2226                          def                               dead  1
## 2227                           12                                 27  1
## 2228                          toe                                box  1
## 2229                        agree                                649  1
## 2230                           12                                 27  1
## 2231                           12                                 23  1
## 2232                          edr                                 78  1
## 2233                           12                                 15  1
## 2234                           ya                               feel  1
## 2235                       brokie                                675  1
## 2236                       mellow                             slides  1
## 2237                           12                                 14  1
## 2238                            2                                  2  1
## 2239                          bro                                687  1
## 2240                           12                                 12  1
## 2241                           03                                 05  1
## 2242                         free                              trial  1
## 2243                          run                          incorrect  1
## 2244                         code                             save40  1
## 2245                        curry                                  7  1
## 2246                          jbl                                amp  1
## 2247                       neeraj                             chopra  1
## 2248                        shirt                            similar  1
## 2249                       spieth                               golf  1
## 2250                    announces                              skims  1
## 2251                        makes                            largest  1
## 2252                     huarache                           inspired  1
## 2253                         1230                                yep  1
## 2254                         1189                                yea  1
## 2255                           12                                 11  1
## 2256                           es                                una  1
## 2257                        notch                             review  1
## 2258                       adidas                            decides  1
## 2259                          ply                                boi  1
## 2260                        wdywt                          surprised  1
## 2261                          708                          cardboard  1
## 2262                         roll                               seam  1
## 2263                            2                               it’s  1
## 2264                           12                                 07  1
## 2265                          713                             swirls  1
## 2266                           12                                 04  1
## 2267                           12                                 02  1
## 2268                          ply                               fake  1
## 2269                           11                                 29  1
## 2270                         blue                              white  1
## 2271                           11                                 29  1
## 2272                           76                              fakes  1
## 2273                          gif                              giphy  1
## 2274                      flyknit                                air  1
## 2275                           11                                 22  1
## 2276                           11                                 21  1
## 2277                          max                                90s  1
## 2278                          774                           flyknits  1
## 2279                           11                                 20  1
## 2280                           11                                 16  1
## 2281                           rn                               2168  1
## 2282                         loss                               cnbc  1
## 2283                           12                              men's  1
## 2284                        fedex                            manager  1
## 2285                           03                                 04  1
## 2286                        jonah                               hill  1
## 2287                         nike                                dri  1
## 2288                    announces                            elliott  1
## 2289                      reports                               fy26  1
## 2290                           11                                 13  1
## 2291                     weighted                             squats  1
## 2292                           11                                 11  1
## 2293                            1                                812  1
## 2294                          amp                                  6  1
## 2295                          bro                                818  1
## 2296                          819                             mowabb  1
## 2297                           11                                 11  1
## 2298                          823                            safaris  1
## 2299                       purple                                amp  1
## 2300                           11                                 10  1
## 2301                          839                              gumps  1
## 2302                           11                                 09  1
## 2303                          844                             purple  1
## 2304                        giphy                 fxnrobm8q0rkomr5nf  1
## 2305                           11                                 06  1
## 2306                       moving                            forward  1
## 2307                          851                              3,4,5  1
## 2308                          amp                                  6  1
## 2309                           11                                 06  1
## 2310                          top                                tip  1
## 2311                          863                                  2  1
## 2312                           11                                 05  1
## 2313                           11                                 05  1
## 2314                      started                          squeaking  1
## 2315                        giphy                      kiau2euyxjqb2  1
## 2316                        giphy                 kl9iawej2mxlzvzp2o  1
## 2317                           11                                 04  1
## 2318                        giphy                      gpys1ljxjyupg  1
## 2319                      morning                              4.140  1
## 2320                           03                                 02  1
## 2321                           sl                                 sl  1
## 2322                comprehensive                          breakdown  1
## 2323                       adidas                                nmd  1
## 2324                       adidas                                trx  1
## 2325                        kevin                              plank  1
## 2326                       global                             market  1
## 2327                        stock                          collapses  1
## 2328                     sparking                            analyst  1
## 2329                           11                                 03  1
## 2330                      hippies                                905  1
## 2331                        giphy                      srirxoiam0u00  1
## 2332                           24                               nike  1
## 2333                          max                                fan  1
## 2334                     produced                           products  1
## 2335                           11                                 03  1
## 2336                        clean                                 92  1
## 2337                          911                                gif  1
## 2338                        giphy                      su0aljmbfvghw  1
## 2339                           10                                 29  1
## 2340                        giphy                      rpjyoncygkngo  1
## 2341                         nike                         reversible  1
## 2342                           10                                 25  1
## 2343                        clean                                937  1
## 2344                          937                               tuff  1
## 2345                           10                                 22  1
## 2346                           10                                 21  1
## 2347                          max                             greedy  1
## 2348                    chambered                                air  1
## 2349                        4.144                                144  1
## 2350                       slides                            uptempo  1
## 2351                        giphy                 ifnbpfxfgetn8bh0vz  1
## 2352                           10                                 20  1
## 2353                            á                                965  1
## 2354                           10                                 20  1
## 2355                         camo                                976  1
## 2356                           10                                 19  1
## 2357                          oak                             collab  1
## 2358                           10                                 10  1
## 2359                          991                               hard  1
## 2360                            ý                               1650  1
## 2361                          lol                                218  1
## 2362                           10                                 10  1
## 2363               adidasfootball                           adidasza  1
## 2364                       adidas                                  8  1
## 2365                           ad                               free  1
## 2366                          755                              ultra  1
## 2367                     breaking                               free  1
## 2368                         bugs                             quando  1
## 2369                         yoke                             violet  1
## 2370                       romper                                 mi  1
## 2371                        shift                             adidas  1
## 2372                      cutting                          wholesale  1
## 2373                         nike                           newsroom  1
## 2374                         2391                                lol  1
## 2375                         2026                                 02  1
## 2376                         2024                                 05  1
## 2377                         walk                              puppy  1
## 2378                      crashes                         constantly  1
## 2379                        times                               it’s  1
## 2380                   accurately                              track  1
## 2381                       rating                            amazing  1
## 2382                     surveyor                              wheel  1
## 2383                         time                           horrible  1
## 2384                          app                               i’ve  1
## 2385                          mon                          programme  1
## 2386                       mowabb                              trail  1
## 2387                          817                              green  1
## 2388                       arktos                               link  1
## 2389                          mid                               1914  1
## 2390                       cortez                             purple  1
## 2391                         2025                                 09  1
## 2392                          mcl                            hooping  1
## 2393                          por                                 mi  1
## 2394                    recommend                       subscription  1
## 2395                       además                              tiene  1
## 2396                         2024                                 11  1
## 2397                       adidas                           training  1
## 2398                          442                               2024  1
## 2399                      service                             wasn’t  1
## 2400                      summary                             screen  1
## 2401                        shoes                              4.347  1
## 2402                       people                            wearing  1
## 2403                          190                             resale  1
## 2404                         mala                                 se  1
## 2405                       august                                  8  1
## 2406                        4.374                                374  1
## 2407                     exercise                           routines  1
## 2408                         mode                                app  1
## 2409                         mode                            support  1
## 2410                       option                                485  1
## 2411                         2023                                 10  1
## 2412                        don’t                              count  1
## 2413                            7                                 22  1
## 2414                      adistar                                  3  1
## 2415                         2025                                 01  1
## 2416                   excelentes                           gráficas  1
## 2417                       adidas                                app  1
## 2418                          pro                                  4  1
## 2419                     ayakkabı                            giyorum  1
## 2420                       adidas                            running  1
## 2421                          fun                            saludos  1
## 2422                        store                            reviews  1
## 2423                      podiums                           finishes  1
## 2424                       adidas                                 19  1
## 2425                       admits                            failure  1
## 2426                        calls                              covid  1
## 2427                      extends                           contract  1
## 2428                       kasper                            rorsted  1
## 2429                       online                              sales  1
## 2430                       series                                fit  1
## 2431                           rc                              check  1
## 2432                      support                              ultra  1
## 2433                          una                               gran  1
## 2434                       outlet                              steal  1
## 2435                         loes                               love  1
## 2436                      spezial                            fastest  1
## 2437                          muy                               util  1
## 2438                            6                             golden  1
## 2439                   aplicación                                 de  1
## 2440                       jacket                              coord  1
## 2441                       adidas                                 52  1
## 2442                        ultra                              boost  1
## 2443                           r1                             vapour  1
## 2444                          xr1                               core  1
## 2445                       adidas                                 47  1
## 2446                     anúncios                     principalmente  1
## 2447                           mí                                 la  1
## 2448                           34                              sales  1
## 2449                        china                              sales  1
## 2450                        innov                                  8  1
## 2451                         data                              total  1
## 2452                          app                               easy  1
## 2453                          app                               paid  1
## 2454                          ogs                             adidas  1
## 2455                         view                             finder  1
## 2456                       adidas                                 12  1
## 2457                           72                                 rs  1
## 2458                       adidas                                  6  1
## 2459                 discontinued                              issue  1
## 2460                         logo                             adidas  1
## 2461                        bonne                        application  1
## 2462                       boosts                             adidas  1
## 2463                     otoöatik                           başlatma  1
## 2464                        stuff                                 im  1
## 2465                       adidas                                 66  1
## 2466                       adidas                                 20  1
## 2467                        split                             adidas  1
## 2468                         4000                                 4d  1
## 2469                       adidas                                 35  1
## 2470                           10                             medium  1
## 2471                            6                                low  1
## 2472                            9                                low  1
## 2473                          evo                                 sl  1
## 2474                    excellent                      comprehensive  1
## 2475                           11                                  7  1
## 2476                            3                              don’t  1
## 2477                            3                              shoes  1
## 2478                            4                             boston  1
## 2479                     consumer                               shoe  1
## 2480                      giyorum                              fakat  1
## 2481                       income                              beats  1
## 2482                         2024                                 10  1
## 2483                         shoe                                hey  1
## 2484                    recommend                                pop  1
## 2485                       banned                              shoes  1
## 2486                          pop                               adds  1
## 2487                   structured                           aerobill  1
## 2488                   structured                             swoosh  1
## 2489                         2024                                 05  1
## 2490                         care                           medicine  1
## 2491                     beginner                            workout  1
## 2492                           ed                           junttila  1
## 2493                    beautiful                            weather  1
## 2494                         2025                                 06  1
## 2495                         2025                                 05  1
## 2496                            3                             boston  1
## 2497          accessorieseveryone                               fell  1
## 2498                           15                            minutes  1
## 2499                       toilet                              paper  1
## 2500                         mine                            started  1
## 2501                         thnx                               1476  1
## 2502                         2026                                 01  1
## 2503                            8                               nike  1
## 2504                        isn’t                           supposed  1
## 2505                        sweet                               1013  1
## 2506                           ew                                421  1
## 2507                          app                               i’ve  1
## 2508                    installed                              13.49  1
## 2509                            ü                               2420  1
## 2510                        black                               2367  1
## 2511                         cool                                imo  1
## 2512                          469                                gif  1
## 2513                           1s                              4.394  1
## 2514                          354                           michelle  1
## 2515                      flights                              4.252  1
## 2516                            4                                 sb  1
## 2517                         zion                                  2  1
## 2518                            1                                am1  1
## 2519                         1000                                556  1
## 2520                          270                             adidas  1
## 2521                           95                                 ad  1
## 2522                           95                               it’s  1
## 2523                           95                             neon's  1
## 2524                           95                                 og  1
## 2525                           95                               pair  1
## 2526                           95                              retro  1
## 2527                      content                              4.229  1
## 2528                        crocs                                547  1
## 2529                          day                            release  1
## 2530                           dn                                wtr  1
## 2531                        excee                              intro  1
## 2532                  fantaposite                             triple  1
## 2533                       greedy                                3.0  1
## 2534                      jordans                              dunks  1
## 2535                            5                                air  1
## 2536                        shoes                          depending  1
## 2537                        feels                          forgiving  1
## 2538                        4.243                                243  1
## 2539                           gp                                  2  1
## 2540                          jet                               mids  1
## 2541                          vis                              model  1
## 2542                            3                                 hr  1
## 2543                            1                               imma  1
## 2544                  competition                        mindfulness  1
## 2545                        todas                                las  1
## 2546                     terminar                                 el  1
## 2547                         nike                                air  1
## 2548                         tips                               para  1
## 2549                       series                                  7  1
## 2550                   absolutely                              blown  1
## 2551                           48                               love  1
## 2552                        short                           distance  1
## 2553                         haha                               yeah  1
## 2554                     calories                                ect  1
## 2555                           og                                top  1
## 2556                         2025                                 05  1
## 2557                         2025                                 12  1
## 2558                     strength                               yoga  1
## 2559                    recommend                              comfy  1
## 2560                        super                               easy  1
## 2561                         huge                            variety  1
## 2562                         jake                             cheers  1
## 2563                         soft                               warm  1
## 2564                        store                                 75  1
## 2565                        can’t                               live  1
## 2566                           12                               amid  1
## 2567                            5                            mohamed  1
## 2568                           10                               emea  1
## 2569                     player’s                               logo  1
## 2570                      medical                        association  1
## 2571                          app                               it’s  1
## 2572                      conhece                                não  1
## 2573                          816                             forest  1
## 2574                          852                              green  1
## 2575                        white                            2fwhite  1
## 2576                      athlete                              nikes  1
## 2577                            1                                 ua  1
## 2578                    turquoise                                825  1
## 2579                          air                                max  1
## 2580                         1640                               1641  1
## 2581                          292                                 yo  1
## 2582                    bloomberg                                  4  1
## 2583                     oriented                         challenges  1
## 2584                       google                                 tv  1
## 2585                         2025                                 01  1
## 2586                            6                              pairs  1
## 2587                          job                               cuts  1
## 2588                          90m                      restructuring  1
## 2589                   transition                                 ua  1
## 2590                        store                         reopenings  1
## 2591                         2025                                 10  1
## 2592                       logins                               i’ve  1
## 2593                            1                               2026  1
## 2594                     corredor                          solitario  1
## 2595                         2025                                 04  1
## 2596                         2025                                 02  1
## 2597                         2024                                 10  1
## 2598                         2024                                 10  1
## 2599                         2024                                 03  1
## 2600                         2023                                 10  1
## 2601                          478                               2023  1
## 2602                           ui                            request  1
## 2603                           de                        assinaturas  1
## 2604                       fintes                                 la  1
## 2605                      doesn’t                              count  1
## 2606                   aplicación                               para  1
## 2607                       adidas                                 es  1
## 2608                   formidable                               dios  1
## 2609                          muy                           completa  1
## 2610                          una                         aplicación  1
## 2611                         bien                           diseñada  1
## 2612                     completa                                 es  1
## 2613                           de                               unos  1
## 2614                          dos                               años  1
## 2615                           su                           problema  1
## 2616                           de                               bugs  1
## 2617                         lost                            running  1
## 2618                    excelente                               para  1
## 2619               entrenamientos                         personales  1
## 2620                         2025                                 09  1
## 2621                         2025                                 08  1
## 2622                         2025                                 06  1
## 2623                         2025                                 05  1
## 2624                         2025                                 05  1
## 2625                         2026                                 02  1
## 2626                         2025                                 02  1
## 2627                         2025                                 02  1
## 2628                         2025                                 02  1
## 2629                         2025                                 02  1
## 2630                         2025                                 01  1
## 2631                         2025                                 01  1
## 2632                         2025                                 01  1
## 2633                         2025                                 01  1
## 2634                         2025                                 01  1
## 2635                         2026                                 02  1
## 2636                         2024                                 11  1
## 2637                         2024                                 11  1
## 2638                         2024                                 03  1
## 2639                         2024                                 02  1
## 2640                         2026                                 01  1
## 2641                         2026                                 01  1
## 2642                         2025                                 12  1
## 2643                           de                             romper  1
## 2644                          250                               2025  1
## 2645                          376                               2024  1
## 2646                         nice                                 ui  1
## 2647                       double                           counting  1
## 2648                          app                             highly  1
## 2649                         free                                app  1
## 2650                 subscription                            billing  1
## 2651                       burned                               love  1
## 2652                        close                              don’t  1
## 2653                        login                              can’t  1
## 2654                         stay                               free  1
## 2655                        check                               2218  1
## 2656                          385                               2024  1
## 2657                        won’t                               play  1
## 2658                          app                            stopped  1
## 2659                            2                                  1  1
## 2660                   constantly                           unusable  1
## 2661                         i’ve                          offloaded  1
## 2662                         love                                ntc  1
## 2663                       adidas                                 la  1
## 2664                      corrida                               você  1
## 2665                         esta                               isla  1
## 2666                    developer                               i’ve  1
## 2667                      quality                            started  1
## 2668                         it’s                         impossible  1
## 2669                        wrong                           tracking  1
## 2670                        count                            mileage  1
## 2671                         load                                 88  1
## 2672                          app                          eficiente  1
## 2673                         data                              saver  1
## 2674                     solution                                364  1
## 2675                      runners                            running  1
## 2676                      saludos                          excelente  1
## 2677                     terribly                               told  1
## 2678                  recommended                               life  1
## 2679                   consistent                             tracks  1
## 2680                   incredibly                          effective  1
## 2681                      walking                                  5  1
## 2682                        found                           multiple  1
## 2683                      workout                              plans  1
## 2684                   aplicación                                más  1
## 2685                        mejor                                app  1
## 2686                     unusable                             you’re  1
## 2687                           28                               2025  1
## 2688                     creative                           features  1
## 2689                   monitorear                                 la  1
## 2690                      running                                 la  1
## 2691                          app                                add  1
## 2692                      reduced                           distance  1
## 2693                        watch                                 os  1
## 2694                        daily                             weekly  1
## 2695                      buttons                             people  1
## 2696                       adding                         fractional  1
## 2697                         page                              sends  1
## 2698                      reviews                             hentet  1
## 2699                      anymore                               i’ve  1
## 2700                            2                              hours  1
## 2701                           da                              todos  1
## 2702                          app                               icon  1
## 2703                     workouts                              won’t  1
## 2704                         load                            anymore  1
## 2705                         stop                           crashing  1
## 2706                        track                              miles  1
## 2707                          run                               club  1
## 2708                          159                               2025  1
## 2709                          app                              don’t  1
## 2710                          app                          receiving  1
## 2711                       health                           properly  1
## 2712                      couldnt                             locate  1
## 2713                      version                                  1  1
## 2714                          323                               2024  1
## 2715                            8                                idk  1
## 2716                   compatible                                gps  1
## 2717                   connection                         connection  1
## 2718                      doesn’t                               sync  1
## 2719                 notification                        disappeared  1
## 2720                  reinstalled                                ntc  1
## 2721                           se                            version  1
## 2722                          app                            workout  1
## 2723                           في                            التطبيق  1
## 2724                        abdul                             jaafar  1
## 2725                      healthy                             habits  1
## 2726                         2025                                 08  1
## 2727                         2025                                 07  1
## 2728                         2025                                 02  1
## 2729                       charge                            upwards  1
## 2730                        apple                            fitness  1
## 2731                        sport                           specific  1
## 2732                         2023                                 10  1
## 2733                       shines                           offering  1
## 2734                          mis                          l’adresse  1
## 2735                          tus                          caminatas  1
## 2736                   constantly                               ahem  1
## 2737                        isn’t                            perfect  1
## 2738                          pro                                  2  1
## 2739                          toe                                box  1
## 2740                    operating                             income  1
## 2741                           70                                90m  1
## 2742                          ceo                         transition  1
## 2743                       phased                              store  1
## 2744                        store                            reviews  1
## 2745                         431m                                net  1
## 2746                           ua                                 27  1
## 2747                       patrik                              frisk  1
## 2748                        plank                           december  1
## 2749                         2025                      restructuring  1
## 2750                      running                               shoe  1
## 2751                         gear                              shirt  1
## 2752                         john                           varvatos  1
## 2753                           ua                            rewards  1
## 2754                           70                                90m  1
## 2755                         ucla                        sponsorship  1
## 2756                         crop                           leggings  1
## 2757                       income                             surges  1
## 2758                        don’t                            account  1
## 2759                            9                            million  1
## 2760                   innovation                         relentless  1
## 2761                           41                            revenue  1
## 2762                       fy2026                            revenue  1
## 2763                       fy2026                            revenue  1
## 2764                      revenue                              falls  1
## 2765                      revenue                              grows  1
## 2766                         data                              total  1
## 2767                       fourth                            quarter  1
## 2768                           q1                             fy2026  1
## 2769                         plan                              costs  1
## 2770                     partners                            writing  1
## 2771                 myfitnesspal                                app  1
## 2772                           ua                                 26  1
## 2773                         mask                                 ua  1
## 2774                        drops                                 12  1
## 2775                      plunges                                 23  1
## 2776                        woven                             shorts  1
## 2777                        drive                                 ua  1
## 2778                        boxer                             briefs  1
## 2779                      charged                              surge  1
## 2780                       fy2026                            outlook  1
## 2781                      chicago                            fashion  1
## 2782                        china                              covid  1
## 2783                     comments                              man's  1
## 2784                        temas                              desde  1
## 2785                        barry                            sanders  1
## 2786                         1472                          permitted  1
## 2787                    massively                            reduced  1
## 2788                          484                                485  1
## 2789                        trail                               sand  1
## 2790                         hoje                                 em  1
## 2791                            1                           downtown  1
## 2792                         2003                             corney  1
## 2793                           ua                                 16  1
## 2794                         flow                               foam  1
## 2795                         2024                                 10  1
## 2796                     teamnike                     justfreshkicks  1
## 2797                      amazing                           athletes  1
## 2798                         crvg                         serenocrvg  1
## 2799                         2024                                 11  1
## 2800                    atividade                             adidas  1
## 2801                          des                             heures  1
## 2802                      consign                                  6  1
## 2803                notifications                         alternated  1
## 2804                         nike                             begins  1
## 2805                         nike                          announces  1
## 2806                         nike                              makes  1
## 2807                         nike                          announces  1
## 2808                       thongs                                  3  1
## 2809                         star                            garbage  1
## 2810                      memphis                               2003  1
## 2811                     criminal                                977  1
## 2812                         sync                               nope  1
## 2813                    cualquier                          actividad  1
## 2814                         dias                         kilómetros  1
## 2815                          fit                             person  1
## 2816                     calories                             burned  1
## 2817                       issues                                463  1
## 2818                       kidney                            failure  1
## 2819                     counting                           workouts  1
## 2820                    l’adresse                               mail  1
## 2821                      deleted                                200  1
## 2822                         2024                                 12  1
## 2823                          bad                                app  1
## 2824                         2017                               2019  1
## 2825                    excellent                               data  1
## 2826                       highly                        recommended  1
## 2827                         it’s                            perfect  1
## 2828                       review                              gonna  1
## 2829                          app                            awesome  1
## 2830              congratulations                               2314  1
## 2831                         shoe                              4.358  1
## 2832                     friendly                         gooperfect  1
## 2833                     software                             people  1
## 2834                        fakat                               nike  1
## 2835                          las                        deportistas  1
## 2836                         yeah                        appreciated  1
## 2837                         1060                                 80  1
## 2838                           mi                              amigo  1
## 2839                        ankle                              socks  1
## 2840                     gigantic                             fumble  1
## 2841                            2                         crustacean  1
## 2842                       campus                               sean  1
## 2843                          183                             landed  1
## 2844                         1854                               1855  1
## 2845                      billing                               love  1
## 2846                          tnx                                bro  1
## 2847                         boot                              links  1
## 2848                            2                                  2  1
## 2849          accessorieseveryone                          excellent  1
## 2850                        white                               pair  1
## 2851                       ground                         globaldata  1
## 2852                    freshfoam                                680  1
## 2853                         bruv                                 26  1
## 2854                        4.255                                255  1
## 2855                         2024                                 11  1
## 2856                         nike                               paid  1
## 2857                       adidas                                 11  1
## 2858                       scally                               chav  1
## 2859                         lmao                           negative  1
## 2860                          day                                  4  1
## 2861                         1689                                yep  1
## 2862                        covid                         disruption  1
## 2863                    tracksuit                            wearing  1
## 2864                        sport                              shoes  1
## 2865                       modaes                             global  1
## 2866                          mmr                                app  1
## 2867                          app                            metrics  1
## 2868                    exercises                             weight  1
## 2869                         crew                              socks  1
## 2870                            3                                  4  1
## 2871                     investor                          relations  1
## 2872                         2209                              skate  1
## 2873                        4.393                                393  1
## 2874                     athletes                              lucas  1
## 2875                   crustacean                               feet  1
## 2876                      deleted                                app  1
## 2877                         1864                             wattba  1
## 2878                   duraklatma                           özelliği  1
## 2879                       paralı                             adidas  1
## 2880                           13                             sooooo  1
## 2881                          xlg                              samba  1
## 2882                      perfect                               hike  1
## 2883                        shoes                               1441  1
## 2884                         2024                                 11  1
## 2885                        mismo                             trotar  1
## 2886                          403                               2024  1
## 2887                    reversing                                dtc  1
## 2888                         1451                               nice  1
## 2889                         2024                                 11  1
## 2890                          100                              todas  1
## 2891                   diferentes                             causas  1
## 2892                         feel                             stupid  1
## 2893                           31                               2026  1
## 2894                         kg’s                               burn  1
## 2895                           mi                              reloj  1
## 2896                            5                          estrellas  1
## 2897                   aplicación                                app  1
## 2898                       rutina                                 de  1
## 2899                          576                               nike  1
## 2900                     research                         laboratory  1
## 2901                      buyback                            program  1
## 2902                      analyst                           concerns  1
## 2903                         2024                                 09  1
## 2904                dipmasterflex                      realdipmaster  1
## 2905                        dunks                        versatility  1
## 2906                         2230                               2231  1
## 2907                          lol                              4.309  1
## 2908                        white                              laces  1
## 2909                         nike                                air  1
## 2910                       adidas                              stock  1
## 2911                         fire                                127  1
## 2912                      jealous                               fill  1
## 2913                         1923                                 1s  1
## 2914                        black                               2344  1
## 2915                         sail                               2347  1
## 2916                         chef                               2358  1
## 2917                        black                               2360  1
## 2918                        black                               2361  1
## 2919                        black                               2368  1
## 2920                          amp                              color  1
## 2921                        white                                292  1
## 2922                       adidas                                 38  1
## 2923                         1009                                 70  1
## 2924                         2377                               pine  1
## 2925                      colored                                 4s  1
## 2926                        4.259                                259  1
## 2927                      premium                                 93  1
## 2928                      running                                app  1
## 2929                        coord                             adidas  1
## 2930                           1s                                  1  1
## 2931                     flyknits                                744  1
## 2932                      culture                            vulture  1
## 2933                      control                                628  1
## 2934                         2025                                 01  1
## 2935                          132                               2025  1
## 2936                        space                                 41  1
## 2937                        space                               it’s  1
## 2938                         1273                               nope  1
## 2939                          amp                          detergent  1
## 2940                          181                               2025  1
## 2941                        reign                                  6  1
## 2942                          blk                              laces  1
## 2943                       deeply                               cuts  1
## 2944                            3                          bloodbath  1
## 2945                       issues                               i’ve  1
## 2946                        light                          chocolate  1
## 2947                         1551                               1552  1
## 2948                        elite                            athlete  1
## 2949                        gonna                                cop  1
## 2950                        olive                               pink  1
## 2951                         blue                             leches  1
## 2952                       filing                               june  1
## 2953                         1589                              reach  1
## 2954                      machine                               days  1
## 2955                       mental                           strength  1
## 2956                        solid                           workouts  1
## 2957                           39                           champion  1
## 2958                  jameshoang7                            garbage  1
## 2959                         2026                                 01  1
## 2960                         اهتم                                 في  1
## 2961                          403                                404  1
## 2962                automatically                           populate  1
## 2963                         nike                              dunks  1
## 2964                          net                               loss  1
## 2965                       adidas                                 22  1
## 2966                          evo                                  2  1
## 2967                        shoes               16adimltrbstmblkwrnn  1
## 2968                realdipmaster                               nike  1
## 2969                       1850km                              570km  1
## 2970                          evo                                 sl  1
## 2971                          584                               hard  1
## 2972                         1141                               nike  1
## 2973                      pegasus                                 39  1
## 2974                       length                              socks  1
## 2975                        socks                           straight  1
## 2976                            4                             months  1
## 2977                          usd                                 rn  1
## 2978                       reebok                               sale  1
## 2979                          hit                                6ft  1
## 2980                         2025                                 10  1
## 2981                           31                              saved  1
## 2982                       videos                               4.77  1
## 2983                     shoelace                               tips  1
## 2984                         temu                            edition  1
## 2985                        shoes                               aren  1
## 2986                        feels                             narrow  1
## 2987                        shoes                               cost  1
## 2988                         team                              shirt  1
## 2989                         2024                                 03  1
## 2990                          app                               i’ve  1
## 2991                         1430                               fuck  1
## 2992                    signature                               shoe  1
## 2993                        color                               true  1
## 2994                     location                             canada  1
## 2995                     colorway                               1868  1
## 2996                         trap                              house  1
## 2997                      removed                                684  1
## 2998                        mowab                                819  1
## 2999                          gif                              giphy  1
## 3000                        video                              buddy  1
## 3001                         2024                                 08  1
## 3002                        4.209                                209  1
## 3003                        don’t                           download  1
## 3004                         save                              won’t  1
## 3005                      running                               shoe  1
## 3006                      interim                                ceo  1
## 3007                     catalogs                          including  1
## 3008                            2                               game  1
## 3009                         jake                           question  1
## 3010                      parasız                             olması  1
## 3011                          213                            perfect  1
## 3012                        4.197                                197  1
## 3013                         foam                         restocking  1
## 3014                        4.160                                160  1
## 3015                        4.174                                174  1
## 3016                         4.28                                 28  1
## 3017                        lungs                           enclosed  1
## 3018                          cuz                                ppl  1
## 3019                          day                               1656  1
## 3020                   unreliable                                app  1
## 3021                         para                             correr  1
## 3022                         pero                                 de  1
## 3023                        acabo                                 de  1
## 3024                           te                              ayuda  1
## 3025                           de                           terminar  1
## 3026                         2024                                 07  1
## 3027                      running                                app  1
## 3028                      doesn’t                               load  1
## 3029                        boots                              4.205  1
## 3030                          100                              bears  1
## 3031                         2023                                 10  1
## 3032                         sean                        wotherspoon  1
## 3033                   mismatched                              sizes  1
## 3034                          app                                 te  1
## 3035                            2                               nike  1
## 3036                         july                                  4  1
## 3037                       strong                               yall  1
## 3038                          hub                                  1  1
## 3039                           32                               2026  1
## 3040                          439                               2024  1
## 3041                       killer                              price  1
## 3042                          nah                               2317  1
## 3043                         2024                                 12  1
## 3044                         hell                                nah  1
## 3045                        white                                air  1
## 3046                       bright                               blue  1
## 3047                        white                              socks  1
## 3048                        tiger                                i.e  1
## 3049                         shit                               cool  1
## 3050                         nike                         sportswear  1
## 3051                   sportswear                             puffle  1
## 3052                          más                              night  1
## 3053                         2185                               cake  1
## 3054                    correctly                           measured  1
## 3055                        crocs                            classic  1
## 3056                      lateral                            squates  1
## 3057                         4.39                                 39  1
## 3058                         nike                                acg  1
## 3059                         grey                               volt  1
## 3060                        4.347                                347  1
## 3061                    excelente                                app  1
## 3062                       cheers                            patrick  1
## 3063                       correo                        electrónico  1
## 3064                         nada                                muy  1
## 3065                        don’t                             assist  1
## 3066                      related                        accessories  1
## 3067                       millas                              entre  1
## 3068                   aplicación                               para  1
## 3069                  wotherspoon                            gezelle  1
## 3070                      edition                                lol  1
## 3071                          day                                  1  1
## 3072                         pair                              4.265  1
## 3073                     customer                            support  1
## 3074                          i’m                                 15  1
## 3075                        can’t                           register  1
## 3076                       select                               shoe  1
## 3077                         it’s                            primary  1
## 3078                      account                               it’s  1
## 3079                      adiclub                              level  1
## 3080                        can’t                            recover  1
## 3081                         free                            forever  1
## 3082                         dope                           colorway  1
## 3083                      wearing                              chavs  1
## 3084                   volleyball                    texasvolleyball  1
## 3085                           83                             factor  1
## 3086                        buena                         aplicación  1
## 3087                         yoga                           mobility  1
## 3088                       emptor                               1254  1
## 3089                          psc                                351  1
## 3090                         hmmm                              makes  1
## 3091                       jacked                                  ª  1
## 3092                          tax                          valuation  1
## 3093                        4.360                                360  1
## 3094                       appeal                              4.362  1
## 3095                          401                               2024  1
## 3096                         1254                               burn  1
## 3097                          pas                                 la  1
## 3098                    financial                              times  1
## 3099                         runs                              crazy  1
## 3100                     symptoms                            include  1
## 3101                     football                               fans  1
## 3102                       gulden                             adidas  1
## 3103                        covid                                 19  1
## 3104                        holds                           townhall  1
## 3105                     declares                           majority  1
## 3106                      donahoe                             admits  1
## 3107                      donahoe                              tells  1
## 3108                        frisk                           abruptly  1
## 3109                        cites                              signs  1
## 3110                     december                            quarter  1
## 3111                         john                            donahoe  1
## 3112                         slow                           recovery  1
## 3113                           ua                                 18  1
## 3114                           ua                                 37  1
## 3115                         gold                              rings  1
## 3116                         2024                                 11  1
## 3117                           mi                                 ha  1
## 3118                          muy                               bien  1
## 3119                  aggravating                                pop  1
## 3120                         2025                                 05  1
## 3121                    nutrition                             advice  1
## 3122                         unit                              4.243  1
## 3123                          164                           colorway  1
## 3124                    téléphone                         d’androïde  1
## 3125                           58                            finally  1
## 3126                       offers                            amazing  1
## 3127                         2024                                 12  1
## 3128                    companion                             adidas  1
## 3129                       retail                                  3  1
## 3130                       shirts                              plain  1
## 3131                           ua                                 24  1
## 3132                            4                           sneakers  1
## 3133                  santoscharm                               nike  1
## 3134                    chatshirt                               nike  1
## 3135                       adidas                                bad  1
## 3136                         fait                                 le  1
## 3137                        sonic                       toothbrushes  1
## 3138                         nike                                dri  1
## 3139              www.aceoffs.com                             adidas  1
## 3140                      rubbing                             inside  1
## 3141                         dash                              check  1
## 3142                         flea                             market  1
## 3143                         2218                               flea  1
## 3144                     marathon                              check  1
## 3145                     training                              check  1
## 3146                         runs                              check  1
## 3147                          lol                               fuck  1
## 3148                       emails                             folder  1
## 3149                       agreed                               1145  1
## 3150                       malaga                              apple  1
## 3151                        black                               2359  1
## 3152                         bugs                             adidas  1
## 3153                athletevanity                               nike  1
## 3154                         rate                              strap  1
## 3155                     tomorrow                               love  1
## 3156                        clown                               shoe  1
## 3157                          lol                                635  1
## 3158                        suede                              olive  1
## 3159                         vale                               mais  1
## 3160                         days                               love  1
## 3161                       lmfaoo                               1224  1
## 3162                         2025                                 01  1
## 3163                        sales                             plunge  1
## 3164                        drops                                 35  1
## 3165                         fall                                 15  1
## 3166                  disappeared                              can’t  1
## 3167                         2025                                 09  1
## 3168                         2024                                 10  1
## 3169                        shirt                          chatshirt  1
## 3170                         2304                               2305  1
## 3171                       rondon                     usasupersoccer  1
## 3172                       decent                                app  1
## 3173                        black                            bottoms  1
## 3174                         tuff                                938  1
## 3175                          icl                               1472  1
## 3176                         nice                               goal  1
## 3177                         data                           starting  1
## 3178                        fakes                                709  1
## 3179                          ceo                             kasper  1
## 3180                         1036                               haha  1
## 3181                        sells                             reebok  1
## 3182                      reuters                               june  1
## 3183                   hede’wachi                          readiness  1
## 3184                         2025                                 01  1
## 3185                           73                               2025  1
## 3186                        store                            reviews  1
## 3187                   absolutely                               free  1
## 3188                     wellness                          impresses  1
## 3189                     aerobill                                cap  1
## 3190                        metal                               logo  1
## 3191                       swoosh                                cap  1
## 3192                          274                               2025  1
## 3193                            9                               nike  1
## 3194                      workout                         personally  1
## 3195                         2025                                 08  1
## 3196                         2024                                 11  1
## 3197                         2025                                 11  1
## 3198                         2024                                 07  1
## 3199                   validation                               sans  1
## 3200                          hot                             coffee  1
## 3201                        named                            interim  1
## 3202                        dunks                                 sb  1
## 3203                           03                                 16  1
## 3204                         it’s                          basically  1
## 3205                          ima                               risk  1
## 3206                  tinyurl.com                           45yj9vh7  1
## 3207                    exclusive                             access  1
## 3208                            1                                zna  1
## 3209                      removed                               2140  1
## 3210                       2fgrey                                amp  1
## 3211                         1087                                 gt  1
## 3212                      2fwhite                            2fwhite  1
## 3213                         fair                               nuff  1
## 3214                     military                               blue  1
## 3215                        green                                bro  1
## 3216                       target                                100  1
## 3217                    ejercicio                                 de  1
## 3218                          230                             pretty  1
## 3219                         1876                               1877  1
## 3220                           27                            walking  1
## 3221                        style                                air  1
## 3222                          162                               paid  1
## 3223                          262                              white  1
## 3224                         4.92                                 92  1
## 3225                         ua’s                           heatgear  1
## 3226                          af1                              4.368  1
## 3227                          fit                   stylishly.highly  1
## 3228                     distance                             casual  1
## 3229                          gif                              giphy  1
## 3230                        ahead                                699  1
## 3231                      fashion                            nokmust  1
## 3232                         2025                                 10  1
## 3233                         2025                                 08  1
## 3234                        grown                                ass  1
## 3235                        posts                                100  1
## 3236                         2026                                 03  1
## 3237                          ceo                            extends  1
## 3238                     subpoena                              mario  1
## 3239                          375                       slaughtering  1
## 3240                         foam                            runners  1
## 3241                      laundry                          detergent  1
## 3242                  practically                          identical  1
## 3243                           29                               nike  1
## 3244                    artículos                                con  1
## 3245                      running                               apps  1
## 3246                       drives                         motivation  1
## 3247                         2026                                  1  1
## 3248                         2025                                 06  1
## 3249                    excelente                         iniciativa  1
## 3250                    controlar                                 el  1
## 3251                          416                               2024  1
## 3252                          350                               2024  1
## 3253                     stitched                                 45  1
## 3254                          app                             simply  1
## 3255                       decent                               free  1
## 3256              complexsneakers                             coming  1
## 3257                        tasks                               easy  1
## 3258                          247                               2025  1
## 3259                         goal                           oriented  1
## 3260                      toolkit                                ntc  1
## 3261                         2024                                 01  1
## 3262                        feels                            tighter  1
## 3263                      amazing                              color  1
## 3264                        avoir                                mis  1
## 3265                     problema                                315  1
## 3266                        desde                       alimentación  1
## 3267                       vistas                          preciosas  1
## 3268                           de                             tierra  1
## 3269                          gif                              giphy  1
## 3270                        apple                              watch  1
## 3271                           45                             pretty  1
## 3272                          gif                              giphy  1
## 3273                      esquece                             jamais  1
## 3274                          463                               2023  1
## 3275                      cleared                              cache  1
## 3276                          con                              temas  1
## 3277                      endless                             videos  1
## 3278                    defective                                app  1
## 3279                      peloton                               tons  1
## 3280                        apple                              watch  1
## 3281                          acg                               sock  1
## 3282                 acceleration                           strategy  1
## 3283                         hits                               604m  1
## 3284                       surges                               wall  1
## 3285                      finance                                  8  1
## 3286                      support                                i’m  1
## 3287                    regularly                              price  1
## 3288                    stitching                            branded  1
## 3289                          336                               2024  1
## 3290                           tu                             rutina  1
## 3291                       avance                                 de  1
## 3292                     distance                        measurement  1
## 3293                     jordan's                             banned  1
## 3294                       browne                              named  1
## 3295                       rstill                              gonna  1
## 3296                         film                            related  1
## 3297                         1159                               nike  1
## 3298                         déçu                                  à  1
## 3299                        grays                                128  1
## 3300                       design                               nice  1
## 3301                      leather                             jacket  1
## 3302                         nike                              store  1
## 3303                            ª                                  ý  1
## 3304                        4.132                                132  1
## 3305                       retail                            finally  1
## 3306                       adidas                                 59  1
## 3307                         2004                                 15  1
## 3308                       adidas                              posts  1
## 3309                        jesus                              walks  1
## 3310                            2                                add  1
## 3311                         2024                                 01  1
## 3312                       cambié                                 de  1
## 3313                           en                                 70  1
## 3314                          día                                día  1
## 3315                          amp                               sand  1
## 3316                         2025                                 06  1
## 3317                         amid                              covid  1
## 3318                         plan                              nears  1
## 3319                        plain                              style  1
## 3320                       adidas                              china  1
## 3321                         1336                             bleach  1
## 3322                          gps                           verified  1
## 3323                          obv                              fakes  1
## 3324                   inaccurate                           distance  1
## 3325                          ago                              weird  1
## 3326                       jordan                           releases  1
## 3327                           80                             yessir  1
## 3328                           le                            travail  1
## 3329                       closes                           majority  1
## 3330                       forces                              store  1
## 3331                           ua                                 34  1
## 3332                      balance                              sheet  1
## 3333                       absurd                               1403  1
## 3334                     congrats                               2009  1
## 3335                         2025                                 02  1
## 3336                      stopped                           tracking  1
## 3337                            1                                 25  1
## 3338                         2023                                 12  1
## 3339                         2052                               nike  1
## 3340                        black                               2353  1
## 3341                        black                               2373  1
## 3342                   aplicación                                 es  1
## 3343                         1107                               oohh  1
## 3344                         2024                                 11  1
## 3345        sweatshirthoodiewomen                           insanely  1
## 3346                         nike                           everyday  1
## 3347                       canada                                105  1
## 3348                       planks                               calf  1
## 3349                    problemas                              tengo  1
## 3350                   revolution                            charles  1
## 3351                      awesome                              shoes  1
## 3352                            3                               fake  1
## 3353                         nike                     underestimated  1
## 3354                      espalda                                284  1
## 3355                       física                             además  1
## 3356                          era                            micoach  1
## 3357                         solo                            faltaba  1
## 3358                    challenge                               para  1
## 3359                        basis                               nike  1
## 3360                          day                            version  1
## 3361                       people                           shouldnt  1
## 3362                          day                               shoe  1
## 3363                    community                              views  1
## 3364                      flowtro                              video  1
## 3365                           ua                                 32  1
## 3366                           ua                                  4  1
## 3367                        stack                             height  1
## 3368                        4.364                                364  1
## 3369                         book                                  1  1
## 3370                           1s                                403  1
## 3371                      focused                      organizations  1
## 3372                       wasn’t                            helpful  1
## 3373                   constantly                            telling  1
## 3374                         rate                              zones  1
## 3375                        4.306                                306  1
## 3376                          yep                                915  1
## 3377                      forward                               1734  1
## 3378                        teams                             losing  1
## 3379                        nears                         completion  1
## 3380                     partners                           business  1
## 3381                           su                              nivel  1
## 3382                     activity                            there’s  1
## 3383                          amp                              field  1
## 3384                           os                           anúncios  1
## 3385                    cristiano                              daros  1
## 3386                         size                                 11  1
## 3387                      running                             biking  1
## 3388                        goals                                401  1
## 3389                        black                             friday  1
## 3390                         tool                                191  1
## 3391                         2010                                145  1
## 3392                        girls                              gotta  1
## 3393                        theme                                app  1
## 3394                        green                               1786  1
## 3395                       custom                             timers  1
## 3396                         200m                               dash  1
## 3397                         half                           marathon  1
## 3398                     training                       discontinued  1
## 3399                       strava                               sync  1
## 3400                          app                           settings  1
## 3401                        issue                      uncomfortable  1
## 3402                            3                              miles  1
## 3403                        posts                                 39  1
## 3404                        posts                                 71  1
## 3405                         2024                                 11  1
## 3406                            1                                 25  1
## 3407                            1                                 25  1
## 3408                     practice                             fields  1
## 3409                     downtown                            phoenix  1
## 3410                          mph                               love  1
## 3411                         2025                                 02  1
## 3412                         2025                                 01  1
## 3413                         2024                                 12  1
## 3414                         2024                                 11  1
## 3415                         2024                                 01  1
## 3416                         2023                                 10  1
## 3417                         2025                                 11  1
## 3418                         list                                  4  1
## 3419                         1861                               nice  1
## 3420                       street                            journal  1
## 3421                           nb                            saucony  1
## 3422                          bro                               move  1
## 3423                        weird                         deviations  1
## 3424                     training                               club  1
## 3425                          muy                             fresco  1
## 3426                         años                               pero  1
## 3427                           es                                una  1
## 3428                           la                         aplicación  1
## 3429                         para                                 mí  1
## 3430                   atrapalham                                até  1
## 3431                       adidas                            running  1
## 3432                         você                              ganha  1
## 3433                    actividad                             física  1
## 3434                       causas                                 im  1
## 3435                           en                             cuanto  1
## 3436                          284                               2025  1
## 3437                         isla                                iba  1
## 3438                        tonar                                 se  1
## 3439                           la                             verdad  1
## 3440                        apoyo                                 en  1
## 3441                           el                          recorrido  1
## 3442                         pone                                por  1
## 3443                     parabéns                             adidas  1
## 3444                        estou                             amando  1
## 3445                          hoy                          caminamos  1
## 3446                           mi                             récord  1
## 3447                           la                             semana  1
## 3448                         ruta                                run  1
## 3449                       rutina                                 de  1
## 3450                   d’androïde                                  à  1
## 3451                        meses                               para  1
## 3452                         sans                             succès  1
## 3453                      springy                               1511  1
## 3454                           im                            jealous  1
## 3455                          423                               2024  1
## 3456                          fun                           accurate  1
## 3457                     accurate                               easy  1
## 3458                         2012                              aaron  1
## 3459                         nike                              stock  1
## 3460                         2324                              alert  1
## 3461                            5                           adjusted  1
## 3462                         amid                               weak  1
## 3463                      mohamed                                 el  1
## 3464               sustainability                              teams  1
## 3465                      running                                app  1
## 3466                           ua                                 30  1
## 3467                    valuation                          allowance  1
## 3468                      tonight                               6.12  1
## 3469                           li                               ning  1
## 3470                           mi                              apple  1
## 3471                       marcar                                 el  1
## 3472                       fechas                            running  1
## 3473                           al                             querer  1
## 3474                        fecha                                 de  1
## 3475                     terrible                               move  1
## 3476                           26                                 25  1
## 3477                     progress                               hate  1
## 3478                      company                              don’t  1
## 3479                          ppl                              gonna  1
## 3480                          tho                               1429  1
## 3481                       adidas                                 33  1
## 3482                        4.253                                253  1
## 3483                         cuál                                sea  1
## 3484                       lonely                              angry  1
## 3485                         shoe                              sales  1
## 3486                   changement                                 de  1
## 3487                         pour                           recevoir  1
## 3488                      terminé                           borrando  1
## 3489                       cuando                               solo  1
## 3490                        hasta                               tips  1
## 3491                   stretching                             fuerza  1
## 3492                    colorways                                 22  1
## 3493                    metallics                               1563  1
## 3494                         este                           problema  1
## 3495                         2024                                 04  1
## 3496                    inventory                           donating  1
## 3497                      reports                              miles  1
## 3498                      sección                                 de  1
## 3499                        shoes                            podiums  1
## 3500                           tv                             amazon  1
## 3501                   impossível                                 só  1
## 3502                          add                               time  1
## 3503                       didn’t                             record  1
## 3504                         it’s                                gps  1
## 3505                       metcon                                fan  1
## 3506                         flip                                 ya  1
## 3507                        kinda                               hard  1
## 3508                      wearing                             soccer  1
## 3509                         2025                                 11  1
## 3510                      surpass                                 30  1
## 3511                      bendiga                            siempre  1
## 3512                         nike                              hates  1
## 3513                     strategy                            cutting  1
## 3514                         cnbc                               june  1
## 3515                        c’est                             énorme  1
## 3516                      sprayed                              mines  1
## 3517                        login                              can’t  1
## 3518                     annoying                                100  1
## 3519                         2024                                 01  1
## 3520                     tracking                              wrong  1
## 3521                     accurate                               easy  1
## 3522                         rico                                 es  1
## 3523                        linda                           regional  1
## 3524                         1010                                 80  1
## 3525                        pedro                             rondon  1
## 3526                    estrellas                               buen  1
## 3527                          los                     entrenamientos  1
## 3528                         2024                                 11  1
## 3529                         time                                ran  1
## 3530                         feed                           progress  1
## 3531                 toothbrushes                               lots  1
## 3532                         it’s                               nice  1
## 3533                          ect                             cheers  1
## 3534                         wear                               sl's  1
## 3535                        speed                              goals  1
## 3536                     properly                           measured  1
## 3537                     happened                                  3  1
## 3538                       actual                           distance  1
## 3539                          meh                              solid  1
## 3540                      outdoor                               walk  1
## 3541                          ran                               time  1
## 3542                    extremely                           accurate  1
## 3543                      running                              c’est  1
## 3544                         nike                               lays  1
## 3545                         nike                          struggles  1
## 3546                            3                               nike  1
## 3547                         2024                                 11  1
## 3548                           88                               2025  1
## 3549                       hiking                             routes  1
## 3550                         lmao                                4.3  1
## 3551                         4.15                                 15  1
## 3552                         shoe                              4.303  1
## 3553                        hikes                              trail  1
## 3554                        cento                       doisporcento  1
## 3555                         fans                        discovering  1
## 3556                        4.328                                328  1
## 3557                           de                            espalda  1
## 3558                     strategy                           missteps  1
## 3559                    employees                            layoffs  1
## 3560                      conocen                            motivan  1
## 3561                    technical                             issues  1
## 3562                          4.3                                  3  1
## 3563                        noice                               mine  1
## 3564                       fugazi                                215  1
## 3565                          285                               fire  1
## 3566                         1550                           military  1
## 3567                         1624                               1625  1
## 3568                           79                                usd  1
## 3569                          485                                486  1
## 3570                          506                              stock  1
## 3571                        watch                            battery  1
## 3572                         line                          shortcuts  1
## 3573                           星                                 善  1
## 3574                          adv                               club  1
## 3575                         club                         structured  1
## 3576                      pleated                             tennis  1
## 3577                       tennis                    dressdresswomen  1
## 3578                  encouraging                              users  1
## 3579                        bjorn                             gulden  1
## 3580                          mid                            workout  1
## 3581                         1297                           everyday  1
## 3582                       retail                                  3  1
## 3583                       retail                               dive  1
## 3584                        clean                               pair  1
## 3585                          air                               unit  1
## 3586                       jordan                                  2  1
## 3587                          35l                accessorieseveryone  1
## 3588                          241                                gif  1
## 3589                            2                              coats  1
## 3590                         1507                                air  1
## 3591 fieldtesting.underarmour.com                                 ua  1
## 3592                          ron                           burgundy  1
## 3593                      women's                              shoes  1
## 3594                         1822                              dunks  1
## 3595                      wearing                           majority  1
## 3596                     slightly                               wide  1
## 3597                       paralı                                 bu  1
## 3598                      primary                               care  1
## 3599                         2025                                 06  1
## 3600                        night                               mode  1
## 3601                          por                            existir  1
## 3602                        mejor                             aliada  1
## 3603                          mon                         changement  1
## 3604                          153                               yeah  1
## 3605                    earlfando                               nike  1
## 3606                         nice                            stripes  1
## 3607                         2019                                 ua  1
## 3608                     changing                           tracking  1
## 3609                      tracker                                app  1
## 3610                        shoes                         shoeswomen  1
## 3611                      patrick                             malaga  1
## 3612                          453                               2023  1
## 3613                       tokyos                           consumer  1
## 3614                   completely                            useless  1
## 3615                      running                           beginner  1
## 3616                       querer                           terminar  1
## 3617                        mario                             mdpc62  1
## 3618                       sadida                                 51  1
## 3619                           de                               esta  1
## 3620                           de                          cualquier  1
## 3621                       puerta                                 de  1
## 3622                       lluvia                               it’s  1
## 3623                entrenamiento                                 es  1
## 3624                        súper                              todas  1
## 3625                         nike                             church  1
## 3626                       retail                               cnbc  1
## 3627                     charcoal                               gray  1
## 3628                           de                             correo  1
## 3629                   motivation                        encouraging  1
## 3630                         2025                                 04  1
## 3631                       eleven                             eleven  1
## 3632                       eleven                               love  1
## 3633                       hookem                           teamnike  1
## 3634                    knowledge                               bruv  1
## 3635                         cool                             unique  1
## 3636                       retail                               dive  1
## 3637                      unveils                                win  1
## 3638                elvistorresjr                               nike  1
## 3639                          air                                max  1
## 3640                         holy                               shit  1
## 3641                          yea                                540  1
## 3642                            é                         impossível  1
## 3643                          282                                283  1
## 3644                        elvis                             torres  1
## 3645                         2025                                 01  1
## 3646                         2024                                 12  1
## 3647                         2026                                 01  1
## 3648                      profile                            trouble  1
## 3649                      collage                               logo  1
## 3650                          con                                 mi  1
## 3651                       modern                             retail  1
## 3652                   commission                               eeoc  1
## 3653                      minutos                                 es  1
## 3654                          bad                             screen  1
## 3655                          app                               para  1
## 3656                      segunda                             semana  1
## 3657                      opinion                                muy  1
## 3658                           mi                            antigua  1
## 3659                         para                          ayudarnos  1
## 3660                   aplicación                                 es  1
## 3661                          uso                              todos  1
## 3662                           da                              todos  1
## 3663                         2025                                 04  1
## 3664                        speed                           strength  1
## 3665                     football                               team  1
## 3666                     language                             region  1
## 3667                     delivery                              worst  1
## 3668                      running                                app  1
## 3669                        4.355                                355  1
## 3670                         info                         apparently  1
## 3671                      project                             series  1
## 3672                      condado                             puerta  1
## 3673                  simplemente                          excelente  1
## 3674                         2025                                 12  1
## 3675                        ultra                              turbo  1
## 3676                  opportunity                         commission  1
## 3677                         2025                                 02  1
## 3678                         size                             listed  1
## 3679                           de                             adidas  1
## 3680                        buena                         aplicación  1
## 3681                          msg                         downloaded  1
## 3682                          app                              acabo  1
## 3683                   iniciativa                               para  1
## 3684                         dios                                les  1
## 3685                        mejor                             opción  1
## 3686                           se                            detiene  1
## 3687                   referencia                               para  1
## 3688                     completa                            permite  1
## 3689                    excelente                              donde  1
## 3690                   aplicación                                muy  1
## 3691                         2025                                 01  1
## 3692                        dolor                            crónico  1
## 3693                        mejor                            terapia  1
## 3694                         warm                                ups  1
## 3695                           es                         formidable  1
## 3696                           es                                muy  1
## 3697                          por                                dos  1
## 3698                         tuvo                                 su  1
## 3699                          242                               2025  1
## 3700                          iba                           comenzar  1
## 3701                           de                        bendiciones  1
## 3702                         para                         monitorear  1
## 3703                          315                               2024  1
## 3704                        trash                                app  1
## 3705                        desde                               2011  1
## 3706                     programa                         unreliable  1
## 3707                           la                              mejor  1
## 3708                         4.53                                 53  1
## 3709                         user                           friendly  1
## 3710                       versus                           mapmyrun  1
## 3711                      running                              socks  1
## 3712                          evo                                 sl  1
## 3713                         4.46                                 46  1
## 3714                           sl                                  2  1
## 3715                       takumi                                sen  1
## 3716                     workouts                          performed  1
## 3717                            2                             months  1
## 3718                          ran                                run  1
## 3719                     disfruto                              mucho  1
## 3720                          não                                ser  1
## 3721                        level                                dad  1
## 3722                        buena                         aplicación  1
## 3723                      pratico                               lost  1
## 3724                           te                                 da  1
## 3725                          día                              bueno  1
## 3726                           mi                         referencia  1
## 3727                         para                          registrar  1
## 3728                     felicito                                por  1
## 3729                         todo                                 en  1
## 3730                         quem                               está  1
## 3731                  confortable                             served  1
## 3732                         para                                ver  1
## 3733                         2025                                 07  1
## 3734                      awesome                               free  1
## 3735                          app                               i’ve  1
## 3736                     tracking                               tool  1
## 3737                      keeping                          motivated  1
## 3738                         1982                                  á  1
## 3739                    excellent                           programs  1
## 3740                         shoe                           rotation  1
## 3741                        bucks                            overpay  1
## 3742                         2024                                 08  1
## 3743                           es                                 mi  1
## 3744                       hiking                            walking  1
## 3745                         2025                                 12  1
## 3746                           se                             membro  1
## 3747                        cheap                              socks  1
## 3748                      deleted                               2086  1
## 3749                         2024                                 11  1
## 3750                         june                                  3  1
## 3751                      revenue                                hit  1
## 3752                         dark                               mode  1
## 3753                          run                               club  1
## 3754                        super                             pricey  1
## 3755                         2025                                 12  1
## 3756                     workouts                           spanning  1
## 3757                uncomfortable                          mantality  1
## 3758                         2231                               damn  1
## 3759                         feet                               1212  1
## 3760                     mantener                                 el  1
## 3761                          357                               2024  1
## 3762                     features                           tracking  1
## 3763                     business                      professionals  1
## 3764                         4.79                                 79  1
## 3765                      reporte                            semanal  1
## 3766                         2292                                lol  1
## 3767                  trafdidrake                      lord_ashdrake  1
## 3768                      breaker                             내일도  1
## 3769                       adidas                              sells  1
## 3770                        steal                                 51  1
## 3771                      garbage                              mitus  1
## 3772                    continuer                                mon  1
## 3773                       decent                            support  1
## 3774                      coureur                              c’est  1
## 3775                         kolu                         uygulaması  1
## 3776                        fakes                                 77  1
## 3777                         shoe                                418  1
## 3778                         cool                                lol  1
## 3779                   dayummmmmm                               1950  1
## 3780                     releases                               kith  1
## 3781                         700m                               loss  1
## 3782                         emea                              grows  1
## 3783                         nike                              loves  1
## 3784                            ý                               1518  1
## 3785                         joke                               yoke  1
## 3786                           em                               live  1
## 3787                         nike                               nice  1
## 3788                       wattba                               1865  1
## 3789                          app                               love  1
## 3790                         nike                              ain’t  1
## 3791                           96                               2025  1
## 3792                       jogger                            awesome  1
## 3793                         gift                               list  1
## 3794                        reign                                  6  1
## 3795                     tracking                                app  1
## 3796                           21                               2026  1
## 3797                        can’t                              close  1
## 3798                          124                               2025  1
## 3799                        shirt                             medium  1
## 3800                          app                                bar  1
## 3801                        4.117                                117  1
## 3802                      gazelle                               nice  1
## 3803                      running                             tracks  1
## 3804                         alex                        silverfagan  1
## 3805                          app                                356  1
## 3806                          app                               i’ve  1
## 3807                            2                           gazelles  1
## 3808                       tracks                             routes  1
## 3809                          app                               hard  1
## 3810                      useless                        immediately  1
## 3811                      wrapped                             uppers  1
## 3812                          app                               nike  1
## 3813                          run                            feature  1
## 3814                         nike                              stock  1
## 3815                   nacimiento                               pone  1
## 3816                       recent                            lawsuit  1
## 3817                           48                              hours  1
## 3818                     training                               plan  1
## 3819                         tech                              feels  1
## 3820                           ua                                  8  1
## 3821                        comfi                           tbhonest  1
## 3822                       versus                            springy  1
## 3823                        4.179                                179  1
## 3824                        weird                              super  1
## 3825                         2025                                 11  1
## 3826                       jeebus                               1171  1
## 3827                          lol                               1448  1
## 3828                         1580                               1581  1
## 3829                           j1                               tend  1
## 3830                         fake                             dhgate  1
## 3831                          168                             double  1
## 3832                        4.216                                216  1
## 3833                        crear                               esta  1
## 3834                        dudes                                  7  1
## 3835                       routes                            helpful  1
## 3836                        force                                 58  1
## 3837                         dope                           colorway  1
## 3838                            4                               nike  1
## 3839                        boots                                150  1
## 3840                        camel                            killers  1
## 3841                         nike                            reports  1
## 3842                            5                               nike  1
## 3843                            6                               nike  1
## 3844                     december                                  1  1
## 3845                          map                            wrapped  1
## 3846                         2025                                 01  1
## 3847                          179                               hard  1
## 3848                           mi                         aplicación  1
## 3849                    jackson's                                 bo  1
## 3850                       verdad                                 en  1
## 3851                         late                              reply  1
## 3852                           ªd                               1882  1
## 3853                        white                            thunder  1
## 3854                          287                               love  1
## 3855                          889                                gif  1
## 3856                         nike                            shouldn  1
## 3857                restructuring                               plan  1
## 3858                          331                            amazing  1
## 3859                           92                               nike  1
## 3860                         knit                               runs  1
## 3861                   structured                              metal  1
## 3862                       stupid                                app  1
## 3863                        built                            quality  1
## 3864                         calf                             raises  1
## 3865                       tennis                    skirtskirtwomen  1
## 3866                         size                                993  1
## 3867                            6                               i’ve  1
## 3868                      average                             runner  1
## 3869                         2025                                 06  1
## 3870                      amazing                           trainers  1
## 3871                          run                               data  1
## 3872                       adidas                            running  1
## 3873                          mmr                             runner  1
## 3874                    recommend                                162  1
## 3875                           89                               2025  1
## 3876                     expertly                            curated  1
## 3877                     fabulous                        instructors  1
## 3878                     wellness                             health  1
## 3879                         stay                        accountable  1
## 3880                          364                               2024  1
## 3881                         2024                                 06  1
## 3882                         2025                                 11  1
## 3883                          gps                           tracking  1
## 3884                          101                               2025  1
## 3885                         2025                                 03  1
## 3886                         2025                                 02  1
## 3887                         2026                                 01  1
## 3888                          cad                                tax  1
## 3889                         2066                             bought  1
## 3890                         nice                             pickup  1
## 3891                        fakes                               2219  1
## 3892                        iii's                              4.270  1
## 3893                          air                               zoom  1
## 3894                         4.36                                 36  1
## 3895                        phone                                180  1
## 3896                           36                          resellers  1
## 3897                         shoe                               love  1
## 3898                         2025                                 01  1
## 3899                         4.65                                 65  1
## 3900                       vomero                                 18  1
## 3901                       racers                               2412  1
## 3902                         1378                              homie  1
## 3903                        reign                                  6  1
## 3904                         line                               nike  1
## 3905                        force                                  1  1
## 3906                        march                               28th  1
## 3907                       height                               hoka  1
## 3908                          549                                bro  1
## 3909                      deleted                               1943  1
## 3910                         2025                                 12  1
## 3911                         2026                                 01  1
## 3912                          def                            copping  1
## 3913                          344                             calvin  1
## 3914                      perfect                             simple  1
## 3915                            2                               nike  1
## 3916                          123                            roadman  1
## 3917                     standard                                 og  1
## 3918                         2018                          surprised  1
## 3919                          dor                               bout  1
## 3920                        brand                          awareness  1
## 3921                           07                               1343  1
## 3922                           07                             easyon  1
## 3923                        4.394                                394  1
## 3924                         1558                            soldier  1
## 3925                     closures                          worldwide  1
## 3926                      running                                app  1
## 3927                          842                              green  1
## 3928                            2                                831  1
## 3929                          150                            secured  1
## 3930                     sleeping                           beauties  1
## 3931                         1858                               holy  1
## 3932                           ja                                af1  1
## 3933                     function                            doesn’t  1
## 3934                     terminar                                 la  1
## 3935                          les                            bendiga  1
## 3936                   aplicativo                              cheio  1
## 3937                      updated                          regularly  1
## 3938                           og                                cut  1
## 3939                automatically                         verbalized  1
## 3940                    exercises                               i’ve  1
## 3941                     february                                  2  1
## 3942                         2026                                 02  1
## 3943                         2025                                 02  1
## 3944                         2025                                 01  1
## 3945                         2024                                 11  1
## 3946                         2026                                 01  1
## 3947                         2024                                 08  1
## 3948                         2023                                 12  1
## 3949                         2025                                 12  1
## 3950                         2025                                 12  1
## 3951                      fitness                            toolkit  1
## 3952                       guided                            workout  1
## 3953                          led                           workouts  1
## 3954                   powerhouse                          polishing  1
## 3955                  recommended                                106  1
## 3956                        rec’d                                238  1
## 3957                     fernando                                cao  1
## 3958                     flyknits                               2018  1
## 3959                          app                            there’s  1
## 3960                         apps                                146  1
## 3961                         apps                               it’s  1
## 3962                         crew                               neck  1
## 3963                         walk                                 10  1
## 3964                          air                              force  1
## 3965                         2026                                 03  1
## 3966                         2024                                 06  1
## 3967                     exercise                        competition  1
## 3968                         2026                                 02  1
## 3969                         role                                 ua  1
## 3970                          602                                603  1
## 3971                         2024                                 02  1
## 3972                         2023                                 10  1
## 3973                     tracking                                app  1
## 3974                         yeah                               dare  1
## 3975                        nikes                            quality  1
## 3976                          565                          massively  1
## 3977                         sing                               1686  1
## 3978                         mine                                til  1
## 3979                          bro                               2106  1
## 3980                         este                                app  1
## 3981                         nice                               pair  1
## 3982                         easy                                fun  1
## 3983                    excelente                         aplicación  1
## 3984                       weight                           training  1
## 3985                     training                                idk  1
## 3986                       pivots                                fox  1
## 3987                       cancer                          survivors  1
## 3988                           tv                            futnatv  1
## 3989                        4.377                                377  1
## 3990                        plans                                map  1
## 3991                         pink                                851  1
## 3992                        drops                                  5  1
## 3993                      revenue                              rises  1
## 3994                      revenue                               flat  1
## 3995                      navegar                           parabéns  1
## 3996                        tiene                         excelentes  1
## 3997                   globaldata                           business  1
## 3998                     linnartz                              named  1
## 3999                          run                             method  1
## 4000                         4.58                                 58  1
## 4001                          ntc                             offers  1
## 4002                           bo                          jackson's  1
## 4003                          age                             august  1
## 4004                      flyease                      accessibility  1
## 4005                       jordan                         essentials  1
## 4006               thatmitusbloke                               nike  1
## 4007                         2024                                 12  1
## 4008                           45                                map  1
## 4009                        apple                              watch  1
## 4010                         2135                       flightposite  1
## 4011                        teams                             modaes  1
## 4012                       mowabb                             colors  1
## 4013                         shoe pleeeeeeeeeeeeeeeeeeeeeeeeeeeeease  1
## 4014                     workouts                               love  1
## 4015                 manufacturer                           okabashi  1
## 4016                      angeles                               love  1
## 4017                        trend                                134  1
## 4018                4lrkcwli2mkoc                          downsized  1
## 4019           7ow9uiyfetrxdsobyn                          downsized  1
## 4020           asjkibidvgfmxphcdq                          downsized  1
## 4021           cgtqdfzemzlihopw35                               2275  1
## 4022                foh28ucxzfjzu                               1172  1
## 4023                fufybccdkoy1w                                411  1
## 4024           fxnrobm8q0rkomr5nf                                850  1
## 4025                gpys1ljxjyupg                               damn  1
## 4026           h42aeseqaly4hitnlh                               1614  1
## 4027           ifnbpfxfgetn8bh0vz                                959  1
## 4028           keq3dg4poe37dnatvm                                543  1
## 4029                kiau2euyxjqb2                                885  1
## 4030           kl9iawej2mxlzvzp2o                                890  1
## 4031            l1kuhbcqxoojyr0m4                                237  1
## 4032                mputzqqomykpk                               2390  1
## 4033           n4fcjylldgpc95d4ku                                374  1
## 4034                r5sxjycu21auk                                392  1
## 4035                rl9yqavfj2ula                                753  1
## 4036                rpjyoncygkngo                                922  1
## 4037           rvxnufxxubfyjhw6lo                                586  1
## 4038                sgwptmd47pv04                               1765  1
## 4039                srirxoiam0u00                                907  1
## 4040                ss2reqknr8s5g                               1593  1
## 4041                su0aljmbfvghw                                912  1
## 4042           vgfcceue0mlzou7y49                                528  1
## 4043           x8u7cf3qrvzgwpk9hg                               1321  1
## 4044                yayv8i5n1ojze                                242  1
## 4045                yvbc4hdspb7z2                                nah  1
## 4046           zn5xfujbtbpnrdzncm                          downsized  1
## 4047                         heck                               yeah  1
## 4048                            4                          superstar  1
## 4049                           10                            waiting  1
## 4050                    downsized                                573  1
## 4051                    downsized                               2322  1
## 4052                    downsized                                484  1
## 4053                          411                               nice  1
## 4054                          850                               pink  1
## 4055                          543                                gif  1
## 4056                          237                               hell  1
## 4057                    downsized                              happy  1
## 4058                          303                               2024  1
## 4059                         1441                                wut  1
## 4060                     distance                            reading  1
## 4061                    stability                               grip  1
## 4062                         nike                               kolu  1
## 4063                       boston                             lovers  1
## 4064                            6                               nike  1
## 4065                        share                              falls  1
## 4066                       closed                                due  1
## 4067                     strategy                                hub  1
## 4068                          dri                                fit  1
## 4069                         lags                             actual  1
## 4070                        graph                               lags  1
## 4071                         2025                                 05  1
## 4072                         2024                                 06  1
## 4073                     reviewer                              tells  1
## 4074                         2146                            removed  1
## 4075                         nike                                181  1
## 4076                       jordan                                 1s  1
## 4077                         wear                               gold  1
## 4078                        watch                                wow  1
## 4079                          air                                max  1
## 4080                         2310                            correct  1
## 4081                       qinwen                             tennis  1
## 4082                          tho                               1522  1
## 4083                           em                               iono  1
## 4084                  integration                            average  1
## 4085                       exists                               1973  1
## 4086                       amazon                               fire  1
## 4087                     michelle                            obama's  1
## 4088                        model                               1137  1
## 4089                        ultra                            flyknit  1
## 4090                         2026                                 01  1
## 4091                        4.266                                266  1
## 4092                          air                             pippen  1
## 4093                   b08cs48ryj                                ref  1
## 4094                   accurately                             tracks  1
## 4095                        makes                              sense  1
## 4096                      existir                                331  1
## 4097                         holy                          throwback  1
## 4098                           en                     entrenamientos  1
## 4099                           en                         fortalecer  1
## 4100                         para                                las  1
## 4101                       screen                          completed  1
## 4102                    breakdown                          elevation  1
## 4103                            9                                 12  1
## 4104                         coup                                 je  1
## 4105                         sand                            there’s  1
## 4106                          219                               lmao  1
## 4107                        black                               2346  1
## 4108                       benign                                  7  1
## 4109                        coord                               nike  1
## 4110                          lcp                               half  1
## 4111                         half                           marathon  1
## 4112                       fandom                               1864  1
## 4113                          818                              mowab  1
## 4114                           58                               1558  1
## 4115                          857                             cortez  1
## 4116                         rich                            version  1
## 4117                        white                           flyknits  1
## 4118                          604                                605  1
## 4119                        cover                                511  1
## 4120                        times                                  5  1
## 4121                     business                           strategy  1
## 4122                          ver                                los  1
## 4123                            4                              4.306  1
## 4124                         1927                               1928  1
## 4125                          128                               2025  1
## 4126                           de                                tus  1
## 4127                         nike                              stock  1
## 4128                       farmer                        henrytheath  1
## 4129                        dunks                                def  1
## 4130                        4.106                                106  1
## 4131                          app                          declining  1
## 4132                         este                                app  1
## 4133                   recomiendo                                100  1
## 4134                        damnn                                idk  1
## 4135                          gif                              giphy  1
## 4136                           10                                104  1
## 4137                          lol                               1617  1
## 4138                         2157                               love  1
## 4139                          329                               2024  1
## 4140                        libre                         acompañado  1
## 4141                           de                              nuevo  1
## 4142                         1697                             vomero  1
## 4143                     training                           starting  1
## 4144                       raffle                               1494  1
## 4145                       adidas                            collage  1
## 4146                      fastest                           shipment  1
## 4147                       samba3                           gazelle4  1
## 4148                            7                               nike  1
## 4149                           ua                                 20  1
## 4150                          air                             jordan  1
## 4151                     griselda                              album  1
## 4152                         2025                                 12  1
## 4153                        white                                823  1
## 4154                         1688                              barry  1
## 4155                     routines                          depending  1
## 4156                         4.23                                 23  1
## 4157                         1029                                hmm  1
## 4158                      totally                              agree  1
## 4159                      workout                                 ed  1
## 4160                        ankle                            support  1
## 4161                         2026                                 02  1
## 4162                          max                                270  1
## 4163                         para                            mejorar  1
## 4164                subscriptions                             remove  1
## 4165                     tracking                              helps  1
## 4166                          142                            workers  1
## 4167                         2026                           compiled  1
## 4168                        march                               2026  1
## 4169                       online                              sales  1
## 4170                         nike                           investor  1
## 4171                         2025                                 06  1
## 4172                        zones                          runtastic  1
## 4173                    companies                              truth  1
## 4174                         2026                                 02  1
## 4175                       doable                                329  1
## 4176                      monitor                               easy  1
## 4177                        strap                              helps  1
## 4178                        zones                            cadence  1
## 4179                        zones                            failure  1
## 4180                         1686                                wow  1
## 4181                        shirt                         comparison  1
## 4182                         tops                            amazing  1
## 4183                          fit                            anymore  1
## 4184                         time                          breathing  1
## 4185                     material                              feels  1
## 4186                     congrats                                527  1
## 4187                          399                                rip  1
## 4188                      instant                                buy  1
## 4189                          561                           horrible  1
## 4190                          fam                               1685  1
## 4191                        4.208                                208  1
## 4192                         sell                              roshe  1
## 4193                      semanal                            lástima  1
## 4194                       bought                                  2  1
## 4195                           03                                 16  1
## 4196                         para                           mantener  1
## 4197                     recevoir                                 le  1
## 4198                      sneaker                              4.352  1
## 4199                          162                               2025  1
## 4200                          374                               2024  1
## 4201                     mapmyrun                               mrtb  1
## 4202                      mission                              beach  1
## 4203                       pepper                              spray  1
## 4204                 subscription                           required  1
## 4205                          106                               2025  1
## 4206                         life                           changing  1
## 4207                          238                               2025  1
## 4208                         stop                               2079  1
## 4209                     strength                           training  1
## 4210                        4.205                                205  1
## 4211                        super                        frustrating  1
## 4212                         dive                          september  1
## 4213                     adoption                                382  1
## 4214                        dance                            classes  1
## 4215                         1094                              space  1
## 4216                         2261                                 nh  1
## 4217                       adidas                            reports  1
## 4218                     gorgeous                                932  1
## 4219                         yoga                               warm  1
## 4220                          699                                700  1
## 4221                        loyal                                469  1
## 4222                          dia                                  é  1
## 4223                     footwear                               2046  1
## 4224                          466                               2023  1
## 4225                    excellent                                143  1
## 4226                         2025                                 04  1
## 4227                       widget                                278  1
## 4228                          app                               i’ve  1
## 4229                          292                               2025  1
## 4230                       highly                          recommend  1
## 4231                         love                                af1  1
## 4232                     sneakers                               2391  1
## 4233                        giphy                 h42aeseqaly4hitnlh  1
## 4234                         2025                                 08  1
## 4235               justfreshkicks                     justfreshkicks  1
## 4236                      reviews                              4.353  1
## 4237                      classes                           prenatal  1
## 4238                        bouta                                hit  1
## 4239                       vomero                                  5  1
## 4240                     marathon                            bombing  1
## 4241                    sketchers                                kim  1
## 4242                       sticky                            weather  1
## 4243                       proves                                495  1
## 4244                       minute                               mile  1
## 4245                         2025                                 02  1
## 4246                       cousin                           touching  1
## 4247                          218                                hey  1
## 4248                           44                               2026  1
## 4249                          fat                               tire  1
## 4250                 niceeeeeeeee                                382  1
## 4251                         howw                                381  1
## 4252                           10                             millas  1
## 4253                       adidas                                 65  1
## 4254                           ua                                 35  1
## 4255                           gp                            product  1
## 4256                     45yj9vh7                          абсолютна  1
## 4257                       adidas                              ultra  1
## 4258                 construction                           original  1
## 4259                      elliott                               hill  1
## 4260                  específicos                               para  1
## 4261                          air                                max  1
## 4262                       adidas                                 36  1
## 4263                          fly                               shit  1
## 4264                         4.33                                 33  1
## 4265                       jordan                                 1s  1
## 4266                           66                            serrano  1
## 4267                           kg                             weight  1
## 4268                        hacer                          ejercicio  1
## 4269                         1968                                100  1
## 4270                          482                               2023  1
## 4271                       simple                               easy  1
## 4272                       talent                               2408  1
## 4273                          270                               huge  1
## 4274                     consumer                               2044  1
## 4275                       buying                              shoes  1
## 4276                     infinity                                run  1
## 4277                            ª                                  þ  1
## 4278                        dunks                               1823  1
## 4279                         i’ve                            enjoyed  1
## 4280                     anúncios                              desde  1
## 4281                       querem                              saber  1
## 4282                         2025                                 05  1
## 4283                     straight                              don’t  1
## 4284                         hour                           workouts  1
## 4285                  measurement                                meh  1
## 4286                   difference                           compared  1
## 4287                         test                       consistently  1
## 4288                     features                         personally  1
## 4289                     specific                           features  1
## 4290                     offering                      modifications  1
## 4291                         2025                                 03  1
## 4292                         2025                                 01  1
## 4293                  frustrating                               move  1
## 4294                        miles                               edit  1
## 4295                         user                           friendly  1
## 4296                          237                               2025  1
## 4297                        can’t                             praise  1
## 4298                     training                                app  1
## 4299                    intuitive                          interface  1
## 4300                         util                                 la  1
## 4301                          app                                i’m  1
## 4302                         2025                                 12  1
## 4303                         rule                            perfect  1
## 4304                    recommend                           mapmyrun  1
## 4305                          384                               2024  1
## 4306                    registrar                             logros  1
## 4307                           30                               love  1
## 4308                        drive                              train  1
## 4309                          974                               yeah  1
## 4310                     multiple                             washes  1
## 4311                            4                               nike  1
## 4312                         grid                         advertised  1
## 4313                     original                                acg  1
## 4314                         2024                                 10  1
## 4315                           bg                              music  1
## 4316                         2026                                 01  1
## 4317                        truth                           honestly  1
## 4318                         2025                                 06  1
## 4319                        fácil                                 de  1
## 4320                          aka                                pre  1
## 4321                        4.309                                309  1
## 4322                           fr                              dunks  1
## 4323                  assinaturas                                mas  1
## 4324                         2024                                 09  1
## 4325                        can’t                              login  1
## 4326                         goal                            setting  1
## 4327                    stephanie                           linnartz  1
## 4328                          dad                               shoe  1
## 4329                      rewards                            loyalty  1
## 4330                          app                               love  1
## 4331                         wall                             street  1
## 4332                     december                                  9  1
## 4333                         june                                  2  1
## 4334                  marketwatch                                  3  1
## 4335                      october                                  1  1
## 4336                    september                                  4  1
## 4337                          422                               2024  1
## 4338                        watch                             update  1
## 4339                     creating                           glitches  1
## 4340                         2025                                 06  1
## 4341                         2024                                 11  1
## 4342                         2024                                 01  1
## 4343                         2025                                 12  1
## 4344                            4                               sign  1
## 4345                            5                               2026  1
## 4346                      doesn’t                                fit  1
## 4347                         2023                                 12  1
## 4348                       avoids                             double  1
## 4349                uygulamasında                           otoöatik  1
## 4350                     comenzar                              hacer  1
## 4351                     measured                               call  1
## 4352                       months                                ago  1
## 4353                         2024                                 01  1
## 4354                         2023                                 10  1
## 4355                         2023                                 11  1
## 4356                       adidas                              shoes  1
## 4357                       fleece                                lol  1
## 4358                     accurate                                app  1
## 4359                         free                                 ad  1
## 4360                          100                               2025  1
## 4361                          312                               2024  1
## 4362                        texas                         volleyball  1
## 4363                      useless                             decent  1
## 4364                          447                               2023  1
## 4365                           59                               2025  1
## 4366                           65                               2025  1
## 4367                    incorrect                           distance  1
## 4368                            3                                tim  1
## 4369                          290                               2025  1
## 4370                    perfectly                            crafted  1
## 4371                      purpose                          switching  1
## 4372                          481                               2023  1
## 4373                         free                             highly  1
## 4374                        vélez                                 md  1
## 4375                     favorite                           activity  1
## 4376                          y.o                               live  1
## 4377                       months                         postpartum  1
## 4378                      invalid                               info  1
## 4379                       adidas                                  9  1
## 4380                          129                               2025  1
## 4381                      there’s                              times  1
## 4382                            5                              miles  1
## 4383                        cache                            updated  1
## 4384                     multiple                          exercises  1
## 4385                     multiple                           workouts  1
## 4386                         1475                               thnx  1
## 4387                            ü                               2302  1
## 4388                phoeniixrose_                               nike  1
## 4389                         moon                              shoes  1
## 4390                        mitus                     thatmitusbloke  1
## 4391                         nike                          wholesale  1
## 4392                   supporting                             cancer  1
## 4393                         nike                                air  1
## 4394                        4.153                                153  1
## 4395                         hell                               yeah  1
## 4396                           ya                              boots  1
## 4397                        skate                                 em  1
## 4398                          300                               size  1
## 4399                        4.252                                252  1
## 4400                      nichols                               miss  1
## 4401                         2025                                 06  1
## 4402                   whiteboard                           workouts  1
## 4403                     workoits                                466  1
## 4404                     workouts                          excellent  1
## 4405                          app                          excellent  1
## 4406                           5x                               week  1
## 4407                       admits                           strategy  1
## 4408                        tells                          employees  1
## 4409                      support                            doesn’t  1
## 4410                           15                                y.o  1
## 4411                       violet                          judicious  1
## 4412                         1928                                 vi  1
## 4413                          316                             chunky  1
## 4414                      rareair                               1557  1
## 4415                           sb                               1508  1
## 4416                       golden                            harvest  1
## 4417                      classic                      disappointing  1
## 4418                    statement                               warm  1
## 4419                          lol                               2261  1
## 4420                         wild                              times  1
## 4421                        shoes                               nike  1
## 4422                       méndez                              vélez  1
## 4423                       called                           ajournal  1
## 4424                            5                               phil  1
## 4425                         2025                                 11  1
## 4426                      curated                           workouts  1
## 4427                        llena                                 de  1
## 4428                         2394                               2395  1
## 4429                           oz                accessorieseveryone  1
## 4430                         nike                                ceo  1
## 4431                         nike                              stock  1
## 4432                         phil                             knight  1
## 4433                         nike                           athletes  1
## 4434                         nike                            pledged  1
## 4435                         nike                             begins  1
## 4436                         nike                               cuts  1
## 4437                         nike                            reports  1
## 4438                           10                               00am  1
## 4439                    bloodbath                               nike  1
## 4440                         nike                              shuts  1
## 4441                         2023                                 12  1
## 4442                      pendant                                des  1
## 4443                        makes                             series  1
## 4444                       adidas                                 24  1
## 4445                         neon                                 95  1
## 4446                         2158                               love  1
## 4447                          gif                              giphy  1
## 4448                        ousts                                ceo  1
## 4449                         i’ve                         subscribed  1
## 4450                       retail                               dive  1
## 4451                     betina’s                           strength  1
## 4452                     breaking                               nike  1
## 4453                           im                             paying  1
## 4454                     strength                               kg’s  1
## 4455                       nike's                                dei  1
## 4456                          dei                           deadline  1
## 4457                          lol                               1076  1
## 4458                       howwww                                380  1
## 4459                         dunk                                 se  1
## 4460                           lw                               dunk  1
## 4461                     pullover                   hoodiehoodiekids  1
## 4462                      nahhhhh                               1338  1
## 4463                       unique                             design  1
## 4464                         1474                                 ja  1
## 4465                    incorrect                             highly  1
## 4466                          373                               2024  1
## 4467                         2412                         absolutely  1
## 4468                        4.159                                159  1
## 4469                        4.388                                388  1
## 4470                        4.369                                369  1
## 4471                          mid                              4.374  1
## 4472                        4.300                                300  1
## 4473          kullanıyorum.nedeni                                ise  1
## 4474                       adidas                      uygulamasında  1
## 4475                            5                              4.390  1
## 4476                         hell                                 ya  1
## 4477                          app                            doesn’t  1
## 4478                           de                             adidas  1
## 4479                          más                           completa  1
## 4480                           de                             adidas  1
## 4481                    declining                            quality  1
## 4482                          por                               nada  1
## 4483                          qui                               fait  1
## 4484                       usando                              desde  1
## 4485                          app                               para  1
## 4486                       opción                                 68  1
## 4487                         para                          continuar  1
## 4488                          100                             pretty  1
## 4489                           de                                gps  1
## 4490                        desde                          movilidad  1
## 4491                         para                           comenzar  1
## 4492                     borrando                         incredible  1
## 4493                        todos                                los  1
## 4494                           en                                 mi  1
## 4495                       street                             energy  1
## 4496                        black                              laces  1
## 4497                         pine                              green  1
## 4498                        level                               2236  1
## 4499                     specific                           workouts  1
## 4500                         2025                                 05  1
## 4501                         nice                               grab  1
## 4502                           85                               2025  1
## 4503                        total                           distance  1
## 4504                        media                              spend  1
## 4505                          sea                               cuál  1
## 4506                     facebook                               love  1
## 4507                 aplicaciones                                 de  1
## 4508                          son                         excelentes  1
## 4509                           12                               yall  1
## 4510                      runners                               it’s  1
## 4511                      billion                              share  1
## 4512                          90m                      restructuring  1
## 4513                       direct                       acceleration  1
## 4514          www.underarmour.com                                 en  1
## 4515                     marathon                           training  1
## 4516                           de                         validation  1
## 4517                        c’est                                 le  1
## 4518                           je                                 ne  1
## 4519                         2073                             brooks  1
## 4520                        plank                              ousts  1
## 4521                        super                              weird  1
## 4522                       adidas                                  5  1
## 4523                        coord                             adidas  1
## 4524                        build                             wither  1
## 4525                         2025                                 09  1
## 4526                       fruity                            pebbles  1
## 4527                         nike                               sell  1
## 4528                       inside                                338  1
## 4529                     spanning                               hiit  1
## 4530                          727                             toilet  1
## 4531                         1144                             agreed  1
## 4532                      quality                                703  1
## 4533                          air                               tech  1
## 4534                          min                           workouts  1
## 4535                           62                               2025  1
## 4536                      siempre                              pause  1
## 4537                         2025                                 05  1
## 4538                          333                               2024  1
## 4539                         shoe                          cristiano  1
## 4540                         2025                                 07  1
## 4541                         anta                             adidas  1
## 4542                        gamma                                  1  1
## 4543                         solo                                por  1
## 4544                         2024                                 12  1
## 4545                         2024                                 12  1
## 4546                         2023                                 10  1
## 4547                          325                               2024  1
## 4548                        bless                               nike  1
## 4549                        4.260                                260  1
## 4550                         it’s                               nice  1
## 4551                       giving                                max  1
## 4552                    deadlifts                           compound  1
## 4553                          fit                             planks  1
## 4554                  lightweight                             shorts  1
## 4555                      awesome                                app  1
## 4556                    absorbent                              quick  1
## 4557                        boots                               nike  1
## 4558                           v4                                esl  1
## 4559                        class                            options  1
## 4560                        4.352                                352  1
## 4561                        space                               lmao  1
## 4562                         park                                  4  1
## 4563                     newsroom                               june  1
## 4564                          gif                              giphy  1
## 4565                    hexagonal                               grid  1
## 4566                         4.77                                 77  1
## 4567                          gif                              giphy  1
## 4568                       saving                                 ua  1
## 4569              www.youtube.com                              watch  1
## 4570                     download                                cuz  1
## 4571                 connectivity                               push  1
## 4572                        kevin                              plank  1
## 4573                       calvin                            messing  1
## 4574                    superstar                                  5  1
## 4575                         walk                                run  1
## 4576                     included                               hiit  1
## 4577                      perfect                                fit  1
## 4578                     phishing                             emails  1
## 4579                      crafted                           workouts  1
## 4580                       torres                      elvistorresjr  1
## 4581                   whiteboard                               demo  1
## 4582                       300.00                            message  1
## 4583                      correos                       electrónicos  1
## 4584                  bendiciones                        unfortunate  1
## 4585                        ritmo                              súper  1
## 4586                           mi                             rutina  1
## 4587                    cardboard                               roll  1
## 4588                         2381                             nogafb  1
## 4589                         smdh                                 42  1
## 4590                       walked                              miles  1
## 4591                         2024                                 01  1
## 4592                         2025                                 11  1
## 4593                       bummed                                478  1
## 4594                         load                             simply  1
## 4595                        house                              store  1
## 4596              congrutulations                               mate  1
## 4597                    sportchek                          metrotown  1
## 4598                         easy                               free  1
## 4599                         ruta                        confortable  1
## 4600                        posts                                 34  1
## 4601                      insoles                        practically  1
## 4602                         bout                                 79  1
## 4603                       simple                          efficient  1
## 4604                     register                              can’t  1
## 4605                           es                                una  1
## 4606                          con                              otros  1
## 4607                         true                                lol  1
## 4608                       whoosh                               1222  1
## 4609                         nope                               nike  1
## 4610                           im                               glad  1
## 4611                      typical                               dumb  1
## 4612                         blue                               1784  1
## 4613                          lol                              truth  1
## 4614                         2024                                 12  1
## 4615                         hard                               pass  1
## 4616                       guilty                                636  1
## 4617                            1                                774  1
## 4618                       factor                             defect  1
## 4619                          gif                              giphy  1
## 4620                        giphy                 x8u7cf3qrvzgwpk9hg  1
## 4621                        shoes                                tho  1
## 4622                           18                             vomero  1
## 4623                      student                           athletes  1
## 4624                     activity                           tracking  1
## 4625                   constantly                            sliding  1
## 4626                    beautiful                               knit  1
## 4627                      premium                        heavyweight  1
## 4628                lord_ashdrake                               lmao  1
## 4629                         nike                              shoes  1
## 4630                         para                                 mi  1
## 4631                 electrónicos                             cambié  1
## 4632                      gracias                                por  1
## 4633                           mi                              mejor  1
## 4634                           61                               2025  1
## 4635                          por                              crear  1
## 4636                       pueden                                ver  1
## 4637                  sponsorship                               deal  1
## 4638                         june                                  2  1
## 4639                         100m                             adidas  1
## 4640                         2025                                 12  1
## 4641                     workouts                                due  1
## 4642                         2025                                 04  1
## 4643                           83                               love  1
## 4644                           10                               i’ve  1
## 4645                   gozooooooo                                 31  1
## 4646                    literally                          perfectly  1
## 4647                     holder’s                           workouts  1
## 4648                        4.250                                250  1
## 4649                    should've                             bought  1
## 4650                           99                               2025  1
## 4651                     heatgear                        compression  1
## 4652                          288                               nice  1
## 4653                        bluey                               1995  1
## 4654                        4.390                                390  1
## 4655                          eqt                            support  1
## 4656                          nmd                                 r1  1
## 4657                          nmd                                xr1  1
## 4658                    originals                             adidas  1
## 4659                          trx                            vintage  1
## 4660                            7                                 ua  1
## 4661                      midsole                              lines  1
## 4662                        plank                              steps  1
## 4663                          dri                                fit  1
## 4664                         golf                              shoes  1
## 4665                        curry                            extends  1
## 4666                         fall                            sneaker  1
## 4667                         grey                           midnight  1
## 4668                        shoes                         shoeswomen  1
## 4669                        upper                               body  1
## 4670                         shoe                            ideally  1
## 4671                         shoe                             photos  1
## 4672                          gif                              giphy  1
## 4673                         nike                                fan  1
## 4674                         1621                             mental  1
## 4675                   serenocrvg                               nike  1
## 4676                          560                               hell  1
## 4677                           lv                              south  1
## 4678                         j’ai                            attendu  1
## 4679                       driver                                 48  1
## 4680                     başlatma                           özelliği  1
## 4681                          sec                               nike  1
## 4682                        4.327                                327  1
## 4683                       semana                                 de  1
## 4684                           gt                               1922  1
## 4685                      attendu                            pendant  1
## 4686                          i’d                          literally  1
## 4687                       melhor                                app  1
## 4688                           de                                 tu  1
## 4689                         2020                               2026  1
## 4690                     compiled                              march  1
## 4691                     recovers                               nike  1
## 4692                            4                           workouts  1
## 4693                      olympic                              media  1
## 4694                         play                            quietly  1
## 4695                         1592                                gif  1
## 4696                      detiene                                 la  1
## 4697                        watch                         connection  1
## 4698                    cleansing                                app  1
## 4699                          169                            secured  1
## 4700                        miles                                  8  1
## 4701                     workouts                              don’t  1
## 4702                      flights                            climbed  1
## 4703                         time                           distance  1
## 4704                       uppers                           inspired  1
## 4705                     marathon                           training  1
## 4706                        check                              tempo  1
## 4707                     starting                            awesome  1
## 4708                        watch                       complication  1
## 4709                         half                          marathons  1
## 4710                     straight                            forward  1
## 4711                            1                               nike  1
## 4712                        chris                              chats  1
## 4713                        throw                               bike  1
## 4714              sneakermarketro                                jon  1
## 4715                          4.2                                  2  1
## 4716                          cao                      thefernandocz  1
## 4717                         4.10                                 10  1
## 4718                         nike                             teases  1
## 4719                            5                               nike  1
## 4720                           em                                dia  1
## 4721                     products                               tend  1
## 4722                         burn                              marks  1
## 4723                      pirates                                hat  1
## 4724                     received                             plenty  1
## 4725                        style                               2303  1
## 4726                           70                                top  1
## 4727                        knock                               offs  1
## 4728                       inside                               shoe  1
## 4729                          am1                                 86  1
## 4730                       adidas                                 63  1
## 4731                        retro                              4.144  1
## 4732                        4.229                                229  1
## 4733                          547                                lol  1
## 4734                          wtr                         winterized  1
## 4735                        intro                              level  1
## 4736                       triple                              white  1
## 4737                          3.0                               1376  1
## 4738                        dunks                               1340  1
## 4739                           95                            uptempo  1
## 4740                         foam                              stack  1
## 4741                        amigo                            awesome  1
## 4742                           13                               años  1
## 4743                         1512                               nike  1
## 4744                     advanced                            primary  1
## 4745                        ideas                           targeted  1
## 4746                    correctly                              pause  1
## 4747                        solid                                app  1
## 4748                         time                               pace  1
## 4749                          884                                gif  1
## 4750                          351                               2024  1
## 4751                        poder                            cumplir  1
## 4752                            8                                 ua  1
## 4753                       summit                                fat  1
## 4754                         para                            running  1
## 4755                           es                        simplemente  1
## 4756                           68                               2025  1
## 4757                       correr                          excelente  1
## 4758                          día                                más  1
## 4759                      rutinas                               adds  1
## 4760                           de                             fintes  1
## 4761                           de                            corrida  1
## 4762                      através                                das  1
## 4763                       corney                                 af  1
## 4764                         1049                               dang  1
## 4765                crewhoodiemen                            stylish  1
## 4766                       fleece                    hoodiehoodiemen  1
## 4767                        track             jacketjacketmenfinally  1
## 4768                       booker                                 1s  1
## 4769                        boost                            running  1
## 4770                           13                              shoes  1
## 4771                          acá                                 es  1
## 4772                    marketing                           fernando  1
## 4773                   delivering                              ankle  1
## 4774                          cap                accessorieseveryone  1
## 4775                        snake                               skin  1
## 4776                      serrano                                edr  1
## 4777                       triple                             whites  1
## 4778                      awesome                                app  1
## 4779                        watch                               walk  1
## 4780                       aliada                            workout  1
## 4781                      terapia                             correr  1
## 4782                          muy                               bien  1
## 4783                         para                                ver  1
## 4784                           de                      entrenamiento  1
## 4785                       adidas                               para  1
## 4786                        track                    pantspantswomen  1
## 4787                          air                              force  1
## 4788                     phordans                                361  1
## 4789                 realmilgrauu                               nike  1
## 4790                           16                            minutes  1
## 4791                     horrible                                pop  1
## 4792                          gr8                               love  1
## 4793                     calories                            there’s  1
## 4794                     straight                               line  1
## 4795                     function                         completely  1
## 4796                          run                              speed  1
## 4797                            4                               1551  1
## 4798                           el                            condado  1
## 4799                         game                                day  1
## 4800                       adidas                             hummel  1
## 4801                    intervals                                  2  1
## 4802                         yoga                           practice  1
## 4803                   difficulty                             muscle  1
## 4804                       health                             keeper  1
## 4805                     thursday                            morning  1
## 4806                          449                            sitting  1
## 4807                      finally                               beat  1
## 4808                       bought                                  2  1
## 4809                        can’t                               save  1
## 4810                     training                              video  1
## 4811                          una                               gran  1
## 4812                         mail                               j’ai  1
## 4813                        foams                               1942  1
## 4814                         nike                          nikestore  1
## 4815                         nike                                app  1
## 4816                     practice                               nice  1
## 4817                       august                                  6  1
## 4818                         2025                                 11  1
## 4819                        shoes                              enjoy  1
## 4820                        4.368                                368  1
## 4821                         cnbc                          september  1
## 4822                         wear                            boycott  1
## 4823                        erian                              named  1
## 4824                            4                              adios  1
## 4825                          406                              books  1
## 4826                           de                          téléphone  1
## 4827               d’entraînement                             depuis  1
## 4828                          30k                                50k  1
## 4829                         1012                              sweet  1
## 4830                      version                          installed  1
## 4831                       adidas                                 71  1
## 4832                         9min                              loved  1
## 4833                      amazing                               shoe  1
## 4834                       collab                                988  1
## 4835                    continuar                           adelante  1
## 4836                           en                                uno  1
## 4837                         2025                                 09  1
## 4838                         2025                                 02  1
## 4839                         2024                                 11  1
## 4840                         2023                                 10  1
## 4841                         2026                                 01  1
## 4842                        music                               play  1
## 4843                         2025                                 01  1
## 4844                      january                                  2  1
## 4845                     tensions                              kanye  1
## 4846                         2025                                 11  1
## 4847                   completely                            stopped  1
## 4848                       mowabb                                820  1
## 4849                          341                               nice  1
## 4850                            4                              times  1
## 4851                          app                               pero  1
## 4852               entrenamientos                                 61  1
## 4853                           de                            navegar  1
## 4854                     programs                               nike  1
## 4855                         i’ve                              loved  1
## 4856                         shoe                           mileages  1
## 4857                           se                            conocen  1
## 4858                         2026                                 01  1
## 4859                      spotify                             option  1
## 4860                      choices                                385  1
## 4861                           53                               2026  1
## 4862                       option                                131  1
## 4863                     diseñada                                  5  1
## 4864                           la                         aplicación  1
## 4865                   aplicación                               pero  1
## 4866                          app                                 te  1
## 4867                      doesn’t                               sync  1
## 4868                      permite                          controlar  1
## 4869                      siempre                           disfruto  1
## 4870                         1951                               love  1
## 4871                           la                         aplicación  1
## 4872                      gracias                                por  1
## 4873                           es                          excelente  1
## 4874                         mode                             screen  1
## 4875                           md                                dwc  1
## 4876                          por                            defecto  1
## 4877                        buena                            doesn’t  1
## 4878                         nike                               warm  1
## 4879                     horrible                                562  1
## 4880                          mas                               hoje  1
## 4881                          air                                jet  1
## 4882                        fedex                             driver  1
## 4883                       drives                          consumers  1
## 4884                       adidas                             adidas  1
## 4885                         hard                                992  1
## 4886                        elite                                 v4  1
## 4887                        track                                amp  1
## 4888                     insanely                               cute  1
## 4889                        crash                              won’t  1
## 4890                      crashes                                  2  1
## 4891                      crashes                               love  1
## 4892                        won’t                              start  1
## 4893                 consistently                               i’ve  1
## 4894                         join                                i’m  1
## 4895                          hog                               love  1
## 4896                      workout                                mid  1
## 4897                      parsing                           response  1
## 4898                           de                              créer  1
## 4899                      version                            doesn’t  1
## 4900                       issues                                app  1
## 4901                          add                            spotify  1
## 4902                         nike                                 ad  1
## 4903                     terminal                            decline  1
## 4904                           de                             cuenta  1
## 4905                      workout                          overviews  1
## 4906                       update                             choice  1
## 4907                      freezes                            amazing  1
## 4908                         дает                 зарегистрироваться  1
## 4909                            с                       регистрацией  1
## 4910                         无法                               使用  1
## 4911                        loses                                gps  1
## 4912                          193                               hope  1
## 4913                        prior                                fit  1
## 4914                       accent                              blues  1
## 4915                        retro                              vibes  1
## 4916                        falls                                 32  1
## 4917                       surges                                191  1
## 4918                         i’ve                            cleared  1
## 4919                          min                           mobility  1
## 4920                         nike                           investor  1
## 4921                           4s                               2096  1
## 4922                          ceo                              calls  1
## 4923                            6                               nike  1
## 4924                            3                               nike  1
## 4925                            6                               nike  1
## 4926                         love                               mine  1
## 4927                        hells                               yeah  1
## 4928                         1677                               wear  1
## 4929                     personal                            opinion  1
## 4930                           66                         invincible  1
## 4931                          3,6                                839  1
## 4932                       review                               i’ve  1
## 4933                         blue                              color  1
## 4934                          109                               nope  1
## 4935                           22                                 km  1
## 4936                    nicekicks                           breaking  1
## 4937                        super                        comfortable  1
## 4938                          518                                hey  1
## 4939                         1123                             resale  1
## 4940                          btw                               hope  1
## 4941                          tho                                 op  1
## 4942               giftedbyadidas                             adidas  1
## 4943                          red                               pair  1
## 4944                      podiums                               pros  1
## 4945                   kimmyjeans                               i’ve  1
## 4946                        4.271                                271  1
## 4947                         miss                         kimmyjeans  1
## 4948                          100                           accurate  1
## 4949                       smooth                                app  1
## 4950                         2025                                 07  1
## 4951                         2026                                 02  1
## 4952                         2025                                 05  1
## 4953                         2025                                 05  1
## 4954                         2025                                 04  1
## 4955                         2025                                 02  1
## 4956                         2025                                 01  1
## 4957                         2025                                 01  1
## 4958                         2026                                 02  1
## 4959                         2024                                 12  1
## 4960                         2024                                 12  1
## 4961                         2024                                 12  1
## 4962                         2024                                 11  1
## 4963                         2024                                 11  1
## 4964                         2024                                 11  1
## 4965                         2023                                 12  1
## 4966                         2025                                 11  1
## 4967                         2025                                 11  1
## 4968                         2025                                 10  1
## 4969                          air                             mowabb  1
## 4970                   lunarterra                             arktos  1
## 4971                        torre                                mid  1
## 4972                        asics                            saucony  1
## 4973                        force                                  1  1
## 4974                          jet                            flights  1
## 4975                          max                                270  1
## 4976                          max                              excee  1
## 4977                          max                                 xc  1
## 4978                         zoom                                jet  1
## 4979                         zoom                                vis  1
## 4980                        1,600                                job  1
## 4981                      elliott                               hill  1
## 4982                        skims                        partnership  1
## 4983                         tech                         challenged  1
## 4984                          137                               2025  1
## 4985                          win                               gold  1
## 4986                  vapourwaver                           gigantic  1
## 4987                        boots                             google  1
## 4988                      quietly                          reversing  1
## 4989                restructuring                             moving  1
## 4990                       ribbon                              elite  1
## 4991                       ground                          financial  1
## 4992                      donahoe                              holds  1
## 4993                         sock                               1272  1
## 4994                        bulls                             target  1
## 4995                       slides                               aren  1
## 4996                        socks                               nike  1
## 4997                         cuts                     sustainability  1
## 4998                        sales                            surpass  1
## 4999                     horrible                         experience  1
## 5000                         shoe                                 星  1
## 5001                          fit                                adv  1
## 5002                          fit                               club  1
## 5003                          low                            women's  1
## 5004                     hahahaha                                408  1
## 5005                        fando                          earlfando  1
## 5006                      runners                                577  1
## 5007                     geometry                              knock  1
## 5008                       metcon                                  4  1
## 5009                           rn                           flyknits  1
## 5010                           q1                            revenue  1
## 5011                       market                              share  1
## 5012                          tex                           sneakers  1
## 5013                         4.84                                 84  1
## 5014                       jordan                              brand  1
## 5015                     overhang                              grows  1
## 5016                    relations                           december  1
## 5017                    relations                               june  1
## 5018                    relations                        marketwatch  1
## 5019                    relations                            october  1
## 5020                    relations                          september  1
## 5021                      product                               wild  1
## 5022                           18                               neon  1
## 5023                   uygulaması                kullanıyorum.nedeni  1
## 5024                           18                            billion  1
## 5025                     consumer                             direct  1
## 5026                    essential                                  3  1
## 5027                        terra                             arktos  1
## 5028                         dunk                             casual  1
## 5029                      largest                            olympic  1
## 5030                            1                                 og  1
## 5031                            6                              snake  1
## 5032                           9s                          yesterday  1
## 5033                        turbo                               line  1
## 5034                         july                                  6  1
## 5035                         june                                  3  1
## 5036                    september                                  6  1
## 5037                      stripes                             jersey  1
## 5038                       record                             annual  1
## 5039                         i’ve                             bought  1
## 5040                          top                               tier  1
## 5041                          sfb                             carbon  1
## 5042                     comments                          collected  1
## 5043                           38                              sales  1
## 5044                         fy26                                 q1  1
## 5045                         fy26                                 q2  1
## 5046                    inventory                               glut  1
## 5047                      reaches                               51.2  1
## 5048                       jacket                                928  1
## 5049                         club                                app  1
## 5050                       peeled                             ripped  1
## 5051                          app                              awful  1
## 5052                       center                                app  1
## 5053                         club                                app  1
## 5054                         shoe                                due  1
## 5055                         dunk                                low  1
## 5056                        roshe                               runs  1
## 5057                       medium                               fits  1
## 5058                        4.115                                115  1
## 5059                          app                         absolutely  1
## 5060                       spring                                 26  1
## 5061                       puffle                              extra  1
## 5062                         tech                             fleece  1
## 5063                    collapses                                 12  1
## 5064                      rallies                                 50  1
## 5065                      tumbles                                 30  1
## 5066                           sf                               1975  1
## 5067                          fit                                adv  1
## 5068                       orange                                box  1
## 5069                          jug                                128  1
## 5070                          457                               2023  1
## 5071                      pegasus                                  5  1
## 5072                     fernando                                cao  1
## 5073                          363                               2024  1
## 5074                          app                          everytime  1
## 5075                          app                               i’ve  1
## 5076                         apps                            they’re  1
## 5077                         club                                261  1
## 5078                         club                               it’s  1
## 5079                         club                                ntc  1
## 5080                         club                             review  1
## 5081                      revenue                              grows  1
## 5082                    oversized                             bomber  1
## 5083                          cup                               2026  1
## 5084                          gif                              giphy  1
## 5085                         club                                app  1
## 5086                       adidas                             raises  1
## 5087                        medio                          avanzados  1
## 5088                        donde                                 se  1
## 5089                       vapour                               pink  1
## 5090                         core                              black  1
## 5091                          291                             wizard  1
## 5092                           10                                 10  1
## 5093                         dunk                                low  1
## 5094                      women's                                dri  1
## 5095                   streetwear                              label  1
## 5096                     declines                                 12  1
## 5097                     declines                                  5  1
## 5098                        falls                                 10  1
## 5099                           ua                                 14  1
## 5100                           de                           energias  1
## 5101                      version                                160  1
## 5102                        4.104                                104  1
## 5103                   searchpage                                  2  1
## 5104                            2                             adidas  1
## 5105                         4.71                                 71  1
## 5106                        won’t                               load  1
## 5107                         2025                                 02  1
## 5108                         nike                          announces  1
## 5109                         nike                            reports  1
## 5110                         2025                                 03  1
## 5111                         2025                                 02  1
## 5112                         2026                                 02  1
## 5113                         2025                                 03  1
## 5114                          287                               2025  1
## 5115                       sports                           specific  1
## 5116                     training                                app  1
## 5117                     training                               club  1
## 5118                         esta                                app  1
## 5119                         live                              elvis  1
## 5120                        vibes                               2087  1
## 5121                         adds                          increased  1
## 5122                       jamais                               it’s  1
## 5123                  importunada                                por  1
## 5124                    interesse                                nas  1
## 5125                           la                          chaussure  1
## 5126                         1327                                  1  1
## 5127                          709                            pattern  1
## 5128                            4                                 5x  1
## 5129                         2025                             update  1
## 5130                         nike                              posts  1
## 5131                         nike                            revenue  1
## 5132                         nike                          announces  1
## 5133                        bueno                          excelente  1
## 5134                           50                          discounts  1
## 5135                    analytics                               goal  1
## 5136                         team                                 kd  1
## 5137                       adidas                                ceo  1
## 5138                         pair                              shape  1
## 5139                         nike                                air  1
## 5140                           id                            program  1
## 5141                         blue                              suede  1
## 5142                      nikelab                         collection  1
## 5143                          los                            angeles  1
## 5144                     newsroom                               july  1
## 5145                    scheffler                               golf  1
## 5146                     olympics                               nike  1
## 5147                        games                          unveiling  1
## 5148                 flightposite                                iii  1
## 5149                          i.e                             mexico  1
## 5150                     analysts                            divided  1
## 5151                            5                               nike  1
## 5152                          lol                               1712  1
## 5153                         2025                                 12  1
## 5154                           de                         relajación  1
## 5155                        beats                       expectations  1
## 5156                         2026                                 01  1
## 5157                         bien                                 la  1
## 5158                         eeoc                           subpoena  1
## 5159                         2025                                 08  1
## 5160                         2025                                 06  1
## 5161                         2023                                 10  1
## 5162                         2025                                 10  1
## 5163                     specific                           training  1
## 5164                        4.265                                265  1
## 5165                            4                               nike  1
## 5166                            1                               nike  1
## 5167                         2025                                 07  1
## 5168                     regained                            control  1
## 5169                            7                                  þ  1
## 5170                          cap                             design  1
## 5171                      chinese                          interface  1
## 5172                      farve's                          signature  1
## 5173               principalmente                                 de  1
## 5174                     özelliği                             paralı  1
## 5175                           ve                         duraklatma  1
## 5176                    stephanie                           linnartz  1
## 5177                        hikes                                pls  1
## 5178                       option                              super  1
## 5179                       aurora                                 il  1
## 5180                           51                             adidas  1
## 5181                          pre                        competition  1
## 5182                         1414                            removed  1
## 5183                         2025                                 04  1
## 5184                    interface                           language  1
## 5185                        terry                               crew  1
## 5186                         rise                              track  1
## 5187                        angry                               read  1
## 5188                    elevation                           distance  1
## 5189                          451                               2023  1
## 5190                       faster                               1206  1
## 5191                         2025                                 08  1
## 5192                         stop                                run  1
## 5193                       retail                               4.94  1
## 5194                           bc                                  2  1
## 5195                        black                               2343  1
## 5196                     official                             design  1
## 5197                          asf                                479  1
## 5198                          lol                                779  1
## 5199                        score                                518  1
## 5200                  comfortable                                740  1
## 5201                           80                               quid  1
## 5202                         hype                             beasts  1
## 5203                          438                               glad  1
## 5204                      digital                              shift  1
## 5205                     spending                             surges  1
## 5206                     rebounds                           strongly  1
## 5207                      apparel                              sales  1
## 5208                       adidas                             online  1
## 5209                  marketwatch                             august  1
## 5210                          113                              pants  1
## 5211                          968                                969  1
## 5212                            2                              pairs  1
## 5213                           es                               mala  1
## 5214                          una                              nueva  1
## 5215                      crónico                                 de  1
## 5216                  deportistas                                sea  1
## 5217                           el                              ritmo  1
## 5218                     nuestras                            rutinas  1
## 5219                           ha                               sido  1
## 5220                           la                          extrañare  1
## 5221                           la                              mejor  1
## 5222                          ser                        importunada  1
## 5223                      cumplir                                 la  1
## 5224                         está                          começando  1
## 5225                       logros                         conectarse  1
## 5226                           la                              estoy  1
## 5227                          los                             logros  1
## 5228                          mis                        actividades  1
## 5229                       adidas                            running  1
## 5230                      adizero                           ayakkabı  1
## 5231                    özelliğin                            parasız  1
## 5232                      gerekir                                los  1
## 5233                          muy                              buena  1
## 5234                        games                                 ad  1
## 5235                 preparations                               nike  1
## 5236                      scottie                          scheffler  1
## 5237                         seat                             biking  1
## 5238                   downloaded                                  4  1
## 5239                       amando                              trash  1
## 5240                      insider                               july  1
## 5241                         fall                               2026  1
## 5242                       severs                               ties  1
## 5243                         1.3b                            revenue  1
## 5244                    chaussure                                qui  1
## 5245                      doesn’t                               send  1
## 5246                         runs                               i’ve  1
## 5247                       months                                due  1
## 5248                         user                            selects  1
## 5249                        bolso                         sennabolso  1
## 5250                       victim                          mentality  1
## 5251                        apple                              watch  1
## 5252                     abruptly                              steps  1
## 5253                      assumes                               role  1
## 5254                   verbalized                               loud  1
## 5255                           43                               2026  1
## 5256                         1227                            consign  1
## 5257                       prices                                553  1
## 5258                          lol                               1032  1
## 5259                        sweet                              happy  1
## 5260                         pair                               1451  1
## 5261                         4.57                                 57  1
## 5262                         4.49                                 49  1
## 5263                            5                                gtx  1
## 5264                       heures                               pour  1
## 5265                         1939                                  1  1
## 5266                         1942                            deleted  1
## 5267                       jordan                               1927  1
## 5268                         1946                              fakes  1
## 5269                           en                               este  1
## 5270                         2024                                 11  1
## 5271                         2024                                 01  1
## 5272                         1617                            typical  1
## 5273                       soccer                             cleats  1
## 5274             smile.amazon.com                                 gp  1
## 5275                          gel                               edit  1
## 5276             stylishly.highly                          recommend  1
## 5277                      quality                               wise  1
## 5278                      primary                            purpose  1
## 5279                comprehensive                             review  1
## 5280                   relentless                              drive  1
## 5281                         shoe                              soley  1
## 5282                          min                               test  1
## 5283                           el                             avance  1
## 5284                         unos                              meses  1
## 5285                      loading                            screens  1
## 5286                          210                               yeah  1
## 5287                         data                          ecosystem  1
## 5288                      journal                                app  1
## 5289                          las                            mejores  1
## 5290                        depth                           compared  1
## 5291                     training                               love  1
## 5292                        won’t                               save  1
## 5293                       broken                              won’t  1
## 5294                       writes                             letter  1
## 5295                         crop                             hoodie  1
## 5296                         2025                                 07  1
## 5297                        music                            connect  1
## 5298                            3                               lack  1
## 5299                       health                                mmr  1
## 5300                       highly                          recommend  1
## 5301                         1625                             people  1
## 5302                       adidas                               nike  1
## 5303                         1803                              dunks  1
## 5304                           zx                               4000  1
## 5305                       adidas                              found  1
## 5306                        super                                jug  1
## 5307                     strength                               yoga  1
## 5308                         warm                                ups  1
## 5309                        3,4,5                                amp  1
## 5310                          sbs                               2133  1
## 5311                   restocking                              march  1
## 5312                          853                              heads  1
## 5313                          air                                max  1
## 5314                     business                           february  1
## 5315                     targeted                           programs  1
## 5316                   completion                           analysts  1
## 5317                     distance                               runs  1
## 5318                      quarter                             marked  1
## 5319                          ceo                          stephanie  1
## 5320                       raises                            lateral  1
## 5321                          app                             called  1
## 5322                           47                               2026  1
## 5323                          455                            sprayed  1
## 5324                         2026                                 01  1
## 5325                         2227                               aren  1
## 5326                          304                               2024  1
## 5327                           la                               meta  1
## 5328                  association                               seal  1
## 5329                          lol                                 83  1
## 5330                        watch                              whoop  1
## 5331                          142                               2025  1
## 5332                       eleven                             eleven  1
## 5333                      defecto                                una  1
## 5334                           de                         nacimiento  1
## 5335                      partida                              estou  1
## 5336                   exercícios                              tonar  1
## 5337                         wrap                               4.28  1
## 5338                          624                              dunks  1
## 5339                  foamposites                              weren  1
## 5340                 doisporcento                           football  1
## 5341                         esta                         aplicación  1
## 5342                          una                     aleatoriamente  1
## 5343                          app                                242  1
## 5344                          331                               2024  1
## 5345                       cuerpo                              mente  1
## 5346                          muy                              buena  1
## 5347                        4.270                                270  1
## 5348                         2025                                 06  1
## 5349                         star                                app  1
## 5350                         2025                                 10  1
## 5351                         love                                 10  1
## 5352                      amazing                                app  1
## 5353                      fitness                                app  1
## 5354                      program                               huge  1
## 5355                        stuck                             finish  1
## 5356                      workout                                i’m  1
## 5357                           al                                100  1
## 5358                      endless                           workouts  1
## 5359                        mejor                      entrenamiento  1
## 5360                 expectations                                i’m  1
## 5361                      fitness                                app  1
## 5362                         free                                app  1
## 5363                  performance                          excellent  1
## 5364                          app                               i’ve  1
## 5365                      teacher                               alex  1
## 5366                     workouts                               love  1
## 5367                      changer                                ntc  1
## 5368                      helpful                           engaging  1
## 5369                      amazing                                 62  1
## 5370                     changing                                app  1
## 5371                     training                            session  1
## 5372                         rise                               9min  1
## 5373                      haven’t                            figured  1
## 5374                       exacto                            siempre  1
## 5375                         útil                            gracias  1
## 5376                     training                             review  1
## 5377                         nike                           training  1
## 5378                          app                             that’s  1
## 5379                   absolutely                               love  1
## 5380                          app                       unbelievable  1
## 5381                      awesome                           workouts  1
## 5382                      viewing                           workouts  1
## 5383                            5                           features  1
## 5384                         it’s                               free  1
## 5385                        music                           settings  1
## 5386                       harika                                 18  1
## 5387                         могу                       залогиниться  1
## 5388                         могу                              найти  1
## 5389                       custom                             booker  1
## 5390                     consumer                           spending  1
## 5391                       demand                           rebounds  1
## 5392                        shoes                                btw  1
## 5393                        sales                            decline  1
## 5394                           ua                                  1  1
## 5395                      revenue                            decline  1
## 5396                       adidas                                  1  1
## 5397                       annual                            revenue  1
## 5398                       adidas                              legal  1
## 5399                          mon                          programme  1
## 5400                           le                               code  1
## 5401                       sauron                          confirmed  1
## 5402                           66                               2025  1
## 5403                     training                            amazing  1
## 5404                          1st                                2nd  1
## 5405                      running                            history  1
## 5406                        forma                                 de  1
## 5407                          ubs                                  5  1
## 5408                        4.130                                130  1
## 5409                          5mm                               drop  1
## 5410                       metcon                                  1  1
## 5411                          low                               tech  1
## 5412                          183                               2025  1
## 5413                        brand                            anymore  1
## 5414                          air                                max  1
## 5415                          252                               2025  1
## 5416                     newsroom                          september  1
## 5417                         wall                             street  1
## 5418                       august                                  5  1
## 5419                           um                              ponto  1
## 5420                      rareair                               2241  1
## 5421                         1996                               damn  1
## 5422                     tbhonest                               1876  1
## 5423                          214                             fugazi  1
## 5424                          lol                               1307  1
## 5425                      jealous                               1574  1
## 5426                         1140                               love  1
## 5427                      forward                                app  1
## 5428                        4.167                                167  1
## 5429                          air                              techs  1
## 5430                          duh                                yea  1
## 5431                          gif                              giphy  1
## 5432                          yoo                                384  1
## 5433                           q3                              china  1
## 5434                       stains                               burn  1
## 5435                        4.317                                317  1
## 5436                         1582                               yeah  1
## 5437                     medicine                                psc  1
## 5438                         2024                                 12  1
## 5439                          ver                                las  1
## 5440                           ii                                 fg  1
## 5441                  assinaturas                         atrapalham  1
## 5442                          max                              95000  1
## 5443                         1097                              space  1
## 5444                          676                               yeah  1
## 5445                       habits                             doable  1
## 5446                        panda                              dunks  1
## 5447                           hr                            monitor  1
## 5448                        shoes                              don’t  1
## 5449                        adios                                  9  1
## 5450                      adistar                                  3  1
## 5451                       boston                                 12  1
## 5452                         rear                               flap  1
## 5453                            2                                evo  1
## 5454                         2024                                 12  1
## 5455                           el                                app  1
## 5456                           ya                               solo  1
## 5457                           la                         aplicación  1
## 5458                    problemas                                con  1
## 5459                      clothes                                hey  1
## 5460                          ref      ppx_yo_dt_b_search_asin_title  1
## 5461                  reliability                               love  1
## 5462                      reuters                          september  1
## 5463                        times                               1162  1
## 5464                      beliefs                              stand  1
## 5465                       adidas                                 os  1
## 5466                    comparten                           consejos  1
## 5467                   phenomenal                             broken  1
## 5468                         2025                                 09  1
## 5469                         it’s                           annoying  1
## 5470                          app                               shut  1
## 5471                         para                              dolor  1
## 5472                       depuis                                mon  1
## 5473                         2026                                 03  1
## 5474                         2025                                 03  1
## 5475                        weeks                       imtermediate  1
## 5476                         2024                                 04  1
## 5477                    kickstart                           betina’s  1
## 5478                         2025                                 10  1
## 5479                         plan                      notifications  1
## 5480                          346                               2024  1
## 5481                        shoes                               jake  1
## 5482                         loss                             adidas  1
## 5483                          gif                              giphy  1
## 5484                           10                             newbie  1
## 5485                          dee                                das  1
## 5486                        plate                               sole  1
## 5487                         call                               outs  1
## 5488                         nike                          announces  1
## 5489                           ua                                 39  1
## 5490                         2024                                 11  1
## 5491                      sneaker                              4.260  1
## 5492                         2025                                 07  1
## 5493                           en                              retos  1
## 5494                          las                       estadísticas  1
## 5495                          mis                              datos  1
## 5496                           es                                una  1
## 5497                   basketball                               shoe  1
## 5498                           04                               1512  1
## 5499                       carbon                              plate  1
## 5500                     nooooooo                                395  1
## 5501                       adidas                                 q3  1
## 5502                    oversized                             french  1
## 5503                        spray                                gel  1
## 5504                      pegasus                                 39  1
## 5505                         dope                              setup  1
## 5506                          lol                               1273  1
## 5507                         sand                          turquoise  1
## 5508                          max                          stability  1
## 5509                      hideous                               1643  1
## 5510                        rises                                 10  1
## 5511                        sales                               fall  1
## 5512                    including                               247m  1
## 5513                      revenue                              drops  1
## 5514                        falls                                  6  1
## 5515                        grows                                  8  1
## 5516                        isn’t                           properly  1
## 5517                            2                             volume  1
## 5518                      reuters                             august  1
## 5519                            3                                ply  1
## 5520                          628                                tbf  1
## 5521                         shoe                            reviews  1
## 5522                        lacks                              depth  1
## 5523                           de                               bugs  1
## 5524                         cnbc                               june  1
## 5525                          não                            esquece  1
## 5526                    começando                              agora  1
## 5527                           de                             vender  1
## 5528                           el                           registro  1
## 5529                         1905                               1906  1
## 5530                       nogafb                               2381  1
## 5531                          100                                  9  1
## 5532                           le                            coureur  1
## 5533                          min                           workouts  1
## 5534                          toe                                box  1
## 5535                         1158                                cuz  1
## 5536                        solid                                app  1
## 5537                     material                               1279  1
## 5538                          run                                i’m  1
## 5539                          dtc                           strategy  1
## 5540                          app                                 de  1
## 5541                      edition                            cushion  1
## 5542                         it’s                           annoying  1
## 5543                   absolutely                          desperate  1
## 5544                           51                             bought  1
## 5545                       stoked                                570  1
## 5546                        speed                               pace  1
## 5547                        field                              green  1
## 5548                      rearair                               2242  1
## 5549                          app                            reviews  1
## 5550                         2026                                 01  1
## 5551                        level                                  4  1
## 5552                        miles                               i’ll  1
## 5553                      reviews                            viewing  1
## 5554                          bro                                231  1
## 5555                          326                               fire  1
## 5556                        shoes                             adidas  1
## 5557                      cushion                               shoe  1
## 5558                         grau                       realmilgrauu  1
## 5559                         dont                               talk  1
## 5560                         base                               amid  1
## 5561                     separate                      notifications  1
## 5562                        digit                               code  1
## 5563                     sporadic                           messages  1
## 5564                      bitcoin                           phishing  1
## 5565                      parsing                           response  1
## 5566                        apple                              watch  1
## 5567                        class                           workouts  1
## 5568                         code                                 de  1
## 5569                          pro                                  4  1
## 5570                         2025                                 06  1
## 5571                         2024                                 10  1
## 5572                         2024                                 03  1
## 5573                        beach                                run  1
## 5574                        spray                                gel  1
## 5575                         2025                                 09  1
## 5576                     changing                            fitness  1
## 5577                      mejores                       aplicaciones  1
## 5578                     investor                          relations  1
## 5579                          110                               2025  1
## 5580                         nike                           investor  1
## 5581                     multiple                              times  1
## 5582                      antigua                             cuenta  1
## 5583                        datos                              error  1
## 5584                         2025                                 02  1
## 5585                            1                              black  1
## 5586                       pepper                              https  1
## 5587                        royal                              union  1
## 5588                       mental                             health  1
## 5589                          595                                596  1
## 5590                    collected                               2026  1
## 5591                        nerds                              enjoy  1
## 5592                     recently                            causing  1
## 5593                          ver                                mis  1
## 5594                        flops                               4.36  1
## 5595                            4                               seat  1
## 5596                   conectarse                                con  1
## 5597                         2024                                 04  1
## 5598                        socks                            running  1
## 5599                      program                           movement  1
## 5600                         1682                               love  1
## 5601                        4.297                                297  1
## 5602                    caminamos                                 10  1
## 5603                            9                               nike  1
## 5604                            2                               nike  1
## 5605                            3                               nike  1
## 5606                            1                               nike  1
## 5607                            4                               nike  1
## 5608                          227                                hit  1
## 5609                         pink                                863  1
## 5610                        train                           stronger  1
## 5611                     clearing                             stored  1
## 5612                         2024                                 03  1
## 5613                         2025                                 02  1
## 5614                      feature                               i’ve  1
## 5615                          460                              yesss  1
## 5616                          254                               2025  1
## 5617                          498                                499  1
## 5618                         2023                                 10  1
## 5619                        sales                               drop  1
## 5620                           q1                            revenue  1
## 5621                           q2                            revenue  1
## 5622                       fy2026                            revenue  1
## 5623                           os                                7.0  1
## 5624                         2106                               fuck  1
## 5625                          895                               yeah  1
## 5626                          una                         aplicación  1
## 5627                         2025                                 02  1
## 5628                         2079                                lol  1
## 5629                       stored                               data  1
## 5630                         28th                              chris  1
## 5631                        costs                           expected  1
## 5632                         hits                               147m  1
## 5633                      stopped                            logging  1
## 5634                          gif                              giphy  1
## 5635                         nike                            digital  1
## 5636                         nike                          inventory  1
## 5637                    september                                  9  1
## 5638                            2                               nike  1
## 5639                            4                               nike  1
## 5640                            5                               nike  1
## 5641                    september                                  3  1
## 5642                      writing                               fall  1
## 5643                         sold                                566  1
## 5644                         nike                           investor  1
## 5645                          los                               días  1
## 5646                            1                                  6  1
## 5647                            7                               nike  1
## 5648                            3                               nike  1
## 5649                            2                               nike  1
## 5650                           35                              bjorn  1
## 5651                         fall                              short  1
## 5652                          hit                               100m  1
## 5653                         51.2                            billion  1
## 5654                     strategy                           bringing  1
## 5655                         2025                                 01  1
## 5656                       adidas                              shoes  1
## 5657                         it’s                            crashed  1
## 5658                        awful                           redesign  1
## 5659                          hey                               jake  1
## 5660                       review                             decent  1
## 5661                         ning                              gamma  1
## 5662                        gamma                                  1  1
## 5663                  improvement                                fix  1
## 5664                        4.302                                302  1
## 5665                          353                                doc  1
## 5666                          376                             future  1
## 5667                       adidas                            reviews  1
## 5668                         2026                                 03  1
## 5669                      barkley                          declaring  1
## 5670                          neo                                zen  1
## 5671                      athlete                             hookem  1
## 5672                  henrytheath                               nike  1
## 5673                          una                               pena  1
## 5674                          wow                               1678  1
## 5675                      asinine                                565  1
## 5676                          fit                               true  1
## 5677              pantspantswomen                                 10  1
## 5678                           el                                 la  1
## 5679                        todas                                las  1
## 5680                            4                               4.65  1
## 5681                          jon                             wexler  1
## 5682                        4.124                                124  1
## 5683                          tho                                892  1
## 5684                        forum                               loes  1
## 5685                          ass                          sketchers  1
## 5686                          tie                             pretty  1
## 5687                          fit                            premium  1
## 5688                         fair                               1486  1
## 5689                      futebol                                 na  1
## 5690                    clockwise                                obv  1
## 5691                         drop                               shoe  1
## 5692                     distance                               time  1
## 5693                        gracy                              woods  1
## 5694                  frustrating                             didn’t  1
## 5695                      podcast                              start  1
## 5696                         2025                                 06  1
## 5697                          cop                                tho  1
## 5698                        socks                               1244  1
## 5699                         shoe                           multiple  1
## 5700                        giphy                      foh28ucxzfjzu  1
## 5701                          fit                              comfy  1
## 5702                         2024                                 11  1
## 5703                           41                                ran  1
## 5704                      tracker                           reliable  1
## 5705                      mapping                               déçu  1
## 5706                      running                            tracker  1
## 5707                      morning                            outdoor  1
## 5708                         runs                                835  1
## 5709                       highly                        frustrating  1
## 5710                      cycling                         consistent  1
## 5711                          app                               stop  1
## 5712                       screen                              crops  1
## 5713                     distance                               pace  1
## 5714                          app                                ive  1
## 5715                         plan                               runs  1
## 5716                         bike                          treadmill  1
## 5717                         2024                                 11  1
## 5718                        https                   smile.amazon.com  1
## 5719                     multiple                              pairs  1
## 5720                          app                                fun  1
## 5721                      deadass                            haven’t  1
## 5722                        can’t                                run  1
## 5723                       highly                          recommend  1
## 5724                         it’s                        lightweight  1
## 5725                         i’ve                              found  1
## 5726                      gravely                       disappointed  1
## 5727                           ne                               peux  1
## 5728                        estoy                             usando  1
## 5729                         nice                              shoes  1
## 5730                    confirmed                               4.45  1
## 5731                         2989                              viral  1
## 5732                         4160                              viral  1
## 5733                          hey                               jake  1
## 5734                         yeah                             takumi  1
## 5735         16adimltrbstmblkwrnn               16adimltrbstmblkwrnn  1
## 5736                       adidas                                 48  1
## 5737                           14                                day  1
## 5738                        times                                i’m  1
## 5739                        helps                           progress  1
## 5740                        range                                exp  1
## 5741                       biking                             hiking  1
## 5742                           na                                 tv  1
## 5743                    greatness                                lcp  1
## 5744                      running                                map  1
## 5745                           gt                             series  1
## 5746                         para                                não  1
## 5747                     training                                app  1
## 5748                      feature                         accurately  1
## 5749                entrenamiento                                 en  1
## 5750                    increased                          incentive  1
## 5751                   excelentes                                 mi  1
## 5752                       vender                        assinaturas  1
## 5753                       runner                             pepper  1
## 5754                         love                            wearing  1
## 5755                         june                                  2  1
## 5756                        times                                  6  1
## 5757                        glide                                  3  1
## 5758                   aplicación                     felicitaciones  1
## 5759                   incredibly                               soft  1
## 5760                       adidas                                 42  1
## 5761                        samba                             adidas  1
## 5762                       finder                           features  1
## 5763                   superstar5                             campus  1
## 5764                          nos                              llena  1
## 5765                          yep                               1690  1
## 5766                        cheap                               shit  1
## 5767                    dégoûtant                                154  1
## 5768                         nike                             cooked  1
## 5769                     inspired                       construction  1
## 5770                          481                           sleeping  1
## 5771                       hoodie                                gif  1
## 5772                           12                                 25  1
## 5773                       adidas                                 45  1
## 5774                         4.45                                 45  1
## 5775                       routes                              super  1
## 5776                        4.180                                180  1
## 5777                          low                                ron  1
## 5778                       skiyee                        trustworthy  1
## 5779                       street                            journal  1
## 5780                         2026                                 01  1
## 5781                        zheng                             qinwen  1
## 5782                    pineapple                                 hp  1
## 5783                        4.286                                286  1
## 5784                           ua                                 21  1
## 5785                       medium                               hovr  1
## 5786                       medium                               love  1
## 5787                       medium                              curry  1
## 5788                       medium                              curry  1
## 5789                        viral                              fedex  1
## 5790                        viral                              saved  1
## 5791                          low                            rocking  1
## 5792                          low                             adidas  1
## 5793                          low                              kanye  1
## 5794                          low                            stephen  1
## 5795                          low                           upcoming  1
## 5796                          low                                 20  1
## 5797                          low                               code  1
## 5798                          low                              curry  1
## 5799                          low                                jbl  1
## 5800                          low                             neeraj  1
## 5801                          low                              shirt  1
## 5802                          low                             spieth  1
## 5803                        viral                              wdywt  1
## 5804                        viral                               lost  1
## 5805                          low                              jonah  1
## 5806                          low                               nike  1
## 5807                          low                              bring  1
## 5808                          low                              kevin  1
## 5809                          gif                              giphy  1
## 5810                          air                             bakins  1
## 5811                         golf                              zheng  1
## 5812                       option                               it’s  1
## 5813                          278                               2025  1
## 5814                       pretty                               dang  1
## 5815                     consejos                          artículos  1
## 5816                           la                            sección  1
## 5817                         bien                                con  1
## 5818                          vip                            através  1
## 5819                   participar                                 en  1
## 5820                           um                            produto  1
## 5821                          sea                                 su  1
## 5822                        nivel                            inicial  1
## 5823                      gezelle                             sambai  1
## 5824                       adidas                                 68  1
## 5825                         june                                  4  1
## 5826                     investor                          relations  1
## 5827                         load                                fix  1
## 5828                         load                              won’t  1
## 5829                        pairs                              4.151  1
## 5830                          una                               guía  1
## 5831                           de                             agosto  1
## 5832                      running                                app  1
## 5833                      deleted                                 63  1
## 5834                         sell                            beliefs  1
## 5835                         runs                            futebol  1
## 5836                        boost                             triple  1
## 5837                            6                               gran  1
## 5838                    movilidad                         stretching  1
## 5839                     comenzar                                una  1
## 5840                         foot                              4.123  1
## 5841                       adidas                             boston  1
## 5842                       casual                            wearpro  1
## 5843                         2025                                 01  1
## 5844                   acompañado                               solo  1
## 5845                         nike                           partners  1
## 5846                         nike                            reports  1
## 5847                         nike                            unveils  1
## 5848                         nike                                ceo  1
## 5849                         nike                             global  1
## 5850                          por                           anúncios  1
## 5851               underestimated                              vasco  1
## 5852                       pretty                            awesome  1
## 5853                         2025                                 09  1
## 5854                          346                             calvin  1
## 5855                        samba                               view  1
## 5856                         2025                                 06  1
## 5857                         2024                                 11  1
## 5858                            1                                  2  1
## 5859                      program                           approved  1
## 5860                        giphy                      sgwptmd47pv04  1
## 5861                      doesn’t                             crease  1
## 5862                         nike                              socks  1
## 5863                       hahaha                              samba  1
## 5864                      toddler                              ankle  1
## 5865                            à                                  à  1
## 5866                           15                          basically  1
## 5867                          lol                               1159  1
## 5868                          597                                598  1
## 5869                        4.303                                303  1
## 5870                     recovery                             option  1
## 5871                      correct                               2311  1
## 5872                          200                                won  1
## 5873                            4                            finally  1
## 5874                        4.375                                375  1
## 5875                        daros                     cristianodaros  1
## 5876                         dead                             versus  1
## 5877                           40                              doesn  1
## 5878                       advice                               smdh  1
## 5879                         1076                               true  1
## 5880                        color                                109  1
## 5881                         cool                             review  1
## 5882                         2026                              4.302  1
## 5883                        4.353                                353  1
## 5884                      adizero                                sl2  1
## 5885                        4.370                                370  1
## 5886                          442                           familiar  1
## 5887                          pro                            remains  1
## 5888                         foot                           friendly  1
## 5889                       takumi                                ren  1
## 5890                           善                                 介  1
## 5891                        space                            hippies  1
## 5892                          wut                               1442  1
## 5893         16adimltrbstmblkwrnn                              color  1
## 5894                          acg                             torres  1
## 5895                         love                                 em  1
## 5896                         lmao                               holy  1
## 5897                        10.50                                wtf  1
## 5898                          115                            classic  1
## 5899                         stfu                             brokie  1
## 5900                        laces                               2379  1
## 5901                         feet                         constantly  1
## 5902                     question                                597  1
## 5903                   absolutely                          recommend  1
## 5904                       casual                               wear  1
## 5905                      workout                           beginner  1
## 5906                          gif                              giphy  1
## 5907                            2                               1141  1
## 5908                          682                                  2  1
## 5909                        mouth                                ppl  1
## 5910                         care                            package  1
## 5911                          tbh                                398  1
## 5912                        green                              white  1
## 5913                        mucho                                los  1
## 5914                    increíble                             stupid  1
## 5915                     recovery                           timeline  1
## 5916                         shoe                              holds  1
## 5917                         4.25                                 25  1
## 5918                         free                             simply  1
## 5919                         tech                           sneakers  1
## 5920                        ótimo                                app  1
## 5921                        donde                                sea  1
## 5922                        buena                        application  1
## 5923                          123                            waiting  1
## 5924                     rotation                            adizero  1
## 5925                        youre                              lying  1
## 5926                           45                              weird  1
## 5927                        reign                                  6  1
## 5928                         1741                              super  1
## 5929                         mens                                396  1
## 5930                          162                               damn  1
## 5931                        men's                                795  1
## 5932                           ua                                 11  1
## 5933                         1084                                 im  1
## 5934                           14                                253  1
## 5935                          van                          caldrones  1
## 5936                          185                               love  1
## 5937                          221                            grabbed  1
## 5938                         nike                               foam  1
## 5939                        4.385                                385  1
## 5940                       weight                          treatment  1
## 5941                          dri                                fit  1
## 5942                      wearing                               thin  1
## 5943                         size                                 12  1
## 5944                        4.184                                184  1
## 5945                          day                               free  1
## 5946                           26                         collection  1
## 5947                          day                               1980  1
## 5948                          app                               i’ve  1
## 5949                    cardboard                               tube  1
## 5950                     consumer                               shoe  1
## 5951                           46                               wear  1
## 5952                           rs                            comfort  1
## 5953                          sen                                 10  1
## 5954                     sltakumi                    sen10ultraboost  1
## 5955                         2414                               2415  1
## 5956                    extremely                             stable  1
## 5957                     timeline                               nike  1
## 5958                            5                             casual  1
## 5959                      product                         b08cs48ryj  1
## 5960                         volt                                 99  1
## 5961                      painted                             courts  1
## 5962                          352                             single  1
## 5963               sneakeralerthd                               nike  1
## 5964                         1394                           honestly  1
## 5965                         size                                 13  1
## 5966                           ro                    sneakermarketro  1
## 5967                         lmao                               1513  1
## 5968                          air                                max  1
## 5969                            8                                low  1
## 5970                            9                                low  1
## 5971                       wexler                            recalls  1
## 5972                        green                                100  1
## 5973                        giphy                      fufybccdkoy1w  1
## 5974                        mcfly                              wears  1
## 5975                        25310                              viral  1
## 5976                         6791                              viral  1
## 5977                         6972                              viral  1
## 5978                         7049                              viral  1
## 5979                         7051                              viral  1
## 5980                         7932                              viral  1
## 5981                         8105                              viral  1
## 5982                         8178                              viral  1
## 5983                         8187                              viral  1
## 5984                           75                               fake  1
## 5985                      fingers                            crossed  1
## 5986                            5                              bucks  1
## 5987                         1409                              haven  1
## 5988                       team's                           identity  1
## 5989                     progress                           training  1
## 5990                         hype                               lmao  1
## 5991                         1276                              knock  1
## 5992                         1238                              cheap  1
## 5993                     everyday                              socks  1
## 5994                        pairs                    accessorisekids  1
## 5995                       stable                           flexible  1
## 5996                         2024                                 12  1
## 5997                          i’d                                bet  1
## 5998                         1559                             jordan  1
## 5999                         cool                              video  1
## 6000                      micoach                                 de  1
## 6001                          200                             metros  1
## 6002                           de                                 13  1
## 6003                     workouts                                451  1
## 6004                           mi                             cuerpo  1
## 6005                         2024                                 11  1
## 6006                           mi                             esposo  1
## 6007                         2116                              white  1
## 6008                         nike                                run  1
## 6009                    fantastic                       nikeappsucks  1
## 6010                     terrible                                481  1
## 6011                          199                            deleted  1
## 6012                          131                               2025  1
## 6013                         2026                                 01  1
## 6014                       adidas                                 62  1
## 6015                           05                                868  1
## 6016                         line                               1093  1
## 6017                         line                                866  1
## 6018                         vibe                               1094  1
## 6019                         rule                               1095  1
## 6020                         1513                                100  1
## 6021                          5.0                            edition  1
## 6022                         yoga                           strength  1
## 6023                        cover                             upside  1
## 6024                     concerns                          bloomberg  1
## 6025                         nike                           newsroom  1
## 6026                      special                           olympics  1
## 6027                          usa                              games  1
## 6028                         nice                              score  1
## 6029                      fitness                              goals  1
## 6030                      doesn’t                              wanna  1
## 6031                      workers                               laid  1
## 6032                     distance                            average  1
## 6033                      dollars                               2125  1
## 6034                         time                          searching  1
## 6035                         wall                             street  1
## 6036                     shipment                               i’ve  1
## 6037                         nice                             review  1
## 6038                       adidas                         superstars  1
## 6039                     gazelle4                         superstar5  1
## 6040                        shoes                               lots  1
## 6041                     matching                            oktober  1
## 6042                          ceo                             admits  1
## 6043                   aplicación                                 es  1
## 6044                            6                               nike  1
## 6045                      hunting                               walk  1
## 6046                         dive                                  2  1
## 6047                           ua                                  6  1
## 6048                          gif                              giphy  1
## 6049                        style                              shoes  1
## 6050                       fleece                              girls  1
## 6051                        green                               pair  1
## 6052                          485                               2023  1
## 6053                         edit                                wow  1
## 6054                          i’d                              worry  1
## 6055                   collection                              https  1
## 6056                         shoe                               1440  1
## 6057                         1170                             jeebus  1
## 6058                     compound                              moves  1
## 6059                           88                               mine  1
## 6060                        happy                             saving  1
## 6061                        https                     www.rakuten.ca  1
## 6062                        sales                             jumped  1
## 6063                        marks                         mismatched  1
## 6064                          419                               2024  1
## 6065                          407                               2024  1
## 6066                      gazelle                            indoors  1
## 6067                        china                             online  1
## 6068                   production                               shoe  1
## 6069                       raises                           machines  1
## 6070                         2024                                 06  1
## 6071                       collab                             adidas  1
## 6072                          ntc                              lacks  1
## 6073                         2025                                 06  1
## 6074                         2026                                 01  1
## 6075                         2025                                 06  1
## 6076                          lol                               2119  1
## 6077                       people                                439  1
## 6078                            6                                  1  1
## 6079                        start                                app  1
## 6080                         2025                                 08  1
## 6081                      awesome                               easy  1
## 6082                   fractional                          distances  1
## 6083                         nike                              super  1
## 6084                          ups                                340  1
## 6085                     terrible                                app  1
## 6086                          app                            crashes  1
## 6087                       highly                          recommend  1
## 6088                          994                             lowkey  1
## 6089                         yall                                lol  1
## 6090                          app                               love  1
## 6091                       adidas                                 18  1
## 6092                         1863                           steelers  1
## 6093                      extends                          agreement  1
## 6094                       forces                               joke  1
## 6095                         nike                                air  1
## 6096                        shoes                                604  1
## 6097                          675                      interestingly  1
## 6098                       aglets                           shoelace  1
## 6099                          app                              syncs  1
## 6100                     workouts                              don’t  1
## 6101                       adidas                           training  1
## 6102                         nike                              socks  1
## 6103                         fake                                 76  1
## 6104                    worldwide                            reuters  1
## 6105                          394                           nooooooo  1
## 6106                       hentet                               2026  1
## 6107                         1975                                dog  1
## 6108                        y'all                                lil  1
## 6109                          adv                               club  1
## 6110                       tracks                             listen  1
## 6111                         body                       powerlifting  1
## 6112                      amazing                               1247  1
## 6113                        angle                                280  1
## 6114                          fox                           business  1
## 6115                    wholesale                           partners  1
## 6116                            1                            elliott  1
## 6117                         dive                                  5  1
## 6118                      perfect                                app  1
## 6119                         nope                                gpx  1
## 6120                          lol                                 53  1
## 6121                         july                                  5  1
## 6122                      workout                            program  1
## 6123                          hit                          pregnancy  1
## 6124                       shorts                          colourway  1
## 6125                         2024                                 11  1
## 6126                         haze                           trainers  1
## 6127                          lol                                877  1
## 6128                          cap                accessorieseveryone  1
## 6129                         logo                                cap  1
## 6130                          cap                accessorieseveryone  1
## 6131                        lucas                               crvg  1
## 6132                         2024                                 12  1
## 6133                         2067                               nike  1
## 6134                          i’m                            walking  1
## 6135                        black                         sweatshirt  1
## 6136                        feels                              built  1
## 6137                   sweatshirt                              coord  1
## 6138                   sweatshirt                              coord  1
## 6139                         2024                                 03  1
## 6140                          max                                90s  1
## 6141                      amazing                              video  1
## 6142                    exercises                               yoga  1
## 6143                         plan                              ideas  1
## 6144                      inicial                              medio  1
## 6145                       cuando                                 ya  1
## 6146                     services                               nike  1
## 6147                   aplicativo                            pratico  1
## 6148                      forward                                ten  1
## 6149                           80                               2025  1
## 6150                         pace                          breakdown  1
## 6151                       mental                             health  1
## 6152                          154                               2025  1
## 6153                       months                                ago  1
## 6154                        upper                            options  1
## 6155                          yup                            garbage  1
## 6156                         1440                              kinda  1
## 6157                       boston                                 12  1
## 6158                       bright                            crimson  1
## 6159                        samba                                xlg  1
## 6160                          193                               love  1
## 6161                         1680                           uptempos  1
## 6162                         fits                          perfectly  1
## 6163                         shoe                            reviews  1
## 6164                          128                                 oz  1
## 6165                         4.61                                 61  1
## 6166                      hooping                               shoe  1
## 6167                        super                        lightweight  1
## 6168                          app                          excelente  1
## 6169                            2                                fit  1
## 6170                    supernova                               rise  1
## 6171                        samba                                xlg  1
## 6172                      perfect                                fit  1
## 6173                       snarls                               lead  1
## 6174                        turbo                             adidas  1
## 6175                        watch                                  3  1
## 6176                       street                            journal  1
## 6177                        sales                               cnbc  1
## 6178                    september                                  2  1
## 6179                         ahem                            peloton  1
## 6180                       adidas                            leather  1
## 6181                         hell                               yeah  1
## 6182                     birthday                               1757  1
## 6183                     swapping                              pairs  1
## 6184                      initial                             screen  1
## 6185                          gpx                             export  1
## 6186                       jersey                               2209  1
## 6187                   relajación                                hoy  1
## 6188                        saber                                 de  1
## 6189                      primium                             pueden  1
## 6190                           es                                una  1
## 6191                          las                       estadísticas  1
## 6192                          hey                               mike  1
## 6193                          317                         vapormaxes  1
## 6194                           10                             adidas  1
## 6195                       plenty                            cheaper  1
## 6196                        bears                               warn  1
## 6197                        times                           december  1
## 6198                            á                               1983  1
## 6199                          773                                  1  1
## 6200                         1877                               1878  1
## 6201                       volume                           controls  1
## 6202                         2023                                 11  1
## 6203                           ua                                 36  1
## 6204                           74                               2025  1
## 6205                        4.358                                358  1
## 6206                         nike                              world  1
## 6207                       global                             august  1
## 6208                        feels                              super  1
## 6209                 alimentación                              hasta  1
## 6210                      doesn’t                              match  1
## 6211                       tabata                              video  1
## 6212                          con                                 la  1
## 6213                          nas                        assinaturas  1
## 6214                       august                                  7  1
## 6215                         west                              makes  1
## 6216                        ponto                                 de  1
## 6217                    excelente                                día  1
## 6218                     registro                               dice  1
## 6219                       semana                               para  1
## 6220                        shoes                             adidas  1
## 6221                         2023                                 10  1
## 6222                        shoes                              4.393  1
## 6223                         1949                         dayummmmmm  1
## 6224                     retiring                             buying  1
## 6225                         neck              sweatshirthoodiewomen  1
## 6226                         2025                                 11  1
## 6227                   basketball                            student  1
## 6228              texasvolleyball                              she’s  1
## 6229                    nikestore                              bring  1
## 6230                        súper                         aplicación  1
## 6231                     workouts                                407  1
## 6232                        legal                         department  1
## 6233                          i’m                            running  1
## 6234                        chain                               wear  1
## 6235                        4.397                                397  1
## 6236                           22                               nike  1
## 6237                        gonna                                pay  1
## 6238                         nike                                acg  1
## 6239                        yesss                                omg  1
## 6240                     amiright                               1336  1
## 6241                         1857                                  1  1
## 6242                        4.140                                140  1
## 6243                         shin                            splints  1
## 6244                     gráficas                               para  1
## 6245                          219                            finally  1
## 6246                       mexico                                 66  1
## 6247                          154                               size  1
## 6248                          air                              force  1
## 6249                         1907                               fire  1
## 6250                        pants                                set  1
## 6251                     vitiligo                               1303  1
## 6252                         2025                                 07  1
## 6253                         2025                                 05  1
## 6254                         2025                                 01  1
## 6255                         2025                                 01  1
## 6256                         2025                                 01  1
## 6257                         2025                                 01  1
## 6258                         user                           workouts  1
## 6259                          day                            perfect  1
## 6260                     wavering                        danwavering  1
## 6261                     accuracy                            lacking  1
## 6262                         pace                           calories  1
## 6263                          pop                                ups  1
## 6264                     calories                               pace  1
## 6265                     training                              goals  1
## 6266                        can’t                                log  1
## 6267                     investor                          relations  1
## 6268                  immediately                             adjust  1
## 6269                         nike                              signs  1
## 6270                         nike                               fy23  1
## 6271                            1                               nike  1
## 6272                     distance                              speed  1
## 6273                    абсолютна                         деградація  1
## 6274                          184                              based  1
## 6275                      mejorar                           nuestras  1
## 6276                         free                                app  1
## 6277                      rutinas                                son  1
## 6278                        world                               it’s  1
## 6279                        socks                                  6  1
## 6280                          794                               size  1
## 6281                         2303                            perfect  1
## 6282                          uno                               para  1
## 6283                         días                            gracias  1
## 6284                         días                                 mi  1
## 6285                            1                                red  1
## 6286                         wear                            quickly  1
## 6287                        width                           compares  1
## 6288                       design                                363  1
## 6289                           93                           straight  1
## 6290                           47                                ran  1
## 6291                          set                                968  1
## 6292                       membro                                vip  1
## 6293                        miles                              guess  1
## 6294                         2025                                 04  1
## 6295                       errors                          installed  1
## 6296                          app                                 de  1
## 6297                       review                               4.71  1
## 6298                            4                             adidas  1
## 6299                          703                                  3  1
## 6300                          500                             racers  1
## 6301                        elite                           trainers  1
## 6302                      produto                                 da  1
## 6303                         nike                                air  1
## 6304                         2434                              posts  1
## 6305                        speed                          elevation  1
## 6306                           39                                 ua  1
## 6307                           71                             adidas  1
## 6308                          490                             adidas  1
## 6309                    completed                          marathons  1
## 6310                         1720                                tbh  1
## 6311                       highly                        recommended  1
## 6312                  immediately                            deleted  1
## 6313                       adidas                                 23  1
## 6314                         1337                            nahhhhh  1
## 6315                         2025                                 09  1
## 6316                           10                                app  1
## 6317                         2025                                 07  1
## 6318                         feet                           surveyor  1
## 6319                        field                            athlete  1
## 6320                        5,000                              miles  1
## 6321                       riding                            mileage  1
## 6322                         time                               pace  1
## 6323                      running                               shoe  1
## 6324                         nice                               love  1
## 6325                           10                                 10  1
## 6326                    excelente                                 es  1
## 6327                         edit                           function  1
## 6328                     distance                               pace  1
## 6329                          map                              miles  1
## 6330                        miles                           calories  1
## 6331                    baltimore                                sun  1
## 6332                       jacket                             styles  1
## 6333                    interface                        disappeared  1
## 6334                         lmao                               nike  1
## 6335                          gtx                                103  1
## 6336                         2024                                 12  1
## 6337                       strive                             harder  1
## 6338                        tengo                          problemas  1
## 6339                          224                               2025  1
## 6340                         2024                                 11  1
## 6341                          387                               2024  1
## 6342                          yep                          literally  1
## 6343                          cao                      thefernandocz  1
## 6344                         2025                                 03  1
## 6345                         2024                                 11  1
## 6346                         2026                                 01  1
## 6347                        video                               jake  1
## 6348                          356                               2024  1
## 6349                         i’ve                              found  1
## 6350                        tempo                               runs  1
## 6351                          261                               2025  1
## 6352                          app                                 73  1
## 6353                          app                              store  1
## 6354                         it’s                         absolutely  1
## 6355                          ntc                           wellness  1
## 6356                       review                         excellence  1
## 6357                    pregnancy                            running  1
## 6358                         join                         challenges  1
## 6359                notifications                          followers  1
## 6360                   recommends                           distance  1
## 6361                      include                              audio  1
## 6362                      charles                            barkley  1
## 6363                      awesome                            awesome  1
## 6364                          232                             cousin  1
## 6365                         btig                                ubs  1
## 6366                          buy                            dickies  1
## 6367                       dookie                                170  1
## 6368                       flight                               2k3s  1
## 6369                        veces                                 en  1
## 6370                         2025                                 01  1
## 6371                          dri                                fit  1
## 6372                       jordan                                  1  1
## 6373                     familiar                           abundant  1
## 6374                       adidas                                  2  1
## 6375                    recording                             routes  1
## 6376                            2                               lack  1
## 6377                         spam                            filters  1
## 6378                          kms                        interesante  1
## 6379                          993                               yeah  1
## 6380                  application                               اهتم  1
## 6381                           de                            jericho  1
## 6382                         sock                            frowned  1
## 6383                     problema                             cuando  1
## 6384                         fire                                 tv  1
## 6385                         1884                               fire  1
## 6386                       yessir                               1546  1
## 6387                    treatment                            italics  1
## 6388                        reply                           athletes  1
## 6389                        lunch                                box  1
## 6390                         wide                           trainers  1
## 6391                            à                                ios  1
## 6392                        surge                                  4  1
## 6393                     japanese                             brands  1
## 6394                            3                               shoe  1
## 6395                         rock                                  6  1
## 6396                      loyalty                            program  1
## 6397                   pid1368010                                 ua  1
## 6398                       regine                                  6  1
## 6399                        reign                                  3  1
## 6400                        reign                                  5  1
## 6401                        reign                                  6  1
## 6402                          pro                        lightweight  1
## 6403                  compression                               tops  1
## 6404                        penny                                 gt  1
## 6405                         2025                                 02  1
## 6406                            ä                                132  1
## 6407                       hasn’t                            changed  1
## 6408                           4d                             adidas  1
## 6409                       adidas                                  3  1
## 6410                          pro                                evo  1
## 6411                      running                              shoes  1
## 6412                       triple                              white  1
## 6413                       adidas                                 39  1
## 6414                       adidas                                 64  1
## 6415                    yesterday                               i’ve  1
## 6416                          air                              force  1
## 6417                       adidas                                 49  1
## 6418                        cheio                                 de  1
## 6419                           de                            partida  1
## 6420                           da                             adidas  1
## 6421                          muy                           completa  1
## 6422                         para                          descargar  1
## 6423                        ayuda                                 en  1
## 6424                        ayuda                               para  1
## 6425                        buena                                app  1
## 6426                       simply                              takes  1
## 6427                    preciosas                              buena  1
## 6428                        puppy                               love  1
## 6429                          air                                max  1
## 6430                           12                             medium  1
## 6431                           14                             medium  1
## 6432                           16                             medium  1
## 6433                            6                                low  1
## 6434                           80                               bruh  1
## 6435                        books                                407  1
## 6436                       eleven                             eleven  1
## 6437                         nice                          colorways  1
## 6438                         love                               love  1
## 6439                         para                                acá  1
## 6440                        stock                             adidas  1
## 6441                accessibility                               line  1
## 6442                      sneaker                           releases  1
## 6443                        denim                             jacket  1
## 6444                         2025                                 09  1
## 6445                         2025                                 03  1
## 6446                         2024                                 12  1
## 6447                       months                                ago  1
## 6448                            2                              fedex  1
## 6449                         paid                       subscription  1
## 6450                          app                           restarts  1
## 6451                          nov                                226  1
## 6452                      outlook                            revenue  1
## 6453                       cardio                            machine  1
## 6454                           ma                              2015s  1
## 6455                         1783                               blue  1
## 6456                      uptempo                             slides  1
## 6457                      uptempo                                 95  1
## 6458                      uptempo                                low  1
## 6459                         herd                          mentality  1
## 6460                        world                                cup  1
## 6461                    unveiling                            flyease  1
## 6462                        world                                cup  1
## 6463                   aplicación                                por  1
## 6464                         2011                             cuando  1
## 6465                         2168                               nice  1
## 6466                          buy                                304  1
## 6467                         free                                app  1
## 6468                      sliders                              music  1
## 6469                        comfy                         navigation  1
## 6470                           10                               2026  1
## 6471                          app                               i’ve  1
## 6472                   gooperfect                               tool  1
## 6473                         dont                              waste  1
## 6474                        won’t                               save  1
## 6475                          los                               días  1
## 6476                          psc                                  1  1
## 6477                   aplicación                             además  1
## 6478                          ise                             adidas  1
## 6479                     başlatma                                 ve  1
## 6480                       succès                          dégoûtant  1
## 6481                         1556                              crocs  1
## 6482                           en                          recuperar  1
## 6483                            6                               2026  1
## 6484                        style                           workouts  1
## 6485                  ntvascainos                                 em  1
## 6486                        socks                           directly  1
## 6487                     özelliği                             paralı  1
## 6488                          876                                bro  1
## 6489                    recuperar                                 mi  1
## 6490                  lightweight                        comfortable  1
## 6491                 estadísticas                           facebook  1
## 6492                        don’t                               stop  1
## 6493                           mi                            opinion  1
## 6494                          sea                               road  1
## 6495                          174                            secured  1
## 6496                         2026                                 03  1
## 6497                         1511                           honestly  1
## 6498                        space                            hippies  1
## 6499                          635                             guilty  1
## 6500                         bull                             attack  1
## 6501                          690                               love  1
## 6502                       guided                           workouts  1
## 6503                     workouts                            defeats  1
## 6504                      amazing                           workouts  1
## 6505                    practical                             advise  1
## 6506                     slightly                               wide  1
## 6507                         4.70                                 70  1
## 6508                           77                               love  1
## 6509                      helpful                               4.79  1
## 6510                   individual                              steps  1
## 6511                   juan.bello                                nos  1
## 6512                     closures                             adidas  1
## 6513                     features                                map  1
## 6514                         yoga                            workout  1
## 6515                         logo                             adidas  1
## 6516                          max                                 95  1
## 6517                   reversible                             jacket  1
## 6518                          sun                               nike  1
## 6519                          das                          atividade  1
## 6520                          382                               2024  1
## 6521                        buena                              forma  1
## 6522                      anymore                               it’s  1
## 6523                     distance                           calories  1
## 6524                    vladieboi                          exclusive  1
## 6525                        miles                                2.3  1
## 6526                       vomero                            premium  1
## 6527                          evo                                 sl  1
## 6528                          dwc                           advanced  1
## 6529                       flared              leggingsleggingswomen  1
## 6530                            7                               days  1
## 6531                            8                              weeks  1
## 6532                       offers                           creative  1
## 6533                          pls                            suggest  1
## 6534                        miles                                 31  1
## 6535                  downshifter                           horrible  1
## 6536                         1016                               nike  1
## 6537                        trail                               runs  1
## 6538                         paid                                app  1
## 6539                         2026                                 01  1
## 6540                      journal                               july  1
## 6541                      fashion                            startup  1
## 6542                        covid                          lockdowns  1
## 6543                         2025                                 03  1
## 6544                       adidas                                 37  1
## 6545                         2023                                 11  1
## 6546                         2024                                 12  1
## 6547                          idk                             what’s  1
## 6548                          gps                            running  1
## 6549                         sync                            anymore  1
## 6550                         user                                luv  1
## 6551                          164                               2025  1
## 6552                      version                                  2  1
## 6553                         1678                               1679  1
## 6554                         nice                             crotch  1
## 6555                      include                              phone  1
## 6556                            1                                  2  1
## 6557                        4.362                                362  1
## 6558                        rings                              watch  1
## 6559                        esque                           footwear  1
## 6560                           10                               1049  1
## 6561                         4.13                                 13  1
## 6562                       yellow                              socks  1
## 6563                         gore                                tex  1
## 6564                         gold                              chain  1
## 6565                        sizes                                794  1
## 6566                       sounds                              weird  1
## 6567                         shoe                               1129  1
## 6568                         6.12                              miles  1
## 6569                      doesn’t                               load  1
## 6570                     extended                               2230  1
## 6571                            3                              miles  1
## 6572                        slide                                  1  1
## 6573                         1469                                  ª  1
## 6574                        count                          happening  1
## 6575                       losses                                hit  1
## 6576                         half                               hour  1
## 6577                            2                             months  1
## 6578                        quick                             drying  1
## 6579                      hitting                              pause  1
## 6580                      italics                            whyyyyy  1
## 6581                      fitness                           training  1
## 6582                         yoga                           mobility  1
## 6583                         link                              happy  1
## 6584                         link                              https  1
## 6585                         2025                                 06  1
## 6586                         2026                                 03  1
## 6587                          248                               2025  1
## 6588                        nosto                              nosto  1
## 6589                      2fwhite                              https  1
## 6590                         grey                              dunks  1
## 6591                      crimson                           location  1
## 6592                       jacket                             adidas  1
## 6593                         grey                        lightweight  1
## 6594                         shoe                         absolutely  1
## 6595                           41                               2026  1
## 6596                      branded                             aglets  1
## 6597                      cookies                               2117  1
## 6598                         1357                                 ma  1
## 6599                       201264                              nosto  1
## 6600                       pickup                                439  1
## 6601                     business                            insider  1
## 6602                    including                                dsw  1
## 6603                        grows                                 24  1
## 6604                          toe                                box  1
## 6605                        4.301                                301  1
## 6606                        4.123                                123  1
## 6607                          100                                 kg  1
## 6608                   eventually                               2234  1
## 6609                         2026                                 03  1
## 6610                         2025                                 01  1
## 6611                        sheee                               fine  1
## 6612                         2024                                 10  1
## 6613       jacketjacketmenfinally                               nike  1
## 6614                          ces                               2019  1
## 6615                     midnight                               navy  1
## 6616                          fit                            pleated  1
## 6617                          fit                             tennis  1
## 6618                       bomber                  jacketjacketwomen  1
## 6619                       french                              terry  1
## 6620                          mid                               rise  1
## 6621                   shoeswomen                           excelent  1
## 6622                           30                               2026  1
## 6623                          438                               2024  1
## 6624                     interval                           training  1
## 6625                      anymore                             bummed  1
## 6626                        won’t                               load  1
## 6627                      awesome                                app  1
## 6628                          488                                 ha  1
## 6629                        storm                                fit  1
## 6630                         2023                                 11  1
## 6631                         2025                                 01  1
## 6632                         2024                                 09  1
## 6633                         2024                                 07  1
## 6634                          433                               2024  1
## 6635                         i’ve                        recommended  1
## 6636                          146                               2025  1
## 6637                         it’s                             insane  1
## 6638                      service                               team  1
## 6639                     junttila                                453  1
## 6640                       highly                          recommend  1
## 6641                        photo                                i’m  1
## 6642                      workout                               i’ve  1
## 6643                      doesn’t                            display  1
## 6644                         time                           specific  1
## 6645                     disabled                            runners  1
## 6646                          150                               2025  1
## 6647                    breathing                          exercises  1
## 6648                         meal                               plan  1
## 6649                          191                               2025  1
## 6650                          379                               2024  1
## 6651                         2025                                 04  1
## 6652                         2025                                 03  1
## 6653                         2025                                 02  1
## 6654                         2025                                 01  1
## 6655                         2025                                 01  1
## 6656                         2024                                 11  1
## 6657                         2024                                 06  1
## 6658                         2024                                 06  1
## 6659                         2023                                 12  1
## 6660                         2026                                 03  1
## 6661                         2025                                 10  1
## 6662                          143                               2025  1
## 6663                      pilates                               yoga  1
## 6664                      awesome                                312  1
## 6665                       giving                          incorrect  1
## 6666                      enjoyed                            running  1
## 6667                   personally                              found  1
## 6668                         hiit                           strength  1
## 6669                      doesn’t                               load  1
## 6670                         hiit                               yoga  1
## 6671                         2024                                nov  1
## 6672                       claims                              pedro  1
## 6673                       insane                              stuff  1
## 6674                         kits                               home  1
## 6675                            4                           analysts  1
## 6676                      october                                  5  1
## 6677                         june                                  3  1
## 6678                         1206                               yall  1
## 6679                         free                                 rn  1
## 6680                         love                               free  1
## 6681                        worst                            company  1
## 6682                   basketball                              shoes  1
## 6683                         1812                                air  1
## 6684                        4.344                                344  1
## 6685                         1391                                gif  1
## 6686                          ten                              fifty  1
## 6687                       shirts                                 ua  1
## 6688                          cuz                               1887  1
## 6689                          lol                               1673  1
## 6690                        wrong                               time  1
## 6691                        ultra                              boost  1
## 6692                         fire                               1908  1
## 6693                       stance                             adidas  1
## 6694                        black                             adidas  1
## 6695                       stupid                             buying  1
## 6696                            û                               1697  1
## 6697                          180                               dude  1
## 6698                      faltaba                                200  1
## 6699                            8                               nike  1
## 6700                         free                               it’s  1
## 6701                       adidas                                ceo  1
## 6702                       speech                                142  1
## 6703                          gif                              giphy  1
## 6704                         fake                                lol  1
## 6705                          527                                gif  1
## 6706                         1685                               damn  1
## 6707                           af                                727  1
## 6708                         thin                              socks  1
## 6709                         wars                             collab  1
## 6710                       giving                              users  1
## 6711                  trustworthy                                app  1
## 6712                          350                             airpod  1
## 6713                       adidas                                 31  1
## 6714                       adidas                                 53  1
## 6715                      edition                                217  1
## 6716                     projects                               700m  1
## 6717                     donating                            portion  1
## 6718                       adidas                             severs  1
## 6719                     expected                               1.3b  1
## 6720                       adidas                              warns  1
## 6721                        kanye                               west  1
## 6722                        barry                            sanders  1
## 6723                         1547                               1548  1
## 6724                         2024                                 05  1
## 6725                            4                              veces  1
## 6726                         nice                               flow  1
## 6727                     training                                hit  1
## 6728                          ups                               cool  1
## 6729                    judicious                                air  1
## 6730                     regional                               park  1
## 6731                         days                            burners  1
## 6732                        man's                             earned  1
## 6733                   collection                              doesn  1
## 6734                        super                             stoked  1
## 6735                       tennis                            reuters  1
## 6736                          zna                               zion  1
## 6737                         hope                            diamond  1
## 6738                         zion                                  1  1
## 6739        hoodiesweatshirtwomen                               i’ve  1
## 6740                   jacketkids                               love  1
## 6741        jacketjacketwomengood                            quality  1
## 6742                           18                               2026  1
## 6743                            2                               hope  1
## 6744                          air                              sport  1
## 6745                            6                             vomero  1
## 6746                            2                              4.266  1
## 6747                            2                                air  1
## 6748                         mids                               1695  1
## 6749                          fly                                  4  1
## 6750                           4d                             adidas  1
## 6751                          964                              solid  1
## 6752                         1650                            yessirr  1
## 6753                            ª                                  þ  1
## 6754                            ª                               þlet  1
## 6755                         fire                               1885  1
## 6756                    programme                     d’entraînement  1
## 6757                         nike                            factory  1
## 6758                          145                               2011  1
## 6759                       gordan                                354  1
## 6760                         para                               quem  1
## 6761                           só                             querem  1
## 6762                       adidas                            adizero  1
## 6763                           bu                          özelliğin  1
## 6764                       olması                            gerekir  1
## 6765                          por                            existir  1
## 6766                       vomero                            premium  1
## 6767                        solid                                  á  1
## 6768                         2128                                omg  1
## 6769                            þ                                  ª  1
## 6770                         2024                                 11  1
## 6771                        хуйне                                378  1
## 6772                   приложения                                 но  1
## 6773                         нету                             россии  1
## 6774                          378                               2024  1
## 6775                       отстой                                467  1
## 6776                           но                                  в  1
## 6777                            в                              вашей  1
## 6778                     приходит                                код  1
## 6779                          467                               2023  1
## 6780                        вашей                              хуйне  1
## 6781                        никак                                 не  1
## 6782                         мейл                       перепробовал  1
## 6783                           не                              хочет  1
## 6784                            3                             разных  1
## 6785                           не                           приходит  1
## 6786                       страну                               хочу  1
## 6787                 перепробовал                                  3  1
## 6788                         хочу                           отметить  1
## 6789           зарегестрироваться                             отстой  1
## 6790           зарегистрироваться                                  в  1
## 6791                 залогиниться                                 не  1
## 6792                        найти                             страну  1
## 6793                          код                             майлом  1
## 6794                    присылать                                код  1
## 6795                          418                               2024  1
## 6796                        хочет                          присылать  1
## 6797                       списке                               нету  1
## 6798                            в                         геолокации  1
## 6799                         2023                                 10  1
## 6800                       разных                             адреса  1
## 6801                            в                             списке  1
## 6802                           на                               мейл  1
## 6803                       майлом                              никак  1
## 6804                 регистрацией                                 не  1
## 6805                          327                               2024  1
## 6806                     возможно                 зарегестрироваться  1
## 6807                         2024                                 04  1
## 6808                           не                           возможно  1
## 6809                       россии                                418  1
## 6810                   геолокации                         приложения  1
## 6811                     отметить                             страну  1
## 6812                          код                                 на  1
## 6813                       страну                                  в  1
## 6814                         2024                                 10  1
## 6815                         يكون                                فيه  1
## 6816                      التطبيق                              نتمنى  1
## 6817                        نتمنى                               يكون  1
## 6818                      العربية                              الصوت  1
## 6819                        ومحفز                                جدا  1
## 6820                          جدا                            running  1
## 6821                          فيه                             باللغة  1
## 6822                       باللغة                            العربية  1
## 6823                         書士                        zen14111969  1
## 6824                         使用                             doesnt  1
## 6825                         親切                                 な  1
## 6826                       日本一                               親切  1
## 6827                           な                               行政  1
## 6828                           介                             日本一  1
## 6829                         行政                               書士  1

2.9 Step 9: Document-Term Matrix (DTM)

tidy_dtm <- nike_df %>%
  unnest_tokens(word, text) %>%
  anti_join(stop_words) %>%
  count(source, word, sort = TRUE) %>%
  cast_dtm(source, word, n)

tidy_dtm
## <<DocumentTermMatrix (documents: 18, terms: 11342)>>
## Non-/sparse entries: 20243/183913
## Sparsity           : 90%
## Maximal term length: 40
## Weighting          : term frequency (tf)
inspect(tidy_dtm[1:6, 1:10])
## <<DocumentTermMatrix (documents: 6, terms: 10)>>
## Non-/sparse entries: 45/15
## Sparsity           : 25%
## Maximal term length: 8
## Weighting          : term frequency (tf)
## Sample             :
##                           Terms
## Docs                       2025   5 app love nike pair positive shoes workout
##   Adidas - App Store          2  20 567   90   13    0        0    14      29
##   Adidas - Reddit             0  14   0    2    1    7        1     6       0
##   Adidas - YouTube            1   6   0   25    4   28        0    34       0
##   Nike - App Store          239 294 639  206  128    3      324     0     206
##   Nike - Reddit               2  22  15   89  217  170        0   178       4
##   Under Armour - App Store    3  28 468  114    5    0        0     3      39
##                           Terms
## Docs                       workouts
##   Adidas - App Store             20
##   Adidas - Reddit                 0
##   Adidas - YouTube                0
##   Nike - App Store              286
##   Nike - Reddit                   0
##   Under Armour - App Store       34

3 Sentiment Analysis

3.1 Step 1: Load and Explore the Lexicons

afinn <- get_sentiments("afinn")
nrc   <- get_sentiments("nrc")
bing  <- get_sentiments("bing")

sentiments <- bind_rows(
  mutate(afinn, lexicon = "afinn"),
  mutate(nrc,   lexicon = "nrc"),
  mutate(bing,  lexicon = "bing")
)

nrc_data   <- subset(sentiments, lexicon == "nrc")
unique(nrc_data$sentiment)
##  [1] "trust"        "fear"         "negative"     "sadness"      "anger"       
##  [6] "surprise"     "positive"     "disgust"      "joy"          "anticipation"
bing_data  <- subset(sentiments, lexicon == "bing")
unique(bing_data$sentiment)
## [1] "negative" "positive"
afinn_data <- subset(sentiments, lexicon == "afinn")
summary(afinn_data$value)
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
## -5.0000 -2.0000 -2.0000 -0.5894  2.0000  5.0000

3.2 Step 2: NRC Emotion Filters

nrc_joy          <- get_sentiments("nrc") %>% filter(sentiment == "joy")
nrc_anger        <- get_sentiments("nrc") %>% filter(sentiment == "anger")
nrc_trust        <- get_sentiments("nrc") %>% filter(sentiment == "trust")
nrc_anticipation <- get_sentiments("nrc") %>% filter(sentiment == "anticipation")

# Joy words in Nike Product Reviews
tidy_nike %>%
  filter(source == "Nike - Product Reviews") %>%
  inner_join(nrc_joy) %>%
  count(word, sort = TRUE)
## readtext object consisting of 14 documents and 0 docvars.
## # A data frame: 14 × 3
##   word         n text     
##   <chr>    <int> <chr>    
## 1 love         9 "\"\"..."
## 2 daughter     3 "\"\"..."
## 3 happy        3 "\"\"..."
## 4 favorite     2 "\"\"..."
## 5 true         2 "\"\"..."
## 6 baby         1 "\"\"..."
## # ℹ 8 more rows
# Anger words
tidy_nike %>%
  filter(source == "Nike - Product Reviews") %>%
  inner_join(nrc_anger) %>%
  count(word, sort = TRUE)
## readtext object consisting of 4 documents and 0 docvars.
## # A data frame: 4 × 3
##   word       n text     
##   <chr>  <int> <chr>    
## 1 fleece     7 "\"\"..."
## 2 fits       5 "\"\"..."
## 3 force      1 "\"\"..."
## 4 storm      1 "\"\"..."
# Trust words
tidy_nike %>%
  filter(source == "Nike - Product Reviews") %>%
  inner_join(nrc_trust) %>%
  count(word, sort = TRUE)
## readtext object consisting of 16 documents and 0 docvars.
## # A data frame: 16 × 3
##   word          n text     
##   <chr>     <int> <chr>    
## 1 cap           3 "\"\"..."
## 2 happy         3 "\"\"..."
## 3 wear          3 "\"\"..."
## 4 favorite      2 "\"\"..."
## 5 recommend     2 "\"\"..."
## 6 true          2 "\"\"..."
## # ℹ 10 more rows
# Anticipation words
tidy_nike %>%
  filter(source == "Nike - Product Reviews") %>%
  inner_join(nrc_anticipation) %>%
  count(word, sort = TRUE)
## readtext object consisting of 8 documents and 0 docvars.
## # A data frame: 8 × 3
##   word      n text     
##   <chr> <int> <chr>    
## 1 cap       3 "\"\"..."
## 2 happy     3 "\"\"..."
## 3 track     3 "\"\"..."
## 4 bye       2 "\"\"..."
## 5 child     1 "\"\"..."
## 6 glad      1 "\"\"..."
## # ℹ 2 more rows

3.3 Step 3: Comparing Sentiment Libraries per Source

run_sentiment_comparison <- function(data, title_label) {
  afinn_score <- data %>%
    inner_join(get_sentiments("afinn")) %>%
    summarise(sentiment = sum(value)) %>%
    mutate(method = "AFINN")

  bing_and_nrc <- bind_rows(
    data %>%
      inner_join(get_sentiments("bing")) %>%
      mutate(method = "Bing et al."),
    data %>%
      inner_join(get_sentiments("nrc") %>%
                   filter(sentiment %in% c("positive", "negative"))) %>%
      mutate(method = "NRC")
  ) %>%
    count(method, sentiment) %>%
    spread(sentiment, n, fill = 0) %>%
    mutate(sentiment = positive - negative)

  bind_rows(afinn_score, bing_and_nrc) %>%
    ggplot(aes(method, sentiment, fill = method)) +
    geom_col(show.legend = FALSE) +
    facet_wrap(~method, ncol = 1, scales = "free_y") +
    labs(title = paste(title_label, ": Sentiment Across Lexicons"))
}

app_store       <- tidy_nike %>% filter(source == "Nike - App Store")
product_reviews <- tidy_nike %>% filter(source == "Nike - Product Reviews")
reddit          <- tidy_nike %>% filter(source == "Nike - Reddit")
twitter         <- tidy_nike %>% filter(source == "Nike - Twitter")
youtube         <- tidy_nike %>% filter(source == "Nike - YouTube")
news            <- tidy_nike %>% filter(source == "Nike - News")

run_sentiment_comparison(app_store,       "App Store Reviews")

run_sentiment_comparison(product_reviews, "Nike Product Reviews")

run_sentiment_comparison(reddit,          "Reddit Comments")

run_sentiment_comparison(twitter,         "Twitter Mentions")

run_sentiment_comparison(youtube,         "YouTube Comments")

run_sentiment_comparison(news,            "News Headlines")

3.4 Step 4: Most Common Positive & Negative Words per Source

plot_pos_neg <- function(data, title_label) {
  data %>%
    inner_join(get_sentiments("bing")) %>%
    count(word, sentiment, sort = TRUE) %>%
    group_by(sentiment) %>%
    top_n(10) %>%
    ungroup() %>%
    mutate(word = reorder(word, n)) %>%
    ggplot(aes(word, n, fill = sentiment)) +
    geom_col(show.legend = FALSE) +
    facet_wrap(~sentiment, scales = "free_y") +
    labs(y = "Contribution to sentiment", x = NULL,
         title = paste(title_label, ": Most Common Positive and Negative Words")) +
    coord_flip()
}

plot_pos_neg(app_store,       "App Store Reviews")

plot_pos_neg(product_reviews, "Nike Product Reviews")

plot_pos_neg(reddit,          "Reddit Comments")

plot_pos_neg(twitter,         "Twitter Mentions")

plot_pos_neg(youtube,         "YouTube Comments")

plot_pos_neg(news,            "News Headlines")

# Overall (stemmed)
tidy_nike_stem %>%
  inner_join(get_sentiments("bing"), by = "word") %>%
  count(word, sentiment, sort = TRUE) %>%
  group_by(sentiment) %>%
  slice_max(order_by = n, n = 10, with_ties = FALSE) %>%
  ungroup() %>%
  mutate(word = tidytext::reorder_within(word, n, sentiment)) %>%
  ggplot(aes(word, n, fill = sentiment)) +
  geom_col(show.legend = FALSE) +
  facet_wrap(~sentiment, scales = "free_y") +
  tidytext::scale_x_reordered() +
  labs(y = "Contribution to sentiment", x = NULL,
       title = "Overall: Most Common Positive and Negative Words") +
  coord_flip()


4 Topic Modelling (LDA)

4.1 Step 1: Build DTM for LDA

nike_lda_dtm <- tidy_nike %>%
  count(source, word, sort = TRUE) %>%
  cast_dtm(source, word, n)

4.2 Step 2: Run LDA Model

nike_lda <- LDA(nike_lda_dtm, k = 4, control = list(seed = 123))
nike_lda
## A LDA_VEM topic model with 4 topics.

4.3 Step 3: Per-topic Per-word Probabilities (Beta)

nike_topics <- tidy(nike_lda, matrix = "beta")

top_terms <- nike_topics %>%
  group_by(topic) %>%
  top_n(10, beta) %>%
  ungroup() %>%
  arrange(topic, -beta)

top_terms
## # A tibble: 40 × 3
##    topic term       beta
##    <int> <chr>     <dbl>
##  1     1 app     0.0743 
##  2     1 running 0.0178 
##  3     1 run     0.0170 
##  4     1 love    0.0147 
##  5     1 time    0.0119 
##  6     1 it’s    0.0117 
##  7     1 track   0.00887
##  8     1 i’ve    0.00845
##  9     1 watch   0.00763
## 10     1 adidas  0.00698
## # ℹ 30 more rows

4.4 Step 4: Plot Top Terms per Topic

top_terms %>%
  mutate(term = reorder(term, beta)) %>%
  ggplot(aes(term, beta, fill = factor(topic))) +
  geom_col(show.legend = FALSE) +
  facet_wrap(~topic, scales = "free") +
  coord_flip() +
  labs(title = "Nike LDA Topic Modeling – Top Terms per Topic",
       x = NULL, y = "Beta (Word Probability)")

4.5 Step 5: Per-document Topic Distribution (Gamma)

nike_gamma <- tidy(nike_lda, matrix = "gamma")

nike_gamma %>%
  mutate(document = reorder(document, gamma * topic)) %>%
  ggplot(aes(factor(topic), gamma, fill = factor(topic))) +
  geom_col(show.legend = FALSE) +
  facet_wrap(~document) +
  labs(title = "Topic Distribution per Source",
       x = "Topic", y = "Gamma (Topic Probability)")


5 Business-Driven Text Analytics

5.1 1. TF-IDF Brand Differentiation

custom_stopwords <- tibble(word = c("nike", "just", "im", "ive"))

tidy_nike_tfidf <- tidy_nike %>%
  anti_join(custom_stopwords, by = "word")

tfidf_source <- tidy_nike_tfidf %>%
  count(source, word, sort = TRUE) %>%
  bind_tf_idf(term = word, document = source, n = n)

tfidf_source %>%
  group_by(source) %>%
  slice_max(order_by = tf_idf, n = 10, with_ties = FALSE) %>%
  ungroup() %>%
  mutate(word = tidytext::reorder_within(word, tf_idf, source)) %>%
  ggplot(aes(word, tf_idf, fill = source)) +
  geom_col(show.legend = FALSE) +
  facet_wrap(~source, scales = "free_y") +
  tidytext::scale_x_reordered() +
  coord_flip() +
  labs(title = "TF-IDF: Most Distinctive Words by Source",
       x = NULL, y = "TF-IDF")

5.2 2. Aspect-Based Sentiment Analysis

aspect_dictionary <- tribble(
  ~word,         ~aspect,
  "size",        "Fit/Sizing",
  "fit",         "Fit/Sizing",
  "fits",        "Fit/Sizing",
  "half",        "Fit/Sizing",
  "oversized",   "Fit/Sizing",
  "sizing",      "Fit/Sizing",
  "tight",       "Fit/Sizing",
  "loose",       "Fit/Sizing",
  "comfortable", "Comfort",
  "comfy",       "Comfort",
  "comfort",     "Comfort",
  "soft",        "Comfort",
  "cushion",     "Comfort",
  "quality",     "Quality/Durability",
  "peeled",      "Quality/Durability",
  "cheap",       "Quality/Durability",
  "durable",     "Quality/Durability",
  "fell",        "Quality/Durability",
  "problem",     "Quality/Durability",
  "awkward",     "Quality/Durability",
  "style",       "Style/Design",
  "design",      "Style/Design",
  "colorway",    "Style/Design",
  "look",        "Style/Design",
  "black",       "Style/Design",
  "fleece",      "Style/Design",
  "bomber",      "Style/Design",
  "app",         "App Experience",
  "workout",     "App Experience",
  "workouts",    "App Experience",
  "fitness",     "App Experience",
  "crashing",    "App Experience",
  "crashes",     "App Experience",
  "bugs",        "App Experience",
  "issue",       "App Experience",
  "issues",      "App Experience",
  "frustrating", "App Experience",
  "revenue",     "Corporate/Business",
  "strategy",    "Corporate/Business",
  "investor",    "Corporate/Business",
  "stock",       "Corporate/Business",
  "ceo",         "Corporate/Business",
  "wholesale",   "Corporate/Business",
  "relations",   "Corporate/Business",
  "team",        "Sports/Cultural Visibility",
  "national",    "Sports/Cultural Visibility",
  "shirt",       "Sports/Cultural Visibility",
  "jersey",      "Sports/Cultural Visibility",
  "cup",         "Sports/Cultural Visibility",
  "brazil",      "Sports/Cultural Visibility",
  "football",    "Sports/Cultural Visibility"
)
aspect_terms <- tidy_nike %>%
  inner_join(aspect_dictionary, by = "word")

aspect_sentiment_bing <- aspect_terms %>%
  inner_join(get_sentiments("bing"), by = "word")

aspect_summary_bing <- aspect_sentiment_bing %>%
  count(aspect, sentiment, sort = TRUE)

aspect_summary_bing
## readtext object consisting of 5 documents and 1 docvar.
## # A data frame: 5 × 4
##   aspect             sentiment     n text     
##   <chr>              <chr>     <int> <chr>    
## 1 Comfort            positive    214 "\"\"..."
## 2 App Experience     negative    168 "\"\"..."
## 3 Quality/Durability negative     36 "\"\"..."
## 4 Fit/Sizing         negative     11 "\"\"..."
## 5 Quality/Durability positive      9 "\"\"..."
# Net sentiment by aspect
aspect_net_bing <- aspect_sentiment_bing %>%
  mutate(score = if_else(sentiment == "positive", 1, -1)) %>%
  group_by(aspect) %>%
  summarise(
    mentions      = n(),
    net_sentiment = sum(score),
    avg_sentiment = mean(score),
    .groups = "drop"
  ) %>%
  arrange(desc(avg_sentiment))

aspect_net_bing
## # A tibble: 4 × 4
##   aspect             mentions net_sentiment avg_sentiment
##   <chr>                 <int>         <dbl>         <dbl>
## 1 Comfort                 214           214           1  
## 2 Quality/Durability       45           -27          -0.6
## 3 App Experience          168          -168          -1  
## 4 Fit/Sizing               11           -11          -1
# Positive vs negative counts by aspect
aspect_summary_bing %>%
  ggplot(aes(x = aspect, y = n, fill = sentiment)) +
  geom_col(position = "dodge") +
  coord_flip() +
  labs(title = "Aspect-Based Sentiment Analysis (Bing)",
       x = NULL, y = "Word Count")

# Average sentiment by aspect and source
aspect_sentiment_bing %>%
  mutate(score = if_else(sentiment == "positive", 1, -1)) %>%
  group_by(source, aspect) %>%
  summarise(
    mentions      = n(),
    net_sentiment = sum(score),
    avg_sentiment = mean(score),
    .groups = "drop"
  ) %>%
  ggplot(aes(x = aspect, y = avg_sentiment, fill = aspect)) +
  geom_col(show.legend = FALSE) +
  facet_wrap(~source) +
  coord_flip() +
  labs(title = "Aspect-Based Sentiment by Source",
       x = NULL, y = "Average Sentiment Score")

5.3 3. Keyword Co-occurrence Network

word_cors <- tidy_nike %>%
  group_by(word) %>%
  filter(n() >= 5) %>%
  pairwise_cor(word, source, sort = TRUE)

# Bar chart for key Nike terms
word_cors %>%
  filter(item1 %in% c("nike", "shoes", "quality", "price")) %>%
  group_by(item1) %>%
  top_n(5) %>%
  ungroup() %>%
  mutate(item2 = reorder(item2, correlation)) %>%
  ggplot(aes(item2, correlation)) +
  geom_bar(stat = "identity") +
  facet_wrap(~item1, scales = "free") +
  coord_flip() +
  labs(title = "Word Correlations with Key Nike Terms")


6 Brand Perception

6.1 Q1: How is Nike Emotionally Positioned Online?

tidy_nike %>%
  inner_join(get_sentiments("nrc")) %>%
  filter(sentiment %in% c("joy", "anger", "trust", "anticipation",
                          "fear", "sadness", "surprise", "disgust")) %>%
  count(sentiment, sort = TRUE) %>%
  mutate(sentiment = reorder(sentiment, n)) %>%
  ggplot(aes(sentiment, n, fill = sentiment)) +
  geom_col(show.legend = FALSE) +
  labs(x = NULL, y = "Word Count",
       title = "Nike: Overall Emotional Positioning Across All Sources") +
  coord_flip()

tidy_nike %>%
  inner_join(get_sentiments("nrc")) %>%
  filter(sentiment %in% c("joy", "anger", "trust", "anticipation",
                          "fear", "sadness", "surprise", "disgust",
                          "positive", "negative")) %>%
  count(source, sentiment) %>%
  group_by(source) %>%
  mutate(proportion = n / sum(n)) %>%
  ungroup() %>%
  mutate(sentiment = reorder(sentiment, proportion)) %>%
  ggplot(aes(sentiment, proportion, fill = sentiment)) +
  geom_col(show.legend = FALSE) +
  facet_wrap(~source, ncol = 3, scales = "free_y") +
  scale_y_continuous(labels = percent_format()) +
  labs(x = NULL, y = "Percentage of Emotional Words",
       title = "Nike: Emotional Breakdown per Source (% of words)") +
  coord_flip()

# AFINN score per source
tidy_nike %>%
  inner_join(get_sentiments("afinn")) %>%
  group_by(source) %>%
  summarise(sentiment = sum(value)) %>%
  mutate(source = reorder(source, sentiment)) %>%
  ggplot(aes(source, sentiment, fill = sentiment > 0)) +
  geom_col(show.legend = FALSE) +
  labs(x = NULL, y = "Sentiment Score",
       title = "AFINN: Sentiment Intensity per Source") +
  coord_flip()

# Bing net score per source
tidy_nike %>%
  inner_join(get_sentiments("bing")) %>%
  count(source, sentiment) %>%
  spread(sentiment, n, fill = 0) %>%
  mutate(sentiment = positive - negative) %>%
  mutate(source = reorder(source, sentiment)) %>%
  ggplot(aes(source, sentiment, fill = sentiment > 0)) +
  geom_col(show.legend = FALSE) +
  labs(x = NULL, y = "Net Sentiment Score (Positive - Negative)",
       title = "Bing: Net Sentiment Score per Source") +
  coord_flip()

# NRC net score per source
tidy_nike %>%
  inner_join(get_sentiments("nrc")) %>%
  filter(sentiment %in% c("positive", "negative")) %>%
  count(source, sentiment) %>%
  spread(sentiment, n, fill = 0) %>%
  mutate(sentiment = positive - negative) %>%
  mutate(source = reorder(source, sentiment)) %>%
  ggplot(aes(source, sentiment, fill = sentiment > 0)) +
  geom_col(show.legend = FALSE) +
  labs(x = NULL, y = "Net Sentiment Score (Positive - Negative)",
       title = "NRC: Net Sentiment Score per Source") +
  coord_flip()

6.2 Q2: What Themes are Most Associated with Brand Loyalty?

# Trust words by channel
tidy_nike %>% filter(source == "Nike - App Store") %>%
  inner_join(nrc_trust) %>% count(word, sort = TRUE)
## readtext object consisting of 142 documents and 0 docvars.
## # A data frame: 142 × 3
##   word         n text     
##   <chr>    <int> <chr>    
## 1 neutral     51 "\"\"..."
## 2 strength    23 "\"\"..."
## 3 favorite    20 "\"\"..."
## 4 level       20 "\"\"..."
## 5 content     19 "\"\"..."
## 6 perfect     19 "\"\"..."
## # ℹ 136 more rows
tidy_nike %>% filter(source == "Nike - Product Reviews") %>%
  inner_join(nrc_trust) %>% count(word, sort = TRUE)
## readtext object consisting of 16 documents and 0 docvars.
## # A data frame: 16 × 3
##   word          n text     
##   <chr>     <int> <chr>    
## 1 cap           3 "\"\"..."
## 2 happy         3 "\"\"..."
## 3 wear          3 "\"\"..."
## 4 favorite      2 "\"\"..."
## 5 recommend     2 "\"\"..."
## 6 true          2 "\"\"..."
## # ℹ 10 more rows
tidy_nike %>% filter(source == "Nike - Reddit") %>%
  inner_join(nrc_trust) %>% count(word, sort = TRUE)
## readtext object consisting of 170 documents and 0 docvars.
## # A data frame: 170 × 3
##   word       n text     
##   <chr>  <int> <chr>    
## 1 wear      87 "\"\"..."
## 2 don       53 "\"\"..."
## 3 pretty    38 "\"\"..."
## 4 clean     37 "\"\"..."
## 5 hope      31 "\"\"..."
## 6 real      31 "\"\"..."
## # ℹ 164 more rows
# Top trust words — all sources combined
tidy_nike %>%
  inner_join(nrc_trust) %>%
  count(word, sort = TRUE) %>%
  top_n(20) %>%
  mutate(word = reorder(word, n)) %>%
  ggplot(aes(word, n, fill = word)) +
  geom_col(show.legend = FALSE) +
  labs(x = NULL, y = "Word Count",
       title = "Nike: Top Trust Words – Themes Driving Brand Loyalty") +
  coord_flip()

loyalty_words <- c("wear", "favorite", "recommend", "real", "true",
                   "perfect", "happy", "strength", "love", "free",
                   "comfortable", "trust")

# Bigrams around loyalty words
bigrams_filtered %>%
  filter(!str_detect(word1, "^[0-9]+$"), !str_detect(word2, "^[0-9]+$")) %>%
  filter(!str_detect(word1, "'"), !str_detect(word2, "'")) %>%
  filter(!word1 %in% c("positive", "negative", "neutral")) %>%
  filter(!word2 %in% c("positive", "negative", "neutral")) %>%
  filter(word1 %in% loyalty_words | word2 %in% loyalty_words) %>%
  count(word1, word2, sort = TRUE) %>%
  top_n(20) %>%
  unite(bigram, word1, word2, sep = " ") %>%
  mutate(bigram = reorder(bigram, n)) %>%
  ggplot(aes(bigram, n, fill = bigram)) +
  geom_col(show.legend = FALSE) +
  labs(x = NULL, y = "Count",
       title = "Nike: Bigrams Around Key Loyalty and Trust Words") +
  coord_flip()

# Trigrams around loyalty words
nike_df %>%
  unnest_tokens(trigram, text, token = "ngrams", n = 3) %>%
  separate(trigram, c("word1", "word2", "word3"), sep = " ") %>%
  filter(!word1 %in% stop_words$word, !word2 %in% stop_words$word,
         !word3 %in% stop_words$word) %>%
  filter(!str_detect(word1, "^[0-9]+$"), !str_detect(word2, "^[0-9]+$"),
         !str_detect(word3, "^[0-9]+$")) %>%
  filter(!str_detect(word1, "'"), !str_detect(word2, "'"),
         !str_detect(word3, "'")) %>%
  filter(!word1 %in% c("positive", "negative", "neutral"),
         !word2 %in% c("positive", "negative", "neutral"),
         !word3 %in% c("positive", "negative", "neutral")) %>%
  filter(word1 %in% loyalty_words | word2 %in% loyalty_words |
           word3 %in% loyalty_words) %>%
  count(word1, word2, word3, sort = TRUE) %>%
  top_n(5) %>%
  unite(trigram, word1, word2, word3, sep = " ") %>%
  mutate(trigram = reorder(trigram, n)) %>%
  ggplot(aes(trigram, n, fill = trigram)) +
  geom_col(show.legend = FALSE) +
  labs(x = NULL, y = "Count",
       title = "Nike: Trigrams Around Key Loyalty and Trust Words") +
  coord_flip()

# Trust words as % — by channel
plot_trust_pct <- function(data, title_label) {
  data %>%
    inner_join(nrc_trust) %>%
    count(word, sort = TRUE) %>%
    mutate(proportion = n / sum(n),
           word       = reorder(word, proportion)) %>%
    ggplot(aes(word, proportion, fill = word)) +
    geom_col(show.legend = FALSE) +
    scale_y_continuous(labels = percent_format()) +
    labs(x = NULL, y = "Percentage of Trust Words",
         title = title_label) +
    coord_flip()
}

plot_trust_pct(tidy_nike %>% filter(source == "Nike - App Store"),
               "App Store Reviews: Top Trust Words")

plot_trust_pct(tidy_nike %>% filter(source == "Nike - Product Reviews"),
               "Nike Product Reviews: Top Trust Words")

plot_trust_pct(tidy_nike %>% filter(source == "Nike - Reddit"),
               "Reddit Comments: Top Trust Words")

# All sources combined (%)
tidy_nike %>%
  inner_join(nrc_trust) %>%
  count(word, sort = TRUE) %>%
  mutate(proportion = n / sum(n)) %>%
  top_n(20, proportion) %>%
  mutate(word = reorder(word, proportion)) %>%
  ggplot(aes(word, proportion, fill = word)) +
  geom_col(show.legend = FALSE) +
  scale_y_continuous(labels = percent_format()) +
  labs(x = NULL, y = "Percentage of Trust Words",
       title = "Nike: Top Trust Words in Customer Reviews") +
  coord_flip()


7 Product Strategy Analysis

7.1 Step 1–3: Isolate, Extract & Parse Product Reviews

product_raw  <- nike_df %>% filter(source == "Nike - Product Reviews")
product_text_blob <- product_raw$text[[1]]

product_lines <- tibble(
  raw_line = str_split(product_text_blob, "\n")[[1]]
) %>%
  mutate(raw_line = str_squish(raw_line)) %>%
  filter(raw_line != "")

head(product_lines, 20)
## # A tibble: 20 × 1
##    raw_line                                                                     
##    <chr>                                                                        
##  1 "Women's Oversized Mid-Rise Track PantsPantsWomen\"10/10. If you are thinkin…
##  2 "The only problem is that the pants are a bit long for me. Overall, I’m happ…
##  3 "Women's Oversized French Terry Crew-Neck SweatshirtHoodieWomen\"Insanely cu…
##  4 "True to size, I got an xs.\""                                               
##  5 "Women's Loose Full-Zip Cropped HoodieSweatshirtWomen\"I’ve been really impr…
##  6 "cooler winter months. The fleece is soft and cozy\""                        
##  7 "Women's High-Waisted Slim Flared LeggingsLeggingsWomen\"These snatch you up…
##  8 "For reference I’m 5’1” and petite ~104lbs and I got my normal\""            
##  9 "\""                                                                         
## 10 "Nike Dunk Low"                                                              
## 11 "Women's Shoes\"ShoesWomen\"I like the color. It feels a bit tight."         
## 12 "\""                                                                         
## 13 "\"Nike Air Force 1 '07 EasyOn"                                              
## 14 "Women's Shoes\"ShoesWomen\"Excelent...!!! Very good shoes... My child so ha…
## 15 "everything was perfect, as usual with Nike…\""                              
## 16 "Women's Oversized Bomber JacketJacketWomen\"This jacket has a more feminine…
## 17 "it is lightweight roomy and looks nice either done up or undone,\""         
## 18 "Women's Oversized Full-Zip Track JacketJacketWomenGood quality, but too big…
## 19 "Women's Dri-FIT Pleated Tennis SkirtSkirtWomen\"This NikeCourt skirt is sup…
## 20 "It runs true to size. I ordered my normal size\""
product_reviews_structured <- product_lines %>%
  mutate(
    audience = str_extract(raw_line, "\\b(Women|Men|Kids|Everyone)\\b"),
    product_category = str_extract(
      raw_line,
      "\\b(Pants|Hoodie|Sweatshirt|Leggings|Shoes|Jacket|Skirt|Dress|Shirt|Accessories|Accessorise)\\b"
    ),
    product_name = str_trim(str_remove(
      raw_line,
      "\\b(Pants|Hoodie|Sweatshirt|Leggings|Shoes|Jacket|Skirt|Dress|Shirt|Accessories|Accessorise)\\b.*$"
    )),
    review_text = str_trim(str_remove(
      raw_line,
      "^.*\\b(Women|Men|Kids|Everyone)\\b"
    ))
  ) %>%
  filter(!is.na(product_name), product_name != "",
         !is.na(product_category), product_category != "",
         !is.na(audience), audience != "",
         !is.na(review_text), review_text != "") %>%
  mutate(review_id = row_number())

glimpse(product_reviews_structured)
## Rows: 3
## Columns: 6
## $ raw_line         <chr> "Women's Loose Full-Zip Cropped HoodieSweatshirtWomen…
## $ audience         <chr> "Women", "Women", "Women"
## $ product_category <chr> "Hoodie", "Shoes", "Shoes"
## $ product_name     <chr> "Women's Loose Full-Zip Cropped HoodieSweatshirtWomen…
## $ review_text      <chr> "'s Loose Full-Zip Cropped HoodieSweatshirtWomen\"I’v…
## $ review_id        <int> 1, 2, 3
table(product_reviews_structured$product_category)
## 
## Hoodie  Shoes 
##      1      2
table(product_reviews_structured$audience)
## 
## Women 
##     3

7.2 Steps 4–7: Tokenise, Identify Negatives & Normalise

product_tokens <- product_reviews_structured %>%
  unnest_tokens(word, review_text) %>%
  anti_join(stop_words, by = "word") %>%
  filter(!str_detect(word, "^[0-9]+$"), str_length(word) > 2)

product_negative_words <- product_tokens %>%
  inner_join(get_sentiments("bing"), by = "word") %>%
  filter(sentiment == "negative")

negative_by_product <- product_negative_words %>%
  count(product_name, word, sort = TRUE)
head(negative_by_product, 20)
## # A tibble: 1 × 3
##   product_name                                                       word      n
##   <chr>                                                              <chr> <int>
## 1 "Women's Loose Full-Zip Cropped HoodieSweatshirtWomen\"I’ve been … loose     1
negative_volume_by_product <- product_negative_words %>%
  count(product_name, sort = TRUE)
negative_volume_by_product
## # A tibble: 1 × 2
##   product_name                                                                 n
##   <chr>                                                                    <int>
## 1 "Women's Loose Full-Zip Cropped HoodieSweatshirtWomen\"I’ve been really…     1
review_volume_by_product <- product_reviews_structured %>%
  count(product_name, name = "review_count")

negative_rate_by_product <- negative_volume_by_product %>%
  left_join(review_volume_by_product, by = "product_name") %>%
  mutate(negative_words_per_review = n / review_count) %>%
  arrange(desc(negative_words_per_review))

negative_rate_by_product
## # A tibble: 1 × 4
##   product_name                             n review_count negative_words_per_r…¹
##   <chr>                                <int>        <int>                  <dbl>
## 1 "Women's Loose Full-Zip Cropped Hoo…     1            1                      1
## # ℹ abbreviated name: ¹​negative_words_per_review

7.3 Steps 8–11: Product Aspect Sentiment

product_aspect_dictionary <- tribble(
  ~word,         ~aspect,
  "size",        "Fit/Sizing",  "fit",  "Fit/Sizing",  "fits", "Fit/Sizing",
  "half",        "Fit/Sizing",  "oversized", "Fit/Sizing", "tight", "Fit/Sizing",
  "loose",       "Fit/Sizing",  "awkward",   "Fit/Sizing", "long",  "Fit/Sizing",
  "large",       "Fit/Sizing",  "small",     "Fit/Sizing",
  "comfortable", "Comfort",     "comfy",     "Comfort",    "comfort", "Comfort",
  "soft",        "Comfort",     "roomy",     "Comfort",
  "quality",     "Quality/Durability", "peeled", "Quality/Durability",
  "fell",        "Quality/Durability", "cheap",  "Quality/Durability",
  "shrink",      "Quality/Durability", "shrunk", "Quality/Durability",
  "durable",     "Quality/Durability", "problem","Quality/Durability",
  "issues",      "Quality/Durability",
  "style",       "Style/Design", "design",   "Style/Design",
  "color",       "Style/Design", "colorway", "Style/Design",
  "fleece",      "Style/Design", "bomber",   "Style/Design",
  "beautiful",   "Style/Design", "feminine", "Style/Design"
)

product_aspect_sentiment <- product_tokens %>%
  inner_join(product_aspect_dictionary, by = "word") %>%
  inner_join(get_sentiments("bing"), by = "word")

product_aspect_summary <- product_aspect_sentiment %>%
  mutate(score = if_else(sentiment == "positive", 1, -1)) %>%
  group_by(product_name, aspect) %>%
  summarise(
    mentions      = n(),
    net_sentiment = sum(score),
    avg_sentiment = mean(score),
    .groups = "drop"
  ) %>%
  arrange(product_name, avg_sentiment)

product_aspect_summary
## # A tibble: 1 × 5
##   product_name                       aspect mentions net_sentiment avg_sentiment
##   <chr>                              <chr>     <int>         <dbl>         <dbl>
## 1 "Women's Loose Full-Zip Cropped H… Fit/S…        1            -1            -1
product_negative_drivers <- product_aspect_sentiment %>%
  filter(sentiment == "negative") %>%
  count(product_name, aspect, word, sort = TRUE)
head(product_negative_drivers, 30)
## # A tibble: 1 × 4
##   product_name                                                aspect word      n
##   <chr>                                                       <chr>  <chr> <int>
## 1 "Women's Loose Full-Zip Cropped HoodieSweatshirtWomen\"I’v… Fit/S… loose     1
product_aspect_summary %>%
  ggplot(aes(x = aspect, y = avg_sentiment, fill = aspect)) +
  geom_col(show.legend = FALSE) +
  facet_wrap(~product_name, scales = "free_y") +
  coord_flip() +
  labs(title = "Aspect Sentiment by Product Line",
       x = NULL, y = "Average Sentiment Score")


8 Sustainability Narrative Analysis

sustainability_keywords <- tibble(word = c(
  "sustainable", "sustainability", "eco", "recycle",
  "recycled", "recycling", "environment", "environmental", "planet",
  "carbon", "footprint", "renewable", "organic", "biodegradable",
  "climate", "emissions", "waste", "ethical", "responsible",
  "circular", "vegan", "natural", "conservation", "impact"
))

greenwashing_keywords <- tibble(word = c(
  "greenwashing", "greenwash", "misleading", "mislead",
  "propaganda", "dishonest", "pretend", "pretending",
  "performative", "hypocrisy", "hypocrite", "virtue"
))

sustainability_tokens <- nike_tokens %>%
  select(source, word) %>%
  inner_join(sustainability_keywords, by = "word") %>%
  mutate(brand = case_when(
    source %in% adidas_sources ~ "Adidas",
    source %in% ua_sources     ~ "Under Armour",
    TRUE                       ~ "Nike"
  ))

8.1 Q1: Is Nike’s Sustainability Messaging Resonating?

# Volume per channel
sustainability_tokens %>%
  count(source, sort = TRUE) %>%
  mutate(source = reorder(source, n)) %>%
  ggplot(aes(source, n, fill = source)) +
  geom_col(show.legend = FALSE) +
  coord_flip() +
  labs(title = "Sustainability Mentions by Source",
       subtitle = "Higher count = more sustainability language in that channel",
       x = NULL, y = "Count")

# Tone per channel
bing_lexicon <- get_sentiments("bing")
sustainability_tokens %>%
  inner_join(bing_lexicon, by = "word") %>%
  count(source, sentiment) %>%
  spread(sentiment, n, fill = 0) %>%
  mutate(net_sentiment = positive - negative,
         source        = reorder(source, net_sentiment)) %>%
  ggplot(aes(source, net_sentiment, fill = net_sentiment > 0)) +
  geom_col(show.legend = FALSE) +
  coord_flip() +
  scale_fill_manual(values = c("TRUE" = "steelblue", "FALSE" = "tomato")) +
  labs(title    = "Net Sentiment Around Sustainability Keywords (Bing)",
       subtitle = "Blue = net positive  |  Red = net negative",
       x = NULL, y = "Positive minus Negative")

# Nike vs competitors
sustainability_tokens %>%
  count(brand, sort = TRUE) %>%
  mutate(brand = reorder(brand, n)) %>%
  ggplot(aes(brand, n, fill = brand)) +
  geom_col(show.legend = FALSE) +
  coord_flip() +
  labs(title = "Sustainability Mentions: Nike vs. Adidas vs. Under Armour",
       x = NULL, y = "Total Keyword Occurrences")

# Sustainability bigrams
bigrams_filtered %>%
  filter(word1 %in% sustainability_keywords$word |
           word2 %in% sustainability_keywords$word) %>%
  count(word1, word2, sort = TRUE) %>%
  head(20) %>%
  unite(bigram, word1, word2, sep = " ") %>%
  mutate(bigram = reorder(bigram, n)) %>%
  ggplot(aes(bigram, n)) +
  geom_col(fill = "steelblue") +
  coord_flip() +
  labs(title    = "Top Sustainability Bigrams",
       subtitle = "Context check: 'green' and 'carbon' often appear in product contexts",
       x = NULL, y = "Count")

8.2 Q2: Is Greenwashing Language Appearing?

greenwashing_tokens <- nike_tokens %>%
  select(source, word) %>%
  inner_join(greenwashing_keywords, by = "word")

greenwashing_tokens %>%
  count(source, sort = TRUE) %>%
  mutate(source = reorder(source, n)) %>%
  ggplot(aes(source, n, fill = source)) +
  geom_col(show.legend = FALSE) +
  coord_flip() +
  labs(title    = "Greenwashing Language by Source",
       subtitle = "Low counts = limited public accusation of greenwashing",
       x = NULL, y = "Count")

greenwashing_tokens %>%
  mutate(brand = case_when(
    source %in% adidas_sources ~ "Adidas",
    source %in% ua_sources     ~ "Under Armour",
    TRUE                       ~ "Nike"
  )) %>%
  count(brand, sort = TRUE) %>%
  mutate(brand = reorder(brand, n)) %>%
  ggplot(aes(brand, n, fill = brand)) +
  geom_col(show.legend = FALSE) +
  coord_flip() +
  labs(title = "Greenwashing Language: Nike vs. Adidas vs. Under Armour",
       x = NULL, y = "Greenwashing Keyword Occurrences")


9 Pricing Sensitivity Analysis

pricing_terms <- tibble(word = c(
  "overpriced", "expensive", "price", "priced", "cost", "costly",
  "value", "worth", "retail", "premium", "cheap", "affordable"
))

pricing_word_counts <- tidy_nike %>%
  inner_join(pricing_terms, by = "word") %>%
  count(source, word, sort = TRUE)

pricing_word_counts
## readtext object consisting of 61 documents and 1 docvar.
## # A data frame: 61 × 4
##   source             word        n text     
##   <chr>              <chr>   <int> <chr>    
## 1 Nike - Reddit      price      40 "\"\"..."
## 2 Nike - Reddit      retail     25 "\"\"..."
## 3 Nike - Reddit      worth      23 "\"\"..."
## 4 Nike - Reddit      cheap      17 "\"\"..."
## 5 Adidas - App Store premium    16 "\"\"..."
## 6 Nike - Reddit      premium    11 "\"\"..."
## # ℹ 55 more rows
pricing_word_counts %>%
  group_by(source) %>%
  slice_max(order_by = n, n = 10, with_ties = FALSE) %>%
  ungroup() %>%
  mutate(word = tidytext::reorder_within(word, n, source)) %>%
  ggplot(aes(word, n, fill = source)) +
  geom_col(show.legend = FALSE) +
  facet_wrap(~source, scales = "free_y") +
  tidytext::scale_x_reordered() +
  coord_flip() +
  labs(title = "Pricing-Related Language by Source", x = NULL, y = "Word Count")

# Phrase-level pricing flags
pricing_phrase_counts <- nike_df %>%
  mutate(
    overpriced_flag = str_detect(str_to_lower(text), "overpriced"),
    expensive_flag  = str_detect(str_to_lower(text), "\\bexpensive\\b"),
    price_flag      = str_detect(str_to_lower(text), "\\bprice\\b|price tag|priced"),
    worth_flag      = str_detect(str_to_lower(text), "\\bworth\\b"),
    premium_flag    = str_detect(str_to_lower(text), "\\bpremium\\b")
  ) %>%
  group_by(source) %>%
  summarise(
    overpriced_mentions = sum(overpriced_flag, na.rm = TRUE),
    expensive_mentions  = sum(expensive_flag,  na.rm = TRUE),
    price_mentions      = sum(price_flag,       na.rm = TRUE),
    worth_mentions      = sum(worth_flag,        na.rm = TRUE),
    premium_mentions    = sum(premium_flag,      na.rm = TRUE),
    .groups = "drop"
  )

pricing_phrase_counts
## # A tibble: 18 × 6
##    source   overpriced_mentions expensive_mentions price_mentions worth_mentions
##    <chr>                  <int>              <int>          <int>          <int>
##  1 Adidas …                   0                  1              0              1
##  2 Adidas …                   0                  0              1              0
##  3 Adidas …                   0                  0              1              1
##  4 Adidas …                   1                  0              1              0
##  5 Adidas …                   0                  0              0              0
##  6 Adidas …                   0                  1              1              0
##  7 Nike - …                   0                  0              1              1
##  8 Nike - …                   0                  0              0              0
##  9 Nike - …                   0                  0              1              0
## 10 Nike - …                   1                  1              1              1
## 11 Nike - …                   0                  0              0              0
## 12 Nike - …                   0                  0              1              1
## 13 Under A…                   0                  1              0              1
## 14 Under A…                   0                  0              1              0
## 15 Under A…                   0                  0              1              1
## 16 Under A…                   0                  0              0              0
## 17 Under A…                   0                  1              1              0
## 18 Under A…                   0                  1              1              1
## # ℹ 1 more variable: premium_mentions <int>

10 Competitive Positioning

10.1 Steps 1–4: Load, Clean & Tokenise Competitor Data

set.seed(42)

comparison_raw <- raw_docs
colnames(comparison_raw)[1] <- "source"
colnames(comparison_raw)[2] <- "text"

comparison_raw$source <- basename(comparison_raw$source)
comparison_raw$source <- URLdecode(comparison_raw$source)
comparison_raw$source <- str_remove(comparison_raw$source, "\\.docx$")

comparison_df <- comparison_raw %>%
  select(source, text) %>%
  mutate(
    brand = case_when(
      str_detect(str_to_lower(source), "nike")                                       ~ "Nike",
      str_detect(str_to_lower(source), "adidas")                                     ~ "Adidas",
      str_detect(str_to_lower(source), "under armour|under_armour|underarmour")      ~ "UnderArmour",
      TRUE                                                                            ~ NA_character_
    ),
    source_type = case_when(
      str_detect(str_to_lower(source), "twitter")                                    ~ "Twitter",
      str_detect(str_to_lower(source), "youtube")                                    ~ "YouTube",
      str_detect(str_to_lower(source), "reddit")                                     ~ "Reddit",
      str_detect(str_to_lower(source), "app store|appstore")                         ~ "App Store",
      str_detect(str_to_lower(source), "headline|headlines|news")                    ~ "News",
      str_detect(str_to_lower(source), "reviews website|product reviews|review")     ~ "Product Reviews",
      TRUE                                                                            ~ NA_character_
    )
  )

comparison_df %>% count(brand, source_type)
## readtext object consisting of 18 documents and 1 docvar.
## # A data frame: 18 × 4
##   brand  source_type         n text     
##   <chr>  <chr>           <int> <chr>    
## 1 Adidas App Store           1 "\"\"..."
## 2 Adidas News                1 "\"\"..."
## 3 Adidas Product Reviews     1 "\"\"..."
## 4 Adidas Reddit              1 "\"\"..."
## 5 Adidas Twitter             1 "\"\"..."
## 6 Adidas YouTube             1 "\"\"..."
## # ℹ 12 more rows
custom_stopwords_comp <- tibble(word = c(
  "nike", "adidas", "under", "armour", "ua",
  "shoe", "shoes", "brand", "just", "really",
  "like", "get", "got", "one", "also", "can",
  "use", "app", "run", "running", "workout"
))

comparison_tokens <- comparison_df %>%
  unnest_tokens(word, text) %>%
  anti_join(stop_words, by = "word") %>%
  anti_join(custom_stopwords_comp, by = "word") %>%
  filter(!str_detect(word, "^[0-9]+$"), str_length(word) > 2)

10.2 Figure 3: NRC Emotion Intensity Heatmap

comparison_tokens %>%
  inner_join(get_sentiments("nrc"), by = "word") %>%
  filter(!sentiment %in% c("positive", "negative")) %>%
  count(brand, sentiment) %>%
  group_by(brand) %>%
  mutate(pct = n / sum(n)) %>%
  ungroup() %>%
  ggplot(aes(x = brand, y = sentiment, fill = pct)) +
  geom_tile(color = "white") +
  geom_text(aes(label = percent(pct, accuracy = 1)), size = 4) +
  scale_fill_gradient(low = "white", high = "steelblue",
                      labels = percent_format()) +
  labs(title    = "NRC Emotion Intensity Heatmap",
       subtitle = "Proportion of emotion words per brand",
       x = NULL, y = "Emotion",
       fill = "% of\nEmotion Words") +
  theme_minimal()

10.3 Figure 4: TF-IDF Signature Language

comparison_tokens %>%
  count(brand, word, sort = TRUE) %>%
  bind_tf_idf(word, brand, n) %>%
  group_by(brand) %>%
  slice_max(order_by = tf_idf, n = 15, with_ties = FALSE) %>%
  ungroup() %>%
  mutate(word = reorder_within(word, tf_idf, brand)) %>%
  ggplot(aes(word, tf_idf, fill = brand)) +
  geom_col(show.legend = FALSE) +
  facet_wrap(~brand, scales = "free_y") +
  scale_x_reordered() +
  coord_flip() +
  labs(title    = "TF-IDF: Signature Language of Each Brand",
       subtitle = "Words most uniquely associated with each brand vs. competitors",
       x = NULL, y = "TF-IDF Score")


End of Report